streamlit-nightly 1.41.2.dev20250106__py2.py3-none-any.whl → 1.41.2.dev20250108__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/__init__.py +11 -2
- streamlit/__main__.py +1 -1
- streamlit/auth_util.py +209 -0
- streamlit/cli_util.py +1 -1
- streamlit/column_config.py +1 -1
- streamlit/commands/__init__.py +1 -1
- streamlit/commands/echo.py +1 -1
- streamlit/commands/execution_control.py +1 -1
- streamlit/commands/experimental_query_params.py +1 -1
- streamlit/commands/logo.py +1 -1
- streamlit/commands/navigation.py +1 -1
- streamlit/commands/page_config.py +1 -1
- streamlit/components/__init__.py +1 -1
- streamlit/components/lib/__init__.py +1 -1
- streamlit/components/lib/local_component_registry.py +1 -1
- streamlit/components/types/__init__.py +1 -1
- streamlit/components/types/base_component_registry.py +1 -1
- streamlit/components/types/base_custom_component.py +1 -1
- streamlit/components/v1/__init__.py +1 -1
- streamlit/components/v1/component_arrow.py +1 -1
- streamlit/components/v1/component_registry.py +1 -1
- streamlit/components/v1/components.py +1 -1
- streamlit/components/v1/custom_component.py +1 -1
- streamlit/config.py +1 -1
- streamlit/config_option.py +1 -1
- streamlit/config_util.py +1 -1
- streamlit/connections/__init__.py +1 -1
- streamlit/connections/base_connection.py +1 -1
- streamlit/connections/snowflake_connection.py +1 -1
- streamlit/connections/snowpark_connection.py +1 -1
- streamlit/connections/sql_connection.py +1 -1
- streamlit/connections/util.py +1 -1
- streamlit/cursor.py +1 -1
- streamlit/dataframe_util.py +1 -1
- streamlit/delta_generator.py +1 -1
- streamlit/delta_generator_singletons.py +1 -1
- streamlit/deprecation_util.py +1 -1
- streamlit/development.py +1 -1
- streamlit/elements/__init__.py +1 -1
- streamlit/elements/alert.py +1 -1
- streamlit/elements/arrow.py +1 -1
- streamlit/elements/balloons.py +1 -1
- streamlit/elements/bokeh_chart.py +1 -1
- streamlit/elements/code.py +1 -1
- streamlit/elements/deck_gl_json_chart.py +1 -1
- streamlit/elements/dialog_decorator.py +1 -1
- streamlit/elements/doc_string.py +1 -1
- streamlit/elements/empty.py +1 -1
- streamlit/elements/exception.py +1 -1
- streamlit/elements/form.py +1 -1
- streamlit/elements/graphviz_chart.py +1 -1
- streamlit/elements/heading.py +1 -1
- streamlit/elements/html.py +1 -1
- streamlit/elements/iframe.py +1 -1
- streamlit/elements/image.py +1 -1
- streamlit/elements/json.py +1 -1
- streamlit/elements/layouts.py +1 -1
- streamlit/elements/lib/__init__.py +1 -1
- streamlit/elements/lib/built_in_chart_utils.py +1 -1
- streamlit/elements/lib/color_util.py +1 -1
- streamlit/elements/lib/column_config_utils.py +1 -1
- streamlit/elements/lib/column_types.py +1 -1
- streamlit/elements/lib/dialog.py +1 -1
- streamlit/elements/lib/dicttools.py +1 -1
- streamlit/elements/lib/event_utils.py +1 -1
- streamlit/elements/lib/file_uploader_utils.py +1 -1
- streamlit/elements/lib/form_utils.py +1 -1
- streamlit/elements/lib/image_utils.py +1 -1
- streamlit/elements/lib/js_number.py +1 -1
- streamlit/elements/lib/mutable_status_container.py +1 -1
- streamlit/elements/lib/options_selector_utils.py +1 -1
- streamlit/elements/lib/pandas_styler_utils.py +1 -1
- streamlit/elements/lib/policies.py +1 -1
- streamlit/elements/lib/streamlit_plotly_theme.py +1 -1
- streamlit/elements/lib/subtitle_utils.py +1 -1
- streamlit/elements/lib/utils.py +1 -1
- streamlit/elements/map.py +1 -1
- streamlit/elements/markdown.py +3 -3
- streamlit/elements/media.py +1 -1
- streamlit/elements/metric.py +1 -1
- streamlit/elements/plotly_chart.py +1 -1
- streamlit/elements/progress.py +1 -1
- streamlit/elements/pyplot.py +1 -1
- streamlit/elements/snow.py +1 -1
- streamlit/elements/spinner.py +14 -7
- streamlit/elements/text.py +1 -1
- streamlit/elements/toast.py +1 -1
- streamlit/elements/vega_charts.py +1 -1
- streamlit/elements/widgets/__init__.py +1 -1
- streamlit/elements/widgets/audio_input.py +1 -1
- streamlit/elements/widgets/button.py +1 -1
- streamlit/elements/widgets/button_group.py +1 -1
- streamlit/elements/widgets/camera_input.py +1 -1
- streamlit/elements/widgets/chat.py +1 -1
- streamlit/elements/widgets/checkbox.py +1 -1
- streamlit/elements/widgets/color_picker.py +1 -1
- streamlit/elements/widgets/data_editor.py +1 -1
- streamlit/elements/widgets/file_uploader.py +1 -1
- streamlit/elements/widgets/multiselect.py +1 -1
- streamlit/elements/widgets/number_input.py +1 -1
- streamlit/elements/widgets/radio.py +1 -1
- streamlit/elements/widgets/select_slider.py +1 -1
- streamlit/elements/widgets/selectbox.py +1 -1
- streamlit/elements/widgets/slider.py +1 -1
- streamlit/elements/widgets/text_widgets.py +1 -1
- streamlit/elements/widgets/time_widgets.py +1 -1
- streamlit/elements/write.py +2 -2
- streamlit/emojis.py +1 -1
- streamlit/env_util.py +1 -1
- streamlit/error_util.py +1 -1
- streamlit/errors.py +5 -1
- streamlit/external/__init__.py +1 -1
- streamlit/external/langchain/__init__.py +1 -1
- streamlit/external/langchain/streamlit_callback_handler.py +1 -1
- streamlit/file_util.py +1 -1
- streamlit/git_util.py +1 -1
- streamlit/hello/__init__.py +1 -1
- streamlit/hello/animation_demo.py +1 -1
- streamlit/hello/dataframe_demo.py +1 -1
- streamlit/hello/hello.py +1 -1
- streamlit/hello/mapping_demo.py +1 -1
- streamlit/hello/plotting_demo.py +1 -1
- streamlit/hello/streamlit_app.py +1 -1
- streamlit/hello/utils.py +1 -1
- streamlit/logger.py +1 -1
- streamlit/material_icon_names.py +1 -1
- streamlit/navigation/__init__.py +1 -1
- streamlit/navigation/page.py +1 -1
- streamlit/net_util.py +1 -1
- streamlit/platform.py +1 -1
- streamlit/proto/Alert_pb2.pyi +1 -1
- streamlit/proto/AppPage_pb2.pyi +1 -1
- streamlit/proto/ArrowNamedDataSet_pb2.pyi +1 -1
- streamlit/proto/ArrowVegaLiteChart_pb2.pyi +1 -1
- streamlit/proto/Arrow_pb2.pyi +1 -1
- streamlit/proto/AudioInput_pb2.pyi +1 -1
- streamlit/proto/Audio_pb2.pyi +1 -1
- streamlit/proto/AuthRedirect_pb2.py +27 -0
- streamlit/proto/AuthRedirect_pb2.pyi +41 -0
- streamlit/proto/AutoRerun_pb2.pyi +1 -1
- streamlit/proto/BackMsg_pb2.pyi +1 -1
- streamlit/proto/Balloons_pb2.pyi +1 -1
- streamlit/proto/Block_pb2.pyi +1 -1
- streamlit/proto/BokehChart_pb2.pyi +1 -1
- streamlit/proto/ButtonGroup_pb2.pyi +1 -1
- streamlit/proto/Button_pb2.pyi +1 -1
- streamlit/proto/CameraInput_pb2.pyi +1 -1
- streamlit/proto/ChatInput_pb2.pyi +1 -1
- streamlit/proto/Checkbox_pb2.pyi +1 -1
- streamlit/proto/ClientState_pb2.pyi +1 -1
- streamlit/proto/Code_pb2.pyi +1 -1
- streamlit/proto/ColorPicker_pb2.pyi +1 -1
- streamlit/proto/Common_pb2.pyi +1 -1
- streamlit/proto/Components_pb2.pyi +1 -1
- streamlit/proto/DataFrame_pb2.pyi +1 -1
- streamlit/proto/DateInput_pb2.pyi +1 -1
- streamlit/proto/DeckGlJsonChart_pb2.pyi +1 -1
- streamlit/proto/Delta_pb2.pyi +1 -1
- streamlit/proto/DocString_pb2.pyi +1 -1
- streamlit/proto/DownloadButton_pb2.pyi +1 -1
- streamlit/proto/Element_pb2.pyi +1 -1
- streamlit/proto/Empty_pb2.pyi +1 -1
- streamlit/proto/Exception_pb2.pyi +1 -1
- streamlit/proto/Favicon_pb2.pyi +1 -1
- streamlit/proto/FileUploader_pb2.pyi +1 -1
- streamlit/proto/ForwardMsg_pb2.py +10 -9
- streamlit/proto/ForwardMsg_pb2.pyi +11 -4
- streamlit/proto/GitInfo_pb2.pyi +1 -1
- streamlit/proto/GraphVizChart_pb2.pyi +1 -1
- streamlit/proto/Heading_pb2.pyi +1 -1
- streamlit/proto/Html_pb2.pyi +1 -1
- streamlit/proto/IFrame_pb2.pyi +1 -1
- streamlit/proto/Image_pb2.pyi +1 -1
- streamlit/proto/Json_pb2.pyi +1 -1
- streamlit/proto/LabelVisibilityMessage_pb2.pyi +1 -1
- streamlit/proto/LinkButton_pb2.pyi +1 -1
- streamlit/proto/Logo_pb2.pyi +1 -1
- streamlit/proto/Markdown_pb2.pyi +1 -1
- streamlit/proto/Metric_pb2.pyi +1 -1
- streamlit/proto/MetricsEvent_pb2.pyi +1 -1
- streamlit/proto/MultiSelect_pb2.pyi +1 -1
- streamlit/proto/NamedDataSet_pb2.pyi +1 -1
- streamlit/proto/Navigation_pb2.pyi +1 -1
- streamlit/proto/NewSession_pb2.pyi +1 -1
- streamlit/proto/NumberInput_pb2.pyi +1 -1
- streamlit/proto/PageConfig_pb2.pyi +1 -1
- streamlit/proto/PageInfo_pb2.pyi +1 -1
- streamlit/proto/PageLink_pb2.pyi +1 -1
- streamlit/proto/PageNotFound_pb2.pyi +1 -1
- streamlit/proto/PageProfile_pb2.pyi +1 -1
- streamlit/proto/PagesChanged_pb2.pyi +1 -1
- streamlit/proto/ParentMessage_pb2.pyi +1 -1
- streamlit/proto/PlotlyChart_pb2.pyi +1 -1
- streamlit/proto/Progress_pb2.pyi +1 -1
- streamlit/proto/Radio_pb2.pyi +1 -1
- streamlit/proto/RootContainer_pb2.pyi +1 -1
- streamlit/proto/Selectbox_pb2.pyi +1 -1
- streamlit/proto/SessionEvent_pb2.pyi +1 -1
- streamlit/proto/SessionStatus_pb2.pyi +1 -1
- streamlit/proto/Skeleton_pb2.pyi +1 -1
- streamlit/proto/Slider_pb2.pyi +1 -1
- streamlit/proto/Snow_pb2.pyi +1 -1
- streamlit/proto/Spinner_pb2.py +2 -2
- streamlit/proto/Spinner_pb2.pyi +6 -2
- streamlit/proto/TextArea_pb2.pyi +1 -1
- streamlit/proto/TextInput_pb2.pyi +1 -1
- streamlit/proto/Text_pb2.pyi +1 -1
- streamlit/proto/TimeInput_pb2.pyi +1 -1
- streamlit/proto/Toast_pb2.pyi +1 -1
- streamlit/proto/VegaLiteChart_pb2.pyi +1 -1
- streamlit/proto/Video_pb2.pyi +1 -1
- streamlit/proto/WidgetStates_pb2.pyi +1 -1
- streamlit/proto/__init__.py +1 -1
- streamlit/runtime/__init__.py +1 -1
- streamlit/runtime/app_session.py +6 -2
- streamlit/runtime/caching/__init__.py +1 -1
- streamlit/runtime/caching/cache_data_api.py +1 -1
- streamlit/runtime/caching/cache_errors.py +1 -1
- streamlit/runtime/caching/cache_resource_api.py +1 -1
- streamlit/runtime/caching/cache_type.py +1 -1
- streamlit/runtime/caching/cache_utils.py +1 -1
- streamlit/runtime/caching/cached_message_replay.py +1 -1
- streamlit/runtime/caching/hashing.py +1 -1
- streamlit/runtime/caching/legacy_cache_api.py +1 -1
- streamlit/runtime/caching/storage/__init__.py +1 -1
- streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
- streamlit/runtime/caching/storage/dummy_cache_storage.py +1 -1
- streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +1 -1
- streamlit/runtime/caching/storage/local_disk_cache_storage.py +1 -1
- streamlit/runtime/connection_factory.py +1 -1
- streamlit/runtime/context.py +1 -1
- streamlit/runtime/credentials.py +1 -1
- streamlit/runtime/forward_msg_cache.py +1 -1
- streamlit/runtime/forward_msg_queue.py +1 -1
- streamlit/runtime/fragment.py +1 -1
- streamlit/runtime/media_file_manager.py +1 -1
- streamlit/runtime/media_file_storage.py +1 -1
- streamlit/runtime/memory_media_file_storage.py +1 -1
- streamlit/runtime/memory_session_storage.py +1 -1
- streamlit/runtime/memory_uploaded_file_manager.py +1 -1
- streamlit/runtime/metrics_util.py +2 -1
- streamlit/runtime/pages_manager.py +1 -1
- streamlit/runtime/runtime.py +14 -3
- streamlit/runtime/runtime_util.py +1 -1
- streamlit/runtime/script_data.py +1 -1
- streamlit/runtime/scriptrunner/__init__.py +1 -1
- streamlit/runtime/scriptrunner/exec_code.py +1 -1
- streamlit/runtime/scriptrunner/magic.py +1 -1
- streamlit/runtime/scriptrunner/magic_funcs.py +1 -1
- streamlit/runtime/scriptrunner/script_cache.py +1 -1
- streamlit/runtime/scriptrunner/script_runner.py +18 -9
- streamlit/runtime/scriptrunner_utils/__init__.py +1 -1
- streamlit/runtime/scriptrunner_utils/exceptions.py +1 -1
- streamlit/runtime/scriptrunner_utils/script_requests.py +1 -1
- streamlit/runtime/scriptrunner_utils/script_run_context.py +2 -2
- streamlit/runtime/secrets.py +1 -1
- streamlit/runtime/session_manager.py +2 -2
- streamlit/runtime/state/__init__.py +1 -1
- streamlit/runtime/state/common.py +1 -1
- streamlit/runtime/state/query_params.py +1 -1
- streamlit/runtime/state/query_params_proxy.py +1 -1
- streamlit/runtime/state/safe_session_state.py +1 -1
- streamlit/runtime/state/session_state.py +1 -1
- streamlit/runtime/state/session_state_proxy.py +1 -1
- streamlit/runtime/state/widgets.py +1 -1
- streamlit/runtime/stats.py +1 -1
- streamlit/runtime/uploaded_file_manager.py +1 -1
- streamlit/runtime/websocket_session_manager.py +2 -2
- streamlit/source_util.py +1 -1
- streamlit/static/index.html +2 -2
- streamlit/static/static/js/{FileDownload.esm.BfiuyXfu.js → FileDownload.esm.CXWFIN7B.js} +1 -1
- streamlit/static/static/js/{FormClearHelper.BIe6FN2Y.js → FormClearHelper.dauERNYc.js} +1 -1
- streamlit/static/static/js/{Hooks.CHslqKt4.js → Hooks.CqBCxxzg.js} +1 -1
- streamlit/static/static/js/{InputInstructions.BMT8dg5S.js → InputInstructions.Dm8zppD9.js} +1 -1
- streamlit/static/static/js/ProgressBar.CQTs8xxT.js +2 -0
- streamlit/static/static/js/RenderInPortalIfExists.BIVWPcSk.js +1 -0
- streamlit/static/static/js/Toolbar.D_9Mp69H.js +1 -0
- streamlit/static/static/js/{base-input.B1a61Ojd.js → base-input.JrivAGt5.js} +4 -4
- streamlit/static/static/js/{createSuper.DuLZrute.js → createSuper.BLkfEjg8.js} +1 -1
- streamlit/static/static/js/data-grid-overlay-editor.4d_NBoKr.js +1 -0
- streamlit/static/static/js/{downloader.BVrmPJui.js → downloader.i394ggfM.js} +1 -1
- streamlit/static/static/js/{es6.44cVHEXS.js → es6.BPf5kpFH.js} +2 -2
- streamlit/static/static/js/getPrototypeOf.DcAVjrh9.js +1 -0
- streamlit/static/static/js/{iframeResizer.contentWindow.Bd3a4rtP.js → iframeResizer.contentWindow.YDN8GVx9.js} +1 -1
- streamlit/static/static/js/index.57g5CAPC.js +1 -0
- streamlit/static/static/js/{index.C9YRT0fo.js → index.B3dyGG7q.js} +3 -3
- streamlit/static/static/js/index.B6GM885g.js +1 -0
- streamlit/static/static/js/{index.Q2CKSyfz.js → index.BB2p9KgS.js} +1 -1
- streamlit/static/static/js/index.BOBIcAmK.js +1 -0
- streamlit/static/static/js/index.B_o9A-oO.js +1 -0
- streamlit/static/static/js/index.BfABFd7-.js +3 -0
- streamlit/static/static/js/{index.D_cUCQty.js → index.BidgRpd5.js} +1 -1
- streamlit/static/static/js/index.Bj7LBigw.js +197 -0
- streamlit/static/static/js/{index.CIMJL36S.js → index.C-TBipT2.js} +2 -2
- streamlit/static/static/js/{index.0AR3jk4J.js → index.C4muCvfN.js} +1 -1
- streamlit/static/static/js/{index.CmHLY_aM.js → index.CAZAG6f3.js} +2 -2
- streamlit/static/static/js/index.CJlBME-_.js +1 -0
- streamlit/static/static/js/{index.6ZeP-L28.js → index.CMAjN-j5.js} +2 -2
- streamlit/static/static/js/index.CSmBE6cg.js +1 -0
- streamlit/static/static/js/index.CgkfCbvP.js +1 -0
- streamlit/static/static/js/index.D1CJOG3s.js +1 -0
- streamlit/static/static/js/index.D1qR2sOA.js +1 -0
- streamlit/static/static/js/index.D7EG5vd0.js +2 -0
- streamlit/static/static/js/index.DE-FOSSU.js +1 -0
- streamlit/static/static/js/{index.lvhOjMEi.js → index.DWU1GWqY.js} +1 -1
- streamlit/static/static/js/{index.BRjwQabs.js → index.D_bHPQ8s.js} +1 -1
- streamlit/static/static/js/{index.CkxcnfCr.js → index.DalTq5GL.js} +1 -1
- streamlit/static/static/js/index.Df7nX4KF.js +1 -0
- streamlit/static/static/js/index.DgOwxLz5.js +4 -0
- streamlit/static/static/js/{index.BfjxH33Q.js → index.DmHQeMtj.js} +1 -1
- streamlit/static/static/js/index.DsKBnIk-.js +201 -0
- streamlit/static/static/js/{index.3p3iyxFl.js → index.DxsOgtLc.js} +11 -11
- streamlit/static/static/js/index.DyNkf5tM.js +1 -0
- streamlit/static/static/js/{index.C-fIpagH.js → index.Dz6VQ3qN.js} +2 -2
- streamlit/static/static/js/{index.vp4vsBFK.js → index.HktO7F0v.js} +112 -112
- streamlit/static/static/js/{index.CzhhqwJO.js → index.PriAkdhw.js} +1 -1
- streamlit/static/static/js/{index.PqkLl1t0.js → index.SKaK1lYU.js} +2 -2
- streamlit/static/static/js/index.V5OLP0n7.js +1 -0
- streamlit/static/static/js/index.YfuWGKrN.js +1 -0
- streamlit/static/static/js/index.g_BxiUns.js +1 -0
- streamlit/static/static/js/{index.3qE-vjOX.js → index.kc3Ycvjj.js} +34 -34
- streamlit/static/static/js/{input.mrdmFJfU.js → input.CqdNsSbL.js} +2 -2
- streamlit/static/static/js/{memory.BjfNr0ig.js → memory.Bkvk-eRa.js} +1 -1
- streamlit/static/static/js/mergeWith.DtsbyD6H.js +1 -0
- streamlit/static/static/js/number-overlay-editor.CR4D4kK1.js +9 -0
- streamlit/static/static/js/{sandbox.oLnJKv78.js → sandbox.C5M8yw5Z.js} +1 -1
- streamlit/static/static/js/{slicedToArray.BzQ82qu6.js → slicedToArray.BL5-s74J.js} +1 -1
- streamlit/static/static/js/{textarea.Da3YV5aR.js → textarea.DrGlWUDC.js} +2 -2
- streamlit/static/static/js/threshold.B8r8f5kt.js +1 -0
- streamlit/static/static/js/{timepicker.BAT5exrW.js → timepicker.Bdf2lGHx.js} +1 -1
- streamlit/static/static/js/timer.RueuYoQV.js +1 -0
- streamlit/static/static/js/{uniqueId.C8z92sBf.js → uniqueId.LGvQ35eR.js} +1 -1
- streamlit/static/static/js/{useBasicWidgetState.CH5oDGQl.js → useBasicWidgetState.TTzKcGCs.js} +1 -1
- streamlit/static/static/js/{useOnInputChange.Bo325HzD.js → useOnInputChange.ChvkrwHU.js} +1 -1
- streamlit/static/static/js/value.iufjd77T.js +1 -0
- streamlit/static/static/js/withFullScreenWrapper.ChQqb1TZ.js +1 -0
- streamlit/string_util.py +1 -1
- streamlit/temporary_directory.py +1 -1
- streamlit/testing/__init__.py +1 -1
- streamlit/testing/v1/__init__.py +1 -1
- streamlit/testing/v1/app_test.py +1 -1
- streamlit/testing/v1/element_tree.py +1 -1
- streamlit/testing/v1/local_script_runner.py +1 -1
- streamlit/testing/v1/util.py +1 -1
- streamlit/time_util.py +1 -1
- streamlit/type_util.py +2 -2
- streamlit/url_util.py +24 -1
- streamlit/user_info.py +94 -27
- streamlit/util.py +1 -1
- streamlit/version.py +1 -1
- streamlit/watcher/__init__.py +1 -1
- streamlit/watcher/event_based_path_watcher.py +1 -1
- streamlit/watcher/folder_black_list.py +1 -1
- streamlit/watcher/local_sources_watcher.py +1 -1
- streamlit/watcher/path_watcher.py +1 -1
- streamlit/watcher/polling_path_watcher.py +1 -1
- streamlit/watcher/util.py +1 -1
- streamlit/web/__init__.py +1 -1
- streamlit/web/bootstrap.py +1 -1
- streamlit/web/cache_storage_manager_config.py +1 -1
- streamlit/web/cli.py +1 -1
- streamlit/web/server/__init__.py +1 -1
- streamlit/web/server/app_static_file_handler.py +1 -1
- streamlit/web/server/authlib_tornado_integration.py +58 -0
- streamlit/web/server/browser_websocket_handler.py +72 -6
- streamlit/web/server/component_request_handler.py +1 -1
- streamlit/web/server/media_file_handler.py +1 -1
- streamlit/web/server/oauth_authlib_routes.py +176 -0
- streamlit/web/server/oidc_mixin.py +108 -0
- streamlit/web/server/routes.py +6 -4
- streamlit/web/server/server.py +41 -4
- streamlit/web/server/server_util.py +25 -1
- streamlit/web/server/stats_request_handler.py +1 -1
- streamlit/web/server/upload_file_request_handler.py +3 -2
- streamlit/web/server/websocket_headers.py +1 -1
- {streamlit_nightly-1.41.2.dev20250106.data → streamlit_nightly-1.41.2.dev20250108.data}/scripts/streamlit.cmd +1 -1
- {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/METADATA +14 -2
- streamlit_nightly-1.41.2.dev20250108.dist-info/RECORD +562 -0
- {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/WHEEL +1 -1
- streamlit/static/static/js/ProgressBar.VmrIzSqo.js +0 -2
- streamlit/static/static/js/RenderInPortalIfExists.B2NAzO0r.js +0 -1
- streamlit/static/static/js/Toolbar.DbmFapWn.js +0 -1
- streamlit/static/static/js/_commonjs-dynamic-modules.TDtrdbi3.js +0 -1
- streamlit/static/static/js/data-grid-overlay-editor.BkcxIt6O.js +0 -1
- streamlit/static/static/js/getPrototypeOf.bvOEi7fo.js +0 -1
- streamlit/static/static/js/index.1fq50cer.js +0 -4
- streamlit/static/static/js/index.75EUE6su.js +0 -1
- streamlit/static/static/js/index.8Bq56lcM.js +0 -1
- streamlit/static/static/js/index.BF04V0db.js +0 -1
- streamlit/static/static/js/index.BSgVnwxN.js +0 -1
- streamlit/static/static/js/index.B_nF-WE5.js +0 -1
- streamlit/static/static/js/index.BdfmpndH.js +0 -1
- streamlit/static/static/js/index.C3rcPpxm.js +0 -2
- streamlit/static/static/js/index.CgSymxeL.js +0 -201
- streamlit/static/static/js/index.D277ro6Y.js +0 -1
- streamlit/static/static/js/index.D6WGxtqm.js +0 -1
- streamlit/static/static/js/index.DaJKYvsa.js +0 -197
- streamlit/static/static/js/index.GNEDK2sZ.js +0 -1
- streamlit/static/static/js/index.KOla1gMY.js +0 -1
- streamlit/static/static/js/index.KmZ5vhVN.js +0 -32
- streamlit/static/static/js/index.KnCHOP8N.js +0 -1
- streamlit/static/static/js/index.SOQTU-r_.js +0 -1
- streamlit/static/static/js/index.WrhWPW-4.js +0 -1
- streamlit/static/static/js/index.dgKFPPrX.js +0 -1
- streamlit/static/static/js/index.drbticTq.js +0 -1
- streamlit/static/static/js/number-overlay-editor.WosTCRC_.js +0 -9
- streamlit/static/static/js/string.Bl9OLDCw.js +0 -1
- streamlit/static/static/js/threshold.skajmqVB.js +0 -1
- streamlit/static/static/js/timer.DwZfkapc.js +0 -1
- streamlit/static/static/js/withFullScreenWrapper.C7zDWu4g.js +0 -1
- streamlit_nightly-1.41.2.dev20250106.dist-info/RECORD +0 -556
- {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/top_level.txt +0 -0
streamlit/proto/Markdown_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Metric_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/PageInfo_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/PageLink_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Progress_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Radio_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Skeleton_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Slider_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Snow_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Spinner_pb2.py
CHANGED
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dstreamlit/proto/Spinner.proto\"
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dstreamlit/proto/Spinner.proto\"9\n\x07Spinner\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\r\n\x05\x63\x61\x63he\x18\x02 \x01(\x08\x12\x11\n\tshow_time\x18\x03 \x01(\x08\x42,\n\x1c\x63om.snowflake.apps.streamlitB\x0cSpinnerProtob\x06proto3')
|
18
18
|
|
19
19
|
_globals = globals()
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
@@ -23,5 +23,5 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
23
23
|
_globals['DESCRIPTOR']._loaded_options = None
|
24
24
|
_globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\014SpinnerProto'
|
25
25
|
_globals['_SPINNER']._serialized_start=33
|
26
|
-
_globals['_SPINNER']._serialized_end=
|
26
|
+
_globals['_SPINNER']._serialized_end=90
|
27
27
|
# @@protoc_insertion_point(module_scope)
|
streamlit/proto/Spinner_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -30,16 +30,20 @@ class Spinner(google.protobuf.message.Message):
|
|
30
30
|
|
31
31
|
TEXT_FIELD_NUMBER: builtins.int
|
32
32
|
CACHE_FIELD_NUMBER: builtins.int
|
33
|
+
SHOW_TIME_FIELD_NUMBER: builtins.int
|
33
34
|
text: builtins.str
|
34
35
|
"""A message to display while executing that block."""
|
35
36
|
cache: builtins.bool
|
36
37
|
"""Whether spinner used in caching functions."""
|
38
|
+
show_time: builtins.bool
|
39
|
+
"""Whether to show elapsed time next to the spinner text."""
|
37
40
|
def __init__(
|
38
41
|
self,
|
39
42
|
*,
|
40
43
|
text: builtins.str = ...,
|
41
44
|
cache: builtins.bool = ...,
|
45
|
+
show_time: builtins.bool = ...,
|
42
46
|
) -> None: ...
|
43
|
-
def ClearField(self, field_name: typing.Literal["cache", b"cache", "text", b"text"]) -> None: ...
|
47
|
+
def ClearField(self, field_name: typing.Literal["cache", b"cache", "show_time", b"show_time", "text", b"text"]) -> None: ...
|
44
48
|
|
45
49
|
global___Spinner = Spinner
|
streamlit/proto/TextArea_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Text_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Toast_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/Video_pb2.pyi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
@@ -2,7 +2,7 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
*!
|
5
|
-
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
6
6
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
you may not use this file except in compliance with the License.
|
streamlit/proto/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
streamlit/runtime/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
streamlit/runtime/app_session.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -85,7 +85,7 @@ class AppSession:
|
|
85
85
|
uploaded_file_manager: UploadedFileManager,
|
86
86
|
script_cache: ScriptCache,
|
87
87
|
message_enqueued_callback: Callable[[], None] | None,
|
88
|
-
user_info: dict[str, str | None],
|
88
|
+
user_info: dict[str, str | bool | None],
|
89
89
|
session_id_override: str | None = None,
|
90
90
|
) -> None:
|
91
91
|
"""Initialize the AppSession.
|
@@ -400,6 +400,10 @@ class AppSession:
|
|
400
400
|
if self._scriptrunner is not None:
|
401
401
|
self._scriptrunner.request_stop()
|
402
402
|
|
403
|
+
def clear_user_info(self) -> None:
|
404
|
+
"""Clear the user info for this session."""
|
405
|
+
self._user_info.clear()
|
406
|
+
|
403
407
|
def _create_scriptrunner(self, initial_rerun_data: RerunData) -> None:
|
404
408
|
"""Create and run a new ScriptRunner with the given RerunData."""
|
405
409
|
self._scriptrunner = ScriptRunner(
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
streamlit/runtime/context.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
streamlit/runtime/credentials.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
streamlit/runtime/fragment.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
|
2
2
|
#
|
3
3
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
4
|
# you may not use this file except in compliance with the License.
|
@@ -152,6 +152,7 @@ _ATTRIBUTIONS_TO_CHECK: Final = [
|
|
152
152
|
"streamlit_pydantic",
|
153
153
|
"pydantic",
|
154
154
|
"plost",
|
155
|
+
"authlib",
|
155
156
|
]
|
156
157
|
|
157
158
|
_ETC_MACHINE_ID_PATH = "/etc/machine-id"
|