solara-ui 1.31.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- prefix/etc/jupyter/jupyter_notebook_config.d/solara.json +7 -0
- prefix/etc/jupyter/jupyter_server_config.d/solara.json +7 -0
- solara/__init__.py +124 -0
- solara/__main__.py +734 -0
- solara/alias.py +6 -0
- solara/autorouting.py +546 -0
- solara/cache.py +303 -0
- solara/checks.html +71 -0
- solara/checks.py +224 -0
- solara/comm.py +28 -0
- solara/components/__init__.py +59 -0
- solara/components/alert.py +155 -0
- solara/components/applayout.py +393 -0
- solara/components/button.py +85 -0
- solara/components/card.py +87 -0
- solara/components/checkbox.py +50 -0
- solara/components/code_highlight_css.py +11 -0
- solara/components/code_highlight_css.vue +63 -0
- solara/components/columns.py +159 -0
- solara/components/component_vue.py +110 -0
- solara/components/cross_filter.py +335 -0
- solara/components/dataframe.py +546 -0
- solara/components/datatable.py +221 -0
- solara/components/datatable.vue +175 -0
- solara/components/details.py +21 -0
- solara/components/download.vue +35 -0
- solara/components/echarts.py +75 -0
- solara/components/echarts.vue +128 -0
- solara/components/figure_altair.py +39 -0
- solara/components/file_browser.py +182 -0
- solara/components/file_download.py +199 -0
- solara/components/file_drop.py +139 -0
- solara/components/file_drop.vue +83 -0
- solara/components/file_list_widget.vue +78 -0
- solara/components/head.py +27 -0
- solara/components/head_tag.py +49 -0
- solara/components/head_tag.vue +60 -0
- solara/components/image.py +173 -0
- solara/components/input.py +436 -0
- solara/components/link.py +55 -0
- solara/components/markdown.py +378 -0
- solara/components/markdown_editor.py +25 -0
- solara/components/markdown_editor.vue +362 -0
- solara/components/matplotlib.py +74 -0
- solara/components/meta.py +47 -0
- solara/components/misc.py +333 -0
- solara/components/pivot_table.py +258 -0
- solara/components/pivot_table.vue +158 -0
- solara/components/progress.py +47 -0
- solara/components/select.py +182 -0
- solara/components/select.vue +27 -0
- solara/components/slider.py +442 -0
- solara/components/slider_date.vue +56 -0
- solara/components/spinner-solara.vue +105 -0
- solara/components/spinner.py +30 -0
- solara/components/sql_code.py +33 -0
- solara/components/sql_code.vue +128 -0
- solara/components/style.py +105 -0
- solara/components/switch.py +68 -0
- solara/components/tab_navigation.py +37 -0
- solara/components/title.py +90 -0
- solara/components/title.vue +38 -0
- solara/components/togglebuttons.py +200 -0
- solara/components/tooltip.py +61 -0
- solara/datatypes.py +143 -0
- solara/express.py +241 -0
- solara/hooks/__init__.py +4 -0
- solara/hooks/dataframe.py +99 -0
- solara/hooks/misc.py +263 -0
- solara/hooks/use_reactive.py +129 -0
- solara/hooks/use_thread.py +129 -0
- solara/kitchensink.py +8 -0
- solara/lab/__init__.py +34 -0
- solara/lab/components/__init__.py +6 -0
- solara/lab/components/chat.py +203 -0
- solara/lab/components/confirmation_dialog.py +163 -0
- solara/lab/components/cross_filter.py +7 -0
- solara/lab/components/input_date.py +298 -0
- solara/lab/components/menu.py +181 -0
- solara/lab/components/menu.vue +38 -0
- solara/lab/components/tabs.py +274 -0
- solara/lab/components/theming.py +98 -0
- solara/lab/components/theming.vue +72 -0
- solara/lab/hooks/__init__.py +0 -0
- solara/lab/hooks/dataframe.py +12 -0
- solara/lab/toestand.py +3 -0
- solara/lab/utils/__init__.py +2 -0
- solara/lab/utils/cookies.py +5 -0
- solara/lab/utils/dataframe.py +115 -0
- solara/lab/utils/headers.py +5 -0
- solara/layout.py +44 -0
- solara/lifecycle.py +46 -0
- solara/minisettings.py +133 -0
- solara/py.typed +0 -0
- solara/reactive.py +93 -0
- solara/routing.py +268 -0
- solara/scope/__init__.py +88 -0
- solara/scope/types.py +55 -0
- solara/server/__init__.py +0 -0
- solara/server/app.py +491 -0
- solara/server/assets/custom.css +1 -0
- solara/server/assets/custom.js +1 -0
- solara/server/assets/favicon.png +0 -0
- solara/server/assets/favicon.svg +5 -0
- solara/server/assets/style.css +1665 -0
- solara/server/assets/theme-dark.css +437 -0
- solara/server/assets/theme-light.css +420 -0
- solara/server/assets/theme.js +3 -0
- solara/server/cdn_helper.py +77 -0
- solara/server/esm.py +69 -0
- solara/server/fastapi.py +5 -0
- solara/server/flask.py +286 -0
- solara/server/jupyter/__init__.py +2 -0
- solara/server/jupyter/cdn_handler.py +28 -0
- solara/server/jupyter/server_extension.py +29 -0
- solara/server/jupytertools.py +46 -0
- solara/server/kernel.py +338 -0
- solara/server/kernel_context.py +357 -0
- solara/server/patch.py +552 -0
- solara/server/reload.py +242 -0
- solara/server/server.py +456 -0
- solara/server/settings.py +215 -0
- solara/server/shell.py +251 -0
- solara/server/starlette.py +601 -0
- solara/server/static/ansi.js +270 -0
- solara/server/static/highlight-dark.css +82 -0
- solara/server/static/highlight.css +43 -0
- solara/server/static/main-vuetify.js +260 -0
- solara/server/static/main.js +163 -0
- solara/server/static/solara_bootstrap.py +129 -0
- solara/server/static/sun.svg +23 -0
- solara/server/static/webworker.js +42 -0
- solara/server/telemetry.py +212 -0
- solara/server/templates/index.html.j2 +1 -0
- solara/server/templates/loader-plain.css +11 -0
- solara/server/templates/loader-plain.html +20 -0
- solara/server/templates/loader-solara.css +111 -0
- solara/server/templates/loader-solara.html +40 -0
- solara/server/templates/plain.html +82 -0
- solara/server/templates/solara.html.j2 +446 -0
- solara/server/threaded.py +75 -0
- solara/server/utils.py +30 -0
- solara/server/websocket.py +45 -0
- solara/settings.py +56 -0
- solara/tasks.py +837 -0
- solara/template/button.py +16 -0
- solara/template/markdown.py +42 -0
- solara/template/portal/.flake8 +6 -0
- solara/template/portal/.pre-commit-config.yaml +28 -0
- solara/template/portal/LICENSE +21 -0
- solara/template/portal/Procfile +7 -0
- solara/template/portal/mypy.ini +3 -0
- solara/template/portal/pyproject.toml +26 -0
- solara/template/portal/solara_portal/__init__.py +4 -0
- solara/template/portal/solara_portal/components/__init__.py +2 -0
- solara/template/portal/solara_portal/components/article.py +28 -0
- solara/template/portal/solara_portal/components/data.py +28 -0
- solara/template/portal/solara_portal/components/header.py +6 -0
- solara/template/portal/solara_portal/components/layout.py +6 -0
- solara/template/portal/solara_portal/content/articles/equis-in-vidi.md +85 -0
- solara/template/portal/solara_portal/content/articles/substiterat-vati.md +70 -0
- solara/template/portal/solara_portal/data.py +60 -0
- solara/template/portal/solara_portal/pages/__init__.py +67 -0
- solara/template/portal/solara_portal/pages/article/__init__.py +26 -0
- solara/template/portal/solara_portal/pages/tabular.py +29 -0
- solara/template/portal/solara_portal/pages/viz/__init__.py +70 -0
- solara/template/portal/solara_portal/pages/viz/overview.py +14 -0
- solara/test/__init__.py +0 -0
- solara/test/pytest_plugin.py +697 -0
- solara/toestand.py +772 -0
- solara/util.py +308 -0
- solara/website/__init__.py +0 -0
- solara/website/assets/custom.css +468 -0
- solara/website/assets/images/logo-small.png +0 -0
- solara/website/assets/images/logo.svg +17 -0
- solara/website/assets/images/logo_white.svg +50 -0
- solara/website/assets/theme.js +8 -0
- solara/website/components/__init__.py +5 -0
- solara/website/components/algolia.vue +24 -0
- solara/website/components/algolia_api.vue +187 -0
- solara/website/components/docs.py +118 -0
- solara/website/components/header.py +72 -0
- solara/website/components/hero.py +15 -0
- solara/website/components/mailchimp.py +12 -0
- solara/website/components/mailchimp.vue +47 -0
- solara/website/components/markdown.py +30 -0
- solara/website/components/notebook.py +171 -0
- solara/website/pages/__init__.py +575 -0
- solara/website/pages/apps/__init__.py +16 -0
- solara/website/pages/apps/authorization/__init__.py +119 -0
- solara/website/pages/apps/authorization/admin.py +12 -0
- solara/website/pages/apps/authorization/users.py +12 -0
- solara/website/pages/apps/jupyter-dashboard-1.py +116 -0
- solara/website/pages/apps/layout-demo.py +40 -0
- solara/website/pages/apps/multipage/__init__.py +38 -0
- solara/website/pages/apps/multipage/page1.py +26 -0
- solara/website/pages/apps/multipage/page2.py +34 -0
- solara/website/pages/apps/scatter.py +136 -0
- solara/website/pages/apps/scrolling.py +63 -0
- solara/website/pages/apps/tutorial-streamlit.py +18 -0
- solara/website/pages/changelog/__init__.py +8 -0
- solara/website/pages/changelog/changelog.md +204 -0
- solara/website/pages/contact/__init__.py +8 -0
- solara/website/pages/contact/contact.md +17 -0
- solara/website/pages/doc_use_download.py +85 -0
- solara/website/pages/documentation/__init__.py +184 -0
- solara/website/pages/documentation/advanced/__init__.py +9 -0
- solara/website/pages/documentation/advanced/content/00-overview.md +1 -0
- solara/website/pages/documentation/advanced/content/10-howto/00-overview.md +6 -0
- solara/website/pages/documentation/advanced/content/10-howto/10-multipage.md +196 -0
- solara/website/pages/documentation/advanced/content/10-howto/20-layout.md +125 -0
- solara/website/pages/documentation/advanced/content/10-howto/30-testing.md +162 -0
- solara/website/pages/documentation/advanced/content/10-howto/31-debugging.md +69 -0
- solara/website/pages/documentation/advanced/content/10-howto/40-embed.md +49 -0
- solara/website/pages/documentation/advanced/content/10-howto/50-ipywidget_libraries.md +124 -0
- solara/website/pages/documentation/advanced/content/15-reference/00-overview.md +3 -0
- solara/website/pages/documentation/advanced/content/15-reference/40-static_files.md +31 -0
- solara/website/pages/documentation/advanced/content/15-reference/41-asset-files.md +36 -0
- solara/website/pages/documentation/advanced/content/15-reference/60-static-site-generation.md +59 -0
- solara/website/pages/documentation/advanced/content/15-reference/70-search.md +34 -0
- solara/website/pages/documentation/advanced/content/15-reference/80-reloading.md +34 -0
- solara/website/pages/documentation/advanced/content/15-reference/90-notebook-support.md +7 -0
- solara/website/pages/documentation/advanced/content/15-reference/95-caching.md +148 -0
- solara/website/pages/documentation/advanced/content/20-understanding/00-introduction.md +10 -0
- solara/website/pages/documentation/advanced/content/20-understanding/05-ipywidgets.md +35 -0
- solara/website/pages/documentation/advanced/content/20-understanding/06-ipyvuetify.md +42 -0
- solara/website/pages/documentation/advanced/content/20-understanding/10-reacton.md +28 -0
- solara/website/pages/documentation/advanced/content/20-understanding/12-reacton-basics.md +108 -0
- solara/website/pages/documentation/advanced/content/20-understanding/15-anatomy.md +23 -0
- solara/website/pages/documentation/advanced/content/20-understanding/17-rules-of-hooks.md +7 -0
- solara/website/pages/documentation/advanced/content/20-understanding/18-containers.md +166 -0
- solara/website/pages/documentation/advanced/content/20-understanding/20-solara.md +18 -0
- solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md +240 -0
- solara/website/pages/documentation/advanced/content/20-understanding/50-solara-server.md +97 -0
- solara/website/pages/documentation/advanced/content/20-understanding/60-voila.md +12 -0
- solara/website/pages/documentation/advanced/content/30-enterprise/00-overview.md +1 -0
- solara/website/pages/documentation/advanced/content/30-enterprise/10-oauth.md +171 -0
- solara/website/pages/documentation/advanced/content/40-development/00-overview.md +0 -0
- solara/website/pages/documentation/advanced/content/40-development/01-contribute.md +45 -0
- solara/website/pages/documentation/advanced/content/40-development/10-setup.md +76 -0
- solara/website/pages/documentation/api/__init__.py +19 -0
- solara/website/pages/documentation/api/cross_filter/__init__.py +9 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py +23 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_report.py +22 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_select.py +22 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py +22 -0
- solara/website/pages/documentation/api/hooks/__init__.py +9 -0
- solara/website/pages/documentation/api/hooks/use_cross_filter.py +25 -0
- solara/website/pages/documentation/api/hooks/use_dark_effective.py +12 -0
- solara/website/pages/documentation/api/hooks/use_effect.md +43 -0
- solara/website/pages/documentation/api/hooks/use_effect.py +9 -0
- solara/website/pages/documentation/api/hooks/use_exception.py +33 -0
- solara/website/pages/documentation/api/hooks/use_memo.md +16 -0
- solara/website/pages/documentation/api/hooks/use_memo.py +9 -0
- solara/website/pages/documentation/api/hooks/use_previous.py +33 -0
- solara/website/pages/documentation/api/hooks/use_reactive.py +16 -0
- solara/website/pages/documentation/api/hooks/use_state.py +10 -0
- solara/website/pages/documentation/api/hooks/use_state_or_update.py +69 -0
- solara/website/pages/documentation/api/hooks/use_thread.md +58 -0
- solara/website/pages/documentation/api/hooks/use_thread.py +44 -0
- solara/website/pages/documentation/api/hooks/use_trait_observe.py +12 -0
- solara/website/pages/documentation/api/routing/__init__.py +9 -0
- solara/website/pages/documentation/api/routing/generate_routes.py +10 -0
- solara/website/pages/documentation/api/routing/generate_routes_directory.py +10 -0
- solara/website/pages/documentation/api/routing/resolve_path.py +35 -0
- solara/website/pages/documentation/api/routing/route.py +31 -0
- solara/website/pages/documentation/api/routing/use_route.py +80 -0
- solara/website/pages/documentation/api/routing/use_router.py +16 -0
- solara/website/pages/documentation/api/utilities/__init__.py +9 -0
- solara/website/pages/documentation/api/utilities/component_vue.py +10 -0
- solara/website/pages/documentation/api/utilities/computed.py +16 -0
- solara/website/pages/documentation/api/utilities/display.py +16 -0
- solara/website/pages/documentation/api/utilities/get_kernel_id.py +16 -0
- solara/website/pages/documentation/api/utilities/get_session_id.py +16 -0
- solara/website/pages/documentation/api/utilities/memoize.py +35 -0
- solara/website/pages/documentation/api/utilities/on_kernel_start.py +27 -0
- solara/website/pages/documentation/api/utilities/reactive.py +16 -0
- solara/website/pages/documentation/api/utilities/widget.py +104 -0
- solara/website/pages/documentation/components/__init__.py +12 -0
- solara/website/pages/documentation/components/advanced/__init__.py +9 -0
- solara/website/pages/documentation/components/advanced/link.py +27 -0
- solara/website/pages/documentation/components/advanced/meta.py +20 -0
- solara/website/pages/documentation/components/advanced/style.py +45 -0
- solara/website/pages/documentation/components/common.py +9 -0
- solara/website/pages/documentation/components/data/__init__.py +9 -0
- solara/website/pages/documentation/components/data/dataframe.py +44 -0
- solara/website/pages/documentation/components/data/pivot_table.py +81 -0
- solara/website/pages/documentation/components/enterprise/__init__.py +9 -0
- solara/website/pages/documentation/components/enterprise/avatar.py +24 -0
- solara/website/pages/documentation/components/enterprise/avatar_menu.py +25 -0
- solara/website/pages/documentation/components/input/__init__.py +9 -0
- solara/website/pages/documentation/components/input/button.py +23 -0
- solara/website/pages/documentation/components/input/checkbox.py +10 -0
- solara/website/pages/documentation/components/input/file_browser.py +32 -0
- solara/website/pages/documentation/components/input/file_drop.py +76 -0
- solara/website/pages/documentation/components/input/input.py +19 -0
- solara/website/pages/documentation/components/input/select.py +22 -0
- solara/website/pages/documentation/components/input/slider.py +29 -0
- solara/website/pages/documentation/components/input/switch.py +10 -0
- solara/website/pages/documentation/components/input/togglebuttons.py +21 -0
- solara/website/pages/documentation/components/lab/__init__.py +9 -0
- solara/website/pages/documentation/components/lab/chat.py +109 -0
- solara/website/pages/documentation/components/lab/confirmation_dialog.py +55 -0
- solara/website/pages/documentation/components/lab/cookies_headers.py +48 -0
- solara/website/pages/documentation/components/lab/input_date.py +20 -0
- solara/website/pages/documentation/components/lab/menu.py +22 -0
- solara/website/pages/documentation/components/lab/tab.py +25 -0
- solara/website/pages/documentation/components/lab/tabs.py +45 -0
- solara/website/pages/documentation/components/lab/task.py +11 -0
- solara/website/pages/documentation/components/lab/theming.py +72 -0
- solara/website/pages/documentation/components/lab/use_task.py +11 -0
- solara/website/pages/documentation/components/layout/__init__.py +9 -0
- solara/website/pages/documentation/components/layout/app_bar.py +16 -0
- solara/website/pages/documentation/components/layout/app_bar_title.py +16 -0
- solara/website/pages/documentation/components/layout/app_layout.py +24 -0
- solara/website/pages/documentation/components/layout/card.py +15 -0
- solara/website/pages/documentation/components/layout/card_actions.py +16 -0
- solara/website/pages/documentation/components/layout/column.py +30 -0
- solara/website/pages/documentation/components/layout/columns.py +27 -0
- solara/website/pages/documentation/components/layout/columns_responsive.py +68 -0
- solara/website/pages/documentation/components/layout/griddraggable.py +62 -0
- solara/website/pages/documentation/components/layout/gridfixed.py +21 -0
- solara/website/pages/documentation/components/layout/hbox.py +18 -0
- solara/website/pages/documentation/components/layout/row.py +30 -0
- solara/website/pages/documentation/components/layout/sidebar.py +24 -0
- solara/website/pages/documentation/components/layout/vbox.py +19 -0
- solara/website/pages/documentation/components/output/__init__.py +9 -0
- solara/website/pages/documentation/components/output/file_download.py +11 -0
- solara/website/pages/documentation/components/output/html.py +21 -0
- solara/website/pages/documentation/components/output/image.py +11 -0
- solara/website/pages/documentation/components/output/markdown.py +57 -0
- solara/website/pages/documentation/components/output/markdown_editor.py +51 -0
- solara/website/pages/documentation/components/output/sql_code.py +85 -0
- solara/website/pages/documentation/components/output/tooltip.py +11 -0
- solara/website/pages/documentation/components/page/__init__.py +9 -0
- solara/website/pages/documentation/components/page/head.py +18 -0
- solara/website/pages/documentation/components/page/title.py +27 -0
- solara/website/pages/documentation/components/status/__init__.py +9 -0
- solara/website/pages/documentation/components/status/error.py +40 -0
- solara/website/pages/documentation/components/status/info.py +40 -0
- solara/website/pages/documentation/components/status/progress.py +10 -0
- solara/website/pages/documentation/components/status/spinner.py +11 -0
- solara/website/pages/documentation/components/status/success.py +40 -0
- solara/website/pages/documentation/components/status/warning.py +47 -0
- solara/website/pages/documentation/components/viz/__init__.py +9 -0
- solara/website/pages/documentation/components/viz/altair.py +42 -0
- solara/website/pages/documentation/components/viz/echarts.py +75 -0
- solara/website/pages/documentation/components/viz/matplotlib.py +30 -0
- solara/website/pages/documentation/components/viz/plotly.py +63 -0
- solara/website/pages/documentation/components/viz/plotly_express.py +41 -0
- solara/website/pages/documentation/examples/__init__.py +52 -0
- solara/website/pages/documentation/examples/ai/__init__.py +11 -0
- solara/website/pages/documentation/examples/ai/chatbot.py +95 -0
- solara/website/pages/documentation/examples/ai/tokenizer.py +107 -0
- solara/website/pages/documentation/examples/basics/__init__.py +10 -0
- solara/website/pages/documentation/examples/basics/sine.py +28 -0
- solara/website/pages/documentation/examples/fullscreen/__init__.py +10 -0
- solara/website/pages/documentation/examples/fullscreen/authorization.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/layout_demo.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/multipage.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/scatter.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/scrolling.py +3 -0
- solara/website/pages/documentation/examples/fullscreen/tutorial_streamlit.py +3 -0
- solara/website/pages/documentation/examples/general/__init__.py +10 -0
- solara/website/pages/documentation/examples/general/custom_storage.py +70 -0
- solara/website/pages/documentation/examples/general/deploy_model.py +115 -0
- solara/website/pages/documentation/examples/general/live_update.py +38 -0
- solara/website/pages/documentation/examples/general/login_oauth.py +81 -0
- solara/website/pages/documentation/examples/general/mycard.vue +58 -0
- solara/website/pages/documentation/examples/general/pokemon_search.py +51 -0
- solara/website/pages/documentation/examples/general/vue_component.py +50 -0
- solara/website/pages/documentation/examples/ipycanvas.py +49 -0
- solara/website/pages/documentation/examples/libraries/__init__.py +10 -0
- solara/website/pages/documentation/examples/libraries/altair.py +64 -0
- solara/website/pages/documentation/examples/libraries/bqplot.py +39 -0
- solara/website/pages/documentation/examples/libraries/ipyleaflet.py +33 -0
- solara/website/pages/documentation/examples/libraries/ipyleaflet_advanced.py +66 -0
- solara/website/pages/documentation/examples/utilities/__init__.py +10 -0
- solara/website/pages/documentation/examples/utilities/calculator.py +157 -0
- solara/website/pages/documentation/examples/utilities/countdown_timer.py +64 -0
- solara/website/pages/documentation/examples/utilities/todo.py +196 -0
- solara/website/pages/documentation/examples/visualization/__init__.py +6 -0
- solara/website/pages/documentation/examples/visualization/annotator.py +69 -0
- solara/website/pages/documentation/examples/visualization/linked_views.py +84 -0
- solara/website/pages/documentation/examples/visualization/plotly.py +44 -0
- solara/website/pages/documentation/faq/__init__.py +12 -0
- solara/website/pages/documentation/faq/content/99-faq.md +76 -0
- solara/website/pages/documentation/getting_started/__init__.py +9 -0
- solara/website/pages/documentation/getting_started/content/00-quickstart.md +89 -0
- solara/website/pages/documentation/getting_started/content/01-introduction.md +125 -0
- solara/website/pages/documentation/getting_started/content/02-installing.md +134 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/00-overview.md +14 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/10_data_science.py +13 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/20-web-app.md +89 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/30-ipywidgets.md +124 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/40-streamlit.md +146 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/50-dash.md +144 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/60-jupyter-dashboard-part1.py +64 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/SF_crime_sample.csv.gz +0 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/_data_science.ipynb +445 -0
- solara/website/pages/documentation/getting_started/content/04-tutorials/_jupyter_dashboard_1.ipynb +1000 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/00-overview.md +11 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/10-components.md +223 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/50-state-management.md +88 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/00-overview.md +7 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/10-self-hosted.md +273 -0
- solara/website/pages/documentation/getting_started/content/07-deploying/20-cloud-hosted.md +80 -0
- solara/website/pages/documentation/getting_started/content/80-what-is-lab.md +7 -0
- solara/website/pages/documentation/getting_started/content/90-troubleshoot.md +26 -0
- solara/website/pages/docutils.py +38 -0
- solara/website/pages/showcase/__init__.py +105 -0
- solara/website/pages/showcase/domino_code_assist.py +60 -0
- solara/website/pages/showcase/planeto_tessa.py +19 -0
- solara/website/pages/showcase/solara_dev.py +54 -0
- solara/website/pages/showcase/solarathon_2023_team_2.py +22 -0
- solara/website/pages/showcase/solarathon_2023_team_4.py +22 -0
- solara/website/pages/showcase/solarathon_2023_team_5.py +23 -0
- solara/website/pages/showcase/solarathon_2023_team_6.py +34 -0
- solara/website/pages/showcase/wanderlust.py +27 -0
- solara/website/public/beach.jpeg +0 -0
- solara/website/public/logo.svg +6 -0
- solara/website/public/social/discord.svg +1 -0
- solara/website/public/social/github.svg +1 -0
- solara/website/public/social/twitter.svg +3 -0
- solara/website/public/success.html +25 -0
- solara/website/templates/index.html.j2 +117 -0
- solara/website/utils.py +51 -0
- solara/widgets/__init__.py +1 -0
- solara/widgets/vue/gridlayout.vue +110 -0
- solara/widgets/vue/html.vue +4 -0
- solara/widgets/vue/navigator.vue +104 -0
- solara/widgets/vue/vegalite.vue +115 -0
- solara/widgets/widgets.py +66 -0
- solara_ui-1.31.0.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json +7 -0
- solara_ui-1.31.0.data/data/etc/jupyter/jupyter_server_config.d/solara.json +7 -0
- solara_ui-1.31.0.dist-info/METADATA +158 -0
- solara_ui-1.31.0.dist-info/RECORD +439 -0
- solara_ui-1.31.0.dist-info/WHEEL +5 -0
- solara_ui-1.31.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: solara-ui
|
|
3
|
+
Version: 1.31.0
|
|
4
|
+
Dynamic: Summary
|
|
5
|
+
Project-URL: Home, https://www.github.com/widgetti/solara
|
|
6
|
+
Project-URL: Documentation, https://solara.dev
|
|
7
|
+
Author-email: "Maarten A. Breddels" <maartenbreddels@gmail.com>
|
|
8
|
+
License: The MIT License (MIT)
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2022 Maarten A. Breddels
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in
|
|
20
|
+
all copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
28
|
+
THE SOFTWARE.
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
31
|
+
Requires-Dist: humanize
|
|
32
|
+
Requires-Dist: ipyvue>=1.9.0
|
|
33
|
+
Requires-Dist: ipyvuetify>=1.6.10
|
|
34
|
+
Requires-Dist: ipywidgets>=7.7
|
|
35
|
+
Requires-Dist: reacton>=1.7.1
|
|
36
|
+
Requires-Dist: requests
|
|
37
|
+
Provides-Extra: all
|
|
38
|
+
Requires-Dist: solara-ui[cache]; extra == 'all'
|
|
39
|
+
Requires-Dist: solara-ui[extra]; extra == 'all'
|
|
40
|
+
Requires-Dist: solara-ui[markdown]; extra == 'all'
|
|
41
|
+
Provides-Extra: cache
|
|
42
|
+
Requires-Dist: cachetools; extra == 'cache'
|
|
43
|
+
Provides-Extra: extra
|
|
44
|
+
Requires-Dist: numpy; extra == 'extra'
|
|
45
|
+
Requires-Dist: pillow; extra == 'extra'
|
|
46
|
+
Provides-Extra: markdown
|
|
47
|
+
Requires-Dist: markdown; extra == 'markdown'
|
|
48
|
+
Requires-Dist: pygments; extra == 'markdown'
|
|
49
|
+
Requires-Dist: pygments==2.10; (python_version < '3.7') and extra == 'markdown'
|
|
50
|
+
Requires-Dist: pymdown-extensions; extra == 'markdown'
|
|
51
|
+
Description-Content-Type: text/markdown
|
|
52
|
+
|
|
53
|
+
**A Pure Python, React-style Framework for Scaling Your Jupyter and Web Apps**
|
|
54
|
+
|
|
55
|
+
[](https://solara.dev)
|
|
56
|
+
|
|
57
|
+
Come chat with us on [Discord](https://discord.solara.dev) to ask questions or share your thoughts or creations!
|
|
58
|
+
|
|
59
|
+
[](https://discord.solara.dev)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
## Introducing Solara
|
|
64
|
+
|
|
65
|
+
While there are many Python web frameworks out there, most are designed for small data apps or use paradigms unproven for larger scale. Code organization, reusability, and state tend to suffer as apps grow in complexity, resulting in either spaghetti code or offloading to a React application.
|
|
66
|
+
|
|
67
|
+
Solara addresses this gap. Using a React-like API, we don't need to worry about scalability. React has already proven its ability to support the world's largest web apps.
|
|
68
|
+
|
|
69
|
+
Solara uses a pure Python implementation of React (Reacton), creating ipywidget-based applications. These apps work both inside the Jupyter Notebook and as standalone web apps with frameworks like FastAPI. This paradigm enables component-based code and incredibly simple state management.
|
|
70
|
+
|
|
71
|
+
By building on top of ipywidgets, we automatically leverage an existing ecosystem of widgets and run on many platforms, including JupyterLab, Jupyter Notebook, Voilà, Google Colab, DataBricks, JetBrains Datalore, and more.
|
|
72
|
+
|
|
73
|
+
We care about developer experience. Solara will give your hot code reloading and type hints for faster development.
|
|
74
|
+
|
|
75
|
+
## Installation
|
|
76
|
+
|
|
77
|
+
Run:
|
|
78
|
+
```
|
|
79
|
+
pip install solara
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Or follow the [Installation instructions](https://solara.dev/documentation/getting_started/installing) for more detailed instructions.
|
|
83
|
+
|
|
84
|
+
## First script
|
|
85
|
+
|
|
86
|
+
Put the following Python snippet in a file (we suggest `sol.py`), or put it in a Jupyter notebook cell:
|
|
87
|
+
|
|
88
|
+
```python
|
|
89
|
+
import solara
|
|
90
|
+
|
|
91
|
+
# Declare reactive variables at the top level. Components using these variables
|
|
92
|
+
# will be re-executed when their values change.
|
|
93
|
+
sentence = solara.reactive("Solara makes our team more productive.")
|
|
94
|
+
word_limit = solara.reactive(10)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
@solara.component
|
|
98
|
+
def Page():
|
|
99
|
+
# Calculate word_count within the component to ensure re-execution when reactive variables change.
|
|
100
|
+
word_count = len(sentence.value.split())
|
|
101
|
+
|
|
102
|
+
solara.SliderInt("Word limit", value=word_limit, min=2, max=20)
|
|
103
|
+
solara.InputText(label="Your sentence", value=sentence, continuous_update=True)
|
|
104
|
+
|
|
105
|
+
# Display messages based on the current word count and word limit.
|
|
106
|
+
if word_count >= int(word_limit.value):
|
|
107
|
+
solara.Error(f"With {word_count} words, you passed the word limit of {word_limit.value}.")
|
|
108
|
+
elif word_count >= int(0.8 * word_limit.value):
|
|
109
|
+
solara.Warning(f"With {word_count} words, you are close to the word limit of {word_limit.value}.")
|
|
110
|
+
else:
|
|
111
|
+
solara.Success("Great short writing!")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
# The following line is required only when running the code in a Jupyter notebook:
|
|
115
|
+
Page()
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Run from the command line in the same directory where you put your file (`sol.py`):
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
$ solara run sol.py
|
|
122
|
+
Solara server is starting at http://localhost:8765
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Or copy-paste this to a Jupyter notebook cell and execute it (the `Page()` expression at the end
|
|
126
|
+
will cause it to automatically render the component in the notebook).
|
|
127
|
+
|
|
128
|
+
See this snippet run live at https://solara.dev/documentation/getting_started
|
|
129
|
+
|
|
130
|
+
## Demo
|
|
131
|
+
|
|
132
|
+
The following demo app can be used to explore a dataset (buildin or upload yourself) using
|
|
133
|
+
a scatter plot. The plot can be interacted with to filter the dataset, and the filtered dataset can
|
|
134
|
+
be downloaded.
|
|
135
|
+
|
|
136
|
+
* [Source code](https://github.com/widgetti/solara/blob/master/solara/website/pages/apps/scatter.py)
|
|
137
|
+
|
|
138
|
+
### Running in solara-server
|
|
139
|
+
|
|
140
|
+
The solara server is build on top of Starlette/FastAPI and runs standalone. Ideal for production use.
|
|
141
|
+
|
|
142
|
+

|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Running in Jupyter
|
|
146
|
+
|
|
147
|
+
By building on top of ipywidgets, we automatically leverage an existing ecosystem of widgets and run on many platforms, including JupyterLab, Jupyter Notebook, Voilà, Google Colab, DataBricks, JetBrains Datalore, and more. This means our app can also run in Jupyter:
|
|
148
|
+
|
|
149
|
+

|
|
150
|
+
|
|
151
|
+
## Resources
|
|
152
|
+
|
|
153
|
+
Visit our main website or jump directly to the introduction
|
|
154
|
+
|
|
155
|
+
[](https://solara.dev/documentation)
|
|
156
|
+
[](https://solara.dev/documentation/getting_started)
|
|
157
|
+
|
|
158
|
+
*Note that the solara.dev website is created using Solara*
|
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
prefix/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
2
|
+
prefix/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
3
|
+
solara/__init__.py,sha256=0ZF6WRUH7llYAwzPlZxv5mdau_r881mzeM8EPC8SSeI,3584
|
|
4
|
+
solara/__main__.py,sha256=_RSUhoxkTruY4MMlSJ9qBKWdsgNSasuYs1EBbufnNrM,23656
|
|
5
|
+
solara/alias.py,sha256=9vfLzud77NP8in3OID9b5mmIO8NyrnFjN2_aE0lSb1k,216
|
|
6
|
+
solara/autorouting.py,sha256=IXNqJBaKjniuQIHGq_LSqoWXec9qq34t2b6UEqj4YBE,22677
|
|
7
|
+
solara/cache.py,sha256=rZEW_xVIj3vvajntsQDnaglniTQ90izkX8vOqe1mMvE,10500
|
|
8
|
+
solara/checks.html,sha256=NZoefOKYpE6NHQJchi4WE5HkDG3xpJW0kY6TOAFHQtE,3304
|
|
9
|
+
solara/checks.py,sha256=WtMzUM1HN127juk5fFV2jdsJ1qT5Ghg21wEZfiVfIFc,7563
|
|
10
|
+
solara/comm.py,sha256=BhHFO1fBfFP0cOKxx_oKUr6-8UqpfGZbVaofYxIXrS8,765
|
|
11
|
+
solara/datatypes.py,sha256=xHHjObTEf4Ar3e4Euvi0sA7UWDSbNTXuyLIf_0wcDs8,4186
|
|
12
|
+
solara/express.py,sha256=R0E2ewwL0m09KdoDNhF_ZF5TnC7ytty5rzM8hDykpGk,6919
|
|
13
|
+
solara/kitchensink.py,sha256=RUx3kW6CQAz9PMxB1sPI03IH5xJfsaaXq3w9bBuC6rg,249
|
|
14
|
+
solara/layout.py,sha256=YSsORvn-76LrVSmElS39CBnetyUL9f4hLG_a_SdH_QM,1782
|
|
15
|
+
solara/lifecycle.py,sha256=acUtft_KHj0ZOv2l-X3VcQdma1Tme70jkUp6li8mbH0,1404
|
|
16
|
+
solara/minisettings.py,sha256=ue9aXfZaJjQVmigTsVtOebH4MfP00wtzP73hES1UlTc,4530
|
|
17
|
+
solara/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
solara/reactive.py,sha256=GKp7agR3KtUAyLaxwcrMG9yYs_zO8KbpdslFk8Ata20,2940
|
|
19
|
+
solara/routing.py,sha256=G_iZKozdVoUuD-qSMyuPV6jeN4qBqujAUvekw036f88,9143
|
|
20
|
+
solara/settings.py,sha256=RkJmNL22fRYOKhitx1bi5LW-0YGGnIEnurW2b6TBKWM,1772
|
|
21
|
+
solara/tasks.py,sha256=DMSd_okc9ojrNOVxTD6TFN3HcVRIhfravsWXjTvYONg,29563
|
|
22
|
+
solara/toestand.py,sha256=8Q-Qt6LK2Xavfj4RSs1DQr46RergqpkEWWugFADzZCQ,23385
|
|
23
|
+
solara/util.py,sha256=ex3Hggy-kTQa4DTEMDlhFTihzqnTfjxWCbHk0ihaZSM,8934
|
|
24
|
+
solara/components/__init__.py,sha256=kVFPHiqv0-G_jQoL5NJnYskB9l9_2Y9jxVP3fFY8cVg,2636
|
|
25
|
+
solara/components/alert.py,sha256=sNjlrCu2niR6LD9gZFXwvSBMszCKt6nRH58kE7RgsDw,5144
|
|
26
|
+
solara/components/applayout.py,sha256=mUinMQISDTh2D02qa38_9GbttZMk7afZCkzqXOPEhaQ,16355
|
|
27
|
+
solara/components/button.py,sha256=8Q4s3cD7mULDzASAmUlKGAOcOuXgDFHJMC1PJS5DHYc,3143
|
|
28
|
+
solara/components/card.py,sha256=2xNXrIRJ4jGJtRbirX1Xp8V2h3HtW9vnxhLGUCrPr9I,2797
|
|
29
|
+
solara/components/checkbox.py,sha256=MLQ9Hxvtv5aKLj4XO3ILWtGc6nKOUH560A2bBt0Z030,1445
|
|
30
|
+
solara/components/code_highlight_css.py,sha256=J0fZHuEu8jeEKAq_HKbzgiMR1-VwMVnKA4dAOKE0AQU,235
|
|
31
|
+
solara/components/code_highlight_css.vue,sha256=UX4jtEetV1W25Uvu8xQ-TbEaBzbp_7DlXtXDO9SdZfY,5776
|
|
32
|
+
solara/components/columns.py,sha256=bGCUU9MLxkt2OiS31oLHWrEOlskxT1Xo65dBxXhmhbQ,5564
|
|
33
|
+
solara/components/component_vue.py,sha256=_WNF_MMM0pENBeokFJziro3iBm67uvNlIR9D2gx53gs,4335
|
|
34
|
+
solara/components/cross_filter.py,sha256=vb9UfvxUy-NEW2rgbB-KouCec6OKCp0gps8TujySh6w,13663
|
|
35
|
+
solara/components/dataframe.py,sha256=9Zr-usCz9UkO2xpNlDpooRGu-Bwtn49Cy4cdAaO_KGg,21033
|
|
36
|
+
solara/components/datatable.py,sha256=obpdRg3q3FQ_dC574A2o9ODYaJItbxA9Uu7Bl-3bl48,8021
|
|
37
|
+
solara/components/datatable.vue,sha256=xoIT7tS2QSKgJHt0kHRODsDx81S9SEwk1EoVM9sgFWg,7061
|
|
38
|
+
solara/components/details.py,sha256=x8wB4fCsO0TwACnidW0q-tUcPByC7SqurU50Yz_YTJU,675
|
|
39
|
+
solara/components/download.vue,sha256=xdh4olwVvGkQwGNRMU5eVUW1FGvcXrYrCyjddJbvH7E,1069
|
|
40
|
+
solara/components/echarts.py,sha256=yaj3dQ1OiPD2XqpL_iPa545NRhgnmjJlz4-BqSdvsEw,2625
|
|
41
|
+
solara/components/echarts.vue,sha256=asZB_M3bSxU4IbbQn0W0P0v9qCpZ6f0wnzyBYGl__ZI,3695
|
|
42
|
+
solara/components/figure_altair.py,sha256=t4EEwXrdoisrbV5j2MS-HBlPc5HSFCK5r4mRXvYRH9w,1150
|
|
43
|
+
solara/components/file_browser.py,sha256=Rj9YpGHU365GPcOJUTyI_0S1FQyWv8FSvq7TMLUwl2o,7410
|
|
44
|
+
solara/components/file_download.py,sha256=Lil0qyiozU_Pxyb_HgnJXOumrxMeDwwavEmZZw6kAs8,7475
|
|
45
|
+
solara/components/file_drop.py,sha256=3j8TkhGZK21lqpjOAc9tNMsvKjmUNhr7YUKbGB99Y1Q,4711
|
|
46
|
+
solara/components/file_drop.vue,sha256=ywQvWjqLIRNMAL6ZrdLpHCK4ZprrVbh0n2AJFanVlR8,2243
|
|
47
|
+
solara/components/file_list_widget.vue,sha256=atp-FO9tBjvyCQ_32NqeB9Rcehg03vPLD1eIROgBDDU,1860
|
|
48
|
+
solara/components/head.py,sha256=QZRTbwaUH0trfce3ntEcOqmLjw74CbSHpuMt9gGj7oA,648
|
|
49
|
+
solara/components/head_tag.py,sha256=xPj_ug0TUAZF4yN6ypKlmLcsHORIHU8zfIZgEDNi4PQ,1591
|
|
50
|
+
solara/components/head_tag.vue,sha256=vw0PJzAajq1XbyKhrTakfzJGF_beXAjupkFXPKJbVDo,1642
|
|
51
|
+
solara/components/image.py,sha256=o44iu0_wv3cPKnKv47mw10d2f67vuBaW2Jhs775hNAM,4503
|
|
52
|
+
solara/components/input.py,sha256=iTL1JzfFlSw4ji7ILNymsodnrwJqvJtPvqD--6f-b4o,14585
|
|
53
|
+
solara/components/link.py,sha256=bYXVencL9hjBcrGniXdE0JlSzBE9bkUFFmd4apfYhjk,1842
|
|
54
|
+
solara/components/markdown.py,sha256=nkrj0gfFFXUfM8dF2oT6KEfY1hNJvDn0lg-zwQaiAoM,12502
|
|
55
|
+
solara/components/markdown_editor.py,sha256=Ii_IVzl99JBVqegRu1aHdOC-hTIzbHXzuNKlRVvAEx0,634
|
|
56
|
+
solara/components/markdown_editor.vue,sha256=2LBotfw97LF9TgCJLY-O_2z5gjx6r2bbuhohE2-eIEA,8864
|
|
57
|
+
solara/components/matplotlib.py,sha256=c7iQhOIG_8aKTOz_Xnw3wXa0sgfiBunIzOxRhljQlzw,2029
|
|
58
|
+
solara/components/meta.py,sha256=IFE2EINt8YVxZOyKkCKhu68nc3-ri5d2OzsDjoH9EAI,1655
|
|
59
|
+
solara/components/misc.py,sha256=_az9Jetk9lb0WgNFrbM4dKxzaxj1h7QS7z6k6yAbXLQ,12473
|
|
60
|
+
solara/components/pivot_table.py,sha256=FycGKTiQoTnHPP5uiQMYylZ-5sxm4IcCI6a1XIY3nVw,9938
|
|
61
|
+
solara/components/pivot_table.vue,sha256=ejsZ4NMw-M-UHJ2c5HL7X7jUbnIc8sjj_a_onleIg3w,4674
|
|
62
|
+
solara/components/progress.py,sha256=Vb0ZdspBId5bGsu2qkEZGNgvLW5gZRRkN_4kC1wIrIM,1575
|
|
63
|
+
solara/components/select.py,sha256=DBxc_DGh-WcOQXCEiUC5yT8RG_obAYgGnMSayvzXzVE,5243
|
|
64
|
+
solara/components/select.vue,sha256=n_sLCLlzKco6LiPHhefyIlqp7K7_pxFhEwJs3ujVw-g,950
|
|
65
|
+
solara/components/slider.py,sha256=LPuTjOWojg-S-6Tib2PnCdyoZ0sLRyuENPtRAIBcqrk,13408
|
|
66
|
+
solara/components/slider_date.vue,sha256=TJsDmZqsXCET61JlVCYqmkWVWDlu6NSfQii9ZcAlMYA,1351
|
|
67
|
+
solara/components/spinner-solara.vue,sha256=fH8AtwXUZf_YZnUj-1OWspcbVWc-mSbY2T5sebRmKrU,2928
|
|
68
|
+
solara/components/spinner.py,sha256=EGB9qL6WnNchaEc8RnjPk79jm5TV9v_7UoEoDZKikBM,586
|
|
69
|
+
solara/components/sql_code.py,sha256=XUx91w_E7q6QzOPpY1NZVuCNPh6hPP6gPJLM7cMDYs4,1190
|
|
70
|
+
solara/components/sql_code.vue,sha256=d2rtBPb8fG7YLrxg_cAq9cKxj2AJZD2xti6dP8s-ZyM,3937
|
|
71
|
+
solara/components/style.py,sha256=l2UAke1Js9IMAFP31k5T2-YDjo2WMbR104ZYvMpXUEs,3112
|
|
72
|
+
solara/components/switch.py,sha256=t4UQQHQ0W78HGR-fMdSpUw25BWCVeLYy0sFRlva6gwU,1947
|
|
73
|
+
solara/components/tab_navigation.py,sha256=xVlVx4GvLNNxeE53sGtRLkcQB3mzEWM_jTlXOnY3SEs,1047
|
|
74
|
+
solara/components/title.py,sha256=2B-PDlWOoY1fHYRRXnP7vUmRioqEHM9WJ2qjF6zVFGQ,2120
|
|
75
|
+
solara/components/title.vue,sha256=HtBSqdVgZDgTH5Uem7cG2BpoIUjvl6LFX7jGX1aC57s,901
|
|
76
|
+
solara/components/togglebuttons.py,sha256=lPzti0k-faQPILhc_0fHR0OMROBxL-V67pXUtTD32t4,7717
|
|
77
|
+
solara/components/tooltip.py,sha256=qeicYWEF1orcKtjDxhq3pmIKGk2gKMSw1zRTOcdPfYA,1636
|
|
78
|
+
solara/hooks/__init__.py,sha256=ViBiBdInk_Ze8QIuHkjJGlrWGOj8LLwkva5iE-Ipj1Q,195
|
|
79
|
+
solara/hooks/dataframe.py,sha256=w6lVhSQGkK1e6-uSczkCc1p6GIdVoFsu_DkdM15quYw,3421
|
|
80
|
+
solara/hooks/misc.py,sha256=Pqf1fvyOrQmFkl2qoJEwMCisVJZAWjSn0O8I2oy-rac,7885
|
|
81
|
+
solara/hooks/use_reactive.py,sha256=uQgVoEtfnMcTaKnXUqvdoXOCCe15Surd9iOJnIfc7es,4498
|
|
82
|
+
solara/hooks/use_thread.py,sha256=SujLvEaE5XNarXdiC0jq6jz2tL3IkAdfJEFW_R-kBPQ,5443
|
|
83
|
+
solara/lab/__init__.py,sha256=IoEdv0xrwySEP_ap-kbE7ct0wuaVpl61Rl5zfo4RH90,1121
|
|
84
|
+
solara/lab/toestand.py,sha256=OYB7gJQsRQ67uR4KayWhV6Ofczqyo4FMtqQszugOQJg,196
|
|
85
|
+
solara/lab/components/__init__.py,sha256=3Uj0za0EiXIzWfQufZLTQZPfwIG2PWwNW4wvDeHXnso,376
|
|
86
|
+
solara/lab/components/chat.py,sha256=kGIJAuDlja41PBfIo-Ze2FE_PXU1CL5yGhYYSVCv27Y,8259
|
|
87
|
+
solara/lab/components/confirmation_dialog.py,sha256=V48iN3SovPLLuYI0HVNGlSJ1jfyeCOK2BDFhLW3gg9Y,5822
|
|
88
|
+
solara/lab/components/cross_filter.py,sha256=qJZTRDMCNGy8UuHzuDyWuGA_dU4pI8lzSCDw0hmN8I4,186
|
|
89
|
+
solara/lab/components/input_date.py,sha256=JTkj6IrkdIPxKVDU2nDzgsxGnrOuWJ8cdzIn0vpXemQ,11950
|
|
90
|
+
solara/lab/components/menu.py,sha256=Ig2icuftK5m27k5SUO-98hn6S6Ng4g6s4p_g5ccSkTw,5962
|
|
91
|
+
solara/lab/components/menu.vue,sha256=wiHv6NP4LtCxdYHl62oz_3DiFoVzeRBdgL3be3p2bPo,1319
|
|
92
|
+
solara/lab/components/tabs.py,sha256=1dq8v3a_munj9KZ2yZgjuOmjZDe9fcbBx_8KzV7hLKU,9699
|
|
93
|
+
solara/lab/components/theming.py,sha256=ZlwIhuVE6_c4La460LR_mFlsCX5F53-gyrPh3SuuKQI,2674
|
|
94
|
+
solara/lab/components/theming.vue,sha256=k2kw5haeD9nDZNEmOTYaB_YfVpMXGxv3lOrS-cw_jmY,2248
|
|
95
|
+
solara/lab/hooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
solara/lab/hooks/dataframe.py,sha256=9zd9evOabro7nKQBxtu7C660ouI7J0KppkdSDVfaeyU,328
|
|
97
|
+
solara/lab/utils/__init__.py,sha256=TG0tz1x_RzAgClrZJdF5OEPJp_QCyH9B2Zw1R-Wi0xw,86
|
|
98
|
+
solara/lab/utils/cookies.py,sha256=hHxa_uUOWO9G5vMASmVz6lvsAbKaphpRPj2NoDexQks,198
|
|
99
|
+
solara/lab/utils/dataframe.py,sha256=P3-xNGapWeTEA8w7F775eEH1leTWh02YBrquqpiIWkE,3242
|
|
100
|
+
solara/lab/utils/headers.py,sha256=RMo8JUdztRePrdNfYCX1QEhrfyF6ktodr4v6tIREKbs,216
|
|
101
|
+
solara/scope/__init__.py,sha256=0sP3B6L4Aai0b6nadPtEETb8XqdGmSFKvQusNH0-yvY,2987
|
|
102
|
+
solara/scope/types.py,sha256=HTf_wnkpkhhtGaeFsB690KBP623CUuqiMssd72-u9yg,1540
|
|
103
|
+
solara/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
solara/server/app.py,sha256=6cWds871ZTD-zT5H2p3ep0cXX9AqT2VnKk3kIEbek60,20336
|
|
105
|
+
solara/server/cdn_helper.py,sha256=fbFmwjh2w708fKEQzLFewcXWFA-dZmdSEQrJ-3Ix_PU,2487
|
|
106
|
+
solara/server/esm.py,sha256=LQpCCqg28EgXKuIKJxlgCzegPlCVh4GQJGmqigTJZAE,2881
|
|
107
|
+
solara/server/fastapi.py,sha256=qVIHn0_Kxr6zWqcBWySu5nnJ6pNTSDqb4EHIh-cqH_8,93
|
|
108
|
+
solara/server/flask.py,sha256=Vldi-40AA4PJ2mppJEvDoBKoh1Dyn1Rox88adl7BfcI,9168
|
|
109
|
+
solara/server/jupytertools.py,sha256=cYFIUjLX7n0uuEXqWVWvmV6sV7R_MNg8ZZlabQgw8vk,1320
|
|
110
|
+
solara/server/kernel.py,sha256=3mwRRBw6BOcKLACL4fCUGgtI_RZ5KTSM1MlAtRlDbmA,11092
|
|
111
|
+
solara/server/kernel_context.py,sha256=884DYOsBTq-i1H0HTHA7BIcDyb07C3q_Knzm6WQGjGQ,13816
|
|
112
|
+
solara/server/patch.py,sha256=bwIlgXJSMUEk2eMTqIXaWG3es3WiAq3e2AilFMvrZKQ,18788
|
|
113
|
+
solara/server/reload.py,sha256=UURWsWsFV_KrHS_rJDR7MhJ0f5snjZ5ey5kRrVasoiQ,9531
|
|
114
|
+
solara/server/server.py,sha256=eCiQG85gsUIRPh4qutLAYHSRwt1CrzmsL3EzL4hfXuM,15585
|
|
115
|
+
solara/server/settings.py,sha256=VY5CPFMxZBCbYEObiU7vaeNCF3v5HUU38oruUMGI8gU,6394
|
|
116
|
+
solara/server/shell.py,sha256=xKox0fvDxdcWleE8p2ffCkihvjLJsWn2FujMbgUjYn0,8677
|
|
117
|
+
solara/server/starlette.py,sha256=bCR89ZWXbDpqE2mAo1_7iD5-R8Ln8GIpDJtKZu1onBw,23715
|
|
118
|
+
solara/server/telemetry.py,sha256=GPKGA5kCIqJb76wgxQ2_U2uV_s0r-1tKqv-GVxo5hs8,6038
|
|
119
|
+
solara/server/threaded.py,sha256=X2OgHZX4NV505at0D540mWto_PSqKvaVvM3eN6EsHVw,2160
|
|
120
|
+
solara/server/utils.py,sha256=I_PaObYgXz--fw-5G_K_uwxfEVSPynQud8Pn-MHDR3c,648
|
|
121
|
+
solara/server/websocket.py,sha256=hUYw9TeVf4vHKL8TGG4RAZGLL7rmkt1INVq5qSYRWOo,1076
|
|
122
|
+
solara/server/assets/custom.css,sha256=4p04-uxHTobfr6Xkvf1iOrYiks8NciWLT_EwHZSy6jw,15
|
|
123
|
+
solara/server/assets/custom.js,sha256=YT-UUYzA5uI5-enmbIsrRhofY_IJAO-HanaMwiNUEos,16
|
|
124
|
+
solara/server/assets/favicon.png,sha256=Ssgmi5eZeGIGABOrxW8AH3hyvy5a9avdDIDYsmEUMpM,1924
|
|
125
|
+
solara/server/assets/favicon.svg,sha256=HXAji-JQGBaGi2_iyk3vHgEDgdFYtsWTVqOE6QmVLKc,1240
|
|
126
|
+
solara/server/assets/style.css,sha256=GW0qc9buwptlBFO4VV6aOIpPkCqjmTWLhRiPD6hjrKo,40341
|
|
127
|
+
solara/server/assets/theme-dark.css,sha256=w9a0BDQoXnhoLC4Uz8QdCiFvZsDYV4XvOL4CoSyAnBM,16733
|
|
128
|
+
solara/server/assets/theme-light.css,sha256=zYjHebS5dGq9o4wNcS8nFyuE1oiqSmhcxVHNf3FYZ3Q,15637
|
|
129
|
+
solara/server/assets/theme.js,sha256=kwXC-5gj9JKcwb8JMaV2sZ5t_F26c6ypqfozLZZ8Izo,21
|
|
130
|
+
solara/server/jupyter/__init__.py,sha256=OF6ZXyQUymQzx70eDytS3aU-NDDsltwi1pJIKy6mUcE,137
|
|
131
|
+
solara/server/jupyter/cdn_handler.py,sha256=L9i_Hv9BFfrLwxq76lKhhxAv_EJzNecgIlb1wvkCHf8,835
|
|
132
|
+
solara/server/jupyter/server_extension.py,sha256=cq3lC_E70Dw2SAcv0xmTg01TPNxLvPV5vt9Vr9bQcmA,775
|
|
133
|
+
solara/server/static/ansi.js,sha256=Oa3cXY3u5vSSq8-P6JnAqa2S9cymxY0iL6wG449jFJk,7797
|
|
134
|
+
solara/server/static/highlight-dark.css,sha256=gmC3pr3x2BqJgTswNoN6AkqfEhBk24hPFVg6uvd0qHg,6809
|
|
135
|
+
solara/server/static/highlight.css,sha256=k8ZdT5iwrGQ5tXTQHAXuxvZrSUq3kwCdEpy3mlFoZjs,2637
|
|
136
|
+
solara/server/static/main-vuetify.js,sha256=e2yhq1ezwcCWwU2IzdFY275o768VupBlbZSc7R_Msxw,8874
|
|
137
|
+
solara/server/static/main.js,sha256=mcx4JNQ4Lg4pNdUIqMoZos1mZyYFS48yd_JNFFJUqIE,5679
|
|
138
|
+
solara/server/static/solara_bootstrap.py,sha256=FOEJP_CKEkLq5KLEzfXnuYksD0L1XhDT-BHYY-YMes0,3195
|
|
139
|
+
solara/server/static/sun.svg,sha256=jEKBAGCr7b9zNYv0VUb7lMWKjnU2dX69_Ye_DZWGXJI,6855
|
|
140
|
+
solara/server/static/webworker.js,sha256=cjAFz7-SygStHJnYlJUlJs-gE_7YQeQ-WBDcmKYyjvo,1372
|
|
141
|
+
solara/server/templates/index.html.j2,sha256=JXQo1M-STFHLBOFetgG7509cAq8xUP0VAEtYDzz35fY,31
|
|
142
|
+
solara/server/templates/loader-plain.css,sha256=SjZEbU8s2aUQk9UYwmbWMKXlGZe0XTvy4dfFTBeUWWo,205
|
|
143
|
+
solara/server/templates/loader-plain.html,sha256=VEtMDC8MQj75o2iWJ_gR70Jp05oOoyRBKbhS4o-FXVI,718
|
|
144
|
+
solara/server/templates/loader-solara.css,sha256=QerfzwlenkSJMq8uk_qEtoSdcI-DKMRrH9XXDEPsrUA,1670
|
|
145
|
+
solara/server/templates/loader-solara.html,sha256=bgp3GHOAhfzU0rcAAYDsqhGlemfZo4YNhRsYIvhU7YM,2726
|
|
146
|
+
solara/server/templates/plain.html,sha256=yO1r2hidA3bxOclaxtI_vTZtdDTFn2KKeeoldJuinXk,2762
|
|
147
|
+
solara/server/templates/solara.html.j2,sha256=dnKg5CY8ft85KZTrVkahb0idVZbXRIyorpmvI_Z7TD8,19668
|
|
148
|
+
solara/template/button.py,sha256=HM382prl4bNLF8sLBd9Sh43ReMGedG_z_h4XN4mDYRI,311
|
|
149
|
+
solara/template/markdown.py,sha256=31G3ezFooiveSrUH5afz5_nJ8SStjbx-_x5YLXv_hPk,1137
|
|
150
|
+
solara/template/portal/.flake8,sha256=wxWLwamdP33Jm1mPa1sVe3uT0AZkG_wHPbY3Ci7j5-g,136
|
|
151
|
+
solara/template/portal/.pre-commit-config.yaml,sha256=DsbfWYWrY1e8PsZLnpwy6i6toOqLj198qDd8Yb4rorY,791
|
|
152
|
+
solara/template/portal/LICENSE,sha256=xPc0BBwd0svV8AEKTLi_iOfiTJhyIUnHrLfPq3ziQrU,1066
|
|
153
|
+
solara/template/portal/Procfile,sha256=0hH27qB3LEQtsQQ-S7MmbdElV_mnkoydYm_50oEuBK0,411
|
|
154
|
+
solara/template/portal/mypy.ini,sha256=3aYc17TrLxLRnRo-D_yMUhxU5VTGZSjXCeIAIOnrk1c,63
|
|
155
|
+
solara/template/portal/pyproject.toml,sha256=BzRBFIJmp5bT1s-hpMMe3nom8cBiEkY-UlI2roN9jBM,458
|
|
156
|
+
solara/template/portal/solara_portal/__init__.py,sha256=syrq4HBVpD7Ay12hLDUO-sYi9LBD33OQtmHJdtxbVWw,100
|
|
157
|
+
solara/template/portal/solara_portal/data.py,sha256=In5sSAj1KJLHrH11HPOxRXrcgWWoODkmh55gyLHxU3Y,1911
|
|
158
|
+
solara/template/portal/solara_portal/components/__init__.py,sha256=BkqTfIZdB4_QwkTVTdLWC9-7OPk_5eGWC91Vt3MpcWo,70
|
|
159
|
+
solara/template/portal/solara_portal/components/article.py,sha256=pfHvvOIFqPghMYBSHUMre-vhLehIvy3katV9Cvex1V0,854
|
|
160
|
+
solara/template/portal/solara_portal/components/data.py,sha256=QYaqDGGX8-w5ul1DBk-6wyIVon6FiWxLHfFjqi10zUY,828
|
|
161
|
+
solara/template/portal/solara_portal/components/header.py,sha256=JHWri1BT1VpPZiOCLuDcj7fSy0eLVlXC6KyZKEyYr78,57
|
|
162
|
+
solara/template/portal/solara_portal/components/layout.py,sha256=_xCeI-Nk24LZXXiHB_7Eyrp_JeAkbwJEw5PDJ4nRRUk,101
|
|
163
|
+
solara/template/portal/solara_portal/content/articles/equis-in-vidi.md,sha256=Gni48ODKYIjHObBImuZ5ps-oAKYQ2E52UjgETcPP9Ec,3619
|
|
164
|
+
solara/template/portal/solara_portal/content/articles/substiterat-vati.md,sha256=sQCEj_JdEjYyKkyiGpJ8XvQGx6fa3QE1DQeL-OiPVa0,3092
|
|
165
|
+
solara/template/portal/solara_portal/pages/__init__.py,sha256=WjmBtG3JYwdixyb4t3707v2q_iyfkfd1MTDePQUWPU0,2565
|
|
166
|
+
solara/template/portal/solara_portal/pages/tabular.py,sha256=jrb2xqjGTSonBsIWllGKvKq4P6DD-xycXy8aFUh5U-c,938
|
|
167
|
+
solara/template/portal/solara_portal/pages/article/__init__.py,sha256=6PgHyyeK1_v6J2kBz8Aaa46w6-cjYCBmOONoFZgkuq4,814
|
|
168
|
+
solara/template/portal/solara_portal/pages/viz/__init__.py,sha256=l65uqBpFJ6Uh5XytXhLMnR-8G4FBnjqJg86OJX7_LO0,2858
|
|
169
|
+
solara/template/portal/solara_portal/pages/viz/overview.py,sha256=GPlzFxUR0LRQhR96a_CVWquGTjHhDehL1PR03Tcm3gs,365
|
|
170
|
+
solara/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
solara/test/pytest_plugin.py,sha256=p-9OX1SiWLTsgJxqFuQHDYNQ7Wfkp-MYZNJUVG8II2k,26284
|
|
172
|
+
solara/website/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
+
solara/website/utils.py,sha256=TfoExocZ8ko2hTcA7XDKI5FfKZ4gi3JTc_f9Oi5L7Fs,855
|
|
174
|
+
solara/website/assets/custom.css,sha256=_njMI-FGvaHIijWUa-aov5a77hGUGklfaeLxFtBvBCE,9665
|
|
175
|
+
solara/website/assets/theme.js,sha256=rm4kcAyIIGzrvsUOWMCHO5DrQVV1DJyQalVydGcKpEs,114
|
|
176
|
+
solara/website/assets/images/logo-small.png,sha256=mCYtNOyEPoeAFm20Hkm6JJ2Rv1fncVyeXrLdqb1rYi0,86383
|
|
177
|
+
solara/website/assets/images/logo.svg,sha256=mKyJWZ2cx0PhslMn4wjkyFTrHbulwJiVQPyL-F1-WWg,4858
|
|
178
|
+
solara/website/assets/images/logo_white.svg,sha256=bbqWAerR15o8bj35DTYBMfOphEvWYlm84x90RC4SFws,3901
|
|
179
|
+
solara/website/components/__init__.py,sha256=2zL8q_PDhJ5n6rx8gZ96ufTbo_jbp8D93f0frHs0pvo,167
|
|
180
|
+
solara/website/components/algolia.vue,sha256=JziH7MHESAjkpFD5b1izCpjYL3G3Qdn-XLbxAhLVXHg,460
|
|
181
|
+
solara/website/components/algolia_api.vue,sha256=6mzyfoxYMetMU2SaOgX6IDR4WJcsqejr_2g5C_xkAKM,7118
|
|
182
|
+
solara/website/components/docs.py,sha256=9iLPAStSP_vq2b9wy7S8RcQiHOEXA4sRCAJh0SfcoOY,5114
|
|
183
|
+
solara/website/components/header.py,sha256=6Y7LWYbQc19m3fTNKGtymwA932ewNnbrZvU0F93apPI,3299
|
|
184
|
+
solara/website/components/hero.py,sha256=rJdgQpnimOqejdwdGmS5PwS_tOfHeYWSAwRs2fMHEvQ,688
|
|
185
|
+
solara/website/components/mailchimp.py,sha256=ziMYkNpHLLKamniXnzS1wOtWMzLeIqqQGRZLxk0GUzE,199
|
|
186
|
+
solara/website/components/mailchimp.vue,sha256=f2cFKUfl7gL9FJbGLCtPRUFBghxS8kcGuI_xSSOAEpo,3543
|
|
187
|
+
solara/website/components/markdown.py,sha256=-ueVz2IlQQlSHJlLAp4nDdQaKZI6ycZKAzRFwJcDWEM,1036
|
|
188
|
+
solara/website/components/notebook.py,sha256=OVKvkdDjWsKYFk51ggPzAmz56kZnR8vGZXgwQTxR-0w,6865
|
|
189
|
+
solara/website/pages/__init__.py,sha256=_s_8Js9eQdqvq-4EhKkGtJpOAAyvPfdMLDYRNwVcDRM,34120
|
|
190
|
+
solara/website/pages/doc_use_download.py,sha256=lWx9so-xPgV19FGTFqvgnL5_IeJragj8bYmClVPfuLw,3139
|
|
191
|
+
solara/website/pages/docutils.py,sha256=2ne991oUtK4dMj-qN18NtsVYxSfCT1c6o5yYThQnxUE,736
|
|
192
|
+
solara/website/pages/apps/__init__.py,sha256=7ZmplbUsDo3uYHA9WI07hA8ZgRcDYbjw7aeohlu7mHk,284
|
|
193
|
+
solara/website/pages/apps/jupyter-dashboard-1.py,sha256=mDRpnz6xEO0uoc_QEe71gfnl6T--o7rUzOo6q5C4x54,3442
|
|
194
|
+
solara/website/pages/apps/layout-demo.py,sha256=2QVh3S1Ty00Qk9adf4F_CTZQ_WKnXxFNrBjVMLa8iP4,1676
|
|
195
|
+
solara/website/pages/apps/scatter.py,sha256=LMOHzn-lrBnWJjQFCsPN3GprBiRSR0EFd5PUOJ_C-YA,5442
|
|
196
|
+
solara/website/pages/apps/scrolling.py,sha256=zGvkE1007KcqaBII6D7BdvKC850PRKFDU4jTlDiV-r0,2706
|
|
197
|
+
solara/website/pages/apps/tutorial-streamlit.py,sha256=lKLzR4jvvw_cmrxqFhxxJ4IbobbXXRcREjTIcGC4P0U,426
|
|
198
|
+
solara/website/pages/apps/authorization/__init__.py,sha256=jw2S62wKmTvAhoIrdY9Qabys-gIliMe5sB03gxPahhI,4022
|
|
199
|
+
solara/website/pages/apps/authorization/admin.py,sha256=c9eQcHl1yHj3ITOadS9Gztn79v32UW6qln9YFKeH4iQ,363
|
|
200
|
+
solara/website/pages/apps/authorization/users.py,sha256=btZxKMuKrXZdPJxPusn-h1XXvMnePBumMqkFHYOjN38,346
|
|
201
|
+
solara/website/pages/apps/multipage/__init__.py,sha256=zljTAXbsV8hqb67dwmx_PhzN-gN_E_wNYX_vQOyyxGg,1223
|
|
202
|
+
solara/website/pages/apps/multipage/page1.py,sha256=5hK0RZ8UBBOaZcPKaplbLeb0VvaerhB6m3Jn5C0afRM,872
|
|
203
|
+
solara/website/pages/apps/multipage/page2.py,sha256=uRJ8YPFyKy7GR_Ii8DJSx3akb3H15rQAJZETMt9jVEk,1422
|
|
204
|
+
solara/website/pages/changelog/__init__.py,sha256=m9UuAdgj-Zucj5Plj3E4lbvfACxBFCAPl7y_0AM5pHQ,155
|
|
205
|
+
solara/website/pages/changelog/changelog.md,sha256=WfLHv4Rns-O9egh2xbpbdCp5YGwT3PPdEOZ_W-Q8qso,11875
|
|
206
|
+
solara/website/pages/contact/__init__.py,sha256=jJ6-lQo3OX4Q-7MczcA9VgHuTXHJUnamJali3YRig2U,151
|
|
207
|
+
solara/website/pages/contact/contact.md,sha256=zp66RGhOE_tdkRaWKZqGbuk-PnOqBWhDVvX5zSLXoHw,798
|
|
208
|
+
solara/website/pages/documentation/__init__.py,sha256=d4jZsmo7JDU8yqQq7OtBG50rQNQiL2IuWluaiNHIAmo,11379
|
|
209
|
+
solara/website/pages/documentation/advanced/__init__.py,sha256=bLLvasuqVVWJxGN89m77ChZhDivEhVavw9-_CiG3IZA,414
|
|
210
|
+
solara/website/pages/documentation/advanced/content/00-overview.md,sha256=GY7d74bw01rINC4Tt5ONRhOZjIYn5DnK97bQr-Zs-Sg,155
|
|
211
|
+
solara/website/pages/documentation/advanced/content/10-howto/00-overview.md,sha256=mG2UzdSn7ReVNIYFGYv7ODxPI5s_ux8j-J8HlWxE6Wo,324
|
|
212
|
+
solara/website/pages/documentation/advanced/content/10-howto/10-multipage.md,sha256=V52UWqYUnC7AaqbfpnM9-rOUEONZxczt-3k6FIjO77E,7417
|
|
213
|
+
solara/website/pages/documentation/advanced/content/10-howto/20-layout.md,sha256=0STmZU16cfcgi7mGdGvDdCOfV7RUPMl160RUG2rHM64,5792
|
|
214
|
+
solara/website/pages/documentation/advanced/content/10-howto/30-testing.md,sha256=eSvgwlxVKb7BjGIVbyQlt_b8G4XYSZmVYDQewMU0ky8,8300
|
|
215
|
+
solara/website/pages/documentation/advanced/content/10-howto/31-debugging.md,sha256=KUmLAJj2iiEL6im3lkOI8gRjaX4JM6uH565mTZNjV3I,1791
|
|
216
|
+
solara/website/pages/documentation/advanced/content/10-howto/40-embed.md,sha256=tufVLEUJ_nqpow5iwD_1Huw9Sa-4n-alNrvrY50A4WA,2119
|
|
217
|
+
solara/website/pages/documentation/advanced/content/10-howto/50-ipywidget_libraries.md,sha256=nIrx3eHDUAQpP-JxeE6DqhkAiHBHfT3pX_k_VqgLGno,5091
|
|
218
|
+
solara/website/pages/documentation/advanced/content/15-reference/00-overview.md,sha256=gHyQCjLa1P3CSQnuX-HLw2zMuKEj_4H4Xb6-tfWpkKc,107
|
|
219
|
+
solara/website/pages/documentation/advanced/content/15-reference/40-static_files.md,sha256=peS8cTnHUEPaJ6CcF9DkceNfV1XzNoL9oJP7-Aj1308,1094
|
|
220
|
+
solara/website/pages/documentation/advanced/content/15-reference/41-asset-files.md,sha256=-Xhmw46X11EKqKBC0Hf10-8XYPBSlOtEd36MdXihTo0,1847
|
|
221
|
+
solara/website/pages/documentation/advanced/content/15-reference/60-static-site-generation.md,sha256=gxxhfVrpl5VOwAj9KFURDdG1U7w2T67eyACxhhaqNpQ,2782
|
|
222
|
+
solara/website/pages/documentation/advanced/content/15-reference/70-search.md,sha256=4iJR7Xm3avSOx2Dv_2qZgoDikw8UoLLUokEcPjdvm9Y,1111
|
|
223
|
+
solara/website/pages/documentation/advanced/content/15-reference/80-reloading.md,sha256=sgDEmKYmrdtIjcJkx_z0dYz4p4WB-1cmHlQrR7dSXLk,1917
|
|
224
|
+
solara/website/pages/documentation/advanced/content/15-reference/90-notebook-support.md,sha256=RxqyrRVIcwH7wVVKHSR0Eb6WeT25RrLpQUI6JNMH16k,437
|
|
225
|
+
solara/website/pages/documentation/advanced/content/15-reference/95-caching.md,sha256=H1eBGOjsaQ2RZUeN-ud8BPtmwXMzn9lbAhRtYlUHmeY,4458
|
|
226
|
+
solara/website/pages/documentation/advanced/content/20-understanding/00-introduction.md,sha256=rd5OzaPu4F29EzRAJOM0bGuQeaMdn4N-pu2JA_oGhG0,590
|
|
227
|
+
solara/website/pages/documentation/advanced/content/20-understanding/05-ipywidgets.md,sha256=jDNjcqGGxxe0M3JgoeBgN5CTRpm_jqKRuGi5sGsOGk0,2057
|
|
228
|
+
solara/website/pages/documentation/advanced/content/20-understanding/06-ipyvuetify.md,sha256=R7t8aVpiXXsQeh6I3C9-JBpYRhC0N0s4zFBVota6Eak,1633
|
|
229
|
+
solara/website/pages/documentation/advanced/content/20-understanding/10-reacton.md,sha256=sK1nFnthUfV8iDk1e4g65gnTuFbrcbLPR-y0MOCRn6I,1397
|
|
230
|
+
solara/website/pages/documentation/advanced/content/20-understanding/12-reacton-basics.md,sha256=Mq_Pe2a5p9g4t2JkJzRMLtpYjeHZgcKIzPAbwblrye4,5328
|
|
231
|
+
solara/website/pages/documentation/advanced/content/20-understanding/15-anatomy.md,sha256=luqGGRsTsDl8D3JH49BZR_AKtnu2Rfpc1f4EWfxWE8c,1984
|
|
232
|
+
solara/website/pages/documentation/advanced/content/20-understanding/17-rules-of-hooks.md,sha256=5iFSxoO3FD-XrRRuGht9EiqVqvBUP1Yb2HQ7QYd5Tvs,244
|
|
233
|
+
solara/website/pages/documentation/advanced/content/20-understanding/18-containers.md,sha256=Bkl22GXxO0MhTVpUK1q0l5h_wBWNgkR1ZoCG28p7r40,4905
|
|
234
|
+
solara/website/pages/documentation/advanced/content/20-understanding/20-solara.md,sha256=sNK-mmgbj9rDHOXu5JaP7OMQdX0chOZ72-aMdOEOkug,751
|
|
235
|
+
solara/website/pages/documentation/advanced/content/20-understanding/40-routing.md,sha256=pV_kXl4dEIx53BK3M-0xulKjPLiFAzZforXmylHemFM,9679
|
|
236
|
+
solara/website/pages/documentation/advanced/content/20-understanding/50-solara-server.md,sha256=0DaBpVnR2smTAKjgY73zlEATMsN5CK8XRr2gfg0H7GY,5933
|
|
237
|
+
solara/website/pages/documentation/advanced/content/20-understanding/60-voila.md,sha256=jlL0kyzzDdHytNizBBLPx7buFFforlIDdMF724C2RLE,1132
|
|
238
|
+
solara/website/pages/documentation/advanced/content/30-enterprise/00-overview.md,sha256=2_-VXLH0jwRIySqr4UFbGqhZO2MVulYC_vTB3R9lOXc,20
|
|
239
|
+
solara/website/pages/documentation/advanced/content/30-enterprise/10-oauth.md,sha256=mzul6a54weG81pQhRQo3M8BvIupfnYyula6f83UgSVI,8227
|
|
240
|
+
solara/website/pages/documentation/advanced/content/40-development/00-overview.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
|
+
solara/website/pages/documentation/advanced/content/40-development/01-contribute.md,sha256=zzcRg3Jk7JSdPoybMeFzICyS1c1MqCnN7sbd1WF0-II,2880
|
|
242
|
+
solara/website/pages/documentation/advanced/content/40-development/10-setup.md,sha256=-Qq8gIsOkdYR3FKFdjEYtKYD2XkedDFrS0DahMaSXLA,2321
|
|
243
|
+
solara/website/pages/documentation/api/__init__.py,sha256=2f2OtK_INAKF5P_Ich7bEk-nC4Ia8q10vzK7fsHNuwg,313
|
|
244
|
+
solara/website/pages/documentation/api/cross_filter/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
245
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py,sha256=9rap78UerC1zWkS-mUXIJCm8sdOGdwMbeZ1BKfgLEc0,502
|
|
246
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_report.py,sha256=IT-yogsxu9nc12kviMUJhDftu73kBD3INpT5NKUs_4E,485
|
|
247
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_select.py,sha256=pECGKSLz_gcxBZdevsfUnERjJ32V7stRX4X6gbVGwBc,461
|
|
248
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py,sha256=eWTBBNj8WJjmhCfOHPTOiossAnniTMh1W2Olgo6RyOU,491
|
|
249
|
+
solara/website/pages/documentation/api/hooks/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
250
|
+
solara/website/pages/documentation/api/hooks/use_cross_filter.py,sha256=Td2SnKlGOyFlVKPBQaVaLimhsy5vdxyKJdjcW3zBu1k,512
|
|
251
|
+
solara/website/pages/documentation/api/hooks/use_dark_effective.py,sha256=uwKHSj3htGIPUIYX8tBX6_Lis3MoDwqCCtFaDHPYJp0,257
|
|
252
|
+
solara/website/pages/documentation/api/hooks/use_effect.md,sha256=0GVnM609RJzpV2xkbiHb13JrwEut3VrQ-41HuHYg6Tg,1422
|
|
253
|
+
solara/website/pages/documentation/api/hooks/use_effect.py,sha256=7yCp4u6mXtVe7vn897tXhep3wz27rn-Fk7euO5wHbHk,183
|
|
254
|
+
solara/website/pages/documentation/api/hooks/use_exception.py,sha256=4xrLLY2TuiFwBxdq7gXWP40vwFvTAgJbE2gV0PLhk-k,898
|
|
255
|
+
solara/website/pages/documentation/api/hooks/use_memo.md,sha256=1wZypMGchSZWUL-Uq1-zNgcYUyGU49l1kvDsAf8VNeY,847
|
|
256
|
+
solara/website/pages/documentation/api/hooks/use_memo.py,sha256=osKi_Fgi6QqmRGzSRbKKyuauD2CeLq6egf2AqT2QefI,179
|
|
257
|
+
solara/website/pages/documentation/api/hooks/use_previous.py,sha256=-oPGBgx821G4XyJAf_GH5yX18upwUIhfItPLhr3iYAc,580
|
|
258
|
+
solara/website/pages/documentation/api/hooks/use_reactive.py,sha256=s6TKUaE5rMog7492ZnpSXTi6wwh9CPZVP2KTtjHfGEM,221
|
|
259
|
+
solara/website/pages/documentation/api/hooks/use_state.py,sha256=gY6ZOwG_Hm3gf2uqoIAigTPxvJSZusIMqRyoiX4vyjY,231
|
|
260
|
+
solara/website/pages/documentation/api/hooks/use_state_or_update.py,sha256=I9UJ3K92GJxqWQDFcXkYSarl94qsmsD5ix5YKfVEqpc,2684
|
|
261
|
+
solara/website/pages/documentation/api/hooks/use_thread.md,sha256=ozoh-QEaOs4dSM_cGJ2w4jRYlSR4FMkHkScCTNw_Hsk,2425
|
|
262
|
+
solara/website/pages/documentation/api/hooks/use_thread.py,sha256=x1CC0heF7C1BZxZV2Ccs0zMniqnpEi1lGiu-OTF-I_M,1430
|
|
263
|
+
solara/website/pages/documentation/api/hooks/use_trait_observe.py,sha256=RaZAYwANJWJ-0cUzMwcro52aFcbu7d5yxD2AT6SjweM,250
|
|
264
|
+
solara/website/pages/documentation/api/routing/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
265
|
+
solara/website/pages/documentation/api/routing/generate_routes.py,sha256=47D_3ynzaswhXozvbByM1LZKiUmwwXUvjstosofOIfA,261
|
|
266
|
+
solara/website/pages/documentation/api/routing/generate_routes_directory.py,sha256=IdJ47DNiKaUZakBI79zhIGXcqpXATbcrkcUfI2KyPUQ,291
|
|
267
|
+
solara/website/pages/documentation/api/routing/resolve_path.py,sha256=inubr7kLsGNdPiZKy-bXnDTNduM_AgvS6jiY4gk6bAY,1210
|
|
268
|
+
solara/website/pages/documentation/api/routing/route.py,sha256=DL0eeAy4XAzAGxJRkzDXDkAIJQ9bJxsjk_z1IvNZNjs,1025
|
|
269
|
+
solara/website/pages/documentation/api/routing/use_route.py,sha256=foYmxkFcWF9D7RfE7F7c5Wc1e2ImSR9AJ7Ds7BCZxSE,2500
|
|
270
|
+
solara/website/pages/documentation/api/routing/use_router.py,sha256=U98dnue_jaF1GJA5HBCCGg1YbS5-Yx-e3mYziA33G-w,215
|
|
271
|
+
solara/website/pages/documentation/api/utilities/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
272
|
+
solara/website/pages/documentation/api/utilities/component_vue.py,sha256=ri5HuJLzs4f7j5RiWskx5_7xpVWMxd3xresAG99pylE,243
|
|
273
|
+
solara/website/pages/documentation/api/utilities/computed.py,sha256=QzTIOh7Xh5QctR53c-axbgL6epxWTbjoWFSllfVIAxM,213
|
|
274
|
+
solara/website/pages/documentation/api/utilities/display.py,sha256=p9bQBGKk8MK8NSZWixO9n8NJ3anWJvfSZXZGkFKlYKg,206
|
|
275
|
+
solara/website/pages/documentation/api/utilities/get_kernel_id.py,sha256=NOVqM6bQoWbwytQ8QqsFtpwuIkYIxzCUdbSdOkMhlgs,224
|
|
276
|
+
solara/website/pages/documentation/api/utilities/get_session_id.py,sha256=NHXFD3l_ow5IbHt7gR2ZZt8wZKP1eVqyVi1m3AUm3Hc,227
|
|
277
|
+
solara/website/pages/documentation/api/utilities/memoize.py,sha256=Zj6BkNjgDUAKq7JDZnFnFQhTN-mr_xYhWUXHetWEp3E,991
|
|
278
|
+
solara/website/pages/documentation/api/utilities/on_kernel_start.py,sha256=Wz6EIKlDUm_l5rvdsRzfUCtpyL6vg7cNYWb5qpM1a44,1206
|
|
279
|
+
solara/website/pages/documentation/api/utilities/reactive.py,sha256=p7DXuOx8dBuRtvNPFMSxPWPt_OB3kBepGmpEl4V5rPM,209
|
|
280
|
+
solara/website/pages/documentation/api/utilities/widget.py,sha256=xxuP7s4V-s9KNLUBS3SSio3_j3AHsEi047uNCzTV2lc,2791
|
|
281
|
+
solara/website/pages/documentation/components/__init__.py,sha256=QUnisvMWYheUHAsX6y9lCy6ZotbDSqBqx_Qxcu6vcyA,238
|
|
282
|
+
solara/website/pages/documentation/components/common.py,sha256=ouBSC8sOYw8h8-ZsEagij75UeRxHlms_vKFcqAlA_bc,236
|
|
283
|
+
solara/website/pages/documentation/components/advanced/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
284
|
+
solara/website/pages/documentation/components/advanced/link.py,sha256=z9k5KPg5XIp3wGsSweXeowlBAq4C04PN1h_K2GzA9XE,732
|
|
285
|
+
solara/website/pages/documentation/components/advanced/meta.py,sha256=_2MhfCmj21M9EWSU0O6IhW7PLWw4-4ynwdnxNxM_LcU,588
|
|
286
|
+
solara/website/pages/documentation/components/advanced/style.py,sha256=52dQ4cUgxpXF8dBlXBMILEyMlK-hqEgHhOrZ8VFvXoc,1024
|
|
287
|
+
solara/website/pages/documentation/components/data/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
288
|
+
solara/website/pages/documentation/components/data/dataframe.py,sha256=GCTIMXaYVEwXA8yQhWldqNozIpu38KN-VJwnra5ZT2k,1228
|
|
289
|
+
solara/website/pages/documentation/components/data/pivot_table.py,sha256=tpMBQp8-67t7RL1cFE5d8vQ0hVIPrUT8-LrS1lvlBUo,3074
|
|
290
|
+
solara/website/pages/documentation/components/enterprise/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
291
|
+
solara/website/pages/documentation/components/enterprise/avatar.py,sha256=8EvPwNhBNFccX81kpFs9kl7NLGoBHlbty8KOAe4--Xw,421
|
|
292
|
+
solara/website/pages/documentation/components/enterprise/avatar_menu.py,sha256=TFEQq8hh8xbWhLpfSu9yZmDRbhcFGy-A51LETjktGj8,434
|
|
293
|
+
solara/website/pages/documentation/components/input/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
294
|
+
solara/website/pages/documentation/components/input/button.py,sha256=MB46yBccVgFc-CM9rs1_GzuXoA2PzCfNsn3qbyguums,433
|
|
295
|
+
solara/website/pages/documentation/components/input/checkbox.py,sha256=OdbHlLOrEPc3a2R8-UY0q9e4bnCgzgatVG9yHSftNqk,187
|
|
296
|
+
solara/website/pages/documentation/components/input/file_browser.py,sha256=alZP9Keg3FlfpBm0xmDKtUvRziJkv-sWhpZpa7uvTiU,1021
|
|
297
|
+
solara/website/pages/documentation/components/input/file_drop.py,sha256=Khj_ge7vlwdTLhHqzEwWAJ7GBHTM63NvHPREv7u_Rx8,2290
|
|
298
|
+
solara/website/pages/documentation/components/input/input.py,sha256=7sIYswviM0pqwF0t2NGzZopR2Apb5DchKOklWUULIEk,426
|
|
299
|
+
solara/website/pages/documentation/components/input/select.py,sha256=PWvUsJHSyNJNenLcj2XSMD3NnclkxcxpBk553-RXNOc,439
|
|
300
|
+
solara/website/pages/documentation/components/input/slider.py,sha256=O7hAuWLufxt36glKvx8f2VODZg0YblyCII-7afoAyQo,741
|
|
301
|
+
solara/website/pages/documentation/components/input/switch.py,sha256=RN9pnxU2da15FD_D3aN16NkW2IDy8LTnSg82Tj91BDw,183
|
|
302
|
+
solara/website/pages/documentation/components/input/togglebuttons.py,sha256=2T5cLxKpV5uHfLTP2sU4ELmWYv1fuglsBkzpn9Sou-U,447
|
|
303
|
+
solara/website/pages/documentation/components/lab/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
304
|
+
solara/website/pages/documentation/components/lab/chat.py,sha256=akS1na6rJGf_n37keB71Cj-hB34BNXsfOVjnZCy6g1U,2885
|
|
305
|
+
solara/website/pages/documentation/components/lab/confirmation_dialog.py,sha256=OC-3TlnMOMJsjbrcKfS9kz-L6XFEEWL1WMmwIWttYoM,1622
|
|
306
|
+
solara/website/pages/documentation/components/lab/cookies_headers.py,sha256=WGhiM4Bh5GczYuRaDTF78RncCerpFSbwkRbKimS_IqQ,1471
|
|
307
|
+
solara/website/pages/documentation/components/lab/input_date.py,sha256=zOLYyXguccTeViaSz62QJZuaZWSLe2Sb5QOv6E_vtbE,438
|
|
308
|
+
solara/website/pages/documentation/components/lab/menu.py,sha256=-JjmBAt2qlcg5NLFimeyqqmbMebBsMblKNKOK2tDRrs,511
|
|
309
|
+
solara/website/pages/documentation/components/lab/tab.py,sha256=Hu9NxVuKdsPLrYOjvIks96lLgQubiyZhas6ZDQ4EeKo,597
|
|
310
|
+
solara/website/pages/documentation/components/lab/tabs.py,sha256=YlyQ7AnFGMXCM6grM9u4p3z4f5cM24qcvYLuBqF7i1o,1302
|
|
311
|
+
solara/website/pages/documentation/components/lab/task.py,sha256=-fj_xP-MmC23yJ9Y8ZSBfpAypSkSxK9qExvxUZF2_XI,238
|
|
312
|
+
solara/website/pages/documentation/components/lab/theming.py,sha256=ONBjpd7yi6NvanwdsK8HINW492T5DkkA_qifH2Z1mXE,2464
|
|
313
|
+
solara/website/pages/documentation/components/lab/use_task.py,sha256=EnyXQelT8a-CVQTdvHSkZxH3W9YBq2N73uqXabA_J6g,250
|
|
314
|
+
solara/website/pages/documentation/components/layout/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
315
|
+
solara/website/pages/documentation/components/layout/app_bar.py,sha256=TAA-YDMFIb4LuOnX5Z0k_7tVxJ3Zo_HIUaSIYNLJzE4,222
|
|
316
|
+
solara/website/pages/documentation/components/layout/app_bar_title.py,sha256=IgK9jHGT41-BFguz4FMBHeLqqEa1IfxfZyaoj3dzrMY,237
|
|
317
|
+
solara/website/pages/documentation/components/layout/app_layout.py,sha256=4PrqcEOVRnbH4E2Mw-4C2GXiKk4vX1kspNmjU6JLhRA,484
|
|
318
|
+
solara/website/pages/documentation/components/layout/card.py,sha256=5oanUHkBOR5Sh6CRygw6CKSuc4r7ko7SbnsjNQsAYtc,215
|
|
319
|
+
solara/website/pages/documentation/components/layout/card_actions.py,sha256=VVHa-2Ro8iJXZs1DGDBJ9HfTZRxGB3hNL2WJ-NYttUk,237
|
|
320
|
+
solara/website/pages/documentation/components/layout/column.py,sha256=r7-RFUy7FCIfGD4qbdvWaz9QUSk83PQoNlExTstfC4Q,853
|
|
321
|
+
solara/website/pages/documentation/components/layout/columns.py,sha256=pQ5j05T8kLacKkGQJGIX2Nu4s0Jru2o-ecXUCzQCM6Q,891
|
|
322
|
+
solara/website/pages/documentation/components/layout/columns_responsive.py,sha256=sRhmaQtRmlmN70DjhkcA6-NSDoOsoZ5qIfYuVL-dQLA,2993
|
|
323
|
+
solara/website/pages/documentation/components/layout/griddraggable.py,sha256=4sW7hhLuLOLltO8dhQaXGqdMLkXzQpBy3S1CfDut3yw,2129
|
|
324
|
+
solara/website/pages/documentation/components/layout/gridfixed.py,sha256=yjq6rkDaf2W-LCs5OPFGmDbdCaYSZO_qfuVxxRF_oHs,406
|
|
325
|
+
solara/website/pages/documentation/components/layout/hbox.py,sha256=Nl8QDYP0JHlgiMNfqYFQadRPXC6-OHNPz_XthZADmRA,348
|
|
326
|
+
solara/website/pages/documentation/components/layout/row.py,sha256=8ADlxSPcMFrT3mzAgQfeR_yvVtZkOHHUquDBBNM9Lpg,900
|
|
327
|
+
solara/website/pages/documentation/components/layout/sidebar.py,sha256=DZIoOvGIjJmJaKy2zytkIjnnT4466i0DFl9bkFyOUNQ,517
|
|
328
|
+
solara/website/pages/documentation/components/layout/vbox.py,sha256=OA5X3KOwkLYxdqVMurAwmifAp8u9g8Ep0VrYB-tbznc,349
|
|
329
|
+
solara/website/pages/documentation/components/output/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
330
|
+
solara/website/pages/documentation/components/output/file_download.py,sha256=FTQ4WQoY9K5hTFU7obnHblMoubUIZ375bz5chiQM1tI,218
|
|
331
|
+
solara/website/pages/documentation/components/output/html.py,sha256=Eu_FGWsjg-j95KrkWPAVm6ah0GU2aY0mDcIW38CeDLo,334
|
|
332
|
+
solara/website/pages/documentation/components/output/image.py,sha256=MW2BoASwremJbZZbyxVv-8D1FnJVX7XMsUOcogC7-7c,197
|
|
333
|
+
solara/website/pages/documentation/components/output/markdown.py,sha256=08lhY1otxMa9h8DVYS2GwQsu3A9eDDiwf_Xjr5Hn1nk,1156
|
|
334
|
+
solara/website/pages/documentation/components/output/markdown_editor.py,sha256=24UBHcp-Tq3Fq1jH8ez8vuWyUkz_sIfn37-7g3KdHn8,1002
|
|
335
|
+
solara/website/pages/documentation/components/output/sql_code.py,sha256=zf0Az-pPKdFvTXA76SpLWcwelp_cM7sUJm-9FjgylC0,2783
|
|
336
|
+
solara/website/pages/documentation/components/output/tooltip.py,sha256=CQKvD-fQCkUp0rce719vkMi0uYuc-iy20sB5UIsHsLY,203
|
|
337
|
+
solara/website/pages/documentation/components/page/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
338
|
+
solara/website/pages/documentation/components/page/head.py,sha256=-oUl5s6SKqvA2HjvPBYprc69Q2OgpnTW52bHCaAjtTY,474
|
|
339
|
+
solara/website/pages/documentation/components/page/title.py,sha256=0xhidETt0CsR74h5APBrPH_wt1dlpv3oy1-8mUjbwgc,896
|
|
340
|
+
solara/website/pages/documentation/components/status/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
341
|
+
solara/website/pages/documentation/components/status/error.py,sha256=1LWZymWvcZf5aidSteFOKBeI_1kFVSoiJ_UwlP5N_34,1213
|
|
342
|
+
solara/website/pages/documentation/components/status/info.py,sha256=sFKiwPOpzPPKDKusndQJCQiwgctY7RDJjMLal4xFaAE,1210
|
|
343
|
+
solara/website/pages/documentation/components/status/progress.py,sha256=2euK3iaPk6QkcDlRoMbAYlNndZA_lHpGCI82OuPueGc,199
|
|
344
|
+
solara/website/pages/documentation/components/status/spinner.py,sha256=swn2TTdyjyC24GvocWnPMMdqdmh8_goAJVWJdYiK2WI,198
|
|
345
|
+
solara/website/pages/documentation/components/status/success.py,sha256=5Iav2ATRsn5_CrGLxt8LJA4OBq3q7ky4rjDuWfCZckI,1219
|
|
346
|
+
solara/website/pages/documentation/components/status/warning.py,sha256=q6lzRfRNkAh1AaftmTDDEis9Wr0O7bJxkdwIelkyDWw,1469
|
|
347
|
+
solara/website/pages/documentation/components/viz/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
348
|
+
solara/website/pages/documentation/components/viz/altair.py,sha256=HmmMob0BaodcjITo9_O2aMqduIhTrV7H8tIvdCIOSVo,790
|
|
349
|
+
solara/website/pages/documentation/components/viz/echarts.py,sha256=__uayej4ttWZRkYoJXi_qJVasMLgARbbBOCN2Pf0kgM,2592
|
|
350
|
+
solara/website/pages/documentation/components/viz/matplotlib.py,sha256=YEvCQyy5lmuV_6NArZ8qYucLMN6ah7pVJNk-xkouDAg,761
|
|
351
|
+
solara/website/pages/documentation/components/viz/plotly.py,sha256=t54SJLkdf7jfO7XwAnbuArotUCq_6aX_CCsXi_Z7c1k,1377
|
|
352
|
+
solara/website/pages/documentation/components/viz/plotly_express.py,sha256=dnBKzdr1IQF5bkSN2f8hkNbW4u7mfEwhNEufmaaDcEM,957
|
|
353
|
+
solara/website/pages/documentation/examples/__init__.py,sha256=de2M6jJvR6vYFAWx2jlSuuDwaFtwYNw7rhzenHPp-jI,2075
|
|
354
|
+
solara/website/pages/documentation/examples/ipycanvas.py,sha256=58iN7Hby5aeQglhCkDrXQDejszMf_aFvvEQWAEdccPE,1846
|
|
355
|
+
solara/website/pages/documentation/examples/ai/__init__.py,sha256=ZicYzTHeFnnVnfQitWJ8t3-VGUDlMK5g-mXc3Y2HmkY,192
|
|
356
|
+
solara/website/pages/documentation/examples/ai/chatbot.py,sha256=BWFfaMaJTVfi76QDe6wTY5SMkUN9R7nxQKJ8mBH3jco,2878
|
|
357
|
+
solara/website/pages/documentation/examples/ai/tokenizer.py,sha256=vA_ut_9lka-uoDI86qfouzB7CcXu-1OYHTFQKNXtFao,3701
|
|
358
|
+
solara/website/pages/documentation/examples/basics/__init__.py,sha256=1GvAS0idpN-CcfBwmcVZMA6XjoewDjZ75-Vq16QCpQU,159
|
|
359
|
+
solara/website/pages/documentation/examples/basics/sine.py,sha256=0xTkCwBajwAl5z-ayT47kzS5ziRfsa48A7XxQeXgxtQ,554
|
|
360
|
+
solara/website/pages/documentation/examples/fullscreen/__init__.py,sha256=n5COsGchrYdsfT3kp0z8tvrnCbNa3487VYA4FrbTsbo,143
|
|
361
|
+
solara/website/pages/documentation/examples/fullscreen/authorization.py,sha256=6b01f5z4W6zmZg2Jd-nCrjB5biEn4B-Pt7lmrKFRYvs,46
|
|
362
|
+
solara/website/pages/documentation/examples/fullscreen/layout_demo.py,sha256=efFCa41vESkjdd2_AEnVfJ7Kp2-BiQZVuM8DhWkuS6c,44
|
|
363
|
+
solara/website/pages/documentation/examples/fullscreen/multipage.py,sha256=b4Wkohzr4MqJSJT5vzrfHU_Xzh82fJmh8h4YnFqD1RM,42
|
|
364
|
+
solara/website/pages/documentation/examples/fullscreen/scatter.py,sha256=zNh9A6nw7J4FRY939yHyC8t3E_ZyuIcXkqN1JGhie_0,40
|
|
365
|
+
solara/website/pages/documentation/examples/fullscreen/scrolling.py,sha256=CLPW25L1bXpRiK3Ix96Q0MRgXWMmqIw7pYVnnO36nMs,42
|
|
366
|
+
solara/website/pages/documentation/examples/fullscreen/tutorial_streamlit.py,sha256=vV9f2g8Tc5Fs1lgycAaYxW0gJWLJ_R6iy7zbjEEtJUc,51
|
|
367
|
+
solara/website/pages/documentation/examples/general/__init__.py,sha256=w7N8n13ePXRlmow_EVdfIp_VknU-TicirOTQa_ZMdxk,119
|
|
368
|
+
solara/website/pages/documentation/examples/general/custom_storage.py,sha256=FaEk5aB00IL5G1eqEWtU-7Ny6Tz0n8NCXns2qhKgYkY,2433
|
|
369
|
+
solara/website/pages/documentation/examples/general/deploy_model.py,sha256=u2HfwftkpXhvSgMMW3FuYpx9PC3uZREO49ewG534ox4,4968
|
|
370
|
+
solara/website/pages/documentation/examples/general/live_update.py,sha256=Zte8ii3W_Jv0mR8cD38xajO7Qn9JJEg3PwDe-q1IbRg,987
|
|
371
|
+
solara/website/pages/documentation/examples/general/login_oauth.py,sha256=STckaXaDxdEnltl5PkgkSmw-FASqUqr4T5llGI-UwNA,2551
|
|
372
|
+
solara/website/pages/documentation/examples/general/mycard.vue,sha256=j1p32TyRHYpi4OW__K1UxwMElif3R9J-POlTb8ACCMg,1359
|
|
373
|
+
solara/website/pages/documentation/examples/general/pokemon_search.py,sha256=ff6DBH5pCKU175A99VGlvNDEnzO1P27nMVUNcDNo-ag,2079
|
|
374
|
+
solara/website/pages/documentation/examples/general/vue_component.py,sha256=HVy7-Evl7S2CiZDNPGE0W9T3g2PRswM1O3hyxpgPU80,1757
|
|
375
|
+
solara/website/pages/documentation/examples/libraries/__init__.py,sha256=x7Hy8EmHugarFZIP2Wl4K7ACs_70iC4KmOhMVHXQqEo,144
|
|
376
|
+
solara/website/pages/documentation/examples/libraries/altair.py,sha256=bPkikVQsTVrXEx4svH_QqMobvD-oiP6gtBTG5zbT5yc,2141
|
|
377
|
+
solara/website/pages/documentation/examples/libraries/bqplot.py,sha256=kssz938QYBTyFwv4ZwPnqtg-Ep70JemUejHNJWyAKh4,1164
|
|
378
|
+
solara/website/pages/documentation/examples/libraries/ipyleaflet.py,sha256=T2kSAW-dowAsccaSE9jChDVfJL7CxAn-bqJ1t7-tcmk,1168
|
|
379
|
+
solara/website/pages/documentation/examples/libraries/ipyleaflet_advanced.py,sha256=1jabLNxoA6_p5xo9WgUJ5AVjmrXPKd1uoR9uWoIsFj8,2297
|
|
380
|
+
solara/website/pages/documentation/examples/utilities/__init__.py,sha256=5AtOFUlZpWTOya9fn0jSzKiJ-tpOg_fDzFcb9aJQiFM,155
|
|
381
|
+
solara/website/pages/documentation/examples/utilities/calculator.py,sha256=ysDgp0LRK7E3OeEBalJn07u8-fQagg6hmeG5Juosejs,5529
|
|
382
|
+
solara/website/pages/documentation/examples/utilities/countdown_timer.py,sha256=E61jZ0RLZt7XUHAWrpSs-Mo0OoR88OoRSOQbs35J230,2163
|
|
383
|
+
solara/website/pages/documentation/examples/utilities/todo.py,sha256=tFsCt429TaOLyWLjb7UW-1ji64Uwv3JhN8y6EQHJHXM,6480
|
|
384
|
+
solara/website/pages/documentation/examples/visualization/__init__.py,sha256=OaLTp4A4J6y0lZS6mVgY78eNRQ0SagOK261KNY4LEVQ,105
|
|
385
|
+
solara/website/pages/documentation/examples/visualization/annotator.py,sha256=68tukoY_1eCtILXBwCIsijIQEvv96HXxv4Ae_5osB2o,1809
|
|
386
|
+
solara/website/pages/documentation/examples/visualization/linked_views.py,sha256=Tc4hMTOXFN7R_ivIzvbbwQAGwQ2-hLYgB-s10Q5i_pQ,2700
|
|
387
|
+
solara/website/pages/documentation/examples/visualization/plotly.py,sha256=33kKSV-h8cyU6KJ3XfiTrkHtIrtUg7SbYlz0XWLNBN0,1268
|
|
388
|
+
solara/website/pages/documentation/faq/__init__.py,sha256=GcdqdTEWC-xDgIWECQleZbbnmacelt9K1ZyTw2nf9Wc,278
|
|
389
|
+
solara/website/pages/documentation/faq/content/99-faq.md,sha256=yZXc-mOUJhM0d6UOT6t6pn46M_hyiJkM9sytY3h6JYY,3235
|
|
390
|
+
solara/website/pages/documentation/getting_started/__init__.py,sha256=bLLvasuqVVWJxGN89m77ChZhDivEhVavw9-_CiG3IZA,414
|
|
391
|
+
solara/website/pages/documentation/getting_started/content/00-quickstart.md,sha256=uhD8imzC8bTE1mO1Qq-I4n7XrA8GOxJwx93Dwhhfuj8,3011
|
|
392
|
+
solara/website/pages/documentation/getting_started/content/01-introduction.md,sha256=43EhX3JhwFICQademwwFgALuCc2chYa2xkUKp8pkid4,6609
|
|
393
|
+
solara/website/pages/documentation/getting_started/content/02-installing.md,sha256=HzQ-8b1A9dHBpOc0y61JjN_z1zJfjSd4Z85hzITaxKI,5596
|
|
394
|
+
solara/website/pages/documentation/getting_started/content/80-what-is-lab.md,sha256=4CLyCZYkApsWNdXJ3N6YYShj5s4tJhYH1V6svtVgCcE,307
|
|
395
|
+
solara/website/pages/documentation/getting_started/content/90-troubleshoot.md,sha256=8nPg3ncqQKD2lqs2Ob5YA7-LYQQyCfjO8muggHtNSCA,1783
|
|
396
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/00-overview.md,sha256=mNf7B0VOVs74Xh_Es947L0rXlyRzsc7AArJFwAmWUVA,1328
|
|
397
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/10_data_science.py,sha256=4abDgxga_Divf5Jazpr1jCtU34uyKKgRWozdEWnpIKw,267
|
|
398
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/20-web-app.md,sha256=oig0iwvF9XqKo14QcxoOnxwGruPPhAJnKnewMupzmTY,3496
|
|
399
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/30-ipywidgets.md,sha256=d9GYmh1FBO-uuwWW-nDl3vGZ5WNvJWPwag3QIHTtHqo,4577
|
|
400
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/40-streamlit.md,sha256=8XbsWDzL6XNNjH8qWWBB7klQswuNgTI4Pwq8VNVaqC0,6824
|
|
401
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/50-dash.md,sha256=jxsM17kPIgmaHqPWxtV5xC-RWMzlJfb5QEmUT1IJrtI,5399
|
|
402
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/60-jupyter-dashboard-part1.py,sha256=u59dkYAGGNyYJPFXmvBcm6hdrMdQWoJoLdYTcQnKH-c,3009
|
|
403
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/SF_crime_sample.csv.gz,sha256=6jfiB65wgPXQwRHi4lSuGUHNULo_Me6kmIU74Kd7kxg,575276
|
|
404
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/_data_science.ipynb,sha256=a9EdGu2zXWccH2bmY25qhu5eg2usACJle1AFdwgjDTs,14031
|
|
405
|
+
solara/website/pages/documentation/getting_started/content/04-tutorials/_jupyter_dashboard_1.ipynb,sha256=SGM-iUPjIi03nJqAx2aIOxw_hdKnmGP-npqJBWeum9Y,57417
|
|
406
|
+
solara/website/pages/documentation/getting_started/content/05-fundamentals/00-overview.md,sha256=b_emhNMTTMB5wgUYymDQCv7-YkNA5_beRfVnZY_K9-Y,461
|
|
407
|
+
solara/website/pages/documentation/getting_started/content/05-fundamentals/10-components.md,sha256=dEUb2jpkKE0J8VV10HbbpSBTmU766X74MX9rMs2s8vE,13931
|
|
408
|
+
solara/website/pages/documentation/getting_started/content/05-fundamentals/50-state-management.md,sha256=2erhyogDTBzgX4kOOBbNCm2UiONcg29HmLxVvSd6LHA,4599
|
|
409
|
+
solara/website/pages/documentation/getting_started/content/07-deploying/00-overview.md,sha256=frkz54EDE8o7L0LohVi1liftJDH2_FthLaNRkHRLIPU,368
|
|
410
|
+
solara/website/pages/documentation/getting_started/content/07-deploying/10-self-hosted.md,sha256=tEoqI1G2dzKwHmIaqSSeFGFKLuAaBixKtG1LQBCHp3c,8982
|
|
411
|
+
solara/website/pages/documentation/getting_started/content/07-deploying/20-cloud-hosted.md,sha256=kdqdM5q0jcv86OwW7WI-MwsQjKYaj9jxENAsVxdL05U,4076
|
|
412
|
+
solara/website/pages/showcase/__init__.py,sha256=_6VP_Lxomr-hQz-hceEyLKo503gmcuuxqwJQW7Ps8Vo,6326
|
|
413
|
+
solara/website/pages/showcase/domino_code_assist.py,sha256=dxEbAYeZwiSx1_JHVd1dsnEqpPwiv3TcmYSonwjc-PE,2297
|
|
414
|
+
solara/website/pages/showcase/planeto_tessa.py,sha256=7uFsWvzOenyJIKW88ZF7PmkEStdySinUEgraeU6LKCE,723
|
|
415
|
+
solara/website/pages/showcase/solara_dev.py,sha256=Rpjp6sMg5kZSM4z5K-oZ5T3cyAhvnQS9n8cX4seR27U,2028
|
|
416
|
+
solara/website/pages/showcase/solarathon_2023_team_2.py,sha256=NT_TffxdrOG-puaIDYVepJH2bX_yH4AaiUIWRJ6wACg,1084
|
|
417
|
+
solara/website/pages/showcase/solarathon_2023_team_4.py,sha256=F8hvevZ2wqqf8agWHjKFUEhrxCxPJkd19uJ4tv2HkAs,1078
|
|
418
|
+
solara/website/pages/showcase/solarathon_2023_team_5.py,sha256=iwuejzdYvi6KvlO8yPKH_6ajGjlDiju0kju0TQPAh_E,1220
|
|
419
|
+
solara/website/pages/showcase/solarathon_2023_team_6.py,sha256=HPJK3VXyKXlyEQfZ9YTsBpsRfO7d5UdrCHOLJppiwx8,1809
|
|
420
|
+
solara/website/pages/showcase/wanderlust.py,sha256=54SqSK0ANEb62oJ6twbX1rTgFe9C58Nd9j2KVair7zA,1718
|
|
421
|
+
solara/website/public/beach.jpeg,sha256=VgqauSG-JycHkuodZR9wJwT21AJ_mT8HsCooxvTaDLY,37437
|
|
422
|
+
solara/website/public/logo.svg,sha256=2us1cojKyzG33Hrafhs-HQfNHHWuKqP3YQmIVFFur2A,1219
|
|
423
|
+
solara/website/public/success.html,sha256=Og_jCrjf4GGzNU4h7tPO74hV4fSwR_vQ2huY_8v8DLI,797
|
|
424
|
+
solara/website/public/social/discord.svg,sha256=3m_1cEy69Hm8IUCKs5P9O2BQSUaX_UMFv4otRl--310,762
|
|
425
|
+
solara/website/public/social/github.svg,sha256=XGlfnNccpMHYjfji25r5UW9FvS9pYPR1HueOO5SlkAU,961
|
|
426
|
+
solara/website/public/social/twitter.svg,sha256=3Ub5a29H_NM2g7ed3689rKHU-K66PA8r3hWExpzGmdQ,430
|
|
427
|
+
solara/website/templates/index.html.j2,sha256=NYBuEHmKeSju-b3apY0h3FEJ-tnGDhrnkY-0cZ92Rro,4358
|
|
428
|
+
solara/widgets/__init__.py,sha256=D3RfEez9dllmst64_nyzzII-NZXoNMEPDnEog4ov3VE,43
|
|
429
|
+
solara/widgets/widgets.py,sha256=wIApVzltULe9WHc4lXxZ7_9-ArwsqoQ7ravfmDsnrt0,2212
|
|
430
|
+
solara/widgets/vue/gridlayout.vue,sha256=EGeq8RmdRSd8AD2Us6L80zGFefh7TaQqJSnazX7YyDw,3559
|
|
431
|
+
solara/widgets/vue/html.vue,sha256=48K5rjp0AdJDeRV6F3nOHW3J0WXPeHn55r5pGClK2fU,112
|
|
432
|
+
solara/widgets/vue/navigator.vue,sha256=SLrzBI0Eiys-7maXA4e8yyD13-O5b4AnCGE9wKuJDHE,3646
|
|
433
|
+
solara/widgets/vue/vegalite.vue,sha256=pjLfjTObIyBkduXx54i4wS5OQYI9Y4EwPeEFAqtJvZg,4120
|
|
434
|
+
solara_ui-1.31.0.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
435
|
+
solara_ui-1.31.0.data/data/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
436
|
+
solara_ui-1.31.0.dist-info/METADATA,sha256=UR9hCbiiBSd3NOD1nNt2yS-7B_deOvYXdGEmjBiP-Zc,7255
|
|
437
|
+
solara_ui-1.31.0.dist-info/WHEEL,sha256=L5_n4Kc1NmrSdVgbp6hdnwwVwBnoYOCnbHBRMD-qNJ4,105
|
|
438
|
+
solara_ui-1.31.0.dist-info/licenses/LICENSE,sha256=fFJUz-CWzZ9nEc4QZKu44jMEoDr5fEW-SiqljKpD82E,1086
|
|
439
|
+
solara_ui-1.31.0.dist-info/RECORD,,
|