streamlit-react-components 0.1.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.
- streamlit_react_components/__init__.py +40 -0
- streamlit_react_components/_frontend/index.css +1 -0
- streamlit_react_components/_frontend/index.html +13 -0
- streamlit_react_components/_frontend/index.js +63 -0
- streamlit_react_components/common/__init__.py +21 -0
- streamlit_react_components/common/button_group.py +57 -0
- streamlit_react_components/common/chart_legend.py +49 -0
- streamlit_react_components/common/data_table.py +65 -0
- streamlit_react_components/common/metric_row.py +47 -0
- streamlit_react_components/common/panel.py +43 -0
- streamlit_react_components/common/section_header.py +59 -0
- streamlit_react_components/common/stat_card.py +54 -0
- streamlit_react_components/common/step_indicator.py +51 -0
- streamlit_react_components/form/__init__.py +11 -0
- streamlit_react_components/form/checkbox_group.py +61 -0
- streamlit_react_components/form/form_select.py +69 -0
- streamlit_react_components/form/form_slider.py +69 -0
- streamlit_react_components-0.1.0.dist-info/METADATA +18 -0
- streamlit_react_components-0.1.0.dist-info/RECORD +21 -0
- streamlit_react_components-0.1.0.dist-info/WHEEL +5 -0
- streamlit_react_components-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
streamlit_react_components/__init__.py,sha256=UFqSg3IlXb1-E_PgJQFEUh-MWjoooGz1Gyq_kVlibBk,635
|
|
2
|
+
streamlit_react_components/_frontend/index.css,sha256=bD7Zbx8DaCKY8pD1NDxEIdnKE6LKrg4Tha5r8k3_Leg,9919
|
|
3
|
+
streamlit_react_components/_frontend/index.html,sha256=CjBEtVYlgT_q06BE16EHFrUrJZ6z0MCprrTg7qgAWzw,381
|
|
4
|
+
streamlit_react_components/_frontend/index.js,sha256=nXjpPEeTg84ip8r1yLUa9m5402XqPV93UBas4rnYrvk,328827
|
|
5
|
+
streamlit_react_components/common/__init__.py,sha256=WEyVUIRkwspYAyll6fhuoBGD5HKVQpBLR9CjYEQqyu8,491
|
|
6
|
+
streamlit_react_components/common/button_group.py,sha256=8g8L79i-tjFuheAqJUe46mRzEFlcDfbjMpYNF8Hui58,1698
|
|
7
|
+
streamlit_react_components/common/chart_legend.py,sha256=So703OO-sI6SWrSVGKH0OTiI-smr4luqgBtXQ9GwIlI,1377
|
|
8
|
+
streamlit_react_components/common/data_table.py,sha256=dEvRxCBejvoye7jsqGcdsh_Ox-VeRpWMHgaAi-qv5HM,2142
|
|
9
|
+
streamlit_react_components/common/metric_row.py,sha256=abDfSrLvZO8MK2gglvE98L5U0Fx2NfNHGF5bBnfqR5I,1257
|
|
10
|
+
streamlit_react_components/common/panel.py,sha256=O4URjnK8u9_byFzDO9RAFdpXjzNdxpXY1CX8gEEK1pY,1094
|
|
11
|
+
streamlit_react_components/common/section_header.py,sha256=HaochqnbSI2lAIU8zXzqMYRIofqGMRbumQOmBMxQle4,1762
|
|
12
|
+
streamlit_react_components/common/stat_card.py,sha256=l3amtS0JpRqoiZSqdcS2HfE3FxFlzOlIgR8aPX0fnOo,1433
|
|
13
|
+
streamlit_react_components/common/step_indicator.py,sha256=araovSL_c5h66PawZBf5IlQbVoxXwE9kD0H10ZopVoU,1370
|
|
14
|
+
streamlit_react_components/form/__init__.py,sha256=XP9oBEHSwLTNqu88sYm0F_n828yzPStDJl3N62HxVvc,222
|
|
15
|
+
streamlit_react_components/form/checkbox_group.py,sha256=NLNJW1Ql60PnFj0FdH6Q0gUAGx2NOVNI9geIG-NG8G4,1779
|
|
16
|
+
streamlit_react_components/form/form_select.py,sha256=KILKVUO-Elb0nqbTEImxyoGQQrnZ_jft30iJSbY5ksk,1946
|
|
17
|
+
streamlit_react_components/form/form_slider.py,sha256=iRkPr4hg1vpsNjFF8paZ3jRb3hA1iU3Jp7WairZD_t4,1730
|
|
18
|
+
streamlit_react_components-0.1.0.dist-info/METADATA,sha256=ti4sKyC1IBE4v3jKUFYqxZeXMB4Cslee1jHuob5vF_0,774
|
|
19
|
+
streamlit_react_components-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
20
|
+
streamlit_react_components-0.1.0.dist-info/top_level.txt,sha256=3JFrl15-Uewx3BFMSzqrBufF9GmTS1LDKfShmg0R9VE,27
|
|
21
|
+
streamlit_react_components-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
streamlit_react_components
|