streamlit 1.44.0__tar.gz → 1.45.0__tar.gz
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-1.44.0 → streamlit-1.45.0}/PKG-INFO +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/setup.py +5 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/__init__.py +5 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/execution_control.py +4 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/navigation.py +2 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/page_config.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/types/base_custom_component.py +9 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/v1/custom_component.py +21 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/config.py +46 -48
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/config_util.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/delta_generator.py +5 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/deprecation_util.py +3 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/alert.py +83 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/exception.py +35 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/html.py +58 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/iframe.py +65 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/built_in_chart_utils.py +47 -36
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/dicttools.py +2 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/event_utils.py +7 -5
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/file_uploader_utils.py +3 -2
- streamlit-1.45.0/streamlit/elements/lib/layout_utils.py +51 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/options_selector_utils.py +26 -5
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/policies.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/markdown.py +1 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/toast.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/vega_charts.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/audio_input.py +0 -42
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/button_group.py +42 -11
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/chat.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/multiselect.py +211 -31
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/number_input.py +31 -5
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/selectbox.py +225 -42
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/text_widgets.py +29 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/time_widgets.py +3 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/write.py +14 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/env_util.py +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/errors.py +15 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/logger.py +1 -1
- streamlit-1.45.0/streamlit/material_icon_names.py +25 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/net_util.py +2 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Alert_pb2.py +6 -5
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Alert_pb2.pyi +9 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ClientState_pb2.py +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ClientState_pb2.pyi +23 -3
- streamlit-1.45.0/streamlit/proto/Components_pb2.py +35 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Components_pb2.pyi +6 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Exception_pb2.py +4 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Exception_pb2.pyi +9 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ForwardMsg_pb2.pyi +4 -7
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/IFrame_pb2.py +3 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/IFrame_pb2.pyi +8 -2
- streamlit-1.45.0/streamlit/proto/MetricsEvent_pb2.py +30 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/MetricsEvent_pb2.pyi +23 -11
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/MultiSelect_pb2.py +4 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/MultiSelect_pb2.pyi +14 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NewSession_pb2.py +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NewSession_pb2.pyi +20 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NumberInput_pb2.py +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NumberInput_pb2.pyi +4 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Selectbox_pb2.py +4 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Selectbox_pb2.pyi +15 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TextInput_pb2.py +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TextInput_pb2.pyi +4 -1
- streamlit-1.45.0/streamlit/proto/WidthConfig_pb2.py +27 -0
- streamlit-1.45.0/streamlit/proto/WidthConfig_pb2.pyi +34 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/app_session.py +20 -12
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cache_errors.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/context.py +100 -0
- streamlit-1.45.0/streamlit/runtime/context_util.py +49 -0
- streamlit-1.45.0/streamlit/runtime/forward_msg_cache.py +101 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/forward_msg_queue.py +41 -23
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/metrics_util.py +40 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/runtime.py +2 -60
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/runtime_util.py +17 -16
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/script_runner.py +9 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner_utils/script_requests.py +3 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner_utils/script_run_context.py +25 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/session_manager.py +5 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/session_state_proxy.py +2 -2
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/index.html +2 -2
- streamlit-1.44.0/streamlit/static/static/css/index.BOl9eq08.css → streamlit-1.45.0/streamlit/static/static/css/index.DqDwtg6_.css +1 -1
- streamlit-1.45.0/streamlit/static/static/js/ErrorOutline.esm.DyIfDYvY.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/FileDownload.esm.DiXmshPF.js → streamlit-1.45.0/streamlit/static/static/js/FileDownload.esm.kF1FCxeJ.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/FileHelper.i3Jvmlzn.js → streamlit-1.45.0/streamlit/static/static/js/FileHelper.DKt6tIeO.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/FormClearHelper.CQElyxrk.js → streamlit-1.45.0/streamlit/static/static/js/FormClearHelper.DpJR9YCu.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/Hooks.k_aLIO1M.js → streamlit-1.45.0/streamlit/static/static/js/Hooks.BT6PF2Zi.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/InputInstructions.B0wdU31C.js → streamlit-1.45.0/streamlit/static/static/js/InputInstructions.BmnD4oa3.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/ProgressBar.DM2ialSh.js → streamlit-1.45.0/streamlit/static/static/js/ProgressBar.Ch7VNdkM.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/RenderInPortalIfExists.Dr1TwNz-.js → streamlit-1.45.0/streamlit/static/static/js/RenderInPortalIfExists.43tDswzK.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/Toolbar.HTGsjfCP.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/base-input.BcWBqREK.js → streamlit-1.45.0/streamlit/static/static/js/base-input.BjeC3XFX.js +4 -4
- streamlit-1.44.0/streamlit/static/static/js/checkbox.BiZvhaf8.js → streamlit-1.45.0/streamlit/static/static/js/checkbox.DIVN0GOS.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/createSuper.CPcsUjpY.js → streamlit-1.45.0/streamlit/static/static/js/createSuper.CKyBiJe0.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/data-grid-overlay-editor.1tMPklPT.js → streamlit-1.45.0/streamlit/static/static/js/data-grid-overlay-editor.CXpaXRk5.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/downloader.iDTtd7hj.js → streamlit-1.45.0/streamlit/static/static/js/downloader.B-uWAyLB.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/es6.Cofq4OuH.js → streamlit-1.45.0/streamlit/static/static/js/es6._eGNfJ2i.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/iframeResizer.contentWindow.BhF8fqu9.js → streamlit-1.45.0/streamlit/static/static/js/iframeResizer.contentWindow.CebQfV1Q.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.B5TWFN5r.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.DgOgNmd6.js → streamlit-1.45.0/streamlit/static/static/js/index.BAdBHmJD.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.D_I0UkpC.js → streamlit-1.45.0/streamlit/static/static/js/index.BI9-p_-s.js +3 -3
- streamlit-1.45.0/streamlit/static/static/js/index.BYHnDZYn.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.B_M97aPz.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.Ce79Zgi7.js → streamlit-1.45.0/streamlit/static/static/js/index.BaYSBSaz.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.DhAYxgG5.js → streamlit-1.45.0/streamlit/static/static/js/index.BaozEIL-.js +14 -14
- streamlit-1.44.0/streamlit/static/static/js/index.Dh9ECqwH.js → streamlit-1.45.0/streamlit/static/static/js/index.BdN5swP0.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.BfCAp_Sj.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.C4j9kiPf.js → streamlit-1.45.0/streamlit/static/static/js/index.BqDl3eRM.js +144 -144
- streamlit-1.45.0/streamlit/static/static/js/index.C0VtYb3T.js +2 -0
- streamlit-1.44.0/streamlit/static/static/js/index.D2YGQeHK.js → streamlit-1.45.0/streamlit/static/static/js/index.C1qW_Owy.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.C4AcBARa.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.CCOiJRk1.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.COvpza5W.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.LJ3vJ8E7.js → streamlit-1.45.0/streamlit/static/static/js/index.C_9qGjbK.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/index.BN0cnebl.js → streamlit-1.45.0/streamlit/static/static/js/index.C_nMqHLH.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/index.Dr1_yK-s.js → streamlit-1.45.0/streamlit/static/static/js/index.ClX0ambk.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.DYblfySD.js → streamlit-1.45.0/streamlit/static/static/js/index.Coc8OVG7.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.CpV1hnf8.js +3 -0
- streamlit-1.44.0/streamlit/static/static/js/index.6iaad_Si.js → streamlit-1.45.0/streamlit/static/static/js/index.CqISBfsc.js +54 -54
- streamlit-1.45.0/streamlit/static/static/js/index.CtTgot1Z.js +3 -0
- streamlit-1.44.0/streamlit/static/static/js/index.NCs4EPdh.js → streamlit-1.45.0/streamlit/static/static/js/index.CuUJHsRK.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.DACH_nHy.js → streamlit-1.45.0/streamlit/static/static/js/index.CxxktCLw.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.D1WOs2Ce.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.DQljs-9e.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.DZqX4P_2.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/index.DajIfBOb.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.igiHVZ7R.js → streamlit-1.45.0/streamlit/static/static/js/index.DuOXre0H.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.EWD98YhP.js +1 -0
- streamlit-1.44.0/streamlit/static/static/js/index.u6LNEbCr.js → streamlit-1.45.0/streamlit/static/static/js/index.EbMzSayc.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.CLT7oEkY.js → streamlit-1.45.0/streamlit/static/static/js/index.HsXxdgGd.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.LaZloCTl.js +73 -0
- streamlit-1.44.0/streamlit/static/static/js/index.DMANjaTu.js → streamlit-1.45.0/streamlit/static/static/js/index.S_1klBoy.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/index.b0Gf958T.js +12 -0
- streamlit-1.44.0/streamlit/static/static/js/index.CGxw_C_-.js → streamlit-1.45.0/streamlit/static/static/js/index.l6QfBDTC.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/index.D89x7ubj.js → streamlit-1.45.0/streamlit/static/static/js/index.schmj9D9.js +1051 -223
- streamlit-1.44.0/streamlit/static/static/js/index.D8rVyQy1.js → streamlit-1.45.0/streamlit/static/static/js/index.t--hEgTQ.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/input.DnZjPkze.js → streamlit-1.45.0/streamlit/static/static/js/input.VQEe_bZy.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/memory.DbbnjZnN.js → streamlit-1.45.0/streamlit/static/static/js/memory.DGVHab07.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/mergeWith.DALo-Zqq.js → streamlit-1.45.0/streamlit/static/static/js/mergeWith.-RIuUGoA.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/number-overlay-editor.B4JQzvvG.js → streamlit-1.45.0/streamlit/static/static/js/number-overlay-editor.wzFLIbEE.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/possibleConstructorReturn.RxDvBxvp.js → streamlit-1.45.0/streamlit/static/static/js/possibleConstructorReturn.GIObu6rf.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/sandbox.DV-EYa9L.js → streamlit-1.45.0/streamlit/static/static/js/sandbox.DpjSeqe2.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/textarea.CKUFGoEC.js → streamlit-1.45.0/streamlit/static/static/js/textarea.Dz0J9LZe.js +2 -2
- streamlit-1.44.0/streamlit/static/static/js/timepicker.Cxg2C6x8.js → streamlit-1.45.0/streamlit/static/static/js/timepicker.BLgJZnzX.js +4 -4
- streamlit-1.44.0/streamlit/static/static/js/toConsumableArray.BvG0Gjq2.js → streamlit-1.45.0/streamlit/static/static/js/toConsumableArray.0OZlxz7U.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/uniqueId.DimhTp-M.js → streamlit-1.45.0/streamlit/static/static/js/uniqueId.DbzplC8D.js +1 -1
- streamlit-1.44.0/streamlit/static/static/js/useBasicWidgetState.Cgn28NBA.js → streamlit-1.45.0/streamlit/static/static/js/useBasicWidgetState.COJZng1S.js +1 -1
- streamlit-1.45.0/streamlit/static/static/js/useOnInputChange.CgOwAHyw.js +1 -0
- streamlit-1.45.0/streamlit/static/static/js/withFullScreenWrapper.CzWvNbvi.js +1 -0
- streamlit-1.45.0/streamlit/static/static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/v1/element_tree.py +8 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/type_util.py +2 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/user_info.py +72 -33
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/local_sources_watcher.py +1 -1
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/util.py +6 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/cli.py +6 -3
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/routes.py +1 -59
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/server.py +7 -8
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/server_util.py +7 -6
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/PKG-INFO +4 -4
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/SOURCES.txt +73 -68
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/requires.txt +2 -2
- streamlit-1.44.0/streamlit/material_icon_names.py +0 -25
- streamlit-1.44.0/streamlit/proto/Components_pb2.py +0 -35
- streamlit-1.44.0/streamlit/proto/MetricsEvent_pb2.py +0 -30
- streamlit-1.44.0/streamlit/runtime/forward_msg_cache.py +0 -296
- streamlit-1.44.0/streamlit/static/static/js/Toolbar.Cp2Yicv_.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.B7ws9uX_.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.BOwRj478.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.Blbt-cxG.js +0 -3
- streamlit-1.44.0/streamlit/static/static/js/index.BnLT4iGb.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.BsAG_biB.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.C8qCWpbN.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.CJQ_GiOA.js +0 -12
- streamlit-1.44.0/streamlit/static/static/js/index.CySvZIGh.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.DAoqjuX8.js +0 -3
- streamlit-1.44.0/streamlit/static/static/js/index.DM_eIoHw.js +0 -2
- streamlit-1.44.0/streamlit/static/static/js/index.DpwgNAUA.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.DrvMrffv.js +0 -73
- streamlit-1.44.0/streamlit/static/static/js/index.DzcyZX0M.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.Lqx0qmuX.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.OMMeM3gC.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.bxAMRbty.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/index.hFp6wFt-.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/useOnInputChange.UB88CxHp.js +0 -1
- streamlit-1.44.0/streamlit/static/static/js/withFullScreenWrapper.R8nXdHBp.js +0 -1
- streamlit-1.44.0/streamlit/static/static/media/MaterialSymbols-Rounded.BFCIvovZ.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/MANIFEST.in +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/bin/streamlit.cmd +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/setup.cfg +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/__main__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/auth_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/cli_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/column_config.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/echo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/experimental_query_params.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/commands/logo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/lib/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/lib/local_component_registry.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/types/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/types/base_component_registry.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/v1/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/v1/component_arrow.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/v1/component_registry.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/components/v1/components.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/config_option.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/base_connection.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/snowflake_connection.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/snowpark_connection.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/sql_connection.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/connections/util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/cursor.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/dataframe_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/delta_generator_singletons.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/development.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/arrow.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/balloons.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/bokeh_chart.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/code.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/deck_gl_json_chart.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/dialog_decorator.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/doc_string.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/empty.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/form.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/graphviz_chart.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/heading.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/image.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/json.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/layouts.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/color_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/column_config_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/column_types.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/dialog.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/form_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/image_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/js_number.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/mutable_status_container.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/pandas_styler_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/streamlit_plotly_theme.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/subtitle_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/lib/utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/map.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/media.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/metric.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/plotly_chart.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/progress.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/pyplot.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/snow.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/spinner.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/text.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/button.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/camera_input.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/checkbox.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/color_picker.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/data_editor.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/file_uploader.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/radio.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/select_slider.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/elements/widgets/slider.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/emojis.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/error_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/external/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/external/langchain/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/external/langchain/streamlit_callback_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/file_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/git_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/animation_demo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/dataframe_demo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/hello.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/mapping_demo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/plotting_demo.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/streamlit_app.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/hello/utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/navigation/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/navigation/page.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/platform.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AppPage_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AppPage_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ArrowNamedDataSet_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ArrowNamedDataSet_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ArrowVegaLiteChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ArrowVegaLiteChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Arrow_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Arrow_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AudioInput_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AudioInput_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Audio_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Audio_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AuthRedirect_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AuthRedirect_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AutoRerun_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/AutoRerun_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/BackMsg_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/BackMsg_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Balloons_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Balloons_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Block_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Block_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/BokehChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/BokehChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ButtonGroup_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ButtonGroup_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Button_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Button_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/CameraInput_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/CameraInput_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ChatInput_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ChatInput_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Checkbox_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Checkbox_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Code_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Code_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ColorPicker_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ColorPicker_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Common_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Common_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DataFrame_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DataFrame_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DateInput_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DateInput_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DeckGlJsonChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DeckGlJsonChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Delta_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Delta_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DocString_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DocString_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DownloadButton_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/DownloadButton_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Element_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Element_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Empty_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Empty_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Favicon_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Favicon_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/FileUploader_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/FileUploader_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ForwardMsg_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/GitInfo_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/GitInfo_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/GraphVizChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/GraphVizChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Heading_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Heading_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Html_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Html_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Image_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Image_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Json_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Json_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/LabelVisibilityMessage_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/LabelVisibilityMessage_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/LinkButton_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/LinkButton_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Logo_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Logo_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Markdown_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Markdown_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Metric_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Metric_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NamedDataSet_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/NamedDataSet_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Navigation_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Navigation_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageConfig_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageConfig_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageInfo_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageInfo_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageLink_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageLink_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageNotFound_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageNotFound_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageProfile_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PageProfile_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PagesChanged_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PagesChanged_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ParentMessage_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/ParentMessage_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PlotlyChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/PlotlyChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Progress_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Progress_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Radio_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Radio_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/RootContainer_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/RootContainer_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/SessionEvent_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/SessionEvent_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/SessionStatus_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/SessionStatus_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Skeleton_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Skeleton_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Slider_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Slider_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Snow_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Snow_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Spinner_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Spinner_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TextArea_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TextArea_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Text_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Text_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TimeInput_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/TimeInput_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Toast_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Toast_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/VegaLiteChart_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/VegaLiteChart_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Video_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/Video_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/WidgetStates_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/WidgetStates_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/openmetrics_data_model_pb2.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/proto/openmetrics_data_model_pb2.pyi +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/py.typed +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cache_data_api.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cache_resource_api.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cache_type.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cache_utils.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/cached_message_replay.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/hashing.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/legacy_cache_api.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/storage/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/storage/cache_storage_protocol.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/storage/dummy_cache_storage.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/caching/storage/local_disk_cache_storage.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/connection_factory.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/credentials.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/fragment.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/media_file_manager.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/media_file_storage.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/memory_media_file_storage.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/memory_session_storage.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/memory_uploaded_file_manager.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/pages_manager.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/script_data.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/exec_code.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/magic.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/magic_funcs.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner/script_cache.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner_utils/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/scriptrunner_utils/exceptions.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/secrets.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/common.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/query_params.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/query_params_proxy.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/safe_session_state.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/session_state.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/state/widgets.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/stats.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/uploaded_file_manager.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/runtime/websocket_session_manager.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/source_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/favicon.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/css/index.C5t3M85E.css +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/css/index.DzuxGC_t.css +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/UploadFileInfo.C-jY39rj.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/createDownloadLinkElement.DZMwyjvU.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/inputUtils.CQWz5UKz.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/sprintf.D7DtBTRn.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/threshold.DjX0wlsa.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/timer.CAwTRJ_g.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/js/value.CgPGBV_l.js +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_AMS-Regular.BQhdFMY1.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_AMS-Regular.DMm9YOAa.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_AMS-Regular.DRggAlZN.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.ATXxdsX0.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.BEiXGLvX.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.Dq_IR9rO.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.CTRA-rTL.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.Di6jR-x-.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.wX97UBjC.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.BdnERNNW.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.BsDP51OF.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.CL6g_b3V.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.CB_wures.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.CTYiF6lA.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.Dxdc4cR9.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Bold.Cx986IdX.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Bold.Jm3AIy58.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Bold.waoOVXN0.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.DxDJ3AOS.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.DzxPMmG6.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.SpSLRI95.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Italic.3WenGoN9.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Italic.BMLOBm91.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Italic.NWA7e6Wa.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Regular.B22Nviop.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Regular.Dr94JaBh.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Main-Regular.ypZvNtVU.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.B3XSjfu4.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.CZnvNsCZ.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.iY-2wyZ7.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-Italic.DA0__PXp.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-Italic.flOr_0UB.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Math-Italic.t53AETM-.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.CFMepnvq.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.D1sUS0GD.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.DbIhKOiC.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.C3H0VqGB.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.DN2j7dab.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.YYjJ1zSn.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.BNo7hRIc.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.CS6fqUqJ.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.DDBCnlJ7.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Script-Regular.C5JkGWo-.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Script-Regular.D3wIWfF6.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Script-Regular.D5yQViql.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size1-Regular.C195tn64.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size1-Regular.Dbsnue_I.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size1-Regular.mCD8mA8B.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size2-Regular.B7gKUWhC.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size2-Regular.Dy4dx90m.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size2-Regular.oD1tc_U0.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size3-Regular.CTq5MqoE.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size3-Regular.DgpXs0kz.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size4-Regular.BF-4gkZK.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size4-Regular.DWFBv043.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Size4-Regular.Dl5lxZxV.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.C0xS9mPB.woff +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.CO6r4hn1.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.D3Ib7_Hf.ttf +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-Bold.CFEfr7-q.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-BoldItalic.C-LkFXxa.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-Italic.CxFOx7N-.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-Regular.CBOlD63d.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-SemiBold.CFHwW3Wd.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceCodePro-SemiBoldItalic.Cg2yRu82.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-Bold.-6c9oR8J.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-BoldItalic.DmM_grLY.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-Italic.I1ipWe7Q.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-Regular.DZLUzqI4.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-SemiBold.sKQIyTMz.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSansPro-SemiBoldItalic.C0wP0icr.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-Bold.8TUnKj4x.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-BoldItalic.CBVO7Ve7.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-Italic.DkFgL2HZ.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-Regular.CNJNET2S.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-SemiBold.CHyh9GC5.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/SourceSerifPro-SemiBoldItalic.CBtz8sWN.woff2 +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-0.Czj7AKwE.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-1.CNvFFrND.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-2.DTvC6B1t.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-3.CgSk4tbL.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-4.mbtFrzxf.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/balloon-5.CSwkUfRA.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/fireworks.B4d-_KUe.gif +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/flake-0.DgWaVvm5.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/flake-1.B2r5AHMK.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/flake-2.BnWSExPC.png +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/static/static/media/snowflake.JU2jBHL8.svg +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/string_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/temporary_directory.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/v1/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/v1/app_test.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/v1/local_script_runner.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/testing/v1/util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/time_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/url_util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/util.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/vendor/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/vendor/pympler/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/vendor/pympler/asizeof.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/version.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/event_based_path_watcher.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/folder_black_list.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/path_watcher.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/watcher/polling_path_watcher.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/bootstrap.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/cache_storage_manager_config.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/__init__.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/app_static_file_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/authlib_tornado_integration.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/browser_websocket_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/component_request_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/media_file_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/oauth_authlib_routes.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/oidc_mixin.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/stats_request_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/upload_file_request_handler.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit/web/server/websocket_headers.py +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/dependency_links.txt +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/entry_points.txt +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/not-zip-safe +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/streamlit.egg-info/top_level.txt +0 -0
- {streamlit-1.44.0 → streamlit-1.45.0}/tests/testutil.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: streamlit
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.45.0
|
|
4
4
|
Summary: A faster way to build and share data apps
|
|
5
5
|
Home-page: https://streamlit.io
|
|
6
6
|
Author: Snowflake Inc
|
|
@@ -32,14 +32,14 @@ Classifier: Topic :: Software Development :: Widget Sets
|
|
|
32
32
|
Requires-Python: >=3.9, !=3.9.7
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
Requires-Dist: altair<6,>=4.0
|
|
35
|
-
Requires-Dist: blinker<2,>=1.
|
|
35
|
+
Requires-Dist: blinker<2,>=1.5.0
|
|
36
36
|
Requires-Dist: cachetools<6,>=4.0
|
|
37
37
|
Requires-Dist: click<9,>=7.0
|
|
38
38
|
Requires-Dist: numpy<3,>=1.23
|
|
39
39
|
Requires-Dist: packaging<25,>=20
|
|
40
40
|
Requires-Dist: pandas<3,>=1.4.0
|
|
41
41
|
Requires-Dist: pillow<12,>=7.1.0
|
|
42
|
-
Requires-Dist: protobuf<
|
|
42
|
+
Requires-Dist: protobuf<7,>=3.20
|
|
43
43
|
Requires-Dist: pyarrow>=7.0
|
|
44
44
|
Requires-Dist: requests<3,>=2.27
|
|
45
45
|
Requires-Dist: tenacity<10,>=8.1.0
|
|
@@ -103,7 +103,7 @@ The app features a bunch of examples of what you can do with Streamlit. Jump to
|
|
|
103
103
|
|
|
104
104
|
### A little example
|
|
105
105
|
|
|
106
|
-
Create a new file `streamlit_app.py` with the following code:
|
|
106
|
+
Create a new file named `streamlit_app.py` in your project directory with the following code:
|
|
107
107
|
```python
|
|
108
108
|
import streamlit as st
|
|
109
109
|
x = st.slider("Select a value")
|
|
@@ -21,7 +21,7 @@ from setuptools.command.install import install
|
|
|
21
21
|
|
|
22
22
|
THIS_DIRECTORY = Path(__file__).parent
|
|
23
23
|
|
|
24
|
-
VERSION = "1.
|
|
24
|
+
VERSION = "1.45.0" # PEP-440
|
|
25
25
|
|
|
26
26
|
# IMPORTANT: We should try very hard *not* to add dependencies to Streamlit.
|
|
27
27
|
# And if you do add one, make the required version as general as possible:
|
|
@@ -30,7 +30,7 @@ VERSION = "1.44.0" # PEP-440
|
|
|
30
30
|
# - And include an upper bound that's < NEXT_MAJOR_VERSION
|
|
31
31
|
INSTALL_REQUIRES = [
|
|
32
32
|
"altair>=4.0, <6",
|
|
33
|
-
"blinker>=1.
|
|
33
|
+
"blinker>=1.5.0, <2",
|
|
34
34
|
"cachetools>=4.0, <6",
|
|
35
35
|
"click>=7.0, <9",
|
|
36
36
|
"numpy>=1.23, <3",
|
|
@@ -40,13 +40,15 @@ INSTALL_REQUIRES = [
|
|
|
40
40
|
"pandas>=1.4.0, <3",
|
|
41
41
|
"pillow>=7.1.0, <12",
|
|
42
42
|
# `protoc` < 3.20 is not able to generate protobuf code compatible with protobuf >= 3.20.
|
|
43
|
-
"protobuf>=3.20, <
|
|
43
|
+
"protobuf>=3.20, <7",
|
|
44
44
|
# pyarrow is not semantically versioned, gets new major versions frequently, and
|
|
45
45
|
# doesn't tend to break the API on major version upgrades, so we don't put an
|
|
46
46
|
# upper bound on it.
|
|
47
47
|
"pyarrow>=7.0",
|
|
48
48
|
"requests>=2.27, <3",
|
|
49
49
|
"tenacity>=8.1.0, <10",
|
|
50
|
+
# Starting from Python 3.11, Python has built in support for reading TOML files.
|
|
51
|
+
# Let's make sure to remove this "toml" library when we stop supporting Python 3.10.
|
|
50
52
|
"toml>=0.10.1, <2",
|
|
51
53
|
"typing-extensions>=4.4.0, <5",
|
|
52
54
|
# Don't require watchdog on MacOS, since it'll fail without xcode tools.
|
|
@@ -117,6 +117,7 @@ from streamlit.runtime.state import (
|
|
|
117
117
|
)
|
|
118
118
|
from streamlit.user_info import (
|
|
119
119
|
UserInfoProxy as _UserInfoProxy,
|
|
120
|
+
DeprecatedUserInfoProxy as _DeprecatedUserInfoProxy,
|
|
120
121
|
login as _login,
|
|
121
122
|
logout as _logout,
|
|
122
123
|
)
|
|
@@ -277,11 +278,13 @@ fragment = _fragment
|
|
|
277
278
|
login = _login
|
|
278
279
|
logout = _logout
|
|
279
280
|
|
|
281
|
+
# User
|
|
282
|
+
user = _UserInfoProxy()
|
|
283
|
+
|
|
280
284
|
# Experimental APIs
|
|
281
|
-
experimental_audio_input = _main.experimental_audio_input
|
|
282
285
|
experimental_dialog = _experimental_dialog_decorator
|
|
283
286
|
experimental_fragment = _experimental_fragment
|
|
284
|
-
experimental_user =
|
|
287
|
+
experimental_user = _DeprecatedUserInfoProxy()
|
|
285
288
|
|
|
286
289
|
_EXPERIMENTAL_QUERY_PARAMS_DEPRECATE_MSG = "Refer to our [docs page](https://docs.streamlit.io/develop/api-reference/caching-and-state/st.query_params) for more information."
|
|
287
290
|
|
|
@@ -140,6 +140,7 @@ def rerun( # type: ignore[misc]
|
|
|
140
140
|
if ctx and ctx.script_requests:
|
|
141
141
|
query_string = ctx.query_string
|
|
142
142
|
page_script_hash = ctx.page_script_hash
|
|
143
|
+
cached_message_hashes = ctx.cached_message_hashes
|
|
143
144
|
|
|
144
145
|
ctx.script_requests.request_rerun(
|
|
145
146
|
RerunData(
|
|
@@ -147,6 +148,8 @@ def rerun( # type: ignore[misc]
|
|
|
147
148
|
page_script_hash=page_script_hash,
|
|
148
149
|
fragment_id_queue=_new_fragment_id_queue(ctx, scope),
|
|
149
150
|
is_fragment_scoped_rerun=scope == "fragment",
|
|
151
|
+
cached_message_hashes=cached_message_hashes,
|
|
152
|
+
context_info=ctx.context_info,
|
|
150
153
|
)
|
|
151
154
|
)
|
|
152
155
|
# Force a yield point so the runner can do the rerun
|
|
@@ -232,6 +235,7 @@ def switch_page(page: str | Path | StreamlitPage) -> NoReturn: # type: ignore[m
|
|
|
232
235
|
RerunData(
|
|
233
236
|
query_string=ctx.query_string,
|
|
234
237
|
page_script_hash=page_script_hash,
|
|
238
|
+
cached_message_hashes=ctx.cached_message_hashes,
|
|
235
239
|
)
|
|
236
240
|
)
|
|
237
241
|
# Force a yield point so the runner can do the rerun
|
|
@@ -31,6 +31,7 @@ from streamlit.runtime.scriptrunner_utils.script_run_context import (
|
|
|
31
31
|
ScriptRunContext,
|
|
32
32
|
get_script_run_ctx,
|
|
33
33
|
)
|
|
34
|
+
from streamlit.string_util import is_emoji
|
|
34
35
|
|
|
35
36
|
if TYPE_CHECKING:
|
|
36
37
|
from streamlit.source_util import PageHash, PageInfo
|
|
@@ -349,7 +350,7 @@ def _navigation(
|
|
|
349
350
|
p = msg.navigation.app_pages.add()
|
|
350
351
|
p.page_script_hash = page._script_hash
|
|
351
352
|
p.page_name = page.title
|
|
352
|
-
p.icon = page.icon
|
|
353
|
+
p.icon = f"emoji:{page.icon}" if is_emoji(page.icon) else page.icon
|
|
353
354
|
p.is_default = page._default
|
|
354
355
|
p.section_header = section_header
|
|
355
356
|
p.url_pathname = page.url_path
|
|
@@ -102,7 +102,7 @@ def _get_favicon_string(page_icon: PageIcon) -> str:
|
|
|
102
102
|
|
|
103
103
|
# If page_icon is an emoji, return it as is.
|
|
104
104
|
if isinstance(page_icon, str) and is_emoji(page_icon):
|
|
105
|
-
return page_icon
|
|
105
|
+
return f"emoji:{page_icon}"
|
|
106
106
|
|
|
107
107
|
if isinstance(page_icon, str) and page_icon.startswith(":material"):
|
|
108
108
|
return validate_material_icon(page_icon)
|
|
@@ -60,6 +60,7 @@ class BaseCustomComponent(ABC):
|
|
|
60
60
|
default: Any = None,
|
|
61
61
|
key: str | None = None,
|
|
62
62
|
on_change: WidgetCallback | None = None,
|
|
63
|
+
tab_index: int | None = None,
|
|
63
64
|
**kwargs,
|
|
64
65
|
) -> Any:
|
|
65
66
|
"""An alias for create_instance."""
|
|
@@ -68,6 +69,7 @@ class BaseCustomComponent(ABC):
|
|
|
68
69
|
default=default,
|
|
69
70
|
key=key,
|
|
70
71
|
on_change=on_change,
|
|
72
|
+
tab_index=tab_index,
|
|
71
73
|
**kwargs,
|
|
72
74
|
)
|
|
73
75
|
|
|
@@ -113,6 +115,7 @@ class BaseCustomComponent(ABC):
|
|
|
113
115
|
default: Any = None,
|
|
114
116
|
key: str | None = None,
|
|
115
117
|
on_change: WidgetCallback | None = None,
|
|
118
|
+
tab_index: int | None = None,
|
|
116
119
|
**kwargs,
|
|
117
120
|
) -> Any:
|
|
118
121
|
"""Create a new instance of the component.
|
|
@@ -131,6 +134,12 @@ class BaseCustomComponent(ABC):
|
|
|
131
134
|
component's "widget ID".
|
|
132
135
|
on_change: WidgetCallback or None
|
|
133
136
|
An optional callback invoked when the widget's value changes. No arguments are passed to it.
|
|
137
|
+
tab_index: int or None
|
|
138
|
+
Specifies the tab order of the iframe containing the component.
|
|
139
|
+
Possible values are:
|
|
140
|
+
- ``None`` (default): Browser default behavior.
|
|
141
|
+
- ``-1``: Removes the iframe from the natural tab order, but it can still be focused programmatically.
|
|
142
|
+
- ``0`` or positive integer: Includes the iframe in the natural tab order.
|
|
134
143
|
**kwargs
|
|
135
144
|
Keyword args to pass to the component.
|
|
136
145
|
|
|
@@ -52,6 +52,7 @@ class CustomComponent(BaseCustomComponent):
|
|
|
52
52
|
default: Any = None,
|
|
53
53
|
key: str | None = None,
|
|
54
54
|
on_change: WidgetCallback | None = None,
|
|
55
|
+
tab_index: int | None = None,
|
|
55
56
|
**kwargs,
|
|
56
57
|
) -> Any:
|
|
57
58
|
"""An alias for create_instance."""
|
|
@@ -60,6 +61,7 @@ class CustomComponent(BaseCustomComponent):
|
|
|
60
61
|
default=default,
|
|
61
62
|
key=key,
|
|
62
63
|
on_change=on_change,
|
|
64
|
+
tab_index=tab_index,
|
|
63
65
|
**kwargs,
|
|
64
66
|
)
|
|
65
67
|
|
|
@@ -70,6 +72,7 @@ class CustomComponent(BaseCustomComponent):
|
|
|
70
72
|
default: Any = None,
|
|
71
73
|
key: str | None = None,
|
|
72
74
|
on_change: WidgetCallback | None = None,
|
|
75
|
+
tab_index: int | None = None,
|
|
73
76
|
**kwargs,
|
|
74
77
|
) -> Any:
|
|
75
78
|
"""Create a new instance of the component.
|
|
@@ -88,6 +91,12 @@ class CustomComponent(BaseCustomComponent):
|
|
|
88
91
|
component's "widget ID".
|
|
89
92
|
on_change: WidgetCallback or None
|
|
90
93
|
An optional callback invoked when the widget's value changes. No arguments are passed to it.
|
|
94
|
+
tab_index : int, optional
|
|
95
|
+
Specifies the tab order of the iframe containing the component.
|
|
96
|
+
Possible values are:
|
|
97
|
+
- ``None`` (default): Browser default behavior.
|
|
98
|
+
- ``-1``: Removes the iframe from the natural tab order, but it can still be focused programmatically.
|
|
99
|
+
- ``0`` or positive integer: Includes the iframe in the natural tab order.
|
|
91
100
|
**kwargs
|
|
92
101
|
Keyword args to pass to the component.
|
|
93
102
|
|
|
@@ -100,6 +109,16 @@ class CustomComponent(BaseCustomComponent):
|
|
|
100
109
|
if len(args) > 0:
|
|
101
110
|
raise MarshallComponentException(f"Argument '{args[0]}' needs a label")
|
|
102
111
|
|
|
112
|
+
# Validate tab_index according to web specifications
|
|
113
|
+
if tab_index is not None and not (
|
|
114
|
+
isinstance(tab_index, int)
|
|
115
|
+
and not isinstance(tab_index, bool)
|
|
116
|
+
and tab_index >= -1
|
|
117
|
+
):
|
|
118
|
+
raise StreamlitAPIException(
|
|
119
|
+
"tab_index must be None, -1, or a non-negative integer."
|
|
120
|
+
)
|
|
121
|
+
|
|
103
122
|
try:
|
|
104
123
|
import pyarrow # noqa: F401, ICN001
|
|
105
124
|
|
|
@@ -148,6 +167,8 @@ And if you're using Streamlit Cloud, add "pyarrow" to your requirements.txt."""
|
|
|
148
167
|
element.component_instance.form_id = current_form_id(dg)
|
|
149
168
|
if self.url is not None:
|
|
150
169
|
element.component_instance.url = self.url
|
|
170
|
+
if tab_index is not None:
|
|
171
|
+
element.component_instance.tab_index = tab_index
|
|
151
172
|
|
|
152
173
|
# Normally, a widget's element_hash (which determines
|
|
153
174
|
# its identity across multiple runs of an app) is computed
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import copy
|
|
20
|
+
import logging
|
|
20
21
|
import os
|
|
21
22
|
import secrets
|
|
22
23
|
import threading
|
|
23
24
|
from collections import OrderedDict
|
|
24
25
|
from enum import Enum
|
|
25
|
-
from typing import Any, Callable, Literal
|
|
26
|
+
from typing import Any, Callable, Final, Literal
|
|
26
27
|
|
|
27
28
|
from blinker import Signal
|
|
28
29
|
|
|
@@ -55,14 +56,16 @@ _config_options: dict[str, ConfigOption] | None = None
|
|
|
55
56
|
|
|
56
57
|
|
|
57
58
|
# Indicates that a config option was defined by the user.
|
|
58
|
-
_USER_DEFINED = "<user defined>"
|
|
59
|
+
_USER_DEFINED: Final = "<user defined>"
|
|
59
60
|
|
|
60
61
|
# Indicates that a config option was defined either in an environment variable
|
|
61
62
|
# or via command-line flag.
|
|
62
|
-
_DEFINED_BY_FLAG = "command-line argument or environment variable"
|
|
63
|
+
_DEFINED_BY_FLAG: Final = "command-line argument or environment variable"
|
|
63
64
|
|
|
64
65
|
# Indicates that a config option was defined in an environment variable
|
|
65
|
-
_DEFINED_BY_ENV_VAR = "environment variable"
|
|
66
|
+
_DEFINED_BY_ENV_VAR: Final = "environment variable"
|
|
67
|
+
|
|
68
|
+
_LOGGER: Final = logging.getLogger(__name__)
|
|
66
69
|
|
|
67
70
|
|
|
68
71
|
class ShowErrorDetailsConfigOptions(str, Enum):
|
|
@@ -82,8 +85,9 @@ class ShowErrorDetailsConfigOptions(str, Enum):
|
|
|
82
85
|
return val in ["false", "False", False]
|
|
83
86
|
|
|
84
87
|
# Config options can be set from several places including the command-line and
|
|
85
|
-
# the user's script. Legacy config options (true/false) will have type string
|
|
86
|
-
# command-line and bool when set via user script
|
|
88
|
+
# the user's script. Legacy config options (true/false) will have type string
|
|
89
|
+
# when set via command-line and bool when set via user script
|
|
90
|
+
# (e.g. st.set_option("client.showErrorDetails", False)).
|
|
87
91
|
|
|
88
92
|
|
|
89
93
|
class CustomThemeCategories(str, Enum):
|
|
@@ -162,7 +166,8 @@ def set_user_option(key: str, value: Any) -> None:
|
|
|
162
166
|
return
|
|
163
167
|
|
|
164
168
|
raise StreamlitAPIException(
|
|
165
|
-
f"{key} cannot be set on the fly. Set as command line option, e.g.
|
|
169
|
+
f"{key} cannot be set on the fly. Set as command line option, e.g. "
|
|
170
|
+
"streamlit run script.py --{key}, or in config.toml instead."
|
|
166
171
|
)
|
|
167
172
|
|
|
168
173
|
|
|
@@ -308,8 +313,11 @@ def _create_theme_options(
|
|
|
308
313
|
type_: type = str,
|
|
309
314
|
) -> None:
|
|
310
315
|
"""
|
|
311
|
-
Create ConfigOption(s) for a theme-related config option and store it globally in
|
|
312
|
-
|
|
316
|
+
Create ConfigOption(s) for a theme-related config option and store it globally in
|
|
317
|
+
this module.
|
|
318
|
+
|
|
319
|
+
The same config option can be supported for multiple categories, e.g. "theme"
|
|
320
|
+
and "theme.sidebar".
|
|
313
321
|
"""
|
|
314
322
|
for cat in categories:
|
|
315
323
|
section = cat if cat == "theme" else f"theme.{cat.value}"
|
|
@@ -444,32 +452,6 @@ _create_option(
|
|
|
444
452
|
type_=int,
|
|
445
453
|
)
|
|
446
454
|
|
|
447
|
-
_create_option(
|
|
448
|
-
"global.storeCachedForwardMessagesInMemory",
|
|
449
|
-
description="""
|
|
450
|
-
If True, store cached ForwardMsgs in backend memory. This is an
|
|
451
|
-
internal flag to validate a potential removal of the in-memory
|
|
452
|
-
forward message cache.
|
|
453
|
-
""",
|
|
454
|
-
visibility="hidden",
|
|
455
|
-
default_val=True,
|
|
456
|
-
type_=bool,
|
|
457
|
-
)
|
|
458
|
-
|
|
459
|
-
_create_option(
|
|
460
|
-
"global.includeFragmentRunsInForwardMessageCacheCount",
|
|
461
|
-
description="""
|
|
462
|
-
If True, the server will include fragment runs in the count for the
|
|
463
|
-
forward message cache. The implication is that apps with fragments may
|
|
464
|
-
see messages being removed from the cache faster. This aligns the server
|
|
465
|
-
count with the frontend count. This is a temporary fix while we assess the
|
|
466
|
-
design of the cache.
|
|
467
|
-
""",
|
|
468
|
-
visibility="hidden",
|
|
469
|
-
default_val=False,
|
|
470
|
-
type_=bool,
|
|
471
|
-
)
|
|
472
|
-
|
|
473
455
|
|
|
474
456
|
# Config Section: Logger #
|
|
475
457
|
_create_section("logger", "Settings to customize Streamlit log messages.")
|
|
@@ -568,7 +550,7 @@ _create_option(
|
|
|
568
550
|
- False : This is deprecated. Streamlit displays "stacktrace"
|
|
569
551
|
error details.
|
|
570
552
|
""",
|
|
571
|
-
default_val=ShowErrorDetailsConfigOptions.FULL,
|
|
553
|
+
default_val=ShowErrorDetailsConfigOptions.FULL.value,
|
|
572
554
|
type_=str,
|
|
573
555
|
scriptable=True,
|
|
574
556
|
)
|
|
@@ -729,7 +711,11 @@ def _server_headless() -> bool:
|
|
|
729
711
|
Default: false unless (1) we are on a Linux box where DISPLAY is unset, or
|
|
730
712
|
(2) we are running in the Streamlit Atom plugin.
|
|
731
713
|
"""
|
|
732
|
-
if
|
|
714
|
+
if (
|
|
715
|
+
env_util.IS_LINUX_OR_BSD
|
|
716
|
+
and not os.getenv("DISPLAY")
|
|
717
|
+
and not os.getenv("WAYLAND_DISPLAY")
|
|
718
|
+
):
|
|
733
719
|
# We're running in Linux and DISPLAY is unset
|
|
734
720
|
return True
|
|
735
721
|
|
|
@@ -836,7 +822,9 @@ _create_option(
|
|
|
836
822
|
description="""
|
|
837
823
|
Max size, in megabytes, for files uploaded with the file_uploader.
|
|
838
824
|
""",
|
|
839
|
-
|
|
825
|
+
# If this default is changed, please also update the docstring
|
|
826
|
+
# for `DeltaGenerator.file_uploader`.
|
|
827
|
+
default_val=200,
|
|
840
828
|
type_=int,
|
|
841
829
|
)
|
|
842
830
|
|
|
@@ -853,8 +841,9 @@ _create_option(
|
|
|
853
841
|
_create_option(
|
|
854
842
|
"server.enableArrowTruncation",
|
|
855
843
|
description="""
|
|
856
|
-
Enable automatically truncating all data structures that get serialized
|
|
857
|
-
to ensure that the size is under
|
|
844
|
+
Enable automatically truncating all data structures that get serialized
|
|
845
|
+
into Arrow (e.g. DataFrames) to ensure that the size is under
|
|
846
|
+
`server.maxMessageSize`.
|
|
858
847
|
""",
|
|
859
848
|
visibility="hidden",
|
|
860
849
|
default_val=False,
|
|
@@ -1233,8 +1222,8 @@ _create_option(
|
|
|
1233
1222
|
will take precedence over earlier ones.
|
|
1234
1223
|
""",
|
|
1235
1224
|
default_val=[
|
|
1236
|
-
# NOTE: The order here is important! Project-level secrets should overwrite
|
|
1237
|
-
# secrets.
|
|
1225
|
+
# NOTE: The order here is important! Project-level secrets should overwrite
|
|
1226
|
+
# global secrets.
|
|
1238
1227
|
file_util.get_streamlit_file_path("secrets.toml"),
|
|
1239
1228
|
file_util.get_project_streamlit_file_path("secrets.toml"),
|
|
1240
1229
|
],
|
|
@@ -1370,9 +1359,18 @@ def _update_config_with_toml(raw_toml: str, where_defined: str) -> None:
|
|
|
1370
1359
|
Tells the config system where this was set.
|
|
1371
1360
|
|
|
1372
1361
|
"""
|
|
1373
|
-
|
|
1362
|
+
try:
|
|
1363
|
+
import toml
|
|
1374
1364
|
|
|
1375
|
-
|
|
1365
|
+
parsed_config_file = toml.loads(raw_toml)
|
|
1366
|
+
except Exception:
|
|
1367
|
+
# Catching any parsing exception to prevent this from breaking our
|
|
1368
|
+
# config change watcher logic.
|
|
1369
|
+
_LOGGER.exception(
|
|
1370
|
+
"Error parsing config toml. This is most likely due to a syntax error "
|
|
1371
|
+
"in the config.toml file. Please fix it and try again.",
|
|
1372
|
+
)
|
|
1373
|
+
return
|
|
1376
1374
|
|
|
1377
1375
|
def process_section(section_path: str, section_data: dict[str, Any]) -> None:
|
|
1378
1376
|
"""Recursively process nested sections of the config file.
|
|
@@ -1415,8 +1413,7 @@ def _update_config_with_toml(raw_toml: str, where_defined: str) -> None:
|
|
|
1415
1413
|
process_section(option_name, value)
|
|
1416
1414
|
else:
|
|
1417
1415
|
# It's a regular config option, set it
|
|
1418
|
-
|
|
1419
|
-
_set_option(option_name, value, where_defined)
|
|
1416
|
+
_set_option(option_name, _maybe_read_env_variable(value), where_defined)
|
|
1420
1417
|
|
|
1421
1418
|
for section, options in parsed_config_file.items():
|
|
1422
1419
|
process_section(section, options)
|
|
@@ -1508,7 +1505,7 @@ def get_config_options(
|
|
|
1508
1505
|
dict[str, ConfigOption]
|
|
1509
1506
|
An ordered dict that maps config option names to their values.
|
|
1510
1507
|
"""
|
|
1511
|
-
global _config_options
|
|
1508
|
+
global _config_options # noqa: PLW0603
|
|
1512
1509
|
|
|
1513
1510
|
if not options_from_flags:
|
|
1514
1511
|
options_from_flags = {}
|
|
@@ -1586,7 +1583,8 @@ def _check_conflicts() -> None:
|
|
|
1586
1583
|
if not get_option("server.enableCORS") or get_option("global.developmentMode"):
|
|
1587
1584
|
LOGGER.warning(
|
|
1588
1585
|
"""
|
|
1589
|
-
Warning: the config option 'server.enableCORS=false' is not compatible with
|
|
1586
|
+
Warning: the config option 'server.enableCORS=false' is not compatible with
|
|
1587
|
+
'server.enableXsrfProtection=true'.
|
|
1590
1588
|
As a result, 'server.enableCORS' is being overridden to 'true'.
|
|
1591
1589
|
|
|
1592
1590
|
More information:
|
|
@@ -87,7 +87,7 @@ def show_config(
|
|
|
87
87
|
append_section("[%s]" % section)
|
|
88
88
|
out.append("")
|
|
89
89
|
|
|
90
|
-
for
|
|
90
|
+
for _, option in section_options.items():
|
|
91
91
|
key = option.key.split(".")[-1]
|
|
92
92
|
description_paragraphs = _clean_paragraphs(option.description or "")
|
|
93
93
|
|
|
@@ -121,7 +121,7 @@ def _maybe_print_use_warning() -> None:
|
|
|
121
121
|
"""Print a warning if Streamlit is imported but not being run with `streamlit run`.
|
|
122
122
|
The warning is printed only once, and is printed using the root logger.
|
|
123
123
|
"""
|
|
124
|
-
global _use_warning_has_been_displayed
|
|
124
|
+
global _use_warning_has_been_displayed # noqa: PLW0603
|
|
125
125
|
|
|
126
126
|
if not _use_warning_has_been_displayed:
|
|
127
127
|
_use_warning_has_been_displayed = True
|
|
@@ -487,6 +487,10 @@ class DeltaGenerator(
|
|
|
487
487
|
cursor=new_cursor,
|
|
488
488
|
parent=dg,
|
|
489
489
|
)
|
|
490
|
+
|
|
491
|
+
# Elements inherit their parent form ids.
|
|
492
|
+
# NOTE: Form ids aren't set in dg constructor.
|
|
493
|
+
output_dg._form_data = FormData(current_form_id(dg))
|
|
490
494
|
else:
|
|
491
495
|
# If the message was not enqueued, just return self since it's a
|
|
492
496
|
# no-op from the point of view of the app.
|
|
@@ -139,7 +139,7 @@ def deprecate_obj_name(
|
|
|
139
139
|
|
|
140
140
|
include_st_prefix
|
|
141
141
|
If False, does not prefix each of the object names in the deprecation
|
|
142
|
-
|
|
142
|
+
message with `st.*`. Defaults to True.
|
|
143
143
|
"""
|
|
144
144
|
|
|
145
145
|
return _create_deprecated_obj_wrapper(
|
|
@@ -188,13 +188,13 @@ def _create_deprecated_obj_wrapper(obj: TObj, show_warning: Callable[[], Any]) -
|
|
|
188
188
|
return getattr(obj, attr)
|
|
189
189
|
|
|
190
190
|
@staticmethod
|
|
191
|
-
def _get_magic_functions(
|
|
191
|
+
def _get_magic_functions(self_cls) -> list[str]:
|
|
192
192
|
# ignore the handful of magic functions we cannot override without
|
|
193
193
|
# breaking the Wrapper.
|
|
194
194
|
ignore = ("__class__", "__dict__", "__getattribute__", "__getattr__")
|
|
195
195
|
return [
|
|
196
196
|
name
|
|
197
|
-
for name in dir(
|
|
197
|
+
for name in dir(self_cls)
|
|
198
198
|
if name not in ignore and name.startswith("__")
|
|
199
199
|
]
|
|
200
200
|
|