streamlit-nightly 1.52.3.dev20260101__py3-none-any.whl → 1.52.3.dev20260102__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.
Files changed (459) hide show
  1. streamlit/__init__.py +1 -1
  2. streamlit/__main__.py +1 -1
  3. streamlit/auth_util.py +1 -1
  4. streamlit/cli_util.py +1 -1
  5. streamlit/column_config.py +1 -1
  6. streamlit/commands/__init__.py +1 -1
  7. streamlit/commands/echo.py +1 -1
  8. streamlit/commands/execution_control.py +1 -1
  9. streamlit/commands/experimental_query_params.py +1 -1
  10. streamlit/commands/logo.py +1 -1
  11. streamlit/commands/navigation.py +1 -1
  12. streamlit/commands/page_config.py +1 -1
  13. streamlit/components/__init__.py +1 -1
  14. streamlit/components/lib/__init__.py +1 -1
  15. streamlit/components/lib/local_component_registry.py +1 -1
  16. streamlit/components/types/__init__.py +1 -1
  17. streamlit/components/types/base_component_registry.py +1 -1
  18. streamlit/components/types/base_custom_component.py +1 -1
  19. streamlit/components/v1/__init__.py +1 -1
  20. streamlit/components/v1/component_arrow.py +1 -1
  21. streamlit/components/v1/component_registry.py +1 -1
  22. streamlit/components/v1/components.py +1 -1
  23. streamlit/components/v1/custom_component.py +1 -1
  24. streamlit/components/v2/__init__.py +1 -1
  25. streamlit/components/v2/bidi_component/__init__.py +1 -1
  26. streamlit/components/v2/bidi_component/constants.py +1 -1
  27. streamlit/components/v2/bidi_component/main.py +1 -1
  28. streamlit/components/v2/bidi_component/serialization.py +1 -1
  29. streamlit/components/v2/bidi_component/state.py +1 -1
  30. streamlit/components/v2/component_definition_resolver.py +1 -1
  31. streamlit/components/v2/component_file_watcher.py +1 -1
  32. streamlit/components/v2/component_manager.py +1 -1
  33. streamlit/components/v2/component_manifest_handler.py +1 -1
  34. streamlit/components/v2/component_path_utils.py +1 -1
  35. streamlit/components/v2/component_registry.py +1 -1
  36. streamlit/components/v2/get_bidi_component_manager.py +1 -1
  37. streamlit/components/v2/manifest_scanner.py +1 -1
  38. streamlit/components/v2/presentation.py +1 -1
  39. streamlit/components/v2/types.py +1 -1
  40. streamlit/config.py +1 -1
  41. streamlit/config_option.py +1 -1
  42. streamlit/config_util.py +1 -1
  43. streamlit/connections/__init__.py +1 -1
  44. streamlit/connections/base_connection.py +1 -1
  45. streamlit/connections/snowflake_connection.py +1 -1
  46. streamlit/connections/snowpark_connection.py +1 -1
  47. streamlit/connections/sql_connection.py +1 -1
  48. streamlit/connections/util.py +1 -1
  49. streamlit/cursor.py +1 -1
  50. streamlit/dataframe_util.py +1 -1
  51. streamlit/delta_generator.py +1 -1
  52. streamlit/delta_generator_singletons.py +1 -1
  53. streamlit/deprecation_util.py +1 -1
  54. streamlit/development.py +1 -1
  55. streamlit/elements/__init__.py +1 -1
  56. streamlit/elements/alert.py +1 -1
  57. streamlit/elements/arrow.py +1 -1
  58. streamlit/elements/balloons.py +1 -1
  59. streamlit/elements/bokeh_chart.py +1 -1
  60. streamlit/elements/code.py +1 -1
  61. streamlit/elements/deck_gl_json_chart.py +1 -1
  62. streamlit/elements/dialog_decorator.py +1 -1
  63. streamlit/elements/doc_string.py +1 -1
  64. streamlit/elements/empty.py +1 -1
  65. streamlit/elements/exception.py +1 -1
  66. streamlit/elements/form.py +1 -1
  67. streamlit/elements/graphviz_chart.py +1 -1
  68. streamlit/elements/heading.py +1 -1
  69. streamlit/elements/html.py +1 -1
  70. streamlit/elements/iframe.py +1 -1
  71. streamlit/elements/image.py +1 -1
  72. streamlit/elements/json.py +1 -1
  73. streamlit/elements/layouts.py +1 -1
  74. streamlit/elements/lib/__init__.py +1 -1
  75. streamlit/elements/lib/built_in_chart_utils.py +1 -1
  76. streamlit/elements/lib/color_util.py +1 -1
  77. streamlit/elements/lib/column_config_utils.py +1 -1
  78. streamlit/elements/lib/column_types.py +1 -1
  79. streamlit/elements/lib/dialog.py +1 -1
  80. streamlit/elements/lib/dicttools.py +1 -1
  81. streamlit/elements/lib/file_uploader_utils.py +1 -1
  82. streamlit/elements/lib/form_utils.py +1 -1
  83. streamlit/elements/lib/image_utils.py +1 -1
  84. streamlit/elements/lib/js_number.py +1 -1
  85. streamlit/elements/lib/layout_utils.py +1 -1
  86. streamlit/elements/lib/mutable_status_container.py +1 -1
  87. streamlit/elements/lib/options_selector_utils.py +1 -1
  88. streamlit/elements/lib/pandas_styler_utils.py +1 -1
  89. streamlit/elements/lib/policies.py +1 -1
  90. streamlit/elements/lib/shortcut_utils.py +1 -1
  91. streamlit/elements/lib/streamlit_plotly_theme.py +1 -1
  92. streamlit/elements/lib/subtitle_utils.py +1 -1
  93. streamlit/elements/lib/utils.py +1 -1
  94. streamlit/elements/map.py +1 -1
  95. streamlit/elements/markdown.py +1 -1
  96. streamlit/elements/media.py +1 -1
  97. streamlit/elements/metric.py +1 -1
  98. streamlit/elements/pdf.py +1 -1
  99. streamlit/elements/plotly_chart.py +1 -1
  100. streamlit/elements/progress.py +1 -1
  101. streamlit/elements/pyplot.py +1 -1
  102. streamlit/elements/snow.py +1 -1
  103. streamlit/elements/space.py +1 -1
  104. streamlit/elements/spinner.py +1 -1
  105. streamlit/elements/text.py +1 -1
  106. streamlit/elements/toast.py +1 -1
  107. streamlit/elements/vega_charts.py +1 -1
  108. streamlit/elements/widgets/__init__.py +1 -1
  109. streamlit/elements/widgets/audio_input.py +1 -1
  110. streamlit/elements/widgets/button.py +1 -1
  111. streamlit/elements/widgets/button_group.py +1 -1
  112. streamlit/elements/widgets/camera_input.py +1 -1
  113. streamlit/elements/widgets/chat.py +1 -1
  114. streamlit/elements/widgets/checkbox.py +1 -1
  115. streamlit/elements/widgets/color_picker.py +1 -1
  116. streamlit/elements/widgets/data_editor.py +1 -1
  117. streamlit/elements/widgets/file_uploader.py +1 -1
  118. streamlit/elements/widgets/multiselect.py +1 -1
  119. streamlit/elements/widgets/number_input.py +1 -1
  120. streamlit/elements/widgets/radio.py +1 -1
  121. streamlit/elements/widgets/select_slider.py +1 -1
  122. streamlit/elements/widgets/selectbox.py +1 -1
  123. streamlit/elements/widgets/slider.py +1 -1
  124. streamlit/elements/widgets/text_widgets.py +1 -1
  125. streamlit/elements/widgets/time_widgets.py +1 -1
  126. streamlit/elements/write.py +1 -1
  127. streamlit/emojis.py +1 -1
  128. streamlit/env_util.py +1 -1
  129. streamlit/error_util.py +1 -1
  130. streamlit/errors.py +1 -1
  131. streamlit/external/__init__.py +1 -1
  132. streamlit/external/langchain/__init__.py +1 -1
  133. streamlit/external/langchain/streamlit_callback_handler.py +1 -1
  134. streamlit/file_util.py +1 -1
  135. streamlit/git_util.py +1 -1
  136. streamlit/hello/__init__.py +1 -1
  137. streamlit/hello/animation_demo.py +1 -1
  138. streamlit/hello/dataframe_demo.py +1 -1
  139. streamlit/hello/hello.py +1 -1
  140. streamlit/hello/mapping_demo.py +1 -1
  141. streamlit/hello/plotting_demo.py +1 -1
  142. streamlit/hello/streamlit_app.py +1 -1
  143. streamlit/hello/utils.py +1 -1
  144. streamlit/logger.py +1 -1
  145. streamlit/material_icon_names.py +1 -1
  146. streamlit/navigation/__init__.py +1 -1
  147. streamlit/navigation/page.py +1 -1
  148. streamlit/net_util.py +1 -1
  149. streamlit/platform.py +1 -1
  150. streamlit/proto/Alert_pb2.pyi +1 -1
  151. streamlit/proto/AppPage_pb2.pyi +1 -1
  152. streamlit/proto/ArrowData_pb2.pyi +1 -1
  153. streamlit/proto/ArrowNamedDataSet_pb2.pyi +1 -1
  154. streamlit/proto/ArrowVegaLiteChart_pb2.pyi +1 -1
  155. streamlit/proto/Arrow_pb2.pyi +1 -1
  156. streamlit/proto/AudioInput_pb2.pyi +1 -1
  157. streamlit/proto/Audio_pb2.pyi +1 -1
  158. streamlit/proto/AuthRedirect_pb2.pyi +1 -1
  159. streamlit/proto/AutoRerun_pb2.pyi +1 -1
  160. streamlit/proto/BackMsg_pb2.pyi +1 -1
  161. streamlit/proto/Balloons_pb2.pyi +1 -1
  162. streamlit/proto/BidiComponent_pb2.pyi +1 -1
  163. streamlit/proto/Block_pb2.pyi +1 -1
  164. streamlit/proto/BokehChart_pb2.pyi +1 -1
  165. streamlit/proto/ButtonGroup_pb2.pyi +1 -1
  166. streamlit/proto/ButtonLikeIconPosition_pb2.pyi +1 -1
  167. streamlit/proto/Button_pb2.pyi +1 -1
  168. streamlit/proto/CameraInput_pb2.pyi +1 -1
  169. streamlit/proto/ChatInput_pb2.pyi +1 -1
  170. streamlit/proto/Checkbox_pb2.pyi +1 -1
  171. streamlit/proto/ClientState_pb2.pyi +1 -1
  172. streamlit/proto/Code_pb2.pyi +1 -1
  173. streamlit/proto/ColorPicker_pb2.pyi +1 -1
  174. streamlit/proto/Common_pb2.pyi +1 -1
  175. streamlit/proto/Components_pb2.pyi +1 -1
  176. streamlit/proto/DataFrame_pb2.pyi +1 -1
  177. streamlit/proto/DateInput_pb2.pyi +1 -1
  178. streamlit/proto/DateTimeInput_pb2.pyi +1 -1
  179. streamlit/proto/DeckGlJsonChart_pb2.pyi +1 -1
  180. streamlit/proto/Delta_pb2.pyi +1 -1
  181. streamlit/proto/DocString_pb2.pyi +1 -1
  182. streamlit/proto/DownloadButton_pb2.pyi +1 -1
  183. streamlit/proto/Element_pb2.pyi +1 -1
  184. streamlit/proto/Empty_pb2.pyi +1 -1
  185. streamlit/proto/Exception_pb2.pyi +1 -1
  186. streamlit/proto/Favicon_pb2.pyi +1 -1
  187. streamlit/proto/FileUploader_pb2.pyi +1 -1
  188. streamlit/proto/ForwardMsg_pb2.pyi +1 -1
  189. streamlit/proto/GapSize_pb2.pyi +1 -1
  190. streamlit/proto/GitInfo_pb2.pyi +1 -1
  191. streamlit/proto/GraphVizChart_pb2.pyi +1 -1
  192. streamlit/proto/Heading_pb2.pyi +1 -1
  193. streamlit/proto/HeightConfig_pb2.pyi +1 -1
  194. streamlit/proto/Html_pb2.pyi +1 -1
  195. streamlit/proto/IFrame_pb2.pyi +1 -1
  196. streamlit/proto/Image_pb2.pyi +1 -1
  197. streamlit/proto/Json_pb2.pyi +1 -1
  198. streamlit/proto/LabelVisibilityMessage_pb2.pyi +1 -1
  199. streamlit/proto/LinkButton_pb2.pyi +1 -1
  200. streamlit/proto/Logo_pb2.pyi +1 -1
  201. streamlit/proto/Markdown_pb2.pyi +1 -1
  202. streamlit/proto/Metric_pb2.pyi +1 -1
  203. streamlit/proto/MetricsEvent_pb2.pyi +1 -1
  204. streamlit/proto/MultiSelect_pb2.pyi +1 -1
  205. streamlit/proto/NamedDataSet_pb2.pyi +1 -1
  206. streamlit/proto/Navigation_pb2.pyi +1 -1
  207. streamlit/proto/NewSession_pb2.pyi +1 -1
  208. streamlit/proto/NumberInput_pb2.pyi +1 -1
  209. streamlit/proto/PageConfig_pb2.pyi +1 -1
  210. streamlit/proto/PageInfo_pb2.pyi +1 -1
  211. streamlit/proto/PageLink_pb2.pyi +1 -1
  212. streamlit/proto/PageNotFound_pb2.pyi +1 -1
  213. streamlit/proto/PageProfile_pb2.pyi +1 -1
  214. streamlit/proto/PagesChanged_pb2.pyi +1 -1
  215. streamlit/proto/ParentMessage_pb2.pyi +1 -1
  216. streamlit/proto/PlotlyChart_pb2.pyi +1 -1
  217. streamlit/proto/Progress_pb2.pyi +1 -1
  218. streamlit/proto/Radio_pb2.pyi +1 -1
  219. streamlit/proto/RootContainer_pb2.pyi +1 -1
  220. streamlit/proto/Selectbox_pb2.pyi +1 -1
  221. streamlit/proto/SessionEvent_pb2.pyi +1 -1
  222. streamlit/proto/SessionStatus_pb2.pyi +1 -1
  223. streamlit/proto/Skeleton_pb2.pyi +1 -1
  224. streamlit/proto/Slider_pb2.pyi +1 -1
  225. streamlit/proto/Snow_pb2.pyi +1 -1
  226. streamlit/proto/Space_pb2.pyi +1 -1
  227. streamlit/proto/Spinner_pb2.pyi +1 -1
  228. streamlit/proto/TextAlignmentConfig_pb2.pyi +1 -1
  229. streamlit/proto/TextArea_pb2.pyi +1 -1
  230. streamlit/proto/TextInput_pb2.pyi +1 -1
  231. streamlit/proto/Text_pb2.pyi +1 -1
  232. streamlit/proto/TimeInput_pb2.pyi +1 -1
  233. streamlit/proto/Toast_pb2.pyi +1 -1
  234. streamlit/proto/Transient_pb2.pyi +1 -1
  235. streamlit/proto/VegaLiteChart_pb2.pyi +1 -1
  236. streamlit/proto/Video_pb2.pyi +1 -1
  237. streamlit/proto/WidgetStates_pb2.pyi +1 -1
  238. streamlit/proto/WidthConfig_pb2.pyi +1 -1
  239. streamlit/proto/__init__.py +1 -1
  240. streamlit/runtime/__init__.py +1 -1
  241. streamlit/runtime/app_session.py +1 -1
  242. streamlit/runtime/caching/__init__.py +1 -1
  243. streamlit/runtime/caching/cache_data_api.py +1 -1
  244. streamlit/runtime/caching/cache_errors.py +1 -1
  245. streamlit/runtime/caching/cache_resource_api.py +1 -1
  246. streamlit/runtime/caching/cache_type.py +1 -1
  247. streamlit/runtime/caching/cache_utils.py +1 -1
  248. streamlit/runtime/caching/cached_message_replay.py +1 -1
  249. streamlit/runtime/caching/hashing.py +1 -1
  250. streamlit/runtime/caching/legacy_cache_api.py +1 -1
  251. streamlit/runtime/caching/storage/__init__.py +1 -1
  252. streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
  253. streamlit/runtime/caching/storage/dummy_cache_storage.py +1 -1
  254. streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +1 -1
  255. streamlit/runtime/caching/storage/local_disk_cache_storage.py +1 -1
  256. streamlit/runtime/caching/ttl_cleanup_cache.py +1 -1
  257. streamlit/runtime/connection_factory.py +1 -1
  258. streamlit/runtime/context.py +1 -1
  259. streamlit/runtime/context_util.py +1 -1
  260. streamlit/runtime/credentials.py +1 -1
  261. streamlit/runtime/download_data_util.py +1 -1
  262. streamlit/runtime/forward_msg_cache.py +1 -1
  263. streamlit/runtime/forward_msg_queue.py +1 -1
  264. streamlit/runtime/fragment.py +1 -1
  265. streamlit/runtime/media_file_manager.py +1 -1
  266. streamlit/runtime/media_file_storage.py +1 -1
  267. streamlit/runtime/memory_media_file_storage.py +1 -1
  268. streamlit/runtime/memory_session_storage.py +1 -1
  269. streamlit/runtime/memory_uploaded_file_manager.py +1 -1
  270. streamlit/runtime/metrics_util.py +1 -1
  271. streamlit/runtime/pages_manager.py +1 -1
  272. streamlit/runtime/runtime.py +1 -1
  273. streamlit/runtime/runtime_util.py +1 -1
  274. streamlit/runtime/script_data.py +1 -1
  275. streamlit/runtime/scriptrunner/__init__.py +1 -1
  276. streamlit/runtime/scriptrunner/exec_code.py +1 -1
  277. streamlit/runtime/scriptrunner/magic.py +1 -1
  278. streamlit/runtime/scriptrunner/magic_funcs.py +1 -1
  279. streamlit/runtime/scriptrunner/script_cache.py +1 -1
  280. streamlit/runtime/scriptrunner/script_runner.py +1 -1
  281. streamlit/runtime/scriptrunner_utils/__init__.py +1 -1
  282. streamlit/runtime/scriptrunner_utils/exceptions.py +1 -1
  283. streamlit/runtime/scriptrunner_utils/script_requests.py +1 -1
  284. streamlit/runtime/scriptrunner_utils/script_run_context.py +1 -1
  285. streamlit/runtime/secrets.py +1 -1
  286. streamlit/runtime/session_manager.py +1 -1
  287. streamlit/runtime/state/__init__.py +1 -1
  288. streamlit/runtime/state/common.py +1 -1
  289. streamlit/runtime/state/presentation.py +1 -1
  290. streamlit/runtime/state/query_params.py +1 -1
  291. streamlit/runtime/state/query_params_proxy.py +1 -1
  292. streamlit/runtime/state/safe_session_state.py +1 -1
  293. streamlit/runtime/state/session_state.py +1 -1
  294. streamlit/runtime/state/session_state_proxy.py +1 -1
  295. streamlit/runtime/state/widgets.py +1 -1
  296. streamlit/runtime/stats.py +1 -1
  297. streamlit/runtime/theme_util.py +1 -1
  298. streamlit/runtime/uploaded_file_manager.py +1 -1
  299. streamlit/runtime/websocket_session_manager.py +1 -1
  300. streamlit/source_util.py +1 -1
  301. streamlit/static/index.html +2 -2
  302. streamlit/static/manifest.json +299 -299
  303. streamlit/static/static/js/{ErrorOutline.esm.bKqSjdNS.js → ErrorOutline.esm.0yuPC2le.js} +1 -1
  304. streamlit/static/static/js/{FileDownload.esm.DYcl0HsS.js → FileDownload.esm.3-xCz5Dn.js} +1 -1
  305. streamlit/static/static/js/{FileHelper.BG4elCiu.js → FileHelper.B7p1stfH.js} +1 -1
  306. streamlit/static/static/js/{FormClearHelper.CcrsaZUN.js → FormClearHelper.2gb34MMC.js} +1 -1
  307. streamlit/static/static/js/InputInstructions.CMaz--YN.js +1 -0
  308. streamlit/static/static/js/Particles.DD6E7DiG.js +1 -0
  309. streamlit/static/static/js/{ProgressBar.D54tj-jr.js → ProgressBar.CBHvskJx.js} +1 -1
  310. streamlit/static/static/js/{StreamlitSyntaxHighlighter.D6tqIUNe.js → StreamlitSyntaxHighlighter.Cbd0Ng31.js} +1 -1
  311. streamlit/static/static/js/{TableChart.esm.BsEqAKaW.js → TableChart.esm.DkPOnPiP.js} +1 -1
  312. streamlit/static/static/js/Toolbar.uViLYWIL.js +1 -0
  313. streamlit/static/static/js/{WidgetLabelHelpIconInline.tetiwgyt.js → WidgetLabelHelpIconInline.DrQP-jZR.js} +1 -1
  314. streamlit/static/static/js/{base-input.bCQ8S-FY.js → base-input.CWLDgMIQ.js} +1 -1
  315. streamlit/static/static/js/{checkbox.SvhUmEPl.js → checkbox.lSnX8MiZ.js} +1 -1
  316. streamlit/static/static/js/{createDownloadLinkElement.mdzy2wqu.js → createDownloadLinkElement.qE-XPzHd.js} +1 -1
  317. streamlit/static/static/js/{data-grid-overlay-editor.BRpG6UuQ.js → data-grid-overlay-editor.CixSgiOW.js} +1 -1
  318. streamlit/static/static/js/{downloader.BFho_Alx.js → downloader.BR9PJ-pW.js} +1 -1
  319. streamlit/static/static/js/{embed.CjSf3HQ8.js → embed.C4scQ-hW.js} +1 -1
  320. streamlit/static/static/js/{es6.DnRofDlD.js → es6.NjGX1Pno.js} +2 -2
  321. streamlit/static/static/js/{formatNumber.CtWVEKkt.js → formatNumber.DwAT32vb.js} +1 -1
  322. streamlit/static/static/js/{iconPosition.Docx9KVT.js → iconPosition.BF4yacmi.js} +1 -1
  323. streamlit/static/static/js/{iframeResizer.contentWindow.DPJjr14X.js → iframeResizer.contentWindow.BGF3G8-a.js} +1 -1
  324. streamlit/static/static/js/{index.-Uw_gjRk.js → index.-zR4Ojkd.js} +1 -1
  325. streamlit/static/static/js/{index.BkQCUqLQ.js → index.47QtlXbw.js} +2 -2
  326. streamlit/static/static/js/{index.D9DEa36h.js → index.AbRqTgeF.js} +1 -1
  327. streamlit/static/static/js/{index.BWwP9fh8.js → index.B2FiJl2X.js} +1 -1
  328. streamlit/static/static/js/{index.C40Nq5m8.js → index.BD8Aa49F.js} +1 -1
  329. streamlit/static/static/js/{index.8C-cS-O4.js → index.BDI5MuEQ.js} +2 -2
  330. streamlit/static/static/js/index.BMEupOtG.js +1 -0
  331. streamlit/static/static/js/index.BMxizVm_.js +1 -0
  332. streamlit/static/static/js/{index.CqMzbjp5.js → index.BO_-eOf-.js} +1 -1
  333. streamlit/static/static/js/{index.zN5Ficl0.js → index.BQm1_d2O.js} +2 -2
  334. streamlit/static/static/js/{index.DYR3j5ZF.js → index.B_rx628n.js} +1 -1
  335. streamlit/static/static/js/index.BdVxH2a1.js +2 -0
  336. streamlit/static/static/js/index.BduCcO_U.js +1 -0
  337. streamlit/static/static/js/{index.B4jgy50K.js → index.Bh-DEB0O.js} +1 -1
  338. streamlit/static/static/js/index.BibdADOD.js +1 -0
  339. streamlit/static/static/js/index.BsbD_ZbU.js +1 -0
  340. streamlit/static/static/js/{index.BZFLbiyp.js → index.Bu9qeYdI.js} +1 -1
  341. streamlit/static/static/js/index.BxQj1n_M.js +1 -0
  342. streamlit/static/static/js/{index.CggOKbv5.js → index.C1zhyjFt.js} +1 -1
  343. streamlit/static/static/js/{index.B-k1aQD6.js → index.C3Czde8V.js} +1 -1
  344. streamlit/static/static/js/{index.DzWfLgsQ.js → index.C4N9_AWk.js} +1 -1
  345. streamlit/static/static/js/{index.CNXi20U2.js → index.CSPw4GmF.js} +1 -1
  346. streamlit/static/static/js/{index.C8fg6FO8.js → index.CU6HHyYl.js} +2 -2
  347. streamlit/static/static/js/{index.D5m5f2G-.js → index.CW9ezGuy.js} +1 -1
  348. streamlit/static/static/js/{index.2hZ1_TTv.js → index.CYAiwpaf.js} +1 -1
  349. streamlit/static/static/js/{index.C3MpZoqE.js → index.Cd-5Vmzk.js} +1 -1
  350. streamlit/static/static/js/index.Ce0tmU7o.js +1 -0
  351. streamlit/static/static/js/index.Cio1dNsf.js +1 -0
  352. streamlit/static/static/js/index.CrqhxXJA.js +1 -0
  353. streamlit/static/static/js/{index.BakUx9hH.js → index.CsbjfvSm.js} +1 -1
  354. streamlit/static/static/js/{index.8I6SAQDm.js → index.D1JGP_72.js} +1 -1
  355. streamlit/static/static/js/{index.qg9M6uCh.js → index.DD6jbP16.js} +1 -1
  356. streamlit/static/static/js/{index.s88CwlpG.js → index.DEF4aL6h.js} +8 -8
  357. streamlit/static/static/js/{index.Dodgg4y_.js → index.DLYqRljk.js} +1 -1
  358. streamlit/static/static/js/index.DPeqx79l.js +7 -0
  359. streamlit/static/static/js/{index.Zx7pc4Ib.js → index.DPn1549d.js} +1 -1
  360. streamlit/static/static/js/{index.Bd9Ju7cE.js → index.DUS_Khvb.js} +1 -1
  361. streamlit/static/static/js/{index.CTdvJfB7.js → index.D_zZYX-F.js} +2 -2
  362. streamlit/static/static/js/index.DgxjQf8D.js +1 -0
  363. streamlit/static/static/js/{index.3BdSdx9Q.js → index.DkQIXYcv.js} +1 -1
  364. streamlit/static/static/js/{index.DF31ixLt.js → index.Duio3diQ.js} +2 -2
  365. streamlit/static/static/js/index.DwRMR_Ao.js +1 -0
  366. streamlit/static/static/js/index.Es18h2ap.js +1 -0
  367. streamlit/static/static/js/{index.BE-_bdmf.js → index.L46XQsIY.js} +2 -2
  368. streamlit/static/static/js/{index.DQm9mE0T.js → index.ayxJkxJS.js} +24 -24
  369. streamlit/static/static/js/index.dPnBpGLy.js +1 -0
  370. streamlit/static/static/js/{index.HrvNEmn1.js → index.iV4zN5GV.js} +1 -1
  371. streamlit/static/static/js/index.x9TEvcRW.js +1 -0
  372. streamlit/static/static/js/{input.DnsJ8I9O.js → input.BViGVyAy.js} +1 -1
  373. streamlit/static/static/js/{main.Cs9yv8mP.js → main.DCurQa2X.js} +1 -1
  374. streamlit/static/static/js/{memory.CnMAyKwP.js → memory.CeqRSVmL.js} +1 -1
  375. streamlit/static/static/js/{number-overlay-editor.CMfbFJmW.js → number-overlay-editor.BNei35vX.js} +1 -1
  376. streamlit/static/static/js/{pandasStylerUtils.pLaEIPZw.js → pandasStylerUtils.BQNPcCRH.js} +1 -1
  377. streamlit/static/static/js/{sandbox.BcdOGz3D.js → sandbox.Bkc6ExUI.js} +1 -1
  378. streamlit/static/static/js/styled-components.C0Ar4ws1.js +1 -0
  379. streamlit/static/static/js/{throttle.DM63_0Ui.js → throttle.DpJVqfiM.js} +1 -1
  380. streamlit/static/static/js/{timepicker.pd9YKJun.js → timepicker.plxFjD2l.js} +1 -1
  381. streamlit/static/static/js/{toConsumableArray.C-vxP4eC.js → toConsumableArray.nocm-m15.js} +1 -1
  382. streamlit/static/static/js/uniqueId.BgdRqRrS.js +1 -0
  383. streamlit/static/static/js/{useBasicWidgetState.S1_DeDAF.js → useBasicWidgetState.CD1aG6-a.js} +1 -1
  384. streamlit/static/static/js/{useIntlLocale.BwbkZTj-.js → useIntlLocale.DLuHgCFO.js} +1 -1
  385. streamlit/static/static/js/{useTextInputAutoExpand.DJy7lTuU.js → useTextInputAutoExpand.5E_gpUfB.js} +1 -1
  386. streamlit/static/static/js/{useUpdateUiValue.KsXqwLCs.js → useUpdateUiValue.DWX5Hfxx.js} +1 -1
  387. streamlit/static/static/js/{useWaveformController.DQSftrKy.js → useWaveformController.B3tf7xqQ.js} +1 -1
  388. streamlit/static/static/js/{withCalculatedWidth.Cf1aBuuB.js → withCalculatedWidth.kZou334h.js} +1 -1
  389. streamlit/static/static/js/withFullScreenWrapper.DGTtbbLe.js +1 -0
  390. streamlit/string_util.py +1 -1
  391. streamlit/temporary_directory.py +1 -1
  392. streamlit/testing/__init__.py +1 -1
  393. streamlit/testing/v1/__init__.py +1 -1
  394. streamlit/testing/v1/app_test.py +1 -1
  395. streamlit/testing/v1/element_tree.py +1 -1
  396. streamlit/testing/v1/local_script_runner.py +1 -1
  397. streamlit/testing/v1/util.py +1 -1
  398. streamlit/time_util.py +1 -1
  399. streamlit/type_util.py +1 -1
  400. streamlit/url_util.py +1 -1
  401. streamlit/user_info.py +1 -1
  402. streamlit/util.py +1 -1
  403. streamlit/version.py +1 -1
  404. streamlit/watcher/__init__.py +1 -1
  405. streamlit/watcher/event_based_path_watcher.py +1 -1
  406. streamlit/watcher/folder_black_list.py +1 -1
  407. streamlit/watcher/local_sources_watcher.py +1 -1
  408. streamlit/watcher/path_watcher.py +1 -1
  409. streamlit/watcher/polling_path_watcher.py +1 -1
  410. streamlit/watcher/util.py +1 -1
  411. streamlit/web/__init__.py +1 -1
  412. streamlit/web/bootstrap.py +1 -1
  413. streamlit/web/cache_storage_manager_config.py +1 -1
  414. streamlit/web/cli.py +1 -1
  415. streamlit/web/server/__init__.py +1 -1
  416. streamlit/web/server/app_static_file_handler.py +1 -1
  417. streamlit/web/server/authlib_tornado_integration.py +1 -1
  418. streamlit/web/server/bidi_component_request_handler.py +1 -1
  419. streamlit/web/server/browser_websocket_handler.py +1 -1
  420. streamlit/web/server/component_file_utils.py +1 -1
  421. streamlit/web/server/component_request_handler.py +1 -1
  422. streamlit/web/server/media_file_handler.py +1 -1
  423. streamlit/web/server/oauth_authlib_routes.py +1 -1
  424. streamlit/web/server/oidc_mixin.py +1 -1
  425. streamlit/web/server/routes.py +1 -1
  426. streamlit/web/server/server.py +1 -1
  427. streamlit/web/server/server_util.py +1 -1
  428. streamlit/web/server/stats_request_handler.py +1 -1
  429. streamlit/web/server/upload_file_request_handler.py +1 -1
  430. streamlit/web/server/websocket_headers.py +1 -1
  431. {streamlit_nightly-1.52.3.dev20260101.data → streamlit_nightly-1.52.3.dev20260102.data}/scripts/streamlit.cmd +1 -1
  432. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/METADATA +1 -1
  433. streamlit_nightly-1.52.3.dev20260102.dist-info/RECORD +630 -0
  434. streamlit/static/static/js/InputInstructions.B-hrhnKS.js +0 -1
  435. streamlit/static/static/js/Particles.C1lQDBme.js +0 -1
  436. streamlit/static/static/js/Toolbar.COFccaTT.js +0 -1
  437. streamlit/static/static/js/index.B-2OnxuC.js +0 -1
  438. streamlit/static/static/js/index.BPDinT9W.js +0 -1
  439. streamlit/static/static/js/index.BWYs56td.js +0 -1
  440. streamlit/static/static/js/index.Bt-J_LLo.js +0 -1
  441. streamlit/static/static/js/index.BukrvZZ2.js +0 -1
  442. streamlit/static/static/js/index.CFRlw_Q4.js +0 -1
  443. streamlit/static/static/js/index.CoOQHuCm.js +0 -1
  444. streamlit/static/static/js/index.D3xfIqy_.js +0 -1
  445. streamlit/static/static/js/index.D67NXgZL.js +0 -1
  446. streamlit/static/static/js/index.DEUimtV1.js +0 -1
  447. streamlit/static/static/js/index.DK27W5ov.js +0 -1
  448. streamlit/static/static/js/index.DWUM7LrZ.js +0 -1
  449. streamlit/static/static/js/index.DaxZAmvz.js +0 -2
  450. streamlit/static/static/js/index.Dq9InAZx.js +0 -1
  451. streamlit/static/static/js/index.DtZbhbEr.js +0 -7
  452. streamlit/static/static/js/index.f-UZuoZE.js +0 -1
  453. streamlit/static/static/js/styled-components.571s8DEN.js +0 -1
  454. streamlit/static/static/js/uniqueId.Cx7-DRlG.js +0 -1
  455. streamlit/static/static/js/withFullScreenWrapper.BBQ6--wm.js +0 -1
  456. streamlit_nightly-1.52.3.dev20260101.dist-info/RECORD +0 -630
  457. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/WHEEL +0 -0
  458. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/entry_points.txt +0 -0
  459. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/top_level.txt +0 -0