solara-ui 1.41.0__py2.py3-none-any.whl → 1.42.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.
- solara/__init__.py +1 -1
- solara/__main__.py +7 -1
- solara/_stores.py +185 -0
- solara/components/component_vue.py +23 -0
- solara/components/echarts.py +5 -2
- solara/components/echarts.vue +22 -5
- solara/components/file_drop.py +20 -0
- solara/components/input.py +16 -0
- solara/components/markdown.py +22 -13
- solara/components/spinner-solara.vue +2 -2
- solara/components/spinner.py +17 -2
- solara/hooks/use_reactive.py +8 -1
- solara/reactive.py +9 -3
- solara/server/kernel.py +2 -1
- solara/server/qt.py +1 -1
- solara/server/starlette.py +2 -2
- solara/server/static/solara_bootstrap.py +1 -1
- solara/settings.py +14 -0
- solara/template/portal/pyproject.toml +1 -1
- solara/test/pytest_plugin.py +3 -0
- solara/toestand.py +139 -16
- solara/util.py +22 -0
- solara/website/components/markdown.py +45 -1
- solara/website/pages/changelog/changelog.md +9 -0
- solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py +4 -5
- solara/website/pages/documentation/api/cross_filter/cross_filter_report.py +3 -5
- solara/website/pages/documentation/api/cross_filter/cross_filter_select.py +3 -5
- solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py +3 -5
- solara/website/pages/documentation/api/hooks/use_cross_filter.py +3 -5
- solara/website/pages/documentation/api/hooks/use_exception.py +9 -11
- solara/website/pages/documentation/api/hooks/use_previous.py +6 -9
- solara/website/pages/documentation/api/hooks/use_state_or_update.py +23 -26
- solara/website/pages/documentation/api/hooks/use_thread.py +11 -13
- solara/website/pages/documentation/api/utilities/on_kernel_start.py +17 -0
- solara/website/pages/documentation/components/input/input.py +22 -0
- solara/website/pages/documentation/components/viz/echarts.py +3 -1
- solara/website/pages/documentation/examples/general/pokemon_search.py +3 -3
- solara/website/pages/documentation/examples/visualization/linked_views.py +0 -3
- solara/website/pages/documentation/getting_started/content/00-quickstart.md +1 -1
- solara/website/pages/documentation/getting_started/content/01-introduction.md +1 -1
- solara/website/pages/roadmap/roadmap.md +3 -0
- {solara_ui-1.41.0.dist-info → solara_ui-1.42.0.dist-info}/METADATA +8 -5
- {solara_ui-1.41.0.dist-info → solara_ui-1.42.0.dist-info}/RECORD +47 -46
- {solara_ui-1.41.0.dist-info → solara_ui-1.42.0.dist-info}/WHEEL +1 -1
- {solara_ui-1.41.0.data → solara_ui-1.42.0.data}/data/etc/jupyter/jupyter_notebook_config.d/solara.json +0 -0
- {solara_ui-1.41.0.data → solara_ui-1.42.0.data}/data/etc/jupyter/jupyter_server_config.d/solara.json +0 -0
- {solara_ui-1.41.0.dist-info → solara_ui-1.42.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -41,29 +41,26 @@ def Page():
|
|
|
41
41
|
parent_value, set_parent_value = solara.use_state(4)
|
|
42
42
|
# used to force rerenders
|
|
43
43
|
rerender_counter, set_rerender_counter = solara.use_state(4)
|
|
44
|
-
with solara.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
SliderWithState(parent_value).key(f"slider-{parent_value}")
|
|
68
|
-
|
|
69
|
-
return main
|
|
44
|
+
with solara.Card("Parent value selection"):
|
|
45
|
+
solara.Info("This slider value gets passed down to the child components")
|
|
46
|
+
solara.IntSlider("parent value", value=parent_value, on_value=set_parent_value)
|
|
47
|
+
solara.Button("Force redraw", on_click=lambda: set_rerender_counter(rerender_counter + 1))
|
|
48
|
+
|
|
49
|
+
with solara.Card("Child without state"):
|
|
50
|
+
solara.Info("This child will simply render the value passed into the argument, a redraw will reset it to its parent value.")
|
|
51
|
+
SliderWithoutState(parent_value)
|
|
52
|
+
|
|
53
|
+
with solara.Card("Child with state"):
|
|
54
|
+
solara.Info("This child will not care about the value passed into the prop, it manages its own state.")
|
|
55
|
+
SliderWithState(parent_value)
|
|
56
|
+
|
|
57
|
+
with solara.Card("Child with state (or update)"):
|
|
58
|
+
solara.Info("This child will update when the passes in a new value, but a redraw will not reset it.")
|
|
59
|
+
SliderWithStateOrUpdate(parent_value)
|
|
60
|
+
|
|
61
|
+
with solara.Card("Child with state + key"):
|
|
62
|
+
solara.Info(
|
|
63
|
+
"We can also use the `.key(...)` method to force the component to forget its state, this will however cause the widget to be re-created"
|
|
64
|
+
"(a performance penalty)."
|
|
65
|
+
)
|
|
66
|
+
SliderWithState(parent_value).key(f"slider-{parent_value}")
|
|
@@ -3,7 +3,7 @@ from pathlib import Path
|
|
|
3
3
|
from typing import Optional, cast
|
|
4
4
|
|
|
5
5
|
import solara
|
|
6
|
-
from solara.alias import
|
|
6
|
+
from solara.alias import rw
|
|
7
7
|
|
|
8
8
|
HERE = Path(__file__).parent
|
|
9
9
|
title = "use_thread"
|
|
@@ -29,16 +29,14 @@ def Page():
|
|
|
29
29
|
# work will be cancelled/restarted every time the dependency changes
|
|
30
30
|
result: solara.Result[bool] = solara.use_thread(work, dependencies=[number])
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
if result.
|
|
35
|
-
|
|
36
|
-
solara.Success(f"{number} is a prime!")
|
|
37
|
-
else:
|
|
38
|
-
solara.Error(f"{number} is not a prime, it can be divided by {proof} ")
|
|
39
|
-
elif result.state == solara.ResultState.ERROR:
|
|
40
|
-
solara.Error(f"Error occurred: {result.error}")
|
|
32
|
+
rw.IntText(value=number, on_value=set_number)
|
|
33
|
+
if result.state == solara.ResultState.FINISHED:
|
|
34
|
+
if result.value:
|
|
35
|
+
solara.Success(f"{number} is a prime!")
|
|
41
36
|
else:
|
|
42
|
-
solara.
|
|
43
|
-
|
|
44
|
-
|
|
37
|
+
solara.Error(f"{number} is not a prime, it can be divided by {proof} ")
|
|
38
|
+
elif result.state == solara.ResultState.ERROR:
|
|
39
|
+
solara.Error(f"Error occurred: {result.error}")
|
|
40
|
+
else:
|
|
41
|
+
solara.Info(f"Running... (status = {result.state})")
|
|
42
|
+
solara.v.ProgressLinear(indeterminate=True)
|
|
@@ -19,6 +19,23 @@ The return value of on_kernel_start is a cleanup function that will remove the c
|
|
|
19
19
|
|
|
20
20
|
During hot reload, the callbacks that are added from scripts or modules that will be reloaded will be removed before the app is loaded
|
|
21
21
|
again. This can cause the order of the callbacks to be different than at first run.
|
|
22
|
+
|
|
23
|
+
## Example
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
import solara
|
|
27
|
+
import solara.lab
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@solara.lab.on_kernel_start
|
|
31
|
+
def on_kernel_start():
|
|
32
|
+
id = solara.get_kernel_id()
|
|
33
|
+
print("Kernel started", id)
|
|
34
|
+
def cleanup():
|
|
35
|
+
print("Kernel stopped", id)
|
|
36
|
+
return cleanup # this function will be called on kernel shutdown
|
|
37
|
+
```
|
|
38
|
+
|
|
22
39
|
"""
|
|
23
40
|
|
|
24
41
|
from solara.website.components import NoPage
|
|
@@ -19,3 +19,25 @@ __doc__ += "# InputFloat"
|
|
|
19
19
|
__doc__ += apidoc(solara.InputFloat.f) # type: ignore
|
|
20
20
|
__doc__ += "# InputInt"
|
|
21
21
|
__doc__ += apidoc(solara.InputInt.f) # type: ignore
|
|
22
|
+
|
|
23
|
+
__doc__ += """
|
|
24
|
+
# Autofocus Example
|
|
25
|
+
|
|
26
|
+
```solara
|
|
27
|
+
import solara
|
|
28
|
+
import solara.lab
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
@solara.component
|
|
32
|
+
def Page():
|
|
33
|
+
show_dialog = solara.use_reactive(False)
|
|
34
|
+
show_conditional = solara.use_reactive(False)
|
|
35
|
+
with solara.Row():
|
|
36
|
+
solara.Button("Show dialog", on_click=lambda: show_dialog.set(True))
|
|
37
|
+
solara.Button("Show conditionally rendered element", on_click=lambda: show_conditional.set(not show_conditional.value))
|
|
38
|
+
with solara.lab.ConfirmationDialog(open=show_dialog):
|
|
39
|
+
solara.InputFloat("Float here", autofocus=True)
|
|
40
|
+
if show_conditional.value:
|
|
41
|
+
solara.InputFloat("Float here", autofocus=True)
|
|
42
|
+
```
|
|
43
|
+
"""
|
|
@@ -63,7 +63,9 @@ def Page():
|
|
|
63
63
|
with solara.ToggleButtonsSingle("bars", on_value=set_option):
|
|
64
64
|
solara.Button("bars")
|
|
65
65
|
solara.Button("pie")
|
|
66
|
-
solara.FigureEcharts(
|
|
66
|
+
solara.FigureEcharts(
|
|
67
|
+
option=options[option], on_click=set_click_data, on_mouseover=set_mouseover_data, on_mouseout=set_mouseout_data, responsive=True
|
|
68
|
+
)
|
|
67
69
|
with solara.Card("Event data"):
|
|
68
70
|
solara.Markdown(f"**Click data**: {click_data}")
|
|
69
71
|
solara.Markdown(f"**Mouseover data**: {mouseover_data}")
|
|
@@ -10,8 +10,8 @@ from solara import use_fetch
|
|
|
10
10
|
from solara.alias import rv
|
|
11
11
|
|
|
12
12
|
github_url = solara.util.github_url(__file__)
|
|
13
|
-
|
|
14
|
-
json_url = "
|
|
13
|
+
pokemon_base_url = "https://raw.githubusercontent.com/jherr/pokemon/0722479d4153b1db0d0326956b08b37f44a95a5f"
|
|
14
|
+
json_url = f"{pokemon_base_url}/index.json"
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
@solara.component
|
|
@@ -40,7 +40,7 @@ def Page():
|
|
|
40
40
|
for pokemon in pokemons[:20]:
|
|
41
41
|
with solara.Div():
|
|
42
42
|
name = pokemon["name"]
|
|
43
|
-
url =
|
|
43
|
+
url = f'{pokemon_base_url}/{pokemon["image"]}'
|
|
44
44
|
# TODO: how to do this with solara
|
|
45
45
|
rv.Img(src=url, contain=True, max_height="200px")
|
|
46
46
|
solara.Text(name)
|
|
@@ -65,7 +65,6 @@ def Page():
|
|
|
65
65
|
else:
|
|
66
66
|
clicked_row = None
|
|
67
67
|
|
|
68
|
-
with solara.Column() as main:
|
|
69
68
|
with solara.Row(justify="center", style={"flex-wrap": "wrap"}):
|
|
70
69
|
ClickScatter(df, "sepal_length", "sepal_width", "species", clicked_row, on_click=set_click_point)
|
|
71
70
|
ClickScatter(df, "petal_length", "petal_width", "species", clicked_row, on_click=set_click_point)
|
|
@@ -80,5 +79,3 @@ def Page():
|
|
|
80
79
|
)
|
|
81
80
|
else:
|
|
82
81
|
solara.Info("Click to select a point")
|
|
83
|
-
|
|
84
|
-
return main
|
|
@@ -24,7 +24,7 @@ Run `pip install solara`, or follow the [Installation instructions](/documentati
|
|
|
24
24
|
|
|
25
25
|
Put the following Python snippet in a file (we suggest `sol.py`), or put it in a Jupyter notebook cell:
|
|
26
26
|
|
|
27
|
-
```solara
|
|
27
|
+
```solara {pycafe-link}
|
|
28
28
|
import solara
|
|
29
29
|
|
|
30
30
|
# Declare reactive variables at the top level. Components using these variables
|
|
@@ -11,6 +11,9 @@ Exciting news! We aim to release Solara 2.0 by the end of the year. For the 2.0
|
|
|
11
11
|
|
|
12
12
|
- Elimination of common mistakes, such as detecting state mutations and avoiding misuse of hooks (e.g., using hooks in loops).
|
|
13
13
|
|
|
14
|
+
State mutation detection will be the default for Solara 2.0, but can be enabled in Solara > 1.41.0 by setting the environment variable `SOLARA_STORAGE_MUTATION_DETECTION=1`.
|
|
15
|
+
|
|
16
|
+
|
|
14
17
|
- [See more details in the 2.0 milestone on GitHub.](https://github.com/widgetti/solara/milestone/1)
|
|
15
18
|
|
|
16
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: solara-ui
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.42.0
|
|
4
4
|
Dynamic: Summary
|
|
5
5
|
Project-URL: Home, https://www.github.com/widgetti/solara
|
|
6
6
|
Project-URL: Documentation, https://solara.dev
|
|
@@ -26,7 +26,6 @@ License: The MIT License (MIT)
|
|
|
26
26
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
27
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
28
28
|
THE SOFTWARE.
|
|
29
|
-
License-File: LICENSE
|
|
30
29
|
Classifier: License :: OSI Approved :: MIT License
|
|
31
30
|
Requires-Dist: humanize
|
|
32
31
|
Requires-Dist: ipyvue>=1.9.0
|
|
@@ -35,9 +34,13 @@ Requires-Dist: ipywidgets>=7.7
|
|
|
35
34
|
Requires-Dist: reacton>=1.7.1
|
|
36
35
|
Requires-Dist: requests
|
|
37
36
|
Provides-Extra: all
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
37
|
+
Requires-Dist: cachetools; extra == 'all'
|
|
38
|
+
Requires-Dist: markdown; extra == 'all'
|
|
39
|
+
Requires-Dist: numpy; extra == 'all'
|
|
40
|
+
Requires-Dist: pillow; extra == 'all'
|
|
41
|
+
Requires-Dist: pygments; extra == 'all'
|
|
42
|
+
Requires-Dist: pygments==2.10; (python_version < '3.7') and extra == 'all'
|
|
43
|
+
Requires-Dist: pymdown-extensions; extra == 'all'
|
|
41
44
|
Provides-Extra: cache
|
|
42
45
|
Requires-Dist: cachetools; extra == 'cache'
|
|
43
46
|
Provides-Extra: extra
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
prefix/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
2
2
|
prefix/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
3
|
-
solara/__init__.py,sha256
|
|
4
|
-
solara/__main__.py,sha256
|
|
3
|
+
solara/__init__.py,sha256=-uznpY09G5VzOrIllEh91a5GNK_siFkYkVwdSRlFwdo,3647
|
|
4
|
+
solara/__main__.py,sha256=ooBW63vWx4JOwxyQs3w4MO80JjPohwdzC8LTtv4zb7c,24628
|
|
5
|
+
solara/_stores.py,sha256=byTIl2012QjC6g2uE_8jcNyJSTQajFZTPpl7D4AFqkU,8199
|
|
5
6
|
solara/alias.py,sha256=9vfLzud77NP8in3OID9b5mmIO8NyrnFjN2_aE0lSb1k,216
|
|
6
7
|
solara/autorouting.py,sha256=iQ-jP5H-kdu1uZyLEFeiHG1IsOLZLzwKVtQPyXSgGSM,23093
|
|
7
8
|
solara/cache.py,sha256=rZEW_xVIj3vvajntsQDnaglniTQ90izkX8vOqe1mMvE,10500
|
|
@@ -16,12 +17,12 @@ solara/layout.py,sha256=YSsORvn-76LrVSmElS39CBnetyUL9f4hLG_a_SdH_QM,1782
|
|
|
16
17
|
solara/lifecycle.py,sha256=acUtft_KHj0ZOv2l-X3VcQdma1Tme70jkUp6li8mbH0,1404
|
|
17
18
|
solara/minisettings.py,sha256=Ys0GdWo8i44HU8ILjesZ4PdTXlzkHQdlKxTO42ng8EA,4852
|
|
18
19
|
solara/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
solara/reactive.py,sha256=
|
|
20
|
+
solara/reactive.py,sha256=KN0PJl-ivxjgQj008zyPGnORo5bTNaY77uASsSW0mFQ,3430
|
|
20
21
|
solara/routing.py,sha256=G_iZKozdVoUuD-qSMyuPV6jeN4qBqujAUvekw036f88,9143
|
|
21
|
-
solara/settings.py,sha256=
|
|
22
|
+
solara/settings.py,sha256=v_fW9P_pcmKpgz1aJgxeP40R5y-hf5OPTkM-upZE23w,2525
|
|
22
23
|
solara/tasks.py,sha256=4qV7HRAKCQ_POHUWkg8Rzx8hiFRO82P6ypgXKb6RUSo,30187
|
|
23
|
-
solara/toestand.py,sha256=
|
|
24
|
-
solara/util.py,sha256=
|
|
24
|
+
solara/toestand.py,sha256=qHnJAOgK14RaAt7J2ag7V59RpTD2nZw2WckKv9MQJMg,29237
|
|
25
|
+
solara/util.py,sha256=RDRkwEch7l8sJ3TR4VOMZVSlhlNypK2kUtkOZpjirCc,9376
|
|
25
26
|
solara/validate_hooks.py,sha256=F0CYDOVF_23O1apJBIk9lZMq11JmkoE3BrVVT8QvZWI,9999
|
|
26
27
|
solara/components/__init__.py,sha256=XuDwLU9Fvjd0zws_iS_UFyjgWwFJpUHWOVJN_COHO3o,2698
|
|
27
28
|
solara/components/alert.py,sha256=sNjlrCu2niR6LD9gZFXwvSBMszCKt6nRH58kE7RgsDw,5144
|
|
@@ -32,29 +33,29 @@ solara/components/checkbox.py,sha256=MLQ9Hxvtv5aKLj4XO3ILWtGc6nKOUH560A2bBt0Z030
|
|
|
32
33
|
solara/components/code_highlight_css.py,sha256=J0fZHuEu8jeEKAq_HKbzgiMR1-VwMVnKA4dAOKE0AQU,235
|
|
33
34
|
solara/components/code_highlight_css.vue,sha256=UX4jtEetV1W25Uvu8xQ-TbEaBzbp_7DlXtXDO9SdZfY,5776
|
|
34
35
|
solara/components/columns.py,sha256=bGCUU9MLxkt2OiS31oLHWrEOlskxT1Xo65dBxXhmhbQ,5564
|
|
35
|
-
solara/components/component_vue.py,sha256=
|
|
36
|
+
solara/components/component_vue.py,sha256=iFjmklw3uKkGPxnf5Hn6JQQ1Nw6sfAICLmkPYJEmbbE,5068
|
|
36
37
|
solara/components/cross_filter.py,sha256=Q5vOkerWXNCtRbSboHjXcnjoys8bHv5b7G_fH1A1lio,13663
|
|
37
38
|
solara/components/dataframe.py,sha256=9Zr-usCz9UkO2xpNlDpooRGu-Bwtn49Cy4cdAaO_KGg,21033
|
|
38
39
|
solara/components/datatable.py,sha256=A64-BRM3d8ZKUURbYSfHCsqqJg7MKQhFpnJ9uqCBGMg,7836
|
|
39
40
|
solara/components/datatable.vue,sha256=xoIT7tS2QSKgJHt0kHRODsDx81S9SEwk1EoVM9sgFWg,7061
|
|
40
41
|
solara/components/details.py,sha256=KsGATbjlLNn9X490o8n55njy_VCE8RnL3Hx08Lsu4Kk,1587
|
|
41
42
|
solara/components/download.vue,sha256=xdh4olwVvGkQwGNRMU5eVUW1FGvcXrYrCyjddJbvH7E,1069
|
|
42
|
-
solara/components/echarts.py,sha256=
|
|
43
|
-
solara/components/echarts.vue,sha256=
|
|
43
|
+
solara/components/echarts.py,sha256=aAedLqKuVJnBi3FwhSdQIgAn-w55sNb_hGSmqkosfuA,3069
|
|
44
|
+
solara/components/echarts.vue,sha256=7TGmxaRUmH-LeH16jHiUzyuZgebGu_JDiWsa2DBSWW4,4056
|
|
44
45
|
solara/components/figure_altair.py,sha256=t4EEwXrdoisrbV5j2MS-HBlPc5HSFCK5r4mRXvYRH9w,1150
|
|
45
46
|
solara/components/file_browser.py,sha256=701vg4_c0au9va206sx3pQDX6NL1VFqs7ewQ0RAbn6k,7331
|
|
46
47
|
solara/components/file_download.py,sha256=Lil0qyiozU_Pxyb_HgnJXOumrxMeDwwavEmZZw6kAs8,7475
|
|
47
|
-
solara/components/file_drop.py,sha256=
|
|
48
|
+
solara/components/file_drop.py,sha256=d2gRQbFNwwpWd-8slcVYPD1MVvf3Jv4ZOCx8PFPEOdw,5244
|
|
48
49
|
solara/components/file_drop.vue,sha256=ywQvWjqLIRNMAL6ZrdLpHCK4ZprrVbh0n2AJFanVlR8,2243
|
|
49
50
|
solara/components/file_list_widget.vue,sha256=atp-FO9tBjvyCQ_32NqeB9Rcehg03vPLD1eIROgBDDU,1860
|
|
50
51
|
solara/components/head.py,sha256=QZRTbwaUH0trfce3ntEcOqmLjw74CbSHpuMt9gGj7oA,648
|
|
51
52
|
solara/components/head_tag.py,sha256=xPj_ug0TUAZF4yN6ypKlmLcsHORIHU8zfIZgEDNi4PQ,1591
|
|
52
53
|
solara/components/head_tag.vue,sha256=vw0PJzAajq1XbyKhrTakfzJGF_beXAjupkFXPKJbVDo,1642
|
|
53
54
|
solara/components/image.py,sha256=o44iu0_wv3cPKnKv47mw10d2f67vuBaW2Jhs775hNAM,4503
|
|
54
|
-
solara/components/input.py,sha256=
|
|
55
|
+
solara/components/input.py,sha256=pPNjCwVQMebNTtAlHxIWu4kuyVkBSRK1W9QZX9hmwEM,15980
|
|
55
56
|
solara/components/input_text_area.py,sha256=iExJf5Ok6XU25O0fB_jaj3nZTsDKmREa76dduhR2liI,3008
|
|
56
57
|
solara/components/link.py,sha256=bYXVencL9hjBcrGniXdE0JlSzBE9bkUFFmd4apfYhjk,1842
|
|
57
|
-
solara/components/markdown.py,sha256=
|
|
58
|
+
solara/components/markdown.py,sha256=PG7o7-Kox-0tCpz8YaCuZXEGLE3QpvneOV2wVr1-6rU,13479
|
|
58
59
|
solara/components/markdown_editor.py,sha256=egsCsxeAuot2oolSLt_XjTUmg6S4YCtArQUIbQ9YC6E,874
|
|
59
60
|
solara/components/markdown_editor.vue,sha256=i_317ijGzZBX33ggtmKxkZR1dXgMDiv6kg8xApNsijM,8762
|
|
60
61
|
solara/components/matplotlib.py,sha256=c7iQhOIG_8aKTOz_Xnw3wXa0sgfiBunIzOxRhljQlzw,2029
|
|
@@ -67,8 +68,8 @@ solara/components/select.py,sha256=DBxc_DGh-WcOQXCEiUC5yT8RG_obAYgGnMSayvzXzVE,5
|
|
|
67
68
|
solara/components/select.vue,sha256=n_sLCLlzKco6LiPHhefyIlqp7K7_pxFhEwJs3ujVw-g,950
|
|
68
69
|
solara/components/slider.py,sha256=LPuTjOWojg-S-6Tib2PnCdyoZ0sLRyuENPtRAIBcqrk,13408
|
|
69
70
|
solara/components/slider_date.vue,sha256=TJsDmZqsXCET61JlVCYqmkWVWDlu6NSfQii9ZcAlMYA,1351
|
|
70
|
-
solara/components/spinner-solara.vue,sha256=
|
|
71
|
-
solara/components/spinner.py,sha256=
|
|
71
|
+
solara/components/spinner-solara.vue,sha256=rHVKHqca3s1ta3PIMGIO3jp5Nv_C2-E5yLsO2kfen8I,2937
|
|
72
|
+
solara/components/spinner.py,sha256=QAdsgsMlBnDo5VEa0Gt0lCxZmxzzlsL0UauSuKq_MaI,1131
|
|
72
73
|
solara/components/sql_code.py,sha256=yfg616G9HsPGLDmvxDvpqukMpFnjJogZfTn99H9aQko,1430
|
|
73
74
|
solara/components/sql_code.vue,sha256=Y7WU-wh7abZDymAy0Q1P3aOqk3t0YBUFm-0ODbRjzcQ,3829
|
|
74
75
|
solara/components/style.py,sha256=8xv5xXkfiTyVP0oRRh1ONQn0oJ2k40yTomQFEgP0-3k,3144
|
|
@@ -81,7 +82,7 @@ solara/components/tooltip.py,sha256=vb65by6g_2jkHsHlE6wpbPghveVTZ7D4e1bdUvrUvdg,
|
|
|
81
82
|
solara/hooks/__init__.py,sha256=ViBiBdInk_Ze8QIuHkjJGlrWGOj8LLwkva5iE-Ipj1Q,195
|
|
82
83
|
solara/hooks/dataframe.py,sha256=w6lVhSQGkK1e6-uSczkCc1p6GIdVoFsu_DkdM15quYw,3421
|
|
83
84
|
solara/hooks/misc.py,sha256=Pqf1fvyOrQmFkl2qoJEwMCisVJZAWjSn0O8I2oy-rac,7885
|
|
84
|
-
solara/hooks/use_reactive.py,sha256=
|
|
85
|
+
solara/hooks/use_reactive.py,sha256=qBPEhx_MI7KPiCl3QCyNc9BOj18qL7X2GT2dNc8CEmI,4948
|
|
85
86
|
solara/hooks/use_thread.py,sha256=EM3MCDUV3W-KXZTcWeM2Lo-J5dkGY4dyrRssN9Bx8uk,5492
|
|
86
87
|
solara/lab/__init__.py,sha256=IoEdv0xrwySEP_ap-kbE7ct0wuaVpl61Rl5zfo4RH90,1121
|
|
87
88
|
solara/lab/toestand.py,sha256=OYB7gJQsRQ67uR4KayWhV6Ofczqyo4FMtqQszugOQJg,196
|
|
@@ -110,15 +111,15 @@ solara/server/esm.py,sha256=dX9pzTJQ6kd6qNHQgzC938O5LTowLhuATXO0Q1paz44,2951
|
|
|
110
111
|
solara/server/fastapi.py,sha256=qVIHn0_Kxr6zWqcBWySu5nnJ6pNTSDqb4EHIh-cqH_8,93
|
|
111
112
|
solara/server/flask.py,sha256=VxKKUZXuoXATZO0HMgk-vEJKDuyZVKq6EnObsPGr_YM,9142
|
|
112
113
|
solara/server/jupytertools.py,sha256=cYFIUjLX7n0uuEXqWVWvmV6sV7R_MNg8ZZlabQgw8vk,1320
|
|
113
|
-
solara/server/kernel.py,sha256=
|
|
114
|
+
solara/server/kernel.py,sha256=jDJylLU10fbZwxh-iVvCME5C9wYUEILoaM9hZOfBq7c,11113
|
|
114
115
|
solara/server/kernel_context.py,sha256=RrNVAkoev6u6LZBvDfG86zyVs7eDVUsrp_4Au_FLlgY,16718
|
|
115
116
|
solara/server/patch.py,sha256=W-UG_TXKIbQRV0B9rGkJzg21EGV00ra5kQZAZGQquZc,19111
|
|
116
|
-
solara/server/qt.py,sha256=
|
|
117
|
+
solara/server/qt.py,sha256=QdMxX2T0Ol_j3QHYwInDyT5Gy4sOhYljMPYfru5kwLg,3774
|
|
117
118
|
solara/server/reload.py,sha256=BBH7QhrV1-e9RVyNE3uz1oPj1DagC3t_XSqGPNz0nJE,9747
|
|
118
119
|
solara/server/server.py,sha256=fUb9BpvjCNLlSAOUIjkge6PUO07VGEetdQi1chEFzRM,16569
|
|
119
120
|
solara/server/settings.py,sha256=b82BNWOntcWithynahDDAZFQyx3-kmyll7FwqIOn1sg,7369
|
|
120
121
|
solara/server/shell.py,sha256=xKox0fvDxdcWleE8p2ffCkihvjLJsWn2FujMbgUjYn0,8677
|
|
121
|
-
solara/server/starlette.py,sha256=
|
|
122
|
+
solara/server/starlette.py,sha256=qfjFLWMHi2iLxsGd-0ngqqmOjfAyJ4d4XjX2xWFOgkQ,29054
|
|
122
123
|
solara/server/telemetry.py,sha256=GPKGA5kCIqJb76wgxQ2_U2uV_s0r-1tKqv-GVxo5hs8,6038
|
|
123
124
|
solara/server/threaded.py,sha256=k9k461md4MxEFX-RLit5RpVRPFlQNwr-qp5pprT8JB0,2347
|
|
124
125
|
solara/server/utils.py,sha256=1Pa6HF8O1jsxDBcCWlVfP_9jFiUIQgqiIhT4oJ-iUmo,1207
|
|
@@ -144,7 +145,7 @@ solara/server/static/highlight-dark.css,sha256=xO8-vta9vG4s1OfJNHXWqiLWzx_gM03jo
|
|
|
144
145
|
solara/server/static/highlight.css,sha256=k8ZdT5iwrGQ5tXTQHAXuxvZrSUq3kwCdEpy3mlFoZjs,2637
|
|
145
146
|
solara/server/static/main-vuetify.js,sha256=R3qM4xMlstMpRUdRaul78p34z_Av2ONSTXksg2V9TqQ,9503
|
|
146
147
|
solara/server/static/main.js,sha256=mcx4JNQ4Lg4pNdUIqMoZos1mZyYFS48yd_JNFFJUqIE,5679
|
|
147
|
-
solara/server/static/solara_bootstrap.py,sha256=
|
|
148
|
+
solara/server/static/solara_bootstrap.py,sha256=V6lgMil5N9ZZSjdt4Yfwzy-pL0wet8-tAQlUxJjFpdw,3195
|
|
148
149
|
solara/server/static/sun.svg,sha256=jEKBAGCr7b9zNYv0VUb7lMWKjnU2dX69_Ye_DZWGXJI,6855
|
|
149
150
|
solara/server/static/webworker.js,sha256=cjAFz7-SygStHJnYlJUlJs-gE_7YQeQ-WBDcmKYyjvo,1372
|
|
150
151
|
solara/server/templates/index.html.j2,sha256=JXQo1M-STFHLBOFetgG7509cAq8xUP0VAEtYDzz35fY,31
|
|
@@ -161,7 +162,7 @@ solara/template/portal/.pre-commit-config.yaml,sha256=DsbfWYWrY1e8PsZLnpwy6i6toO
|
|
|
161
162
|
solara/template/portal/LICENSE,sha256=xPc0BBwd0svV8AEKTLi_iOfiTJhyIUnHrLfPq3ziQrU,1066
|
|
162
163
|
solara/template/portal/Procfile,sha256=0hH27qB3LEQtsQQ-S7MmbdElV_mnkoydYm_50oEuBK0,411
|
|
163
164
|
solara/template/portal/mypy.ini,sha256=3aYc17TrLxLRnRo-D_yMUhxU5VTGZSjXCeIAIOnrk1c,63
|
|
164
|
-
solara/template/portal/pyproject.toml,sha256=
|
|
165
|
+
solara/template/portal/pyproject.toml,sha256=a-Ww5WvSs6DQF851kilWTUbEe2lPQTsGB5aTUxIvepw,459
|
|
165
166
|
solara/template/portal/solara_portal/__init__.py,sha256=syrq4HBVpD7Ay12hLDUO-sYi9LBD33OQtmHJdtxbVWw,100
|
|
166
167
|
solara/template/portal/solara_portal/data.py,sha256=In5sSAj1KJLHrH11HPOxRXrcgWWoODkmh55gyLHxU3Y,1911
|
|
167
168
|
solara/template/portal/solara_portal/components/__init__.py,sha256=BkqTfIZdB4_QwkTVTdLWC9-7OPk_5eGWC91Vt3MpcWo,70
|
|
@@ -177,7 +178,7 @@ solara/template/portal/solara_portal/pages/article/__init__.py,sha256=6PgHyyeK1_
|
|
|
177
178
|
solara/template/portal/solara_portal/pages/viz/__init__.py,sha256=l65uqBpFJ6Uh5XytXhLMnR-8G4FBnjqJg86OJX7_LO0,2858
|
|
178
179
|
solara/template/portal/solara_portal/pages/viz/overview.py,sha256=GPlzFxUR0LRQhR96a_CVWquGTjHhDehL1PR03Tcm3gs,365
|
|
179
180
|
solara/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
-
solara/test/pytest_plugin.py,sha256=
|
|
181
|
+
solara/test/pytest_plugin.py,sha256=0v2NOLzTbd9UMo_gWEs2m-FCTD8iOUSFxQYypoVLQjk,26845
|
|
181
182
|
solara/website/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
183
|
solara/website/utils.py,sha256=TfoExocZ8ko2hTcA7XDKI5FfKZ4gi3JTc_f9Oi5L7Fs,855
|
|
183
184
|
solara/website/assets/custom.css,sha256=Qw_FZpAmPrus38TgYKmLmSgEYf6djWzO5pm2fF8kutk,9330
|
|
@@ -195,7 +196,7 @@ solara/website/components/docs.py,sha256=-g4h9Qn4bh7IfOdt5jIwN40Vz7RdVCFWNbRnB43
|
|
|
195
196
|
solara/website/components/header.py,sha256=418qs3NnmEL8F648MiB-Nuwc46e7R9VSeFLU09LUZkA,3805
|
|
196
197
|
solara/website/components/mailchimp.py,sha256=ziMYkNpHLLKamniXnzS1wOtWMzLeIqqQGRZLxk0GUzE,199
|
|
197
198
|
solara/website/components/mailchimp.vue,sha256=f2cFKUfl7gL9FJbGLCtPRUFBghxS8kcGuI_xSSOAEpo,3543
|
|
198
|
-
solara/website/components/markdown.py,sha256=
|
|
199
|
+
solara/website/components/markdown.py,sha256=6QXGC50IHgxTfbxZoy9nhZcpG9hB4F-9CrfIZ9j6VT8,3309
|
|
199
200
|
solara/website/components/markdown_nav.vue,sha256=VK6TBDcocPyfLyripFR1BQITj00tLe0fwauumYQUExE,988
|
|
200
201
|
solara/website/components/notebook.py,sha256=MM73_c5l49SSpK63O4TYMsQ-mA43CwfhfU7VKXjfNC0,6867
|
|
201
202
|
solara/website/components/sidebar.py,sha256=VRbxGkhsOx26H458gkW1p44NCoTFn8EhWqpyB4ahFso,6071
|
|
@@ -220,7 +221,7 @@ solara/website/pages/apps/multipage/page1.py,sha256=5hK0RZ8UBBOaZcPKaplbLeb0Vvae
|
|
|
220
221
|
solara/website/pages/apps/multipage/page2.py,sha256=uRJ8YPFyKy7GR_Ii8DJSx3akb3H15rQAJZETMt9jVEk,1422
|
|
221
222
|
solara/website/pages/careers/__init__.py,sha256=_aaO9YQOvy8JE9PYkWeSNzLU4pUU-PJMAaYy07YbKsU,1479
|
|
222
223
|
solara/website/pages/changelog/__init__.py,sha256=0ouQpbt5EGEY6bHmSMt6S7Gk71gAmuaIuevT5wEE2zQ,277
|
|
223
|
-
solara/website/pages/changelog/changelog.md,sha256=
|
|
224
|
+
solara/website/pages/changelog/changelog.md,sha256=m5rrynOeArftPaNbljdMZv7GVjZ4GYoQhs7V_GOK0vk,21825
|
|
224
225
|
solara/website/pages/contact/__init__.py,sha256=NkjxJo258RTHLFPQ18IVZ9euS_vJciHUrM4o1fz9QJE,1259
|
|
225
226
|
solara/website/pages/documentation/__init__.py,sha256=lv9cleVukKDLKRtjTYIlfBDi8Aw3bEz2iV8-IxBz3LA,5563
|
|
226
227
|
solara/website/pages/documentation/advanced/__init__.py,sha256=bLLvasuqVVWJxGN89m77ChZhDivEhVavw9-_CiG3IZA,414
|
|
@@ -259,24 +260,24 @@ solara/website/pages/documentation/advanced/content/40-development/01-contribute
|
|
|
259
260
|
solara/website/pages/documentation/advanced/content/40-development/10-setup.md,sha256=fFq8dJGFYq3pZ9cpCzUmjS4vuVYUkTJ3ekqaahPafkY,2293
|
|
260
261
|
solara/website/pages/documentation/api/__init__.py,sha256=2f2OtK_INAKF5P_Ich7bEk-nC4Ia8q10vzK7fsHNuwg,313
|
|
261
262
|
solara/website/pages/documentation/api/cross_filter/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
262
|
-
solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py,sha256=
|
|
263
|
-
solara/website/pages/documentation/api/cross_filter/cross_filter_report.py,sha256=
|
|
264
|
-
solara/website/pages/documentation/api/cross_filter/cross_filter_select.py,sha256=
|
|
265
|
-
solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py,sha256=
|
|
263
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_dataframe.py,sha256=o2TDctUmXgBJBO98EsyxAjoNcaip7kjsp5vdc9k-GLw,443
|
|
264
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_report.py,sha256=JFGy2s1bPNg97ZrgEwGxWDOlXe9FLw2WvDdRBytsWBQ,425
|
|
265
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_select.py,sha256=znHcOl24EApQ1gs0Zq_ZaJYdkNeBcfRhcgSNgHasfzU,401
|
|
266
|
+
solara/website/pages/documentation/api/cross_filter/cross_filter_slider.py,sha256=jHzGVAnnmi3VZluaA32TM4b4SBE3HhbtxhqVarZ38Q8,431
|
|
266
267
|
solara/website/pages/documentation/api/hooks/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
267
|
-
solara/website/pages/documentation/api/hooks/use_cross_filter.py,sha256=
|
|
268
|
+
solara/website/pages/documentation/api/hooks/use_cross_filter.py,sha256=nRCJtCkV16Cn2NWhIOSGnzjfFCpPvfgTU0VPqYEQtCI,452
|
|
268
269
|
solara/website/pages/documentation/api/hooks/use_dark_effective.py,sha256=uwKHSj3htGIPUIYX8tBX6_Lis3MoDwqCCtFaDHPYJp0,257
|
|
269
270
|
solara/website/pages/documentation/api/hooks/use_effect.md,sha256=0GVnM609RJzpV2xkbiHb13JrwEut3VrQ-41HuHYg6Tg,1422
|
|
270
271
|
solara/website/pages/documentation/api/hooks/use_effect.py,sha256=7yCp4u6mXtVe7vn897tXhep3wz27rn-Fk7euO5wHbHk,183
|
|
271
|
-
solara/website/pages/documentation/api/hooks/use_exception.py,sha256=
|
|
272
|
+
solara/website/pages/documentation/api/hooks/use_exception.py,sha256=CX7oX4u_oYWvTIWIlbtKwkxAVknhOsaZnsrM0fKw1kI,814
|
|
272
273
|
solara/website/pages/documentation/api/hooks/use_memo.md,sha256=1wZypMGchSZWUL-Uq1-zNgcYUyGU49l1kvDsAf8VNeY,847
|
|
273
274
|
solara/website/pages/documentation/api/hooks/use_memo.py,sha256=osKi_Fgi6QqmRGzSRbKKyuauD2CeLq6egf2AqT2QefI,179
|
|
274
|
-
solara/website/pages/documentation/api/hooks/use_previous.py,sha256
|
|
275
|
+
solara/website/pages/documentation/api/hooks/use_previous.py,sha256=IkYl9mdzZmjcHQOKv1zyB1V1gjLzF0MiVAJH1s0JBgI,507
|
|
275
276
|
solara/website/pages/documentation/api/hooks/use_reactive.py,sha256=s6TKUaE5rMog7492ZnpSXTi6wwh9CPZVP2KTtjHfGEM,221
|
|
276
277
|
solara/website/pages/documentation/api/hooks/use_state.py,sha256=gY6ZOwG_Hm3gf2uqoIAigTPxvJSZusIMqRyoiX4vyjY,231
|
|
277
|
-
solara/website/pages/documentation/api/hooks/use_state_or_update.py,sha256=
|
|
278
|
+
solara/website/pages/documentation/api/hooks/use_state_or_update.py,sha256=VWCdrf6t8bjKXhR6wpzIbCpGThUQhxAl92iyKJGEttU,2559
|
|
278
279
|
solara/website/pages/documentation/api/hooks/use_thread.md,sha256=TehwZ2H9XayHoPVMksLdp5bfA3DR9Dsrk56UjttoSbY,2841
|
|
279
|
-
solara/website/pages/documentation/api/hooks/use_thread.py,sha256=
|
|
280
|
+
solara/website/pages/documentation/api/hooks/use_thread.py,sha256=atCFwT55-is-pMgG_FNatWPwTrnRvZ-NsVGS99deI0s,1340
|
|
280
281
|
solara/website/pages/documentation/api/hooks/use_trait_observe.py,sha256=RaZAYwANJWJ-0cUzMwcro52aFcbu7d5yxD2AT6SjweM,250
|
|
281
282
|
solara/website/pages/documentation/api/routing/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
282
283
|
solara/website/pages/documentation/api/routing/generate_routes.py,sha256=47D_3ynzaswhXozvbByM1LZKiUmwwXUvjstosofOIfA,261
|
|
@@ -292,7 +293,7 @@ solara/website/pages/documentation/api/utilities/display.py,sha256=p9bQBGKk8MK8N
|
|
|
292
293
|
solara/website/pages/documentation/api/utilities/get_kernel_id.py,sha256=NOVqM6bQoWbwytQ8QqsFtpwuIkYIxzCUdbSdOkMhlgs,224
|
|
293
294
|
solara/website/pages/documentation/api/utilities/get_session_id.py,sha256=NHXFD3l_ow5IbHt7gR2ZZt8wZKP1eVqyVi1m3AUm3Hc,227
|
|
294
295
|
solara/website/pages/documentation/api/utilities/memoize.py,sha256=Zj6BkNjgDUAKq7JDZnFnFQhTN-mr_xYhWUXHetWEp3E,991
|
|
295
|
-
solara/website/pages/documentation/api/utilities/on_kernel_start.py,sha256=
|
|
296
|
+
solara/website/pages/documentation/api/utilities/on_kernel_start.py,sha256=se2VMbDtvyDFmXAvGhZFhCydTYSHtaPv4eefv7h9XQY,1502
|
|
296
297
|
solara/website/pages/documentation/api/utilities/reactive.py,sha256=p7DXuOx8dBuRtvNPFMSxPWPt_OB3kBepGmpEl4V5rPM,209
|
|
297
298
|
solara/website/pages/documentation/api/utilities/widget.py,sha256=xxuP7s4V-s9KNLUBS3SSio3_j3AHsEi047uNCzTV2lc,2791
|
|
298
299
|
solara/website/pages/documentation/components/__init__.py,sha256=QUnisvMWYheUHAsX6y9lCy6ZotbDSqBqx_Qxcu6vcyA,238
|
|
@@ -312,7 +313,7 @@ solara/website/pages/documentation/components/input/button.py,sha256=MB46yBccVgF
|
|
|
312
313
|
solara/website/pages/documentation/components/input/checkbox.py,sha256=OdbHlLOrEPc3a2R8-UY0q9e4bnCgzgatVG9yHSftNqk,187
|
|
313
314
|
solara/website/pages/documentation/components/input/file_browser.py,sha256=alZP9Keg3FlfpBm0xmDKtUvRziJkv-sWhpZpa7uvTiU,1021
|
|
314
315
|
solara/website/pages/documentation/components/input/file_drop.py,sha256=Khj_ge7vlwdTLhHqzEwWAJ7GBHTM63NvHPREv7u_Rx8,2290
|
|
315
|
-
solara/website/pages/documentation/components/input/input.py,sha256=
|
|
316
|
+
solara/website/pages/documentation/components/input/input.py,sha256=WpHuv40mrl0yGxipcvEoF2TkBPpqyNdjHlNwEBdpg8k,1156
|
|
316
317
|
solara/website/pages/documentation/components/input/select.py,sha256=PWvUsJHSyNJNenLcj2XSMD3NnclkxcxpBk553-RXNOc,439
|
|
317
318
|
solara/website/pages/documentation/components/input/slider.py,sha256=O7hAuWLufxt36glKvx8f2VODZg0YblyCII-7afoAyQo,741
|
|
318
319
|
solara/website/pages/documentation/components/input/switch.py,sha256=RN9pnxU2da15FD_D3aN16NkW2IDy8LTnSg82Tj91BDw,183
|
|
@@ -364,7 +365,7 @@ solara/website/pages/documentation/components/status/success.py,sha256=5Iav2ATRs
|
|
|
364
365
|
solara/website/pages/documentation/components/status/warning.py,sha256=q6lzRfRNkAh1AaftmTDDEis9Wr0O7bJxkdwIelkyDWw,1469
|
|
365
366
|
solara/website/pages/documentation/components/viz/__init__.py,sha256=5qmC4lE7WKhZ-NCpOXfINltTKpiC0mBW86vHoGb9Mdk,179
|
|
366
367
|
solara/website/pages/documentation/components/viz/altair.py,sha256=HmmMob0BaodcjITo9_O2aMqduIhTrV7H8tIvdCIOSVo,790
|
|
367
|
-
solara/website/pages/documentation/components/viz/echarts.py,sha256=
|
|
368
|
+
solara/website/pages/documentation/components/viz/echarts.py,sha256=nTXTmMX5zpwibsZLhqGpRJHd5xkCaoc9hKpihwgsdT4,2639
|
|
368
369
|
solara/website/pages/documentation/components/viz/matplotlib.py,sha256=YEvCQyy5lmuV_6NArZ8qYucLMN6ah7pVJNk-xkouDAg,761
|
|
369
370
|
solara/website/pages/documentation/components/viz/plotly.py,sha256=t54SJLkdf7jfO7XwAnbuArotUCq_6aX_CCsXi_Z7c1k,1377
|
|
370
371
|
solara/website/pages/documentation/components/viz/plotly_express.py,sha256=dnBKzdr1IQF5bkSN2f8hkNbW4u7mfEwhNEufmaaDcEM,957
|
|
@@ -388,7 +389,7 @@ solara/website/pages/documentation/examples/general/deploy_model.py,sha256=u2Hfw
|
|
|
388
389
|
solara/website/pages/documentation/examples/general/live_update.py,sha256=Zte8ii3W_Jv0mR8cD38xajO7Qn9JJEg3PwDe-q1IbRg,987
|
|
389
390
|
solara/website/pages/documentation/examples/general/login_oauth.py,sha256=STckaXaDxdEnltl5PkgkSmw-FASqUqr4T5llGI-UwNA,2551
|
|
390
391
|
solara/website/pages/documentation/examples/general/mycard.vue,sha256=j1p32TyRHYpi4OW__K1UxwMElif3R9J-POlTb8ACCMg,1359
|
|
391
|
-
solara/website/pages/documentation/examples/general/pokemon_search.py,sha256
|
|
392
|
+
solara/website/pages/documentation/examples/general/pokemon_search.py,sha256=-G9dEMUhvXKy5AJ9Hh5aaFtIqQ1oWuLD4KFHbU-YZis,2129
|
|
392
393
|
solara/website/pages/documentation/examples/general/vue_component.py,sha256=RjzyeGrOtpQzwvAx9Dn5jM4uhDpkD0c_SNM7VrgmI_g,1729
|
|
393
394
|
solara/website/pages/documentation/examples/libraries/__init__.py,sha256=x7Hy8EmHugarFZIP2Wl4K7ACs_70iC4KmOhMVHXQqEo,144
|
|
394
395
|
solara/website/pages/documentation/examples/libraries/altair.py,sha256=nphFgEWxlgkI14OwRcP59AnL0MMTAIin01-L8_kJAhU,2180
|
|
@@ -401,13 +402,13 @@ solara/website/pages/documentation/examples/utilities/countdown_timer.py,sha256=
|
|
|
401
402
|
solara/website/pages/documentation/examples/utilities/todo.py,sha256=tFsCt429TaOLyWLjb7UW-1ji64Uwv3JhN8y6EQHJHXM,6480
|
|
402
403
|
solara/website/pages/documentation/examples/visualization/__init__.py,sha256=OaLTp4A4J6y0lZS6mVgY78eNRQ0SagOK261KNY4LEVQ,105
|
|
403
404
|
solara/website/pages/documentation/examples/visualization/annotator.py,sha256=CAXT3mjQE9RBQMmaDCJjSHZr1Fv66M0ESR3foFTqUWo,1761
|
|
404
|
-
solara/website/pages/documentation/examples/visualization/linked_views.py,sha256=
|
|
405
|
+
solara/website/pages/documentation/examples/visualization/linked_views.py,sha256=TmZmtO9E4IgcNsMRWOGVqPlfCm4SWT7APMk1ip9mic8,2721
|
|
405
406
|
solara/website/pages/documentation/examples/visualization/plotly.py,sha256=33kKSV-h8cyU6KJ3XfiTrkHtIrtUg7SbYlz0XWLNBN0,1268
|
|
406
407
|
solara/website/pages/documentation/faq/__init__.py,sha256=GcdqdTEWC-xDgIWECQleZbbnmacelt9K1ZyTw2nf9Wc,278
|
|
407
408
|
solara/website/pages/documentation/faq/content/99-faq.md,sha256=UWBlt5nx_GXAJP8b87e7Hw1agiuY6-nCIh9WPLvSTr4,3939
|
|
408
409
|
solara/website/pages/documentation/getting_started/__init__.py,sha256=bLLvasuqVVWJxGN89m77ChZhDivEhVavw9-_CiG3IZA,414
|
|
409
|
-
solara/website/pages/documentation/getting_started/content/00-quickstart.md,sha256=
|
|
410
|
-
solara/website/pages/documentation/getting_started/content/01-introduction.md,sha256=
|
|
410
|
+
solara/website/pages/documentation/getting_started/content/00-quickstart.md,sha256=ahasjpn53eWAE7wWQCxKrrW_4JQQSNcytsRquW-MawE,3479
|
|
411
|
+
solara/website/pages/documentation/getting_started/content/01-introduction.md,sha256=ZxSyPD3lT-VGuWaF3ND8scEqo6q5GUY8QX6khUcFats,6623
|
|
411
412
|
solara/website/pages/documentation/getting_started/content/02-installing.md,sha256=zYn_4b4TR2rsMyi-UloAAI3D0qWaM1Wsbf0Uzz_XYj0,5609
|
|
412
413
|
solara/website/pages/documentation/getting_started/content/80-what-is-lab.md,sha256=4CLyCZYkApsWNdXJ3N6YYShj5s4tJhYH1V6svtVgCcE,307
|
|
413
414
|
solara/website/pages/documentation/getting_started/content/90-troubleshoot.md,sha256=8nPg3ncqQKD2lqs2Ob5YA7-LYQQyCfjO8muggHtNSCA,1783
|
|
@@ -430,7 +431,7 @@ solara/website/pages/documentation/getting_started/content/07-deploying/20-cloud
|
|
|
430
431
|
solara/website/pages/our_team/__init__.py,sha256=sLTqx4rw1HuXr-HEXUsexjfGn9IkVx9bBwJizo8G5gA,4221
|
|
431
432
|
solara/website/pages/pricing/__init__.py,sha256=wYlHoEE6A3fVY_K47LuS2txXJifOSHhMI9dN3-jfW8s,1362
|
|
432
433
|
solara/website/pages/roadmap/__init__.py,sha256=T7NULo-JEldhIpKaj_NQ_ka8iFGijUxk6f1LN-rvVUk,283
|
|
433
|
-
solara/website/pages/roadmap/roadmap.md,sha256=
|
|
434
|
+
solara/website/pages/roadmap/roadmap.md,sha256=HlvOYPeC5GSLfCgYywq1rx-GGstMUx2fMcZ3ixziXiQ,3198
|
|
434
435
|
solara/website/pages/showcase/__init__.py,sha256=_6VP_Lxomr-hQz-hceEyLKo503gmcuuxqwJQW7Ps8Vo,6326
|
|
435
436
|
solara/website/pages/showcase/domino_code_assist.py,sha256=dxEbAYeZwiSx1_JHVd1dsnEqpPwiv3TcmYSonwjc-PE,2297
|
|
436
437
|
solara/website/pages/showcase/planeto_tessa.py,sha256=7uFsWvzOenyJIKW88ZF7PmkEStdySinUEgraeU6LKCE,723
|
|
@@ -453,9 +454,9 @@ solara/widgets/vue/gridlayout.vue,sha256=hk10RsEQBxkknTmqa0wtBia9LWQGdDsXlejnAj7
|
|
|
453
454
|
solara/widgets/vue/html.vue,sha256=48K5rjp0AdJDeRV6F3nOHW3J0WXPeHn55r5pGClK2fU,112
|
|
454
455
|
solara/widgets/vue/navigator.vue,sha256=7fkX-4_YSnnMIPUMKMvQVVEzrmhY9BFAYvHMqZqTXpI,4790
|
|
455
456
|
solara/widgets/vue/vegalite.vue,sha256=zhocRsUCNIRQCEbD16er5sYnuHU0YThatRHnorA3P18,4596
|
|
456
|
-
solara_ui-1.
|
|
457
|
-
solara_ui-1.
|
|
458
|
-
solara_ui-1.
|
|
459
|
-
solara_ui-1.
|
|
460
|
-
solara_ui-1.
|
|
461
|
-
solara_ui-1.
|
|
457
|
+
solara_ui-1.42.0.data/data/etc/jupyter/jupyter_notebook_config.d/solara.json,sha256=3UhTBQi6z7F7pPjmqXxfddv79c8VGR9H7zStDLp6AwY,115
|
|
458
|
+
solara_ui-1.42.0.data/data/etc/jupyter/jupyter_server_config.d/solara.json,sha256=D9J-rYxAzyD5GOqWvuPjacGUVFHsYtTfZ4FUbRzRvIA,113
|
|
459
|
+
solara_ui-1.42.0.dist-info/METADATA,sha256=V7CaudaLv1-py2YKjIowGkEF_KeYwa_7whVpaGbOEvs,7438
|
|
460
|
+
solara_ui-1.42.0.dist-info/WHEEL,sha256=aO3RJuuiFXItVSnAUEmQ0yRBvv9e1sbJh68PtuQkyAE,105
|
|
461
|
+
solara_ui-1.42.0.dist-info/licenses/LICENSE,sha256=fFJUz-CWzZ9nEc4QZKu44jMEoDr5fEW-SiqljKpD82E,1086
|
|
462
|
+
solara_ui-1.42.0.dist-info/RECORD,,
|
|
File without changes
|
{solara_ui-1.41.0.data → solara_ui-1.42.0.data}/data/etc/jupyter/jupyter_server_config.d/solara.json
RENAMED
|
File without changes
|
|
File without changes
|