solara-ui 1.45.0__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 +765 -0
- solara/_stores.py +297 -0
- solara/alias.py +6 -0
- solara/autorouting.py +555 -0
- solara/cache.py +305 -0
- solara/checks.html +71 -0
- solara/checks.py +227 -0
- solara/comm.py +28 -0
- solara/components/__init__.py +77 -0
- solara/components/alert.py +155 -0
- solara/components/applayout.py +397 -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 +134 -0
- solara/components/cross_filter.py +335 -0
- solara/components/dataframe.py +546 -0
- solara/components/datatable.py +214 -0
- solara/components/datatable.vue +175 -0
- solara/components/details.py +56 -0
- solara/components/download.vue +35 -0
- solara/components/echarts.py +86 -0
- solara/components/echarts.vue +139 -0
- solara/components/figure_altair.py +39 -0
- solara/components/file_browser.py +181 -0
- solara/components/file_download.py +199 -0
- solara/components/file_drop.py +159 -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 +456 -0
- solara/components/input_text_area.py +86 -0
- solara/components/link.py +55 -0
- solara/components/markdown.py +441 -0
- solara/components/markdown_editor.py +33 -0
- solara/components/markdown_editor.vue +359 -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 +45 -0
- solara/components/sql_code.py +41 -0
- solara/components/sql_code.vue +125 -0
- solara/components/style.py +105 -0
- solara/components/switch.py +71 -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/core.py +42 -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 +151 -0
- solara/hooks/use_thread.py +129 -0
- solara/kitchensink.py +8 -0
- solara/lab/__init__.py +34 -0
- solara/lab/components/__init__.py +7 -0
- solara/lab/components/chat.py +215 -0
- solara/lab/components/confirmation_dialog.py +163 -0
- solara/lab/components/cross_filter.py +7 -0
- solara/lab/components/input_date.py +339 -0
- solara/lab/components/input_time.py +133 -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 +2 -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 +165 -0
- solara/lab/utils/headers.py +5 -0
- solara/layout.py +44 -0
- solara/lifecycle.py +46 -0
- solara/minisettings.py +141 -0
- solara/py.typed +0 -0
- solara/reactive.py +99 -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 +527 -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 +1681 -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 +91 -0
- solara/server/esm.py +71 -0
- solara/server/fastapi.py +5 -0
- solara/server/flask.py +297 -0
- solara/server/jupyter/__init__.py +2 -0
- solara/server/jupyter/cdn_handler.py +28 -0
- solara/server/jupyter/server_extension.py +40 -0
- solara/server/jupyter/solara.py +91 -0
- solara/server/jupytertools.py +46 -0
- solara/server/kernel.py +388 -0
- solara/server/kernel_context.py +467 -0
- solara/server/patch.py +564 -0
- solara/server/pyinstaller/__init__.py +9 -0
- solara/server/pyinstaller/hook-ipyreact.py +5 -0
- solara/server/pyinstaller/hook-ipyvuetify.py +5 -0
- solara/server/pyinstaller/hook-solara.py +9 -0
- solara/server/qt.py +113 -0
- solara/server/reload.py +251 -0
- solara/server/server.py +484 -0
- solara/server/settings.py +249 -0
- solara/server/shell.py +269 -0
- solara/server/starlette.py +770 -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 +272 -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 +486 -0
- solara/server/threaded.py +84 -0
- solara/server/utils.py +44 -0
- solara/server/websocket.py +45 -0
- solara/settings.py +86 -0
- solara/tasks.py +893 -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 +783 -0
- solara/toestand.py +998 -0
- solara/util.py +348 -0
- solara/validate_hooks.py +258 -0
- solara/website/__init__.py +0 -0
- solara/website/assets/custom.css +444 -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.py +6 -0
- solara/website/components/algolia.vue +24 -0
- solara/website/components/algolia_api.vue +202 -0
- solara/website/components/breadcrumbs.py +28 -0
- solara/website/components/contact.py +144 -0
- solara/website/components/docs.py +143 -0
- solara/website/components/header.py +75 -0
- solara/website/components/mailchimp.py +12 -0
- solara/website/components/mailchimp.vue +47 -0
- solara/website/components/markdown.py +99 -0
- solara/website/components/markdown_nav.vue +34 -0
- solara/website/components/notebook.py +171 -0
- solara/website/components/sidebar.py +105 -0
- solara/website/pages/__init__.py +370 -0
- solara/website/pages/about/__init__.py +9 -0
- solara/website/pages/about/about.md +3 -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/careers/__init__.py +27 -0
- solara/website/pages/changelog/__init__.py +10 -0
- solara/website/pages/changelog/changelog.md +372 -0
- solara/website/pages/contact/__init__.py +34 -0
- solara/website/pages/doc_use_download.py +85 -0
- solara/website/pages/documentation/__init__.py +90 -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 +417 -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 +50 -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 +72 -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 +192 -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 +256 -0
- solara/website/pages/documentation/advanced/content/20-understanding/50-solara-server.md +108 -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 +7 -0
- solara/website/pages/documentation/advanced/content/30-enterprise/10-oauth.md +187 -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 +22 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_report.py +20 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_select.py +20 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py +20 -0
- solara/website/pages/documentation/api/hooks/__init__.py +9 -0
- solara/website/pages/documentation/api/hooks/use_cross_filter.py +23 -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 +31 -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 +30 -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 +66 -0
- solara/website/pages/documentation/api/hooks/use_thread.md +64 -0
- solara/website/pages/documentation/api/hooks/use_thread.py +42 -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 +29 -0
- solara/website/pages/documentation/api/routing/use_route.py +76 -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 +44 -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 +25 -0
- solara/website/pages/documentation/components/advanced/meta.py +17 -0
- solara/website/pages/documentation/components/advanced/style.py +43 -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 +30 -0
- solara/website/pages/documentation/components/input/file_drop.py +76 -0
- solara/website/pages/documentation/components/input/input.py +43 -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/input_time.py +15 -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 +74 -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 +66 -0
- solara/website/pages/documentation/components/layout/details.py +13 -0
- solara/website/pages/documentation/components/layout/griddraggable.py +62 -0
- solara/website/pages/documentation/components/layout/gridfixed.py +19 -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 +19 -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 +83 -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 +15 -0
- solara/website/pages/documentation/components/page/title.py +25 -0
- solara/website/pages/documentation/components/status/__init__.py +9 -0
- solara/website/pages/documentation/components/status/error.py +39 -0
- solara/website/pages/documentation/components/status/info.py +39 -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 +77 -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 +54 -0
- solara/website/pages/documentation/examples/ai/__init__.py +11 -0
- solara/website/pages/documentation/examples/ai/chatbot.py +113 -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 +32 -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 +65 -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 +62 -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 +67 -0
- solara/website/pages/documentation/examples/visualization/linked_views.py +81 -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 +112 -0
- solara/website/pages/documentation/getting_started/__init__.py +9 -0
- solara/website/pages/documentation/getting_started/content/00-quickstart.md +107 -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 +65 -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 +1021 -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 +228 -0
- solara/website/pages/documentation/getting_started/content/05-fundamentals/50-state-management.md +278 -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 +305 -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/home.vue +1199 -0
- solara/website/pages/our_team/__init__.py +83 -0
- solara/website/pages/pricing/__init__.py +31 -0
- solara/website/pages/roadmap/__init__.py +11 -0
- solara/website/pages/roadmap/roadmap.md +47 -0
- solara/website/pages/scale_ipywidgets.py +45 -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 +107 -0
- solara/widgets/vue/html.vue +4 -0
- solara/widgets/vue/navigator.vue +134 -0
- solara/widgets/vue/vegalite.vue +130 -0
- solara/widgets/widgets.py +74 -0
- solara_ui-1.45.0.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json +7 -0
- solara_ui-1.45.0.data/data/etc/jupyter/jupyter_server_config.d/solara.json +7 -0
- solara_ui-1.45.0.dist-info/METADATA +162 -0
- solara_ui-1.45.0.dist-info/RECORD +464 -0
- solara_ui-1.45.0.dist-info/WHEEL +4 -0
- solara_ui-1.45.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-menu
|
|
3
|
+
v-model="show_results"
|
|
4
|
+
offset-y>
|
|
5
|
+
<template v-slot:activator="{ on }">
|
|
6
|
+
<v-text-field
|
|
7
|
+
v-model="query"
|
|
8
|
+
prepend-inner-icon="mdi-magnify"
|
|
9
|
+
hide-details
|
|
10
|
+
dense
|
|
11
|
+
:placeholder="mac ? '⌘K to search' : 'Ctrl+K to search'"
|
|
12
|
+
filled
|
|
13
|
+
outlined
|
|
14
|
+
clearable
|
|
15
|
+
ref="search"
|
|
16
|
+
style="flex-grow: 1; max-width: 650px;"
|
|
17
|
+
@click="show($event, on);"
|
|
18
|
+
@keyup.enter="hoverItem === null ? item = 0 : item = hoverItem"
|
|
19
|
+
@keyup.esc="close();"
|
|
20
|
+
@keyup.down="hoverItem = hoverItem == null ? 0 : Math.min(hoverItem + 1, results.hits.length - 1, 9)"
|
|
21
|
+
@keyup.up="hoverItem = hoverItem == null ? 9 : Math.max(hoverItem - 1, 0)"
|
|
22
|
+
@focus="selectText();"
|
|
23
|
+
class="algolia"
|
|
24
|
+
></v-text-field>
|
|
25
|
+
</template>
|
|
26
|
+
<v-list v-if="results != null && results.length == 0">
|
|
27
|
+
<v-list-item>
|
|
28
|
+
<v-list-item-content>
|
|
29
|
+
{{this.query == "" ? "Start Typing to Search" : "No search results found."}}
|
|
30
|
+
</v-list-item-content>
|
|
31
|
+
</v-list-item>
|
|
32
|
+
</v-list>
|
|
33
|
+
<v-list v-else :style="{width: menuWidth + 'px'}">
|
|
34
|
+
<v-list-item-group v-model="item">
|
|
35
|
+
<v-list-item v-for="(element, index) in this.results.hits" :key="element['url']" :input-value="index === hoverItem">
|
|
36
|
+
<v-list-item-content>
|
|
37
|
+
<v-list-item-title>
|
|
38
|
+
{{ element.hierarchy.lvl1 }}
|
|
39
|
+
</v-list-item-title>
|
|
40
|
+
<v-list-item-subtitle v-if="element.hierarchy.lvl2 !== null">
|
|
41
|
+
{{ element.hierarchy.lvl2 }}
|
|
42
|
+
</v-list-item-subtitle>
|
|
43
|
+
<v-list-item-subtitle v-html="getSnippet(element)"></v-list-item-subtitle>
|
|
44
|
+
</v-list-item-content>
|
|
45
|
+
</v-list-item>
|
|
46
|
+
</v-list-item-group>
|
|
47
|
+
<v-list-item v-if="this.results.nbHits > 10">
|
|
48
|
+
<v-list-item-content>
|
|
49
|
+
<v-list-item-title>And {{ this.results.nbHits - 10}} More...</v-list-item-title>
|
|
50
|
+
</v-list-item-content>
|
|
51
|
+
</v-list-item>
|
|
52
|
+
</v-list>
|
|
53
|
+
</v-menu>
|
|
54
|
+
</template>
|
|
55
|
+
<script>
|
|
56
|
+
const search = ref(null);
|
|
57
|
+
module.exports = {
|
|
58
|
+
async mounted() {
|
|
59
|
+
window.search = this;
|
|
60
|
+
await this.loadRequire();
|
|
61
|
+
this.algoliasearch = (await this.import([`https://cdn.jsdelivr.net/npm/algoliasearch@4.20.0/dist/algoliasearch-lite.umd.js`]))[0];
|
|
62
|
+
this.initSearch();
|
|
63
|
+
window.search = this;
|
|
64
|
+
this.updateMenuWidth();
|
|
65
|
+
window.addEventListener('resize', this.updateMenuWidth);
|
|
66
|
+
},
|
|
67
|
+
watch: {
|
|
68
|
+
query ( value ) {
|
|
69
|
+
this.show_results = true;
|
|
70
|
+
this.search();
|
|
71
|
+
},
|
|
72
|
+
item ( value ) {
|
|
73
|
+
if ( value === null ) return;
|
|
74
|
+
if ( this.results.hits != null && this.results.hits.length >= value ) {
|
|
75
|
+
let url = this.results.hits[value].url;
|
|
76
|
+
if (url.startsWith("https://solara.dev")) {
|
|
77
|
+
url = url.slice(18);
|
|
78
|
+
}
|
|
79
|
+
solara.router.push( url );
|
|
80
|
+
this.close();
|
|
81
|
+
// reset the search
|
|
82
|
+
this.item = null;
|
|
83
|
+
this.hoverItem = null;
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
methods: {
|
|
88
|
+
show( e, on ) {
|
|
89
|
+
this.show_results = false;
|
|
90
|
+
this.$nextTick( () => {
|
|
91
|
+
on.click( e )
|
|
92
|
+
} );
|
|
93
|
+
},
|
|
94
|
+
close() {
|
|
95
|
+
this.show_results = false;
|
|
96
|
+
this.$refs.search.blur();
|
|
97
|
+
},
|
|
98
|
+
initSearch() {
|
|
99
|
+
this.client = this.algoliasearch( '9KW9L7O5EQ', '647ca12ba642437cc40c2adee4a78d08' );
|
|
100
|
+
this.index = this.client.initIndex( 'solara' );
|
|
101
|
+
this.mac = window.navigator.userAgent.indexOf("Mac") != -1;
|
|
102
|
+
document.addEventListener( 'keydown', ( e ) => {
|
|
103
|
+
|
|
104
|
+
if (this.mac) {
|
|
105
|
+
if ( this.$refs.search && e.metaKey && e.key === 'k' ) {
|
|
106
|
+
this.$refs.search.focus();
|
|
107
|
+
}
|
|
108
|
+
}else{
|
|
109
|
+
if ( this.$refs.search && e.ctrlKey && e.key === 'k' ) {
|
|
110
|
+
this.$refs.search.focus();
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
},
|
|
115
|
+
async search() {
|
|
116
|
+
results = await this.index.search( this.query, { hitsPerPage: 10 } );
|
|
117
|
+
if (results) {
|
|
118
|
+
this.results = results;
|
|
119
|
+
}else{
|
|
120
|
+
this.$set(this.results, []);
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
selectText() {
|
|
124
|
+
this.$refs.search.$refs.input.select();
|
|
125
|
+
},
|
|
126
|
+
getSnippet( element ) {
|
|
127
|
+
if (element.type == "content") {
|
|
128
|
+
return element._highlightResult.content.value;
|
|
129
|
+
}
|
|
130
|
+
let snippet = element._highlightResult.hierarchy[element.type].value;
|
|
131
|
+
if (snippet.matchLevel === "none" ) {
|
|
132
|
+
snippet = element._highlightResult.hierarchy["lvl" + parseInt(element.type[3] - 1)].value
|
|
133
|
+
}
|
|
134
|
+
return snippet;
|
|
135
|
+
},
|
|
136
|
+
updateMenuWidth() {
|
|
137
|
+
// Ensure the element is rendered and has dimensions
|
|
138
|
+
this.$nextTick(() => {
|
|
139
|
+
const activator = this.$refs.search;
|
|
140
|
+
if (activator && activator.$el) {
|
|
141
|
+
// Update the menuWidth with the activator's width
|
|
142
|
+
this.menuWidth = activator.$el.offsetWidth;
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
},
|
|
146
|
+
import(dependencies) {
|
|
147
|
+
return this.loadRequire().then(
|
|
148
|
+
() => {
|
|
149
|
+
if (window.jupyterVue) {
|
|
150
|
+
// in jupyterlab, we take Vue from ipyvue/jupyterVue
|
|
151
|
+
define("vue", [], () => window.jupyterVue.Vue);
|
|
152
|
+
} else {
|
|
153
|
+
define("vue", ['jupyter-vue'], jupyterVue => jupyterVue.Vue);
|
|
154
|
+
}
|
|
155
|
+
return new Promise((resolve, reject) => {
|
|
156
|
+
requirejs(dependencies, (...modules) => resolve(modules));
|
|
157
|
+
})
|
|
158
|
+
}
|
|
159
|
+
);
|
|
160
|
+
},
|
|
161
|
+
loadRequire() {
|
|
162
|
+
return new Promise((resolve, reject) => {
|
|
163
|
+
const script = document.createElement('script');
|
|
164
|
+
script.src = `${this.getCdn()}/requirejs@2.3.6/require.js`;
|
|
165
|
+
script.onload = resolve;
|
|
166
|
+
script.onerror = reject;
|
|
167
|
+
document.head.appendChild(script);
|
|
168
|
+
});
|
|
169
|
+
},
|
|
170
|
+
getJupyterBaseUrl() {
|
|
171
|
+
// if base url is set, we use ./ for relative paths compared to the base url
|
|
172
|
+
if (document.getElementsByTagName("base").length) {
|
|
173
|
+
return document.baseURI;
|
|
174
|
+
}
|
|
175
|
+
const labConfigData = document.getElementById('jupyter-config-data');
|
|
176
|
+
if (labConfigData) {
|
|
177
|
+
/* lab and Voila */
|
|
178
|
+
return JSON.parse(labConfigData.textContent).baseUrl;
|
|
179
|
+
}
|
|
180
|
+
let base = document.body.dataset.baseUrl || document.baseURI;
|
|
181
|
+
if (!base.endsWith('/')) {
|
|
182
|
+
base += '/';
|
|
183
|
+
}
|
|
184
|
+
return base
|
|
185
|
+
},
|
|
186
|
+
getCdn() {
|
|
187
|
+
return window.solara ? window.solara.cdn : `${this.getJupyterBaseUrl()}_solara/cdn`;
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
data(){
|
|
191
|
+
return {
|
|
192
|
+
query: '',
|
|
193
|
+
results: [],
|
|
194
|
+
item: null,
|
|
195
|
+
hoverItem: null,
|
|
196
|
+
show_results: false,
|
|
197
|
+
mac: false,
|
|
198
|
+
menuWidth: 0,
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
}
|
|
202
|
+
</script>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
import solara
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
@solara.component
|
|
6
|
+
def BreadCrumbs():
|
|
7
|
+
router = solara.use_router()
|
|
8
|
+
routes = router.path_routes
|
|
9
|
+
|
|
10
|
+
with solara.Row(style={"align-items": "center", "flex-wrap": "wrap"}) as main:
|
|
11
|
+
for i, route in enumerate(routes):
|
|
12
|
+
if i == len(routes) - 1:
|
|
13
|
+
solara.Text(route.label or route.path, style={"color": "var(--color-text-fade)"})
|
|
14
|
+
else:
|
|
15
|
+
with solara.Link(solara.resolve_path(route), style={"color": "var(--color-text-fade)"}):
|
|
16
|
+
solara.Text(route.label or route.path)
|
|
17
|
+
if i != len(routes) - 1:
|
|
18
|
+
solara.Text("/", style={"font-size": "1.5rem", "color": "var(--color-text-fade)"})
|
|
19
|
+
return main
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def _resolve_path_to_route(path_to_find: List[str], all_routes: List[solara.Route], routes: List[solara.Route] = []):
|
|
23
|
+
if len(path_to_find) == 0:
|
|
24
|
+
return routes
|
|
25
|
+
for route in all_routes:
|
|
26
|
+
if path_to_find[0] == route.path:
|
|
27
|
+
routes += [route]
|
|
28
|
+
return _resolve_path_to_route(path_to_find[1:], route.children, routes)
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import os
|
|
3
|
+
import requests
|
|
4
|
+
|
|
5
|
+
from typing import Any, Dict, Optional
|
|
6
|
+
import solara
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
postmark_api_key = None
|
|
10
|
+
contact_email_address = None
|
|
11
|
+
|
|
12
|
+
try:
|
|
13
|
+
postmark_api_key = os.environ["POSTMARK_API_KEY"]
|
|
14
|
+
contact_email_address = os.environ["SOLARA_CONTACT_EMAIL_ADDRESS"]
|
|
15
|
+
except Exception:
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@solara.component
|
|
20
|
+
def Contact(
|
|
21
|
+
style: Dict[str, Any] = {},
|
|
22
|
+
title="Contact Us",
|
|
23
|
+
subtitle="We'd love to hear from you!",
|
|
24
|
+
submit_label="Submit",
|
|
25
|
+
email_subject="Contact Form Submission",
|
|
26
|
+
):
|
|
27
|
+
first_name = solara.use_reactive("")
|
|
28
|
+
last_name = solara.use_reactive("")
|
|
29
|
+
email = solara.use_reactive("")
|
|
30
|
+
company = solara.use_reactive("")
|
|
31
|
+
message = solara.use_reactive("")
|
|
32
|
+
error: solara.Reactive[Optional[str]] = solara.use_reactive(None)
|
|
33
|
+
success = solara.use_reactive(False)
|
|
34
|
+
|
|
35
|
+
def send(*_ignore):
|
|
36
|
+
if postmark_api_key is None or contact_email_address is None:
|
|
37
|
+
error.set("Email service not properly configured. Please contact the site administrator at solara@widgetti.io.")
|
|
38
|
+
elif not first_name.value or not last_name.value or not email.value or not message.value:
|
|
39
|
+
error.set("Please fill out all required fields.")
|
|
40
|
+
else:
|
|
41
|
+
# Create the email content
|
|
42
|
+
msg = {}
|
|
43
|
+
msg["From"] = contact_email_address
|
|
44
|
+
msg["To"] = contact_email_address
|
|
45
|
+
msg["Subject"] = email_subject
|
|
46
|
+
msg["ReplyTo"] = email.value
|
|
47
|
+
|
|
48
|
+
# Email body
|
|
49
|
+
msg["HtmlBody"] = f"""
|
|
50
|
+
<b>First Name</b>: {first_name.value}<br />
|
|
51
|
+
<b>Last Name</b>: {last_name.value}<br />
|
|
52
|
+
<b>Email</b>: {email.value}<br />
|
|
53
|
+
<b>Company</b>: {company.value}<br />
|
|
54
|
+
<b>Message</b>: {message.value}<br />
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
# Send emails
|
|
58
|
+
try:
|
|
59
|
+
requests.post(
|
|
60
|
+
"https://api.postmarkapp.com/email",
|
|
61
|
+
headers={
|
|
62
|
+
"Accept": "application/json",
|
|
63
|
+
"Content-Type": "application/json",
|
|
64
|
+
"X-Postmark-Server-Token": postmark_api_key,
|
|
65
|
+
},
|
|
66
|
+
data=json.dumps(msg),
|
|
67
|
+
)
|
|
68
|
+
requests.post(
|
|
69
|
+
"https://api.postmarkapp.com/email",
|
|
70
|
+
headers={
|
|
71
|
+
"Accept": "application/json",
|
|
72
|
+
"Content-Type": "application/json",
|
|
73
|
+
"X-Postmark-Server-Token": postmark_api_key,
|
|
74
|
+
},
|
|
75
|
+
data=json.dumps(
|
|
76
|
+
{
|
|
77
|
+
"From": contact_email_address,
|
|
78
|
+
"To": email.value,
|
|
79
|
+
"Subject": "Thank you for contacting Solara",
|
|
80
|
+
"HtmlBody": f"""
|
|
81
|
+
<p>Hi {first_name.value},</p>
|
|
82
|
+
<p>Thank you for contacting us! We will get back to you as soon as possible.</p>
|
|
83
|
+
<p>Best regards,<br />The Solara Team</p>
|
|
84
|
+
""",
|
|
85
|
+
}
|
|
86
|
+
),
|
|
87
|
+
)
|
|
88
|
+
except Exception as e:
|
|
89
|
+
error.set(f"Error sending email: {e}")
|
|
90
|
+
else:
|
|
91
|
+
success.set(True)
|
|
92
|
+
error.set(None)
|
|
93
|
+
first_name.set("")
|
|
94
|
+
last_name.set("")
|
|
95
|
+
email.set("")
|
|
96
|
+
company.set("")
|
|
97
|
+
message.set("")
|
|
98
|
+
|
|
99
|
+
with solara.Card(title=title, style={"width": "100%", "max-width": "1024px", **style}):
|
|
100
|
+
solara.Markdown(subtitle)
|
|
101
|
+
solara.Text("* Required fields")
|
|
102
|
+
with solara.Row():
|
|
103
|
+
solara.InputText(label="First Name *", value=first_name)
|
|
104
|
+
solara.InputText(label="Last Name *", value=last_name)
|
|
105
|
+
with solara.Row():
|
|
106
|
+
solara.InputText(label="Email *", value=email)
|
|
107
|
+
solara.InputText(label="Company", value=company)
|
|
108
|
+
solara.v.Textarea(placeholder="Message *", v_model=message.value, on_v_model=message.set)
|
|
109
|
+
with solara.CardActions():
|
|
110
|
+
solara.Button(label=submit_label, color="primary", on_click=send)
|
|
111
|
+
solara.Button(
|
|
112
|
+
label="Clear",
|
|
113
|
+
color="secondary",
|
|
114
|
+
text=True,
|
|
115
|
+
on_click=lambda: [first_name.set(""), last_name.set(""), email.set(""), company.set(""), message.set("")],
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
solara.Style(
|
|
119
|
+
"""
|
|
120
|
+
.v-snack__wrapper {
|
|
121
|
+
box-shadow: none;
|
|
122
|
+
}
|
|
123
|
+
"""
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
with solara.v.Snackbar(
|
|
127
|
+
v_model=error.value is not None,
|
|
128
|
+
timeout=5000,
|
|
129
|
+
on_v_model=lambda *_: error.set(None),
|
|
130
|
+
left=True,
|
|
131
|
+
color="error",
|
|
132
|
+
):
|
|
133
|
+
solara.Markdown(error.value or "", style={"--dark-color-text": "white", "--color-text": "white"})
|
|
134
|
+
solara.Button(icon=True, icon_name="mdi-close", color="white", on_click=lambda: error.set(None))
|
|
135
|
+
|
|
136
|
+
with solara.v.Snackbar(
|
|
137
|
+
v_model=success.value,
|
|
138
|
+
timeout=5000,
|
|
139
|
+
on_v_model=lambda *_: success.set(False),
|
|
140
|
+
left=True,
|
|
141
|
+
color="success",
|
|
142
|
+
):
|
|
143
|
+
solara.Markdown("Your message has been sent!", style={"--dark-color-text": "white", "--color-text": "white"})
|
|
144
|
+
solara.Button(icon=True, icon_name="mdi-close", color="white", on_click=lambda: success.set(False))
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import solara
|
|
2
|
+
from .markdown import MarkdownWithMetadata
|
|
3
|
+
from .breadcrumbs import BreadCrumbs
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@solara.component
|
|
7
|
+
def Gallery(route_external=None):
|
|
8
|
+
from ..pages.documentation.examples import pycafe_projects
|
|
9
|
+
|
|
10
|
+
if route_external is not None:
|
|
11
|
+
route_current = route_external
|
|
12
|
+
else:
|
|
13
|
+
# show a gallery of all the examples
|
|
14
|
+
router = solara.use_router()
|
|
15
|
+
route_current = router.path_routes[-2]
|
|
16
|
+
|
|
17
|
+
with solara.Column(gap="75px", align="center"):
|
|
18
|
+
with solara.Row(justify="center", gap="30px", style={"margin": "30px 0 !important", "flex-wrap": "wrap", "align-items": "start", "row-gap": "30px"}):
|
|
19
|
+
for child in route_current.children:
|
|
20
|
+
if child.path == "/":
|
|
21
|
+
continue
|
|
22
|
+
with solara.v.Html(tag="a", attributes={"href": "#" + child.path}):
|
|
23
|
+
solara.Button(
|
|
24
|
+
child.label,
|
|
25
|
+
color="primary",
|
|
26
|
+
classes=["v-btn--rounded", "v-size--x-large"],
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
with solara.Column(gap="75px", style={"padding-bottom": "75px"}):
|
|
30
|
+
for route in route_current.children:
|
|
31
|
+
if route.children:
|
|
32
|
+
with solara.Column(classes=["subcategory-row", "ps-md-10"]):
|
|
33
|
+
solara.HTML(tag="h2", unsafe_innerHTML=route.label, attributes={"id": route.path}, style="padding-left: 10%;")
|
|
34
|
+
with solara.Row(justify="center", gap="20px", style={"flex-wrap": "wrap", "row-gap": "20px", "max-width": "90rem"}):
|
|
35
|
+
for child in route.children:
|
|
36
|
+
if child.path == "/":
|
|
37
|
+
continue
|
|
38
|
+
path = route.path + "/" + child.path
|
|
39
|
+
if child.path in [
|
|
40
|
+
"button",
|
|
41
|
+
"checkbox",
|
|
42
|
+
"confirmation_dialog",
|
|
43
|
+
"echarts",
|
|
44
|
+
"file_browser",
|
|
45
|
+
"file_download",
|
|
46
|
+
"matplotlib",
|
|
47
|
+
"select",
|
|
48
|
+
"switch",
|
|
49
|
+
"tooltip",
|
|
50
|
+
]:
|
|
51
|
+
image_url = "https://dxhl76zpt6fap.cloudfront.net/public/api/" + child.path + ".gif"
|
|
52
|
+
elif child.path in ["card", "dataframe", "pivot_table", "slider"]:
|
|
53
|
+
image_url = "https://dxhl76zpt6fap.cloudfront.net/public/api/" + child.path + ".png"
|
|
54
|
+
elif child.path in pycafe_projects:
|
|
55
|
+
image_url = f"https://py.cafe/preview/solara/{child.path}"
|
|
56
|
+
else:
|
|
57
|
+
image_url = "https://dxhl76zpt6fap.cloudfront.net/public/logo.svg"
|
|
58
|
+
|
|
59
|
+
if path:
|
|
60
|
+
path = path if route_external is None else route_current.path + "/" + path
|
|
61
|
+
title = solara.Link(path, children=[child.label])
|
|
62
|
+
with solara.Card(title, classes=["component-card"], margin=0):
|
|
63
|
+
with solara.Column(align="center"):
|
|
64
|
+
with solara.Link(path):
|
|
65
|
+
solara.Image(image_url, width="12rem")
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
@solara.component
|
|
69
|
+
def NoPage():
|
|
70
|
+
raise RuntimeError("This page should not be rendered")
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
@solara.component
|
|
74
|
+
def WithCode(route_current):
|
|
75
|
+
component = getattr(route_current.module, "Page", None)
|
|
76
|
+
with solara.Column(style={"flex-grow": 1, "padding-top": "56px"}) as main:
|
|
77
|
+
BreadCrumbs()
|
|
78
|
+
# It renders code better
|
|
79
|
+
MarkdownWithMetadata(
|
|
80
|
+
route_current.module.__doc__ or "# no docs yet",
|
|
81
|
+
unsafe_solara_execute=True,
|
|
82
|
+
)
|
|
83
|
+
if component and component != NoPage:
|
|
84
|
+
with solara.Card("Example", margin=0, classes=["mt-8"]):
|
|
85
|
+
component()
|
|
86
|
+
github_url = solara.util.github_url(route_current.module.__file__)
|
|
87
|
+
solara.Button(
|
|
88
|
+
label="View source",
|
|
89
|
+
icon_name="mdi-github-circle",
|
|
90
|
+
attributes={"href": github_url, "target": "_blank"},
|
|
91
|
+
text=True,
|
|
92
|
+
outlined=True,
|
|
93
|
+
class_="mt-8",
|
|
94
|
+
)
|
|
95
|
+
return main
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
@solara.component
|
|
99
|
+
def SubCategoryLayout(children=[]):
|
|
100
|
+
route_current, all_routes = solara.use_route()
|
|
101
|
+
router = solara.use_router()
|
|
102
|
+
sibling_routes = router.path_routes[-2]
|
|
103
|
+
if route_current is None:
|
|
104
|
+
return solara.Error("Page not found")
|
|
105
|
+
elif route_current.path == "/":
|
|
106
|
+
with solara.Column(
|
|
107
|
+
gap="10px", classes=["docs-card-container"], style={"flex-grow": 1, "max-width": "80%", "width": "550px", "padding-top": "64px"}, align="stretch"
|
|
108
|
+
):
|
|
109
|
+
solara.HTML(tag="h2", unsafe_innerHTML=route_current.label, attributes={"id": route_current.path}, style="padding-left: 10%;")
|
|
110
|
+
for route in sibling_routes.children:
|
|
111
|
+
if route.path == "/":
|
|
112
|
+
continue
|
|
113
|
+
with solara.Link(route.path):
|
|
114
|
+
with solara.Row(
|
|
115
|
+
classes=["docs-card"],
|
|
116
|
+
style={
|
|
117
|
+
"background-color": "var(--docs-color-grey)",
|
|
118
|
+
"align-items": "center",
|
|
119
|
+
"height": "3rem",
|
|
120
|
+
},
|
|
121
|
+
):
|
|
122
|
+
solara.HTML(tag="h3", unsafe_innerHTML=route.label, style={"color": "white", "display": "block", "flex-grow": "1", "padding": "0 24px"})
|
|
123
|
+
solara.v.Icon(children=["mdi-arrow-right"], color="var(--color-grey-light)", class_="docs-card-icon")
|
|
124
|
+
elif route_current.module:
|
|
125
|
+
WithCode(route_current)
|
|
126
|
+
else:
|
|
127
|
+
with solara.Column(align="center", children=children, style={"flex-grow": 1, "padding": "0"}) as main:
|
|
128
|
+
pass
|
|
129
|
+
return main
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@solara.component
|
|
133
|
+
def CategoryLayout(children=[]):
|
|
134
|
+
route_current, all_routes = solara.use_route()
|
|
135
|
+
if route_current is None:
|
|
136
|
+
return solara.Error("Page not found")
|
|
137
|
+
|
|
138
|
+
if route_current.path == "/":
|
|
139
|
+
return Gallery()
|
|
140
|
+
else:
|
|
141
|
+
with solara.Column(align="stretch", children=children, style={"max-width": "100%"}) as main:
|
|
142
|
+
pass
|
|
143
|
+
return main
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
from typing import Callable
|
|
2
|
+
|
|
3
|
+
import solara
|
|
4
|
+
import solara.lab
|
|
5
|
+
from solara.alias import rv
|
|
6
|
+
from solara.server import settings
|
|
7
|
+
from .algolia import Algolia
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@solara.component
|
|
11
|
+
def Header(
|
|
12
|
+
on_toggle_left_menu: Callable[[], None] = None,
|
|
13
|
+
on_toggle_right_menu: Callable[[], None] = None,
|
|
14
|
+
):
|
|
15
|
+
# use routes of parent (assuming we are a child of a layout)
|
|
16
|
+
route_current, all_routes = solara.use_route(level=-1)
|
|
17
|
+
route_current_with_children, all_routes_with_children = solara.use_route()
|
|
18
|
+
router = solara.use_router()
|
|
19
|
+
dark_effective = solara.lab.use_dark_effective()
|
|
20
|
+
|
|
21
|
+
# set states for menu
|
|
22
|
+
with solara.Column(gap="0px"):
|
|
23
|
+
# with solara.Div(classes=["news"]):
|
|
24
|
+
# solara.HTML(
|
|
25
|
+
# "div",
|
|
26
|
+
# unsafe_innerHTML="<a href='https://github.com/widgetti/solara' target='_blank' >Star us on github 🤩</a>",
|
|
27
|
+
# )
|
|
28
|
+
with solara.v.AppBar(
|
|
29
|
+
tag="header", flat=True, clipped_left=True, style_="background-color: transparent; border-bottom: 1px solid var(--color-border-appbar);"
|
|
30
|
+
):
|
|
31
|
+
if route_current is not None and route_current.module is not None and hasattr(route_current.module, "Sidebar"):
|
|
32
|
+
with solara.Button(icon=True, class_="hidden-md-and-up", on_click=lambda: on_toggle_left_menu and on_toggle_left_menu()):
|
|
33
|
+
rv.Icon(children=["mdi-menu"])
|
|
34
|
+
|
|
35
|
+
display = " d-none d-sm-flex" if route_current is not None and route_current.path not in ["about", "pricing", "careers"] else " d-flex"
|
|
36
|
+
with solara.v.Html(
|
|
37
|
+
tag="div",
|
|
38
|
+
class_="header-logo-container" + display,
|
|
39
|
+
style_="""
|
|
40
|
+
background-color: transparent;
|
|
41
|
+
flex-grow: 1;
|
|
42
|
+
align-items: stretch;
|
|
43
|
+
max-height: 65%;
|
|
44
|
+
""",
|
|
45
|
+
):
|
|
46
|
+
with solara.Link(path_or_route="/", style={"display": "flex", "align-items": "center", "flex-direction": "row", "gap": "10px"}):
|
|
47
|
+
solara.Image(router.root_path + f"/static/assets/images/logo{'_white' if dark_effective else ''}.svg", classes=["header-logo"])
|
|
48
|
+
solara.Text("API", style={"font-size": "20px", "font-weight": "600"})
|
|
49
|
+
|
|
50
|
+
if route_current is not None and route_current.path not in ["about", "pricing", "careers"]:
|
|
51
|
+
if settings.search.enabled:
|
|
52
|
+
from solara_enterprise.search.search import Search
|
|
53
|
+
|
|
54
|
+
Search()
|
|
55
|
+
else:
|
|
56
|
+
Algolia()
|
|
57
|
+
|
|
58
|
+
with rv.Html(tag="ul", class_="main-menu menu d-none d-md-flex", style_="justify-content: flex-end;"):
|
|
59
|
+
for route in all_routes:
|
|
60
|
+
if route.path in ["apps", "contact", "changelog", "our_team", "about", "pricing", "roadmap", "careers"]:
|
|
61
|
+
continue
|
|
62
|
+
current = route_current == route
|
|
63
|
+
with rv.Html(tag="li", class_="active" if current else None):
|
|
64
|
+
solara.Link("/" + route.path if route.path != "/" else "/", children=[route.label])
|
|
65
|
+
with rv.Btn(icon=True, tag="a", class_="d-none d-md-flex", attributes={"href": solara.github_url, "target": "_blank"}):
|
|
66
|
+
rv.Icon(children=["mdi-github-circle"])
|
|
67
|
+
|
|
68
|
+
with rv.Btn(icon=True, tag="a", class_="d-none d-md-flex", attributes={"href": "https://discord.solara.dev", "target": "_blank"}):
|
|
69
|
+
rv.Icon(children=["mdi-discord"])
|
|
70
|
+
|
|
71
|
+
with solara.v.Html(tag="div", class_="d-none d-md-flex"):
|
|
72
|
+
solara.lab.ThemeToggle()
|
|
73
|
+
|
|
74
|
+
# with solara.Button(icon=True, class_="hidden-md-and-up", on_click=lambda: on_toggle_right_menu and on_toggle_right_menu()):
|
|
75
|
+
# rv.Icon(children=["mdi-menu"])
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="mc_embed_shell">
|
|
3
|
+
<div id="mc_embed_signup">
|
|
4
|
+
<form
|
|
5
|
+
action="https://gmail.us13.list-manage.com/subscribe/post?u=1dcdd74de47214edace5b6f49&id=c60b5def86&f_id=00f4c1e2f0"
|
|
6
|
+
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
|
|
7
|
+
target="_blank">
|
|
8
|
+
<div id="mc_embed_signup_scroll">
|
|
9
|
+
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
|
|
10
|
+
<div class="mc-field-group">
|
|
11
|
+
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span></label>
|
|
12
|
+
<input type="email" name="EMAIL" class="required email" id="mce-EMAIL" required="" value=""></div>
|
|
13
|
+
<div class="mc-field-group">
|
|
14
|
+
<label for="mce-LOCATION">signup location </label>
|
|
15
|
+
<input type="text" name="LOCATION" class=" text" id="mce-LOCATION" :value="location">
|
|
16
|
+
</div>
|
|
17
|
+
<!-- <div class="mc-field-group"><label for="mce-FNAME">First Name </label><input type="text" name="FNAME"
|
|
18
|
+
class=" text" id="mce-FNAME" value=""></div>
|
|
19
|
+
<div class="mc-field-group"><label for="mce-LNAME">Last Name </label><input type="text" name="LNAME"
|
|
20
|
+
class=" text" id="mce-LNAME" value=""></div>
|
|
21
|
+
<div class="mc-field-group"><label for="mce-COMPANY">Company </label><input type="text" name="COMPANY"
|
|
22
|
+
class=" text" id="mce-COMPANY" value=""></div> -->
|
|
23
|
+
<div id="mce-responses" class="clear foot">
|
|
24
|
+
<div class="response" id="mce-error-response" style="display: none;"></div>
|
|
25
|
+
<div class="response" id="mce-success-response" style="display: none;"></div>
|
|
26
|
+
</div>
|
|
27
|
+
<div aria-hidden="true" style="position: absolute; left: -5000px;">
|
|
28
|
+
/* real people should not fill this in and expect good things - do not remove this or risk form bot
|
|
29
|
+
signups */
|
|
30
|
+
<input type="text" name="b_1dcdd74de47214edace5b6f49_c60b5def86" tabindex="-1" value="">
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="optionalParent">
|
|
34
|
+
<div class="clear foot">
|
|
35
|
+
<v-btn type="submit" name="subscribe" id="mc-embedded-subscribe"
|
|
36
|
+
class="button v-btn v-btn-contained"
|
|
37
|
+
style="background-color: rgb(241, 159, 65); border-color: rgb(241, 159, 65);"
|
|
38
|
+
value="Subscribe">Subscribe</v-btn>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</form>
|
|
42
|
+
</div>
|
|
43
|
+
<!-- <script> (function ($) { window.fnames = new Array(); window.ftypes = new Array(); fnames[0] = 'EMAIL'; ftypes[0] = 'email'; fnames[1] = 'FNAME'; ftypes[1] = 'text'; fnames[2] = 'LNAME'; ftypes[2] = 'text'; fnames[7] = 'COMPANY'; ftypes[7] = 'text'; fnames[10] = 'WHYCLOUD'; ftypes[10] = 'text'; fnames[3] = 'ADDRESS'; ftypes[3] = 'address'; fnames[4] = 'PHONE'; ftypes[4] = 'phone'; fnames[5] = 'BIRTHDAY'; ftypes[5] = 'birthday'; fnames[6] = 'USECASE'; ftypes[6] = 'text'; fnames[8] = 'POSITION'; ftypes[8] = 'text'; fnames[9] = 'MMERGE9'; ftypes[9] = 'text'; }(jQuery)); var $mcj = jQuery.noConflict(true); </script> -->
|
|
44
|
+
</div>
|
|
45
|
+
</template>
|
|
46
|
+
<script>
|
|
47
|
+
</script>
|