├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature-requests.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── check-install.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc ├── .python-version ├── .sassrc ├── AGENTS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── assets └── readme_logo.svg ├── changelog.md ├── docs └── cn │ └── README.md ├── extensions ├── oauth_extension.py └── rio.toml ├── frontend ├── code │ ├── animations.ts │ ├── app.ts │ ├── colorConversion.ts │ ├── componentManagement.ts │ ├── components │ │ ├── buttons.ts │ │ ├── calendar.ts │ │ ├── card.ts │ │ ├── checkbox.ts │ │ ├── classContainer.ts │ │ ├── codeBlock.ts │ │ ├── codeExplorer.ts │ │ ├── colorPicker.ts │ │ ├── componentBase.ts │ │ ├── componentPicker.ts │ │ ├── componentTree.ts │ │ ├── customTreeItem.ts │ │ ├── devToolsConnector.ts │ │ ├── dialogContainer.ts │ │ ├── drawer.ts │ │ ├── dropdown.ts │ │ ├── errorPlaceholder.ts │ │ ├── filePickerArea.ts │ │ ├── flowContainer.ts │ │ ├── fundamentalRootComponent.ts │ │ ├── graphEditor │ │ │ ├── cuttingConnectionStrategy.ts │ │ │ ├── draggingConnectionStrategy.ts │ │ │ ├── draggingNodesStrategy.ts │ │ │ ├── draggingSelectionStrategy.ts │ │ │ ├── graphEditor.ts │ │ │ ├── graphStore.ts │ │ │ └── utils.ts │ │ ├── grid.ts │ │ ├── highLevelComponent.ts │ │ ├── icon.ts │ │ ├── image.ts │ │ ├── keyEventListener.ts │ │ ├── keyboardFocusableComponent.ts │ │ ├── layoutDisplay.ts │ │ ├── linearContainers.ts │ │ ├── link.ts │ │ ├── listItems.ts │ │ ├── listView.ts │ │ ├── markdown.ts │ │ ├── mediaPlayer.ts │ │ ├── mouseEventListener.ts │ │ ├── multiLineTextInput.ts │ │ ├── nodeInput.ts │ │ ├── nodeOutput.ts │ │ ├── numberInput.ts │ │ ├── overlay.ts │ │ ├── pdf_viewer.ts │ │ ├── plot.ts │ │ ├── pointerEventListener.ts │ │ ├── popup.ts │ │ ├── progressBar.ts │ │ ├── progressCircle.ts │ │ ├── rectangle.ts │ │ ├── revealer.ts │ │ ├── scrollContainer.ts │ │ ├── scrollTarget.ts │ │ ├── separator.ts │ │ ├── slider.ts │ │ ├── slideshow.ts │ │ ├── stack.ts │ │ ├── switch.ts │ │ ├── switcher.ts │ │ ├── switcherBar.ts │ │ ├── table.ts │ │ ├── text.ts │ │ ├── textInput.ts │ │ ├── themeContextSwitcher.ts │ │ ├── tooltip.ts │ │ └── webview.ts │ ├── cssUtils.ts │ ├── dataModels.ts │ ├── debouncer.ts │ ├── designApplication.ts │ ├── devToolsTreeWalk.ts │ ├── easeFunctions.ts │ ├── elements │ │ └── pressableElement.ts │ ├── eventHandling.ts │ ├── highlighter.ts │ ├── inputBox.ts │ ├── naturalSizeObservers.ts │ ├── popupManager.ts │ ├── popupPositioners.ts │ ├── rippleEffect.ts │ ├── rpc.ts │ ├── rpcFunctions.ts │ ├── tweens │ │ ├── baseTween.ts │ │ ├── kineticTween.ts │ │ └── mappingTweens.ts │ └── utils.ts ├── css │ ├── components │ │ ├── buttons.scss │ │ ├── calendar.scss │ │ ├── card.scss │ │ ├── checkbox.scss │ │ ├── class_container.scss │ │ ├── code_block.scss │ │ ├── code_explorer.scss │ │ ├── color_picker.scss │ │ ├── dialog_container.scss │ │ ├── drawer.scss │ │ ├── dropdown.scss │ │ ├── error_placeholder.scss │ │ ├── file_picker_area.scss │ │ ├── flow_container.scss │ │ ├── fundamental_root_component.scss │ │ ├── graph_editor.scss │ │ ├── grid.scss │ │ ├── icon.scss │ │ ├── image.scss │ │ ├── key_event_listener.scss │ │ ├── layout_display.scss │ │ ├── linear_containers.scss │ │ ├── link.scss │ │ ├── list_view_and_items.scss │ │ ├── markdown.scss │ │ ├── media_player.scss │ │ ├── overlay.scss │ │ ├── pdf_viewer.scss │ │ ├── plot.scss │ │ ├── pointer_event_listener.scss │ │ ├── popup.scss │ │ ├── progress_bar.scss │ │ ├── progress_circle.scss │ │ ├── rectangle.scss │ │ ├── revealer.scss │ │ ├── scroll_container.scss │ │ ├── scroll_target.scss │ │ ├── separator.scss │ │ ├── slider.scss │ │ ├── slideshow.scss │ │ ├── spacer.scss │ │ ├── stack.scss │ │ ├── switch.scss │ │ ├── switcher.scss │ │ ├── switcher_bar.scss │ │ ├── table.scss │ │ ├── text.scss │ │ ├── tooltip.scss │ │ ├── tree_view_and_items.scss │ │ └── webview.scss │ ├── dev_tools.scss │ ├── html.scss │ ├── input_box.scss │ ├── pick_file.scss │ ├── popup_manager.scss │ ├── style.scss │ ├── switcheroos.scss │ ├── syntax_highlighting │ │ ├── highlightjs-default-dark.css │ │ └── highlightjs-default-light.css │ ├── traceback_popup.scss │ └── utils.scss └── index.html ├── package.json ├── pyproject.toml ├── raw_icons ├── README.md ├── brand │ ├── alipay.svg │ ├── amazon.svg │ ├── amd.svg │ ├── android.svg │ ├── apple.svg │ ├── bing.svg │ ├── bluesky.svg │ ├── bluetooth.svg │ ├── chrome.svg │ ├── discord.svg │ ├── dropbox.svg │ ├── edge.svg │ ├── facebook.svg │ ├── firefox.svg │ ├── git.svg │ ├── github.svg │ ├── gitlab.svg │ ├── google.svg │ ├── google_play.svg │ ├── head │ │ └── android.svg │ ├── instagram.svg │ ├── linkedin.svg │ ├── mastodon.svg │ ├── meta.svg │ ├── microsoft.svg │ ├── nvidia.svg │ ├── opencollective.svg │ ├── paypal.svg │ ├── pinterest.svg │ ├── reddit.svg │ ├── safari.svg │ ├── signal.svg │ ├── skype.svg │ ├── slack.svg │ ├── snapchat.svg │ ├── spotify.svg │ ├── stack_overflow.svg │ ├── steam.svg │ ├── stripe.svg │ ├── substack.svg │ ├── telegram.svg │ ├── threads.svg │ ├── tiktok.svg │ ├── trello.svg │ ├── twitch.svg │ ├── twitter.svg │ ├── ubuntu.svg │ ├── vimeo.svg │ ├── wechat.svg │ ├── whatsapp.svg │ ├── wikipedia.svg │ ├── windows.svg │ ├── x.svg │ └── youtube.svg ├── custom-material-icons │ ├── fill │ │ └── twinkle.svg │ └── twinkle.svg ├── rio │ ├── color │ │ ├── logo.svg │ │ ├── logo_and_text_horizontal.svg │ │ └── logo_and_text_vertical.svg │ ├── fill │ │ ├── logo.svg │ │ ├── logo_and_text_horizontal.svg │ │ └── logo_and_text_vertical.svg │ ├── logo.svg │ ├── logo_and_text_horizontal.svg │ └── logo_and_text_vertical.svg └── styling │ ├── corner_round_bottom_left.svg │ ├── corner_round_bottom_right.svg │ ├── corner_round_top_left.svg │ └── corner_round_top_right.svg ├── rio ├── __init__.py ├── __main__.py ├── app.py ├── app_server │ ├── __init__.py │ ├── abstract_app_server.py │ ├── fastapi_server.py │ └── testing_server.py ├── arequests.py ├── assets.py ├── assets │ ├── fonts │ │ ├── Roboto Mono │ │ │ ├── LICENSE.txt │ │ │ ├── RobotoMono-Bold.ttf │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ ├── RobotoMono-Italic.ttf │ │ │ └── RobotoMono-Regular.ttf │ │ └── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ └── Roboto-Regular.ttf │ ├── hosted │ │ ├── README.md │ │ └── rio_logos │ │ │ ├── logo_and_text_horizontal.png │ │ │ └── rio_logo_square.png │ └── icon_sets │ │ ├── brand.tar.xz │ │ ├── material.tar.xz │ │ ├── rio.tar.xz │ │ └── styling.tar.xz ├── byte_serving.py ├── cli │ ├── __init__.py │ ├── cloud_commands.py │ ├── project_setup.py │ └── run_project │ │ ├── __init__.py │ │ ├── app_loading.py │ │ ├── arbiter.py │ │ ├── file_watcher_worker.py │ │ ├── run_models.py │ │ ├── uvicorn_worker.py │ │ └── webview_worker.py ├── color.py ├── component_meta.py ├── components │ ├── __init__.py │ ├── app_root.py │ ├── auto_form.py │ ├── banner.py │ ├── button.py │ ├── calendar.py │ ├── card.py │ ├── checkbox.py │ ├── class_container.py │ ├── code_block.py │ ├── code_explorer.py │ ├── color_picker.py │ ├── component.py │ ├── container.py │ ├── date_input.py │ ├── default_root_component.py │ ├── devel_component.py │ ├── dialog_container.py │ ├── drawer.py │ ├── dropdown.py │ ├── error_placeholder.py │ ├── file_picker_area.py │ ├── flow_container.py │ ├── form_builder.py │ ├── fundamental_component.py │ ├── graph_editor.py │ ├── grid.py │ ├── html.py │ ├── icon.py │ ├── icon_button.py │ ├── image.py │ ├── key_event_listener.py │ ├── keyboard_focusable_components.py │ ├── labeled_column.py │ ├── linear_containers.py │ ├── link.py │ ├── list_items.py │ ├── list_view.py │ ├── markdown.py │ ├── media_player.py │ ├── mouse_event_listener.py │ ├── multi_line_text_input.py │ ├── node_input.py │ ├── node_output.py │ ├── number_input.py │ ├── overlay.py │ ├── page_view.py │ ├── pdf_viewer.py │ ├── plot.py │ ├── pointer_event_listener.py │ ├── popup.py │ ├── progress_bar.py │ ├── progress_circle.py │ ├── rectangle.py │ ├── revealer.py │ ├── root_components.py │ ├── scroll_container.py │ ├── scroll_target.py │ ├── separator.py │ ├── slider.py │ ├── slideshow.py │ ├── spacer.py │ ├── stack.py │ ├── switch.py │ ├── switcher.py │ ├── switcher_bar.py │ ├── table.py │ ├── tabs.py │ ├── text.py │ ├── text_input.py │ ├── theme_context_switcher.py │ ├── tooltip.py │ ├── tree_items.py │ ├── tree_view.py │ ├── website.py │ └── webview.py ├── cursor_style.py ├── data_models.py ├── debug │ ├── __init__.py │ ├── dev_tools │ │ ├── __init__.py │ │ ├── component_attributes.py │ │ ├── component_picker.py │ │ ├── component_tree.py │ │ ├── deploy_page.py │ │ ├── dev_tools_connector.py │ │ ├── dev_tools_sidebar.py │ │ ├── docs_page.py │ │ ├── icons_page.py │ │ ├── layout_display.py │ │ ├── layout_explainer.py │ │ ├── layout_subpage.py │ │ ├── project_page.py │ │ ├── rio_developer_page.py │ │ ├── sample_icons_grid.py │ │ ├── theme_picker_page.py │ │ └── tree_page.py │ ├── layouter.py │ └── monkeypatches.py ├── deprecations.py ├── dialog.py ├── docs.py ├── errors.py ├── event.py ├── extension.py ├── extension_event.py ├── fills.py ├── global_state.py ├── icon_registry.py ├── icons.py ├── inspection.py ├── language_info.py ├── maybes.py ├── nice_traceback.py ├── observables │ ├── __init__.py │ ├── component_property.py │ ├── containers.py │ ├── dataclass.py │ ├── observable_property.py │ ├── session_attachments.py │ └── session_property.py ├── patches_for_3rd_party_stuff │ ├── IocpProactor_accept_locals_accept_coro.py │ ├── ProactorBasePipeTransport_call_connection_lost.py │ ├── _OverlappedFuture_cancel_overlapped.py │ └── __init__.py ├── path_match.py ├── project_config.py ├── py.typed ├── routing.py ├── self_serializing.py ├── serialization.py ├── session.py ├── snippets │ ├── README.md │ ├── __init__.py │ ├── project_template.py │ ├── snippet-files │ │ ├── other-examples │ │ │ └── simple_counter_app.py │ │ ├── project-template-AI Chatbot │ │ │ ├── README.md │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── chat_message.py │ │ │ │ ├── chat_suggestion_card.py │ │ │ │ ├── empty_chat_placeholder.py │ │ │ │ └── generating_response_placeholder.py │ │ │ ├── conversation.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── chat_page.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── project-template-Authentication │ │ │ ├── README.md │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── navbar.py │ │ │ │ ├── news_article.py │ │ │ │ ├── root_component.py │ │ │ │ ├── testimonial.py │ │ │ │ └── user_sign_up_form.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ ├── app_page.py │ │ │ │ ├── app_page │ │ │ │ │ ├── about_page.py │ │ │ │ │ ├── home_page.py │ │ │ │ │ └── news_page.py │ │ │ │ └── login_page.py │ │ │ ├── persistence.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── project-template-Crypto Dashboard │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── cryptos.csv │ │ │ │ └── testimonial.png │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── balance_card.py │ │ │ │ ├── colored_rectangle.py │ │ │ │ ├── content_card.py │ │ │ │ ├── contribution_wanted.py │ │ │ │ ├── crypto_card.py │ │ │ │ ├── crypto_chart.py │ │ │ │ ├── hamburger_button.py │ │ │ │ ├── major_section.py │ │ │ │ ├── nav_bar.py │ │ │ │ ├── notification_button.py │ │ │ │ ├── overlay_bar.py │ │ │ │ ├── portfolio_distribution.py │ │ │ │ ├── portfolio_overview.py │ │ │ │ ├── rio_logo.py │ │ │ │ ├── root_component.py │ │ │ │ ├── styled_portfolio.py │ │ │ │ ├── styled_transaction.py │ │ │ │ └── transactions_overview.py │ │ │ ├── constants.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ ├── dashboard_page.py │ │ │ │ ├── statistics_page.py │ │ │ │ └── transaction_page.py │ │ │ ├── root_init.py │ │ │ ├── theme.py │ │ │ └── thumbnail.png │ │ ├── project-template-Dashboard Better Name │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── user_1.png │ │ │ │ ├── user_10.png │ │ │ │ ├── user_11.png │ │ │ │ ├── user_12.png │ │ │ │ ├── user_13.png │ │ │ │ ├── user_2.png │ │ │ │ ├── user_3.png │ │ │ │ ├── user_4.png │ │ │ │ ├── user_5.png │ │ │ │ ├── user_6.png │ │ │ │ ├── user_7.png │ │ │ │ ├── user_8.png │ │ │ │ └── user_9.png │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── colored_rectangle.py │ │ │ │ ├── content_container.py │ │ │ │ ├── date_section.py │ │ │ │ ├── date_selector.py │ │ │ │ ├── filter_row.py │ │ │ │ ├── home_section.py │ │ │ │ ├── hover_card.py │ │ │ │ ├── inbox_email.py │ │ │ │ ├── inbox_header.py │ │ │ │ ├── mail_content.py │ │ │ │ ├── message_preview.py │ │ │ │ ├── multi_select_dropdown.py │ │ │ │ ├── multi_select_dropdown_change_event.py │ │ │ │ ├── popup_rectangle.py │ │ │ │ ├── recent_sales.py │ │ │ │ ├── revenue_graph.py │ │ │ │ ├── root_component.py │ │ │ │ ├── section_switcher.py │ │ │ │ ├── selector_button.py │ │ │ │ ├── side_bar.py │ │ │ │ ├── single_select_dropdown.py │ │ │ │ ├── single_select_dropdown_styled_header.py │ │ │ │ ├── stroke_rectangle.py │ │ │ │ ├── styled_rectangle.py │ │ │ │ ├── toggle_group.py │ │ │ │ ├── top_countries_card.py │ │ │ │ └── user_table.py │ │ │ ├── constants.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ ├── dashboard_page.py │ │ │ │ ├── inbox_page.py │ │ │ │ ├── settings_page.py │ │ │ │ ├── settings_page │ │ │ │ │ ├── general_page.py │ │ │ │ │ ├── members_page.py │ │ │ │ │ └── notifications_page.py │ │ │ │ └── users_page.py │ │ │ ├── root_init.py │ │ │ ├── theme.py │ │ │ ├── thumbnail.png │ │ │ └── utils.py │ │ ├── project-template-Empty │ │ │ ├── README.md │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── sample_page.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.svg │ │ ├── project-template-Multipage Website │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── basic_patterns │ │ │ │ │ └── background_gray_2_1.svg │ │ │ │ ├── blog_authors │ │ │ │ │ ├── blog_author_1.png │ │ │ │ │ ├── blog_author_2.png │ │ │ │ │ ├── blog_author_3.png │ │ │ │ │ ├── blog_author_4.png │ │ │ │ │ ├── blog_author_5.png │ │ │ │ │ ├── blog_author_6.png │ │ │ │ │ └── blog_author_7.png │ │ │ │ ├── brands │ │ │ │ │ ├── discord_logo.svg │ │ │ │ │ └── github_logo.svg │ │ │ │ └── testimonials │ │ │ │ │ ├── testimonial_1.png │ │ │ │ │ ├── testimonial_2.png │ │ │ │ │ ├── testimonial_3.png │ │ │ │ │ ├── testimonial_4.png │ │ │ │ │ ├── testimonial_5.png │ │ │ │ │ └── testimonial_6.png │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── author_card.py │ │ │ │ ├── blog_header.py │ │ │ │ ├── blog_major.py │ │ │ │ ├── blog_minor.py │ │ │ │ ├── blog_section.py │ │ │ │ ├── bullet_point.py │ │ │ │ ├── card_section.py │ │ │ │ ├── custom_switcher_bar.py │ │ │ │ ├── fake_link.py │ │ │ │ ├── faq.py │ │ │ │ ├── faq_section.py │ │ │ │ ├── footer.py │ │ │ │ ├── get_started.py │ │ │ │ ├── goody_column.py │ │ │ │ ├── hero_card.py │ │ │ │ ├── hero_section.py │ │ │ │ ├── image_placeholder.py │ │ │ │ ├── major_column.py │ │ │ │ ├── navbar.py │ │ │ │ ├── outlined_colored_button.py │ │ │ │ ├── outlined_neutral_button.py │ │ │ │ ├── pricing_cards.py │ │ │ │ ├── pricing_section.py │ │ │ │ ├── root_component.py │ │ │ │ ├── service_power.py │ │ │ │ ├── service_speed.py │ │ │ │ ├── subscribe_input_button.py │ │ │ │ ├── testimonial.py │ │ │ │ └── testimonials.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ ├── blog_page.py │ │ │ │ ├── blog_page │ │ │ │ │ ├── adventure_in_alps.py │ │ │ │ │ ├── beauty_of_sunsets.py │ │ │ │ │ ├── blog_home_page.py │ │ │ │ │ ├── climate_change_effects.py │ │ │ │ │ ├── most_beautiful_beaches.py │ │ │ │ │ ├── secrets_of_photography.py │ │ │ │ │ ├── water_and_healing_power_of_stones.py │ │ │ │ │ └── work_life_balance.py │ │ │ │ ├── landing_page.py │ │ │ │ └── pricing_page.py │ │ │ ├── root_init.py │ │ │ ├── theme.py │ │ │ ├── thumbnail.png │ │ │ └── utils.py │ │ ├── project-template-Sales Dashboard │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── sales_data.csv │ │ │ │ ├── top_performer_1.png │ │ │ │ ├── top_performer_2.png │ │ │ │ └── top_performer_3.png │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── donut_chart_card.py │ │ │ │ ├── line_chart_card.py │ │ │ │ ├── rate_card.py │ │ │ │ └── top_performers.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── sales_page.py │ │ │ ├── persistence.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── project-template-Simple CRUD │ │ │ ├── README.md │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── crud_page.py │ │ │ ├── persistence.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── project-template-Tic-Tac-Toe │ │ │ ├── README.md │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ └── field.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── tic_tac_toe_page.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── project-template-Todo App │ │ │ ├── README.md │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── new_todo_item_input.py │ │ │ │ └── todo_item_component.py │ │ │ ├── data_models.py │ │ │ ├── meta.json │ │ │ ├── pages │ │ │ │ └── todo_list_page.py │ │ │ ├── root_init.py │ │ │ └── thumbnail.png │ │ ├── tutorial-tic-tac-toe-part-2 │ │ │ ├── components │ │ │ │ └── __init__.py │ │ │ └── pages │ │ │ │ ├── __init__.py │ │ │ │ └── tic_tac_toe_page.py │ │ ├── tutorial-tic-tac-toe-part-3 │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ └── field.py │ │ │ └── pages │ │ │ │ ├── __init__.py │ │ │ │ └── tic_tac_toe_page.py │ │ ├── tutorial-tic-tac-toe-part-4 │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ └── field.py │ │ │ └── pages │ │ │ │ ├── __init__.py │ │ │ │ └── tic_tac_toe_page.py │ │ └── tutorial-tic-tac-toe-part-5 │ │ │ ├── components │ │ │ ├── __init__.py │ │ │ └── field.py │ │ │ └── pages │ │ │ ├── __init__.py │ │ │ └── tic_tac_toe_page.py │ └── snippet_manager.py ├── testing │ ├── __init__.py │ ├── base_client.py │ ├── browser_client.py │ └── dummy_client.py ├── text_style.py ├── theme.py ├── tools │ └── create_code_for_icon_set.py ├── transports │ ├── __init__.py │ ├── abstract_transport.py │ ├── fastapi_websocket_transport.py │ ├── message_recorder_transport.py │ └── multi_transport.py ├── url_pattern.py ├── user_settings_module.py ├── utils.py ├── version.py ├── warnings.py ├── weak_key_id_default_dict.py └── webview_shim.py ├── scripts ├── _utils.py ├── benchmark.py ├── build_icon_set.py ├── build_rio_api_client.py ├── cloc.sh ├── code_coverage.py ├── generate_stubs.py ├── publish.py └── update_js_dependencies.py ├── tests ├── __init__.py ├── test_app_build.py ├── test_arequests.py ├── test_attribute_bindings.py ├── test_cli │ └── test_app_loading.py ├── test_components.py ├── test_custom_components.py ├── test_documentation.py ├── test_events.py ├── test_extensions.py ├── test_file_info.py ├── test_frontend │ ├── conftest.py │ ├── test_dialogs.py │ ├── test_layouting │ │ ├── __init__.py │ │ ├── test_dev_tools.py │ │ ├── test_flow_container.py │ │ ├── test_html_and_body.py │ │ ├── test_linear_containers.py │ │ ├── test_popup.py │ │ ├── test_scroll_container.py │ │ ├── test_stack.py │ │ └── test_text.py │ ├── test_list_view.py │ ├── test_mouse_event_listener.py │ └── test_pointer_event_listener.py ├── test_guardrails.py ├── test_observables.py ├── test_page_views.py ├── test_project_templates.py ├── test_reconciliation.py ├── test_refresh.py ├── test_routing.py ├── test_session.py ├── test_table_data_ingestion.py ├── test_table_indexing.py ├── test_testing_tools.py ├── test_url_patterns.py ├── test_user_settings.py ├── test_utils.py └── utils │ ├── __init__.py │ ├── layouting.py │ └── ruff.py ├── tsconfig.json └── vite.config.mjs /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/ISSUE_TEMPLATE/feature-requests.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.github/workflows/check-install.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.prettierrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.sassrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/.sassrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/readme_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/assets/readme_logo.svg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/docs/cn/README.md -------------------------------------------------------------------------------- /extensions/oauth_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/extensions/oauth_extension.py -------------------------------------------------------------------------------- /extensions/rio.toml: -------------------------------------------------------------------------------- 1 | [app] 2 | main-module = "oauth_extension" 3 | -------------------------------------------------------------------------------- /frontend/code/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/animations.ts -------------------------------------------------------------------------------- /frontend/code/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/app.ts -------------------------------------------------------------------------------- /frontend/code/colorConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/colorConversion.ts -------------------------------------------------------------------------------- /frontend/code/componentManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/componentManagement.ts -------------------------------------------------------------------------------- /frontend/code/components/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/buttons.ts -------------------------------------------------------------------------------- /frontend/code/components/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/calendar.ts -------------------------------------------------------------------------------- /frontend/code/components/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/card.ts -------------------------------------------------------------------------------- /frontend/code/components/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/checkbox.ts -------------------------------------------------------------------------------- /frontend/code/components/classContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/classContainer.ts -------------------------------------------------------------------------------- /frontend/code/components/codeBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/codeBlock.ts -------------------------------------------------------------------------------- /frontend/code/components/codeExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/codeExplorer.ts -------------------------------------------------------------------------------- /frontend/code/components/colorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/colorPicker.ts -------------------------------------------------------------------------------- /frontend/code/components/componentBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/componentBase.ts -------------------------------------------------------------------------------- /frontend/code/components/componentPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/componentPicker.ts -------------------------------------------------------------------------------- /frontend/code/components/componentTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/componentTree.ts -------------------------------------------------------------------------------- /frontend/code/components/customTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/customTreeItem.ts -------------------------------------------------------------------------------- /frontend/code/components/devToolsConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/devToolsConnector.ts -------------------------------------------------------------------------------- /frontend/code/components/dialogContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/dialogContainer.ts -------------------------------------------------------------------------------- /frontend/code/components/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/drawer.ts -------------------------------------------------------------------------------- /frontend/code/components/dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/dropdown.ts -------------------------------------------------------------------------------- /frontend/code/components/errorPlaceholder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/errorPlaceholder.ts -------------------------------------------------------------------------------- /frontend/code/components/filePickerArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/filePickerArea.ts -------------------------------------------------------------------------------- /frontend/code/components/flowContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/flowContainer.ts -------------------------------------------------------------------------------- /frontend/code/components/fundamentalRootComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/fundamentalRootComponent.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/cuttingConnectionStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/cuttingConnectionStrategy.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/draggingConnectionStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/draggingConnectionStrategy.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/draggingNodesStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/draggingNodesStrategy.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/draggingSelectionStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/draggingSelectionStrategy.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/graphEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/graphEditor.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/graphStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/graphStore.ts -------------------------------------------------------------------------------- /frontend/code/components/graphEditor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/graphEditor/utils.ts -------------------------------------------------------------------------------- /frontend/code/components/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/grid.ts -------------------------------------------------------------------------------- /frontend/code/components/highLevelComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/highLevelComponent.ts -------------------------------------------------------------------------------- /frontend/code/components/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/icon.ts -------------------------------------------------------------------------------- /frontend/code/components/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/image.ts -------------------------------------------------------------------------------- /frontend/code/components/keyEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/keyEventListener.ts -------------------------------------------------------------------------------- /frontend/code/components/keyboardFocusableComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/keyboardFocusableComponent.ts -------------------------------------------------------------------------------- /frontend/code/components/layoutDisplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/layoutDisplay.ts -------------------------------------------------------------------------------- /frontend/code/components/linearContainers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/linearContainers.ts -------------------------------------------------------------------------------- /frontend/code/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/link.ts -------------------------------------------------------------------------------- /frontend/code/components/listItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/listItems.ts -------------------------------------------------------------------------------- /frontend/code/components/listView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/listView.ts -------------------------------------------------------------------------------- /frontend/code/components/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/markdown.ts -------------------------------------------------------------------------------- /frontend/code/components/mediaPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/mediaPlayer.ts -------------------------------------------------------------------------------- /frontend/code/components/mouseEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/mouseEventListener.ts -------------------------------------------------------------------------------- /frontend/code/components/multiLineTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/multiLineTextInput.ts -------------------------------------------------------------------------------- /frontend/code/components/nodeInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/nodeInput.ts -------------------------------------------------------------------------------- /frontend/code/components/nodeOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/nodeOutput.ts -------------------------------------------------------------------------------- /frontend/code/components/numberInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/numberInput.ts -------------------------------------------------------------------------------- /frontend/code/components/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/overlay.ts -------------------------------------------------------------------------------- /frontend/code/components/pdf_viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/pdf_viewer.ts -------------------------------------------------------------------------------- /frontend/code/components/plot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/plot.ts -------------------------------------------------------------------------------- /frontend/code/components/pointerEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/pointerEventListener.ts -------------------------------------------------------------------------------- /frontend/code/components/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/popup.ts -------------------------------------------------------------------------------- /frontend/code/components/progressBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/progressBar.ts -------------------------------------------------------------------------------- /frontend/code/components/progressCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/progressCircle.ts -------------------------------------------------------------------------------- /frontend/code/components/rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/rectangle.ts -------------------------------------------------------------------------------- /frontend/code/components/revealer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/revealer.ts -------------------------------------------------------------------------------- /frontend/code/components/scrollContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/scrollContainer.ts -------------------------------------------------------------------------------- /frontend/code/components/scrollTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/scrollTarget.ts -------------------------------------------------------------------------------- /frontend/code/components/separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/separator.ts -------------------------------------------------------------------------------- /frontend/code/components/slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/slider.ts -------------------------------------------------------------------------------- /frontend/code/components/slideshow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/slideshow.ts -------------------------------------------------------------------------------- /frontend/code/components/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/stack.ts -------------------------------------------------------------------------------- /frontend/code/components/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/switch.ts -------------------------------------------------------------------------------- /frontend/code/components/switcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/switcher.ts -------------------------------------------------------------------------------- /frontend/code/components/switcherBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/switcherBar.ts -------------------------------------------------------------------------------- /frontend/code/components/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/table.ts -------------------------------------------------------------------------------- /frontend/code/components/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/text.ts -------------------------------------------------------------------------------- /frontend/code/components/textInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/textInput.ts -------------------------------------------------------------------------------- /frontend/code/components/themeContextSwitcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/themeContextSwitcher.ts -------------------------------------------------------------------------------- /frontend/code/components/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/tooltip.ts -------------------------------------------------------------------------------- /frontend/code/components/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/components/webview.ts -------------------------------------------------------------------------------- /frontend/code/cssUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/cssUtils.ts -------------------------------------------------------------------------------- /frontend/code/dataModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/dataModels.ts -------------------------------------------------------------------------------- /frontend/code/debouncer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/debouncer.ts -------------------------------------------------------------------------------- /frontend/code/designApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/designApplication.ts -------------------------------------------------------------------------------- /frontend/code/devToolsTreeWalk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/devToolsTreeWalk.ts -------------------------------------------------------------------------------- /frontend/code/easeFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/easeFunctions.ts -------------------------------------------------------------------------------- /frontend/code/elements/pressableElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/elements/pressableElement.ts -------------------------------------------------------------------------------- /frontend/code/eventHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/eventHandling.ts -------------------------------------------------------------------------------- /frontend/code/highlighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/highlighter.ts -------------------------------------------------------------------------------- /frontend/code/inputBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/inputBox.ts -------------------------------------------------------------------------------- /frontend/code/naturalSizeObservers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/naturalSizeObservers.ts -------------------------------------------------------------------------------- /frontend/code/popupManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/popupManager.ts -------------------------------------------------------------------------------- /frontend/code/popupPositioners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/popupPositioners.ts -------------------------------------------------------------------------------- /frontend/code/rippleEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/rippleEffect.ts -------------------------------------------------------------------------------- /frontend/code/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/rpc.ts -------------------------------------------------------------------------------- /frontend/code/rpcFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/rpcFunctions.ts -------------------------------------------------------------------------------- /frontend/code/tweens/baseTween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/tweens/baseTween.ts -------------------------------------------------------------------------------- /frontend/code/tweens/kineticTween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/tweens/kineticTween.ts -------------------------------------------------------------------------------- /frontend/code/tweens/mappingTweens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/tweens/mappingTweens.ts -------------------------------------------------------------------------------- /frontend/code/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/code/utils.ts -------------------------------------------------------------------------------- /frontend/css/components/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/buttons.scss -------------------------------------------------------------------------------- /frontend/css/components/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/calendar.scss -------------------------------------------------------------------------------- /frontend/css/components/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/card.scss -------------------------------------------------------------------------------- /frontend/css/components/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/checkbox.scss -------------------------------------------------------------------------------- /frontend/css/components/class_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/class_container.scss -------------------------------------------------------------------------------- /frontend/css/components/code_block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/code_block.scss -------------------------------------------------------------------------------- /frontend/css/components/code_explorer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/code_explorer.scss -------------------------------------------------------------------------------- /frontend/css/components/color_picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/color_picker.scss -------------------------------------------------------------------------------- /frontend/css/components/dialog_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/dialog_container.scss -------------------------------------------------------------------------------- /frontend/css/components/drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/drawer.scss -------------------------------------------------------------------------------- /frontend/css/components/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/dropdown.scss -------------------------------------------------------------------------------- /frontend/css/components/error_placeholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/error_placeholder.scss -------------------------------------------------------------------------------- /frontend/css/components/file_picker_area.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/file_picker_area.scss -------------------------------------------------------------------------------- /frontend/css/components/flow_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/flow_container.scss -------------------------------------------------------------------------------- /frontend/css/components/fundamental_root_component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/fundamental_root_component.scss -------------------------------------------------------------------------------- /frontend/css/components/graph_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/graph_editor.scss -------------------------------------------------------------------------------- /frontend/css/components/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/grid.scss -------------------------------------------------------------------------------- /frontend/css/components/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/icon.scss -------------------------------------------------------------------------------- /frontend/css/components/image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/image.scss -------------------------------------------------------------------------------- /frontend/css/components/key_event_listener.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/key_event_listener.scss -------------------------------------------------------------------------------- /frontend/css/components/layout_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/layout_display.scss -------------------------------------------------------------------------------- /frontend/css/components/linear_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/linear_containers.scss -------------------------------------------------------------------------------- /frontend/css/components/link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/link.scss -------------------------------------------------------------------------------- /frontend/css/components/list_view_and_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/list_view_and_items.scss -------------------------------------------------------------------------------- /frontend/css/components/markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/markdown.scss -------------------------------------------------------------------------------- /frontend/css/components/media_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/media_player.scss -------------------------------------------------------------------------------- /frontend/css/components/overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/overlay.scss -------------------------------------------------------------------------------- /frontend/css/components/pdf_viewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/pdf_viewer.scss -------------------------------------------------------------------------------- /frontend/css/components/plot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/plot.scss -------------------------------------------------------------------------------- /frontend/css/components/pointer_event_listener.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/pointer_event_listener.scss -------------------------------------------------------------------------------- /frontend/css/components/popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/popup.scss -------------------------------------------------------------------------------- /frontend/css/components/progress_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/progress_bar.scss -------------------------------------------------------------------------------- /frontend/css/components/progress_circle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/progress_circle.scss -------------------------------------------------------------------------------- /frontend/css/components/rectangle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/rectangle.scss -------------------------------------------------------------------------------- /frontend/css/components/revealer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/revealer.scss -------------------------------------------------------------------------------- /frontend/css/components/scroll_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/scroll_container.scss -------------------------------------------------------------------------------- /frontend/css/components/scroll_target.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/scroll_target.scss -------------------------------------------------------------------------------- /frontend/css/components/separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/separator.scss -------------------------------------------------------------------------------- /frontend/css/components/slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/slider.scss -------------------------------------------------------------------------------- /frontend/css/components/slideshow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/slideshow.scss -------------------------------------------------------------------------------- /frontend/css/components/spacer.scss: -------------------------------------------------------------------------------- 1 | .rio-spacer { 2 | pointer-events: none; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/css/components/stack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/stack.scss -------------------------------------------------------------------------------- /frontend/css/components/switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/switch.scss -------------------------------------------------------------------------------- /frontend/css/components/switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/switcher.scss -------------------------------------------------------------------------------- /frontend/css/components/switcher_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/switcher_bar.scss -------------------------------------------------------------------------------- /frontend/css/components/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/table.scss -------------------------------------------------------------------------------- /frontend/css/components/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/text.scss -------------------------------------------------------------------------------- /frontend/css/components/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/tooltip.scss -------------------------------------------------------------------------------- /frontend/css/components/tree_view_and_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/components/tree_view_and_items.scss -------------------------------------------------------------------------------- /frontend/css/components/webview.scss: -------------------------------------------------------------------------------- 1 | .rio-webview > iframe { 2 | border: none; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/css/dev_tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/dev_tools.scss -------------------------------------------------------------------------------- /frontend/css/html.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/html.scss -------------------------------------------------------------------------------- /frontend/css/input_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/input_box.scss -------------------------------------------------------------------------------- /frontend/css/pick_file.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/pick_file.scss -------------------------------------------------------------------------------- /frontend/css/popup_manager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/popup_manager.scss -------------------------------------------------------------------------------- /frontend/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/style.scss -------------------------------------------------------------------------------- /frontend/css/switcheroos.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/switcheroos.scss -------------------------------------------------------------------------------- /frontend/css/syntax_highlighting/highlightjs-default-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/syntax_highlighting/highlightjs-default-dark.css -------------------------------------------------------------------------------- /frontend/css/syntax_highlighting/highlightjs-default-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/syntax_highlighting/highlightjs-default-light.css -------------------------------------------------------------------------------- /frontend/css/traceback_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/traceback_popup.scss -------------------------------------------------------------------------------- /frontend/css/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/css/utils.scss -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/frontend/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/pyproject.toml -------------------------------------------------------------------------------- /raw_icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/README.md -------------------------------------------------------------------------------- /raw_icons/brand/alipay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/alipay.svg -------------------------------------------------------------------------------- /raw_icons/brand/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/amazon.svg -------------------------------------------------------------------------------- /raw_icons/brand/amd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/amd.svg -------------------------------------------------------------------------------- /raw_icons/brand/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/android.svg -------------------------------------------------------------------------------- /raw_icons/brand/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/apple.svg -------------------------------------------------------------------------------- /raw_icons/brand/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/bing.svg -------------------------------------------------------------------------------- /raw_icons/brand/bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/bluesky.svg -------------------------------------------------------------------------------- /raw_icons/brand/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/bluetooth.svg -------------------------------------------------------------------------------- /raw_icons/brand/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/chrome.svg -------------------------------------------------------------------------------- /raw_icons/brand/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/discord.svg -------------------------------------------------------------------------------- /raw_icons/brand/dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/dropbox.svg -------------------------------------------------------------------------------- /raw_icons/brand/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/edge.svg -------------------------------------------------------------------------------- /raw_icons/brand/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/facebook.svg -------------------------------------------------------------------------------- /raw_icons/brand/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/firefox.svg -------------------------------------------------------------------------------- /raw_icons/brand/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/git.svg -------------------------------------------------------------------------------- /raw_icons/brand/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/github.svg -------------------------------------------------------------------------------- /raw_icons/brand/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/gitlab.svg -------------------------------------------------------------------------------- /raw_icons/brand/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/google.svg -------------------------------------------------------------------------------- /raw_icons/brand/google_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/google_play.svg -------------------------------------------------------------------------------- /raw_icons/brand/head/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/head/android.svg -------------------------------------------------------------------------------- /raw_icons/brand/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/instagram.svg -------------------------------------------------------------------------------- /raw_icons/brand/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/linkedin.svg -------------------------------------------------------------------------------- /raw_icons/brand/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/mastodon.svg -------------------------------------------------------------------------------- /raw_icons/brand/meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/meta.svg -------------------------------------------------------------------------------- /raw_icons/brand/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/microsoft.svg -------------------------------------------------------------------------------- /raw_icons/brand/nvidia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/nvidia.svg -------------------------------------------------------------------------------- /raw_icons/brand/opencollective.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/opencollective.svg -------------------------------------------------------------------------------- /raw_icons/brand/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/paypal.svg -------------------------------------------------------------------------------- /raw_icons/brand/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/pinterest.svg -------------------------------------------------------------------------------- /raw_icons/brand/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/reddit.svg -------------------------------------------------------------------------------- /raw_icons/brand/safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/safari.svg -------------------------------------------------------------------------------- /raw_icons/brand/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/signal.svg -------------------------------------------------------------------------------- /raw_icons/brand/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/skype.svg -------------------------------------------------------------------------------- /raw_icons/brand/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/slack.svg -------------------------------------------------------------------------------- /raw_icons/brand/snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/snapchat.svg -------------------------------------------------------------------------------- /raw_icons/brand/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/spotify.svg -------------------------------------------------------------------------------- /raw_icons/brand/stack_overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/stack_overflow.svg -------------------------------------------------------------------------------- /raw_icons/brand/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/steam.svg -------------------------------------------------------------------------------- /raw_icons/brand/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/stripe.svg -------------------------------------------------------------------------------- /raw_icons/brand/substack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/substack.svg -------------------------------------------------------------------------------- /raw_icons/brand/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/telegram.svg -------------------------------------------------------------------------------- /raw_icons/brand/threads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/threads.svg -------------------------------------------------------------------------------- /raw_icons/brand/tiktok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/tiktok.svg -------------------------------------------------------------------------------- /raw_icons/brand/trello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/trello.svg -------------------------------------------------------------------------------- /raw_icons/brand/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/twitch.svg -------------------------------------------------------------------------------- /raw_icons/brand/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/twitter.svg -------------------------------------------------------------------------------- /raw_icons/brand/ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/ubuntu.svg -------------------------------------------------------------------------------- /raw_icons/brand/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/vimeo.svg -------------------------------------------------------------------------------- /raw_icons/brand/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/wechat.svg -------------------------------------------------------------------------------- /raw_icons/brand/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/whatsapp.svg -------------------------------------------------------------------------------- /raw_icons/brand/wikipedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/wikipedia.svg -------------------------------------------------------------------------------- /raw_icons/brand/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/windows.svg -------------------------------------------------------------------------------- /raw_icons/brand/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/x.svg -------------------------------------------------------------------------------- /raw_icons/brand/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/brand/youtube.svg -------------------------------------------------------------------------------- /raw_icons/custom-material-icons/fill/twinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/custom-material-icons/fill/twinkle.svg -------------------------------------------------------------------------------- /raw_icons/custom-material-icons/twinkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/custom-material-icons/twinkle.svg -------------------------------------------------------------------------------- /raw_icons/rio/color/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/color/logo.svg -------------------------------------------------------------------------------- /raw_icons/rio/color/logo_and_text_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/color/logo_and_text_horizontal.svg -------------------------------------------------------------------------------- /raw_icons/rio/color/logo_and_text_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/color/logo_and_text_vertical.svg -------------------------------------------------------------------------------- /raw_icons/rio/fill/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/fill/logo.svg -------------------------------------------------------------------------------- /raw_icons/rio/fill/logo_and_text_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/fill/logo_and_text_horizontal.svg -------------------------------------------------------------------------------- /raw_icons/rio/fill/logo_and_text_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/fill/logo_and_text_vertical.svg -------------------------------------------------------------------------------- /raw_icons/rio/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/logo.svg -------------------------------------------------------------------------------- /raw_icons/rio/logo_and_text_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/logo_and_text_horizontal.svg -------------------------------------------------------------------------------- /raw_icons/rio/logo_and_text_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/rio/logo_and_text_vertical.svg -------------------------------------------------------------------------------- /raw_icons/styling/corner_round_bottom_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/styling/corner_round_bottom_left.svg -------------------------------------------------------------------------------- /raw_icons/styling/corner_round_bottom_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/styling/corner_round_bottom_right.svg -------------------------------------------------------------------------------- /raw_icons/styling/corner_round_top_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/styling/corner_round_top_left.svg -------------------------------------------------------------------------------- /raw_icons/styling/corner_round_top_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/raw_icons/styling/corner_round_top_right.svg -------------------------------------------------------------------------------- /rio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/__init__.py -------------------------------------------------------------------------------- /rio/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/__main__.py -------------------------------------------------------------------------------- /rio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/app.py -------------------------------------------------------------------------------- /rio/app_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/app_server/__init__.py -------------------------------------------------------------------------------- /rio/app_server/abstract_app_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/app_server/abstract_app_server.py -------------------------------------------------------------------------------- /rio/app_server/fastapi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/app_server/fastapi_server.py -------------------------------------------------------------------------------- /rio/app_server/testing_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/app_server/testing_server.py -------------------------------------------------------------------------------- /rio/arequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/arequests.py -------------------------------------------------------------------------------- /rio/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets.py -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto Mono/LICENSE.txt -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto Mono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto Mono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto Mono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto Mono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto Mono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto Mono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto Mono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto Mono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /rio/assets/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /rio/assets/hosted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/hosted/README.md -------------------------------------------------------------------------------- /rio/assets/hosted/rio_logos/logo_and_text_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/hosted/rio_logos/logo_and_text_horizontal.png -------------------------------------------------------------------------------- /rio/assets/hosted/rio_logos/rio_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/hosted/rio_logos/rio_logo_square.png -------------------------------------------------------------------------------- /rio/assets/icon_sets/brand.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/icon_sets/brand.tar.xz -------------------------------------------------------------------------------- /rio/assets/icon_sets/material.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/icon_sets/material.tar.xz -------------------------------------------------------------------------------- /rio/assets/icon_sets/rio.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/icon_sets/rio.tar.xz -------------------------------------------------------------------------------- /rio/assets/icon_sets/styling.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/assets/icon_sets/styling.tar.xz -------------------------------------------------------------------------------- /rio/byte_serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/byte_serving.py -------------------------------------------------------------------------------- /rio/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/__init__.py -------------------------------------------------------------------------------- /rio/cli/cloud_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/cloud_commands.py -------------------------------------------------------------------------------- /rio/cli/project_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/project_setup.py -------------------------------------------------------------------------------- /rio/cli/run_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/__init__.py -------------------------------------------------------------------------------- /rio/cli/run_project/app_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/app_loading.py -------------------------------------------------------------------------------- /rio/cli/run_project/arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/arbiter.py -------------------------------------------------------------------------------- /rio/cli/run_project/file_watcher_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/file_watcher_worker.py -------------------------------------------------------------------------------- /rio/cli/run_project/run_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/run_models.py -------------------------------------------------------------------------------- /rio/cli/run_project/uvicorn_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/uvicorn_worker.py -------------------------------------------------------------------------------- /rio/cli/run_project/webview_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cli/run_project/webview_worker.py -------------------------------------------------------------------------------- /rio/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/color.py -------------------------------------------------------------------------------- /rio/component_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/component_meta.py -------------------------------------------------------------------------------- /rio/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/__init__.py -------------------------------------------------------------------------------- /rio/components/app_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/app_root.py -------------------------------------------------------------------------------- /rio/components/auto_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/auto_form.py -------------------------------------------------------------------------------- /rio/components/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/banner.py -------------------------------------------------------------------------------- /rio/components/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/button.py -------------------------------------------------------------------------------- /rio/components/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/calendar.py -------------------------------------------------------------------------------- /rio/components/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/card.py -------------------------------------------------------------------------------- /rio/components/checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/checkbox.py -------------------------------------------------------------------------------- /rio/components/class_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/class_container.py -------------------------------------------------------------------------------- /rio/components/code_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/code_block.py -------------------------------------------------------------------------------- /rio/components/code_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/code_explorer.py -------------------------------------------------------------------------------- /rio/components/color_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/color_picker.py -------------------------------------------------------------------------------- /rio/components/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/component.py -------------------------------------------------------------------------------- /rio/components/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/container.py -------------------------------------------------------------------------------- /rio/components/date_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/date_input.py -------------------------------------------------------------------------------- /rio/components/default_root_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/default_root_component.py -------------------------------------------------------------------------------- /rio/components/devel_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/devel_component.py -------------------------------------------------------------------------------- /rio/components/dialog_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/dialog_container.py -------------------------------------------------------------------------------- /rio/components/drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/drawer.py -------------------------------------------------------------------------------- /rio/components/dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/dropdown.py -------------------------------------------------------------------------------- /rio/components/error_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/error_placeholder.py -------------------------------------------------------------------------------- /rio/components/file_picker_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/file_picker_area.py -------------------------------------------------------------------------------- /rio/components/flow_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/flow_container.py -------------------------------------------------------------------------------- /rio/components/form_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/form_builder.py -------------------------------------------------------------------------------- /rio/components/fundamental_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/fundamental_component.py -------------------------------------------------------------------------------- /rio/components/graph_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/graph_editor.py -------------------------------------------------------------------------------- /rio/components/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/grid.py -------------------------------------------------------------------------------- /rio/components/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/html.py -------------------------------------------------------------------------------- /rio/components/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/icon.py -------------------------------------------------------------------------------- /rio/components/icon_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/icon_button.py -------------------------------------------------------------------------------- /rio/components/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/image.py -------------------------------------------------------------------------------- /rio/components/key_event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/key_event_listener.py -------------------------------------------------------------------------------- /rio/components/keyboard_focusable_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/keyboard_focusable_components.py -------------------------------------------------------------------------------- /rio/components/labeled_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/labeled_column.py -------------------------------------------------------------------------------- /rio/components/linear_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/linear_containers.py -------------------------------------------------------------------------------- /rio/components/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/link.py -------------------------------------------------------------------------------- /rio/components/list_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/list_items.py -------------------------------------------------------------------------------- /rio/components/list_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/list_view.py -------------------------------------------------------------------------------- /rio/components/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/markdown.py -------------------------------------------------------------------------------- /rio/components/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/media_player.py -------------------------------------------------------------------------------- /rio/components/mouse_event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/mouse_event_listener.py -------------------------------------------------------------------------------- /rio/components/multi_line_text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/multi_line_text_input.py -------------------------------------------------------------------------------- /rio/components/node_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/node_input.py -------------------------------------------------------------------------------- /rio/components/node_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/node_output.py -------------------------------------------------------------------------------- /rio/components/number_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/number_input.py -------------------------------------------------------------------------------- /rio/components/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/overlay.py -------------------------------------------------------------------------------- /rio/components/page_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/page_view.py -------------------------------------------------------------------------------- /rio/components/pdf_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/pdf_viewer.py -------------------------------------------------------------------------------- /rio/components/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/plot.py -------------------------------------------------------------------------------- /rio/components/pointer_event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/pointer_event_listener.py -------------------------------------------------------------------------------- /rio/components/popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/popup.py -------------------------------------------------------------------------------- /rio/components/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/progress_bar.py -------------------------------------------------------------------------------- /rio/components/progress_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/progress_circle.py -------------------------------------------------------------------------------- /rio/components/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/rectangle.py -------------------------------------------------------------------------------- /rio/components/revealer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/revealer.py -------------------------------------------------------------------------------- /rio/components/root_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/root_components.py -------------------------------------------------------------------------------- /rio/components/scroll_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/scroll_container.py -------------------------------------------------------------------------------- /rio/components/scroll_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/scroll_target.py -------------------------------------------------------------------------------- /rio/components/separator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/separator.py -------------------------------------------------------------------------------- /rio/components/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/slider.py -------------------------------------------------------------------------------- /rio/components/slideshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/slideshow.py -------------------------------------------------------------------------------- /rio/components/spacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/spacer.py -------------------------------------------------------------------------------- /rio/components/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/stack.py -------------------------------------------------------------------------------- /rio/components/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/switch.py -------------------------------------------------------------------------------- /rio/components/switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/switcher.py -------------------------------------------------------------------------------- /rio/components/switcher_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/switcher_bar.py -------------------------------------------------------------------------------- /rio/components/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/table.py -------------------------------------------------------------------------------- /rio/components/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/tabs.py -------------------------------------------------------------------------------- /rio/components/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/text.py -------------------------------------------------------------------------------- /rio/components/text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/text_input.py -------------------------------------------------------------------------------- /rio/components/theme_context_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/theme_context_switcher.py -------------------------------------------------------------------------------- /rio/components/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/tooltip.py -------------------------------------------------------------------------------- /rio/components/tree_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/tree_items.py -------------------------------------------------------------------------------- /rio/components/tree_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/tree_view.py -------------------------------------------------------------------------------- /rio/components/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/website.py -------------------------------------------------------------------------------- /rio/components/webview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/components/webview.py -------------------------------------------------------------------------------- /rio/cursor_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/cursor_style.py -------------------------------------------------------------------------------- /rio/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/data_models.py -------------------------------------------------------------------------------- /rio/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/debug/dev_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/__init__.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/component_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/component_attributes.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/component_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/component_picker.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/component_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/component_tree.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/deploy_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/deploy_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/dev_tools_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/dev_tools_connector.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/dev_tools_sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/dev_tools_sidebar.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/docs_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/docs_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/icons_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/icons_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/layout_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/layout_display.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/layout_explainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/layout_explainer.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/layout_subpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/layout_subpage.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/project_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/project_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/rio_developer_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/rio_developer_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/sample_icons_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/sample_icons_grid.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/theme_picker_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/theme_picker_page.py -------------------------------------------------------------------------------- /rio/debug/dev_tools/tree_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/dev_tools/tree_page.py -------------------------------------------------------------------------------- /rio/debug/layouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/layouter.py -------------------------------------------------------------------------------- /rio/debug/monkeypatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/debug/monkeypatches.py -------------------------------------------------------------------------------- /rio/deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/deprecations.py -------------------------------------------------------------------------------- /rio/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/dialog.py -------------------------------------------------------------------------------- /rio/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/docs.py -------------------------------------------------------------------------------- /rio/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/errors.py -------------------------------------------------------------------------------- /rio/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/event.py -------------------------------------------------------------------------------- /rio/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/extension.py -------------------------------------------------------------------------------- /rio/extension_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/extension_event.py -------------------------------------------------------------------------------- /rio/fills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/fills.py -------------------------------------------------------------------------------- /rio/global_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/global_state.py -------------------------------------------------------------------------------- /rio/icon_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/icon_registry.py -------------------------------------------------------------------------------- /rio/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/icons.py -------------------------------------------------------------------------------- /rio/inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/inspection.py -------------------------------------------------------------------------------- /rio/language_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/language_info.py -------------------------------------------------------------------------------- /rio/maybes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/maybes.py -------------------------------------------------------------------------------- /rio/nice_traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/nice_traceback.py -------------------------------------------------------------------------------- /rio/observables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/__init__.py -------------------------------------------------------------------------------- /rio/observables/component_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/component_property.py -------------------------------------------------------------------------------- /rio/observables/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/containers.py -------------------------------------------------------------------------------- /rio/observables/dataclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/dataclass.py -------------------------------------------------------------------------------- /rio/observables/observable_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/observable_property.py -------------------------------------------------------------------------------- /rio/observables/session_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/session_attachments.py -------------------------------------------------------------------------------- /rio/observables/session_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/observables/session_property.py -------------------------------------------------------------------------------- /rio/patches_for_3rd_party_stuff/IocpProactor_accept_locals_accept_coro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/patches_for_3rd_party_stuff/IocpProactor_accept_locals_accept_coro.py -------------------------------------------------------------------------------- /rio/patches_for_3rd_party_stuff/ProactorBasePipeTransport_call_connection_lost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/patches_for_3rd_party_stuff/ProactorBasePipeTransport_call_connection_lost.py -------------------------------------------------------------------------------- /rio/patches_for_3rd_party_stuff/_OverlappedFuture_cancel_overlapped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/patches_for_3rd_party_stuff/_OverlappedFuture_cancel_overlapped.py -------------------------------------------------------------------------------- /rio/patches_for_3rd_party_stuff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/patches_for_3rd_party_stuff/__init__.py -------------------------------------------------------------------------------- /rio/path_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/path_match.py -------------------------------------------------------------------------------- /rio/project_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/project_config.py -------------------------------------------------------------------------------- /rio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/routing.py -------------------------------------------------------------------------------- /rio/self_serializing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/self_serializing.py -------------------------------------------------------------------------------- /rio/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/serialization.py -------------------------------------------------------------------------------- /rio/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/session.py -------------------------------------------------------------------------------- /rio/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/README.md -------------------------------------------------------------------------------- /rio/snippets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/__init__.py -------------------------------------------------------------------------------- /rio/snippets/project_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/project_template.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/other-examples/simple_counter_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/other-examples/simple_counter_app.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/components/chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/components/chat_message.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/components/chat_suggestion_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/components/chat_suggestion_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/components/empty_chat_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/components/empty_chat_placeholder.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/components/generating_response_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/components/generating_response_placeholder.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/conversation.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/pages/chat_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/pages/chat_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-AI Chatbot/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-AI Chatbot/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/navbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/navbar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/news_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/news_article.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/root_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/root_component.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/testimonial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/testimonial.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/components/user_sign_up_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/components/user_sign_up_form.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/pages/app_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/pages/app_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/pages/app_page/about_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/pages/app_page/about_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/pages/app_page/home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/pages/app_page/home_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/pages/app_page/news_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/pages/app_page/news_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/pages/login_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/pages/login_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/persistence.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Authentication/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Authentication/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/assets/cryptos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/assets/cryptos.csv -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/assets/testimonial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/assets/testimonial.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/balance_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/balance_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/colored_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/colored_rectangle.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/content_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/content_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/contribution_wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/contribution_wanted.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/crypto_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/crypto_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/crypto_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/crypto_chart.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/hamburger_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/hamburger_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/major_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/major_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/nav_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/nav_bar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/notification_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/notification_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/overlay_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/overlay_bar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/portfolio_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/portfolio_distribution.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/portfolio_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/portfolio_overview.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/rio_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/rio_logo.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/root_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/root_component.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/styled_portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/styled_portfolio.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/styled_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/styled_transaction.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/components/transactions_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/components/transactions_overview.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/constants.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/dashboard_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/dashboard_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/statistics_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/statistics_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/transaction_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/pages/transaction_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/theme.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Crypto Dashboard/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Crypto Dashboard/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_1.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_10.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_11.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_12.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_13.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_2.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_3.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_4.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_5.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_6.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_7.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_8.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/assets/user_9.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/colored_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/colored_rectangle.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/content_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/content_container.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/date_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/date_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/date_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/date_selector.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/filter_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/filter_row.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/home_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/home_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/hover_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/hover_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/inbox_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/inbox_email.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/inbox_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/inbox_header.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/mail_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/mail_content.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/message_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/message_preview.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/multi_select_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/multi_select_dropdown.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/multi_select_dropdown_change_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/multi_select_dropdown_change_event.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/popup_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/popup_rectangle.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/recent_sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/recent_sales.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/revenue_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/revenue_graph.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/root_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/root_component.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/section_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/section_switcher.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/selector_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/selector_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/side_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/side_bar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/single_select_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/single_select_dropdown.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/single_select_dropdown_styled_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/single_select_dropdown_styled_header.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/stroke_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/stroke_rectangle.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/styled_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/styled_rectangle.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/toggle_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/toggle_group.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/top_countries_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/top_countries_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/components/user_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/components/user_table.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/constants.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/dashboard_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/dashboard_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/inbox_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/inbox_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/general_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/general_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/members_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/members_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/notifications_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/settings_page/notifications_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/users_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/pages/users_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/theme.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Dashboard Better Name/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Dashboard Better Name/utils.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Empty/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Empty/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Empty/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Empty/pages/sample_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Empty/pages/sample_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Empty/root_init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Empty/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Empty/thumbnail.svg -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/basic_patterns/background_gray_2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/basic_patterns/background_gray_2_1.svg -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_1.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_2.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_3.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_4.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_5.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_6.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/blog_authors/blog_author_7.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/brands/discord_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/brands/discord_logo.svg -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/brands/github_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/brands/github_logo.svg -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_1.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_2.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_3.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_4.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_5.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/assets/testimonials/testimonial_6.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/author_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/author_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/blog_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/blog_header.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/blog_major.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/blog_major.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/blog_minor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/blog_minor.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/blog_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/blog_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/bullet_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/bullet_point.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/card_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/card_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/custom_switcher_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/custom_switcher_bar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/fake_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/fake_link.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/faq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/faq.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/faq_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/faq_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/footer.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/get_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/get_started.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/goody_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/goody_column.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/hero_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/hero_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/hero_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/hero_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/image_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/image_placeholder.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/major_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/major_column.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/navbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/navbar.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/outlined_colored_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/outlined_colored_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/outlined_neutral_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/outlined_neutral_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/pricing_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/pricing_cards.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/pricing_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/pricing_section.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/root_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/root_component.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/service_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/service_power.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/service_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/service_speed.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/subscribe_input_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/subscribe_input_button.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/testimonial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/testimonial.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/components/testimonials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/components/testimonials.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/adventure_in_alps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/adventure_in_alps.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/beauty_of_sunsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/beauty_of_sunsets.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/blog_home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/blog_home_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/climate_change_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/climate_change_effects.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/most_beautiful_beaches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/most_beautiful_beaches.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/secrets_of_photography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/secrets_of_photography.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/water_and_healing_power_of_stones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/water_and_healing_power_of_stones.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/work_life_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/blog_page/work_life_balance.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/landing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/landing_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/pages/pricing_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/pages/pricing_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/theme.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Multipage Website/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Multipage Website/utils.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/assets/sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/assets/sales_data.csv -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_1.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_2.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/assets/top_performer_3.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/components/donut_chart_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/components/donut_chart_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/components/line_chart_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/components/line_chart_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/components/rate_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/components/rate_card.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/components/top_performers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/components/top_performers.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/pages/sales_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/pages/sales_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/persistence.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Sales Dashboard/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Sales Dashboard/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/pages/crud_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/pages/crud_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/persistence.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Simple CRUD/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Simple CRUD/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/components/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/components/field.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/pages/tic_tac_toe_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/pages/tic_tac_toe_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/root_init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Tic-Tac-Toe/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Tic-Tac-Toe/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/README.md -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/components/new_todo_item_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/components/new_todo_item_input.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/components/todo_item_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/components/todo_item_component.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/data_models.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/meta.json -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/pages/todo_list_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/pages/todo_list_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/root_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/root_init.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/project-template-Todo App/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/project-template-Todo App/thumbnail.png -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-2/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-2/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-2/pages/tic_tac_toe_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-2/pages/tic_tac_toe_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/components/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/components/field.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/pages/tic_tac_toe_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-3/pages/tic_tac_toe_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/components/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/components/field.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/pages/tic_tac_toe_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-4/pages/tic_tac_toe_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/components/__init__.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/components/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/components/field.py -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/pages/tic_tac_toe_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet-files/tutorial-tic-tac-toe-part-5/pages/tic_tac_toe_page.py -------------------------------------------------------------------------------- /rio/snippets/snippet_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/snippets/snippet_manager.py -------------------------------------------------------------------------------- /rio/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/testing/__init__.py -------------------------------------------------------------------------------- /rio/testing/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/testing/base_client.py -------------------------------------------------------------------------------- /rio/testing/browser_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/testing/browser_client.py -------------------------------------------------------------------------------- /rio/testing/dummy_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/testing/dummy_client.py -------------------------------------------------------------------------------- /rio/text_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/text_style.py -------------------------------------------------------------------------------- /rio/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/theme.py -------------------------------------------------------------------------------- /rio/tools/create_code_for_icon_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/tools/create_code_for_icon_set.py -------------------------------------------------------------------------------- /rio/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/transports/__init__.py -------------------------------------------------------------------------------- /rio/transports/abstract_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/transports/abstract_transport.py -------------------------------------------------------------------------------- /rio/transports/fastapi_websocket_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/transports/fastapi_websocket_transport.py -------------------------------------------------------------------------------- /rio/transports/message_recorder_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/transports/message_recorder_transport.py -------------------------------------------------------------------------------- /rio/transports/multi_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/transports/multi_transport.py -------------------------------------------------------------------------------- /rio/url_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/url_pattern.py -------------------------------------------------------------------------------- /rio/user_settings_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/user_settings_module.py -------------------------------------------------------------------------------- /rio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/utils.py -------------------------------------------------------------------------------- /rio/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/version.py -------------------------------------------------------------------------------- /rio/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/warnings.py -------------------------------------------------------------------------------- /rio/weak_key_id_default_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/weak_key_id_default_dict.py -------------------------------------------------------------------------------- /rio/webview_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/rio/webview_shim.py -------------------------------------------------------------------------------- /scripts/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/_utils.py -------------------------------------------------------------------------------- /scripts/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/benchmark.py -------------------------------------------------------------------------------- /scripts/build_icon_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/build_icon_set.py -------------------------------------------------------------------------------- /scripts/build_rio_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/build_rio_api_client.py -------------------------------------------------------------------------------- /scripts/cloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/cloc.sh -------------------------------------------------------------------------------- /scripts/code_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/code_coverage.py -------------------------------------------------------------------------------- /scripts/generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/generate_stubs.py -------------------------------------------------------------------------------- /scripts/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/publish.py -------------------------------------------------------------------------------- /scripts/update_js_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/scripts/update_js_dependencies.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_app_build.py -------------------------------------------------------------------------------- /tests/test_arequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_arequests.py -------------------------------------------------------------------------------- /tests/test_attribute_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_attribute_bindings.py -------------------------------------------------------------------------------- /tests/test_cli/test_app_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_cli/test_app_loading.py -------------------------------------------------------------------------------- /tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_components.py -------------------------------------------------------------------------------- /tests/test_custom_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_custom_components.py -------------------------------------------------------------------------------- /tests/test_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_documentation.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_extensions.py -------------------------------------------------------------------------------- /tests/test_file_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_file_info.py -------------------------------------------------------------------------------- /tests/test_frontend/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/conftest.py -------------------------------------------------------------------------------- /tests/test_frontend/test_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_dialogs.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_dev_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_dev_tools.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_flow_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_flow_container.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_html_and_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_html_and_body.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_linear_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_linear_containers.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_popup.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_scroll_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_scroll_container.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_stack.py -------------------------------------------------------------------------------- /tests/test_frontend/test_layouting/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_layouting/test_text.py -------------------------------------------------------------------------------- /tests/test_frontend/test_list_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_list_view.py -------------------------------------------------------------------------------- /tests/test_frontend/test_mouse_event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_mouse_event_listener.py -------------------------------------------------------------------------------- /tests/test_frontend/test_pointer_event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_frontend/test_pointer_event_listener.py -------------------------------------------------------------------------------- /tests/test_guardrails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_guardrails.py -------------------------------------------------------------------------------- /tests/test_observables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_observables.py -------------------------------------------------------------------------------- /tests/test_page_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_page_views.py -------------------------------------------------------------------------------- /tests/test_project_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_project_templates.py -------------------------------------------------------------------------------- /tests/test_reconciliation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_reconciliation.py -------------------------------------------------------------------------------- /tests/test_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_refresh.py -------------------------------------------------------------------------------- /tests/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_routing.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_table_data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_table_data_ingestion.py -------------------------------------------------------------------------------- /tests/test_table_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_table_indexing.py -------------------------------------------------------------------------------- /tests/test_testing_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_testing_tools.py -------------------------------------------------------------------------------- /tests/test_url_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_url_patterns.py -------------------------------------------------------------------------------- /tests/test_user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_user_settings.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/layouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/utils/layouting.py -------------------------------------------------------------------------------- /tests/utils/ruff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tests/utils/ruff.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rio-labs/rio/HEAD/vite.config.mjs --------------------------------------------------------------------------------