streamlit-nightly 1.22.1.dev20230530__py2.py3-none-any.whl → 1.23.2.dev20230602__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.
- streamlit/elements/data_editor.py +2 -2
- streamlit/static/asset-manifest.json +2 -2
- streamlit/static/index.html +1 -1
- streamlit/static/static/js/{main.4e910df2.js → main.996c736c.js} +2 -2
- streamlit/web/bootstrap.py +26 -0
- {streamlit_nightly-1.22.1.dev20230530.dist-info → streamlit_nightly-1.23.2.dev20230602.dist-info}/METADATA +3 -2
- {streamlit_nightly-1.22.1.dev20230530.dist-info → streamlit_nightly-1.23.2.dev20230602.dist-info}/RECORD +12 -12
- /streamlit/static/static/js/{main.4e910df2.js.LICENSE.txt → main.996c736c.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.22.1.dev20230530.data → streamlit_nightly-1.23.2.dev20230602.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.22.1.dev20230530.dist-info → streamlit_nightly-1.23.2.dev20230602.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.22.1.dev20230530.dist-info → streamlit_nightly-1.23.2.dev20230602.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.22.1.dev20230530.dist-info → streamlit_nightly-1.23.2.dev20230602.dist-info}/top_level.txt +0 -0
@@ -549,7 +549,7 @@ class DataEditorMixin:
|
|
549
549
|
.. warning::
|
550
550
|
When going from ``st.experimental_data_editor`` to ``st.data_editor`` in
|
551
551
|
1.23.0, the data editor's representation in ``st.session_state`` was changed.
|
552
|
-
The ``
|
552
|
+
The ``edited_cells`` dictionary is now called ``edited_rows`` and uses a
|
553
553
|
different format (``{0: {"column name": "edited value"}}`` instead of
|
554
554
|
``{"0:1": "edited value"}``). You may need to adjust the code if your app uses
|
555
555
|
``st.experimental_data_editor`` in combination with ``st.session_state``."
|
@@ -849,7 +849,7 @@ class DataEditorMixin:
|
|
849
849
|
"experimental_data_editor",
|
850
850
|
"2023-09-01",
|
851
851
|
"""
|
852
|
-
**Breaking change:** The data editor's representation in `st.session_state` was changed. The `
|
852
|
+
**Breaking change:** The data editor's representation in `st.session_state` was changed. The `edited_cells` dictionary is now called `edited_rows` and uses a
|
853
853
|
different format (`{0: {"column name": "edited value"}}` instead of
|
854
854
|
`{"0:1": "edited value"}`). You may need to adjust the code if your app uses
|
855
855
|
`st.experimental_data_editor` in combination with `st.session_state`."
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"files": {
|
3
3
|
"main.css": "./static/css/main.f4a8738f.css",
|
4
|
-
"main.js": "./static/js/main.
|
4
|
+
"main.js": "./static/js/main.996c736c.js",
|
5
5
|
"static/js/464.53a4cca5.chunk.js": "./static/js/464.53a4cca5.chunk.js",
|
6
6
|
"static/js/480.ace5e591.chunk.js": "./static/js/480.ace5e591.chunk.js",
|
7
7
|
"static/js/441.18a5aa7a.chunk.js": "./static/js/441.18a5aa7a.chunk.js",
|
@@ -143,6 +143,6 @@
|
|
143
143
|
},
|
144
144
|
"entrypoints": [
|
145
145
|
"static/css/main.f4a8738f.css",
|
146
|
-
"static/js/main.
|
146
|
+
"static/js/main.996c736c.js"
|
147
147
|
]
|
148
148
|
}
|
streamlit/static/index.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><link rel="shortcut icon" href="./favicon.png"/><title>Streamlit</title><script>window.prerenderReady=!1</script><script defer="defer" src="./static/js/main.
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><link rel="shortcut icon" href="./favicon.png"/><title>Streamlit</title><script>window.prerenderReady=!1</script><script defer="defer" src="./static/js/main.996c736c.js"></script><link href="./static/css/main.f4a8738f.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|