streamlit-nightly 1.52.3.dev20260101__py3-none-any.whl → 1.52.3.dev20260104__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 (460) 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 +11 -3
  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 +28 -4
  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 +11 -3
  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 +4 -2
  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.py +2 -2
  190. streamlit/proto/GapSize_pb2.pyi +9 -1
  191. streamlit/proto/GitInfo_pb2.pyi +1 -1
  192. streamlit/proto/GraphVizChart_pb2.pyi +1 -1
  193. streamlit/proto/Heading_pb2.pyi +1 -1
  194. streamlit/proto/HeightConfig_pb2.pyi +1 -1
  195. streamlit/proto/Html_pb2.pyi +1 -1
  196. streamlit/proto/IFrame_pb2.pyi +1 -1
  197. streamlit/proto/Image_pb2.pyi +1 -1
  198. streamlit/proto/Json_pb2.pyi +1 -1
  199. streamlit/proto/LabelVisibilityMessage_pb2.pyi +1 -1
  200. streamlit/proto/LinkButton_pb2.pyi +1 -1
  201. streamlit/proto/Logo_pb2.pyi +1 -1
  202. streamlit/proto/Markdown_pb2.pyi +1 -1
  203. streamlit/proto/Metric_pb2.pyi +1 -1
  204. streamlit/proto/MetricsEvent_pb2.pyi +1 -1
  205. streamlit/proto/MultiSelect_pb2.pyi +1 -1
  206. streamlit/proto/NamedDataSet_pb2.pyi +1 -1
  207. streamlit/proto/Navigation_pb2.pyi +1 -1
  208. streamlit/proto/NewSession_pb2.pyi +1 -1
  209. streamlit/proto/NumberInput_pb2.pyi +1 -1
  210. streamlit/proto/PageConfig_pb2.pyi +1 -1
  211. streamlit/proto/PageInfo_pb2.pyi +1 -1
  212. streamlit/proto/PageLink_pb2.pyi +1 -1
  213. streamlit/proto/PageNotFound_pb2.pyi +1 -1
  214. streamlit/proto/PageProfile_pb2.pyi +1 -1
  215. streamlit/proto/PagesChanged_pb2.pyi +1 -1
  216. streamlit/proto/ParentMessage_pb2.pyi +1 -1
  217. streamlit/proto/PlotlyChart_pb2.pyi +1 -1
  218. streamlit/proto/Progress_pb2.pyi +1 -1
  219. streamlit/proto/Radio_pb2.pyi +1 -1
  220. streamlit/proto/RootContainer_pb2.pyi +1 -1
  221. streamlit/proto/Selectbox_pb2.pyi +1 -1
  222. streamlit/proto/SessionEvent_pb2.pyi +1 -1
  223. streamlit/proto/SessionStatus_pb2.pyi +1 -1
  224. streamlit/proto/Skeleton_pb2.pyi +1 -1
  225. streamlit/proto/Slider_pb2.pyi +1 -1
  226. streamlit/proto/Snow_pb2.pyi +1 -1
  227. streamlit/proto/Space_pb2.pyi +1 -1
  228. streamlit/proto/Spinner_pb2.pyi +1 -1
  229. streamlit/proto/TextAlignmentConfig_pb2.pyi +1 -1
  230. streamlit/proto/TextArea_pb2.pyi +1 -1
  231. streamlit/proto/TextInput_pb2.pyi +1 -1
  232. streamlit/proto/Text_pb2.pyi +1 -1
  233. streamlit/proto/TimeInput_pb2.pyi +1 -1
  234. streamlit/proto/Toast_pb2.pyi +1 -1
  235. streamlit/proto/Transient_pb2.pyi +1 -1
  236. streamlit/proto/VegaLiteChart_pb2.pyi +1 -1
  237. streamlit/proto/Video_pb2.pyi +1 -1
  238. streamlit/proto/WidgetStates_pb2.pyi +1 -1
  239. streamlit/proto/WidthConfig_pb2.pyi +1 -1
  240. streamlit/proto/__init__.py +1 -1
  241. streamlit/runtime/__init__.py +1 -1
  242. streamlit/runtime/app_session.py +1 -1
  243. streamlit/runtime/caching/__init__.py +1 -1
  244. streamlit/runtime/caching/cache_data_api.py +1 -1
  245. streamlit/runtime/caching/cache_errors.py +1 -1
  246. streamlit/runtime/caching/cache_resource_api.py +1 -1
  247. streamlit/runtime/caching/cache_type.py +1 -1
  248. streamlit/runtime/caching/cache_utils.py +1 -1
  249. streamlit/runtime/caching/cached_message_replay.py +1 -1
  250. streamlit/runtime/caching/hashing.py +1 -1
  251. streamlit/runtime/caching/legacy_cache_api.py +1 -1
  252. streamlit/runtime/caching/storage/__init__.py +1 -1
  253. streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
  254. streamlit/runtime/caching/storage/dummy_cache_storage.py +1 -1
  255. streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +1 -1
  256. streamlit/runtime/caching/storage/local_disk_cache_storage.py +1 -1
  257. streamlit/runtime/caching/ttl_cleanup_cache.py +1 -1
  258. streamlit/runtime/connection_factory.py +1 -1
  259. streamlit/runtime/context.py +1 -1
  260. streamlit/runtime/context_util.py +1 -1
  261. streamlit/runtime/credentials.py +1 -1
  262. streamlit/runtime/download_data_util.py +1 -1
  263. streamlit/runtime/forward_msg_cache.py +1 -1
  264. streamlit/runtime/forward_msg_queue.py +1 -1
  265. streamlit/runtime/fragment.py +1 -1
  266. streamlit/runtime/media_file_manager.py +1 -1
  267. streamlit/runtime/media_file_storage.py +1 -1
  268. streamlit/runtime/memory_media_file_storage.py +1 -1
  269. streamlit/runtime/memory_session_storage.py +1 -1
  270. streamlit/runtime/memory_uploaded_file_manager.py +1 -1
  271. streamlit/runtime/metrics_util.py +1 -1
  272. streamlit/runtime/pages_manager.py +1 -1
  273. streamlit/runtime/runtime.py +1 -1
  274. streamlit/runtime/runtime_util.py +1 -1
  275. streamlit/runtime/script_data.py +1 -1
  276. streamlit/runtime/scriptrunner/__init__.py +1 -1
  277. streamlit/runtime/scriptrunner/exec_code.py +1 -1
  278. streamlit/runtime/scriptrunner/magic.py +1 -1
  279. streamlit/runtime/scriptrunner/magic_funcs.py +1 -1
  280. streamlit/runtime/scriptrunner/script_cache.py +1 -1
  281. streamlit/runtime/scriptrunner/script_runner.py +1 -1
  282. streamlit/runtime/scriptrunner_utils/__init__.py +1 -1
  283. streamlit/runtime/scriptrunner_utils/exceptions.py +1 -1
  284. streamlit/runtime/scriptrunner_utils/script_requests.py +1 -1
  285. streamlit/runtime/scriptrunner_utils/script_run_context.py +1 -1
  286. streamlit/runtime/secrets.py +1 -1
  287. streamlit/runtime/session_manager.py +1 -1
  288. streamlit/runtime/state/__init__.py +1 -1
  289. streamlit/runtime/state/common.py +1 -1
  290. streamlit/runtime/state/presentation.py +1 -1
  291. streamlit/runtime/state/query_params.py +1 -1
  292. streamlit/runtime/state/query_params_proxy.py +1 -1
  293. streamlit/runtime/state/safe_session_state.py +1 -1
  294. streamlit/runtime/state/session_state.py +1 -1
  295. streamlit/runtime/state/session_state_proxy.py +1 -1
  296. streamlit/runtime/state/widgets.py +1 -1
  297. streamlit/runtime/stats.py +1 -1
  298. streamlit/runtime/theme_util.py +1 -1
  299. streamlit/runtime/uploaded_file_manager.py +1 -1
  300. streamlit/runtime/websocket_session_manager.py +1 -1
  301. streamlit/source_util.py +1 -1
  302. streamlit/static/index.html +2 -2
  303. streamlit/static/manifest.json +304 -304
  304. streamlit/static/static/js/{ErrorOutline.esm.bKqSjdNS.js → ErrorOutline.esm.DB4TeKXQ.js} +1 -1
  305. streamlit/static/static/js/{FileDownload.esm.DYcl0HsS.js → FileDownload.esm.B1rsRcZM.js} +1 -1
  306. streamlit/static/static/js/{FileHelper.BG4elCiu.js → FileHelper.Dy-ENeyM.js} +1 -1
  307. streamlit/static/static/js/{FormClearHelper.CcrsaZUN.js → FormClearHelper.wCJbsz1D.js} +1 -1
  308. streamlit/static/static/js/InputInstructions.h-b7uu-m.js +1 -0
  309. streamlit/static/static/js/Particles.DMdiwhvk.js +1 -0
  310. streamlit/static/static/js/{ProgressBar.D54tj-jr.js → ProgressBar.InacggUW.js} +1 -1
  311. streamlit/static/static/js/{StreamlitSyntaxHighlighter.D6tqIUNe.js → StreamlitSyntaxHighlighter.CyryJTW-.js} +1 -1
  312. streamlit/static/static/js/{TableChart.esm.BsEqAKaW.js → TableChart.esm.DCIQ3yuB.js} +1 -1
  313. streamlit/static/static/js/Toolbar.CdfNxtO4.js +1 -0
  314. streamlit/static/static/js/{WidgetLabelHelpIconInline.tetiwgyt.js → WidgetLabelHelpIconInline.DLM1gtZz.js} +1 -1
  315. streamlit/static/static/js/{base-input.bCQ8S-FY.js → base-input.BCIrgNRb.js} +1 -1
  316. streamlit/static/static/js/{checkbox.SvhUmEPl.js → checkbox.cSjLtYx0.js} +1 -1
  317. streamlit/static/static/js/{createDownloadLinkElement.mdzy2wqu.js → createDownloadLinkElement.BD_DYT7M.js} +1 -1
  318. streamlit/static/static/js/{data-grid-overlay-editor.BRpG6UuQ.js → data-grid-overlay-editor.BWp1Ajhl.js} +1 -1
  319. streamlit/static/static/js/{downloader.BFho_Alx.js → downloader.CEDLkUji.js} +1 -1
  320. streamlit/static/static/js/{embed.CjSf3HQ8.js → embed.Dn7p4MYf.js} +1 -1
  321. streamlit/static/static/js/{es6.DnRofDlD.js → es6.C3cvBhbs.js} +2 -2
  322. streamlit/static/static/js/{formatNumber.CtWVEKkt.js → formatNumber.Bsp-qOPC.js} +1 -1
  323. streamlit/static/static/js/{iconPosition.Docx9KVT.js → iconPosition.DIRj5SlL.js} +1 -1
  324. streamlit/static/static/js/{iframeResizer.contentWindow.DPJjr14X.js → iframeResizer.contentWindow.tjj-iaW8.js} +1 -1
  325. streamlit/static/static/js/{index.BakUx9hH.js → index.2-6ocypr.js} +1 -1
  326. streamlit/static/static/js/index.65xiOHvb.js +1 -0
  327. streamlit/static/static/js/{index.Bd9Ju7cE.js → index.7mJnVlDm.js} +1 -1
  328. streamlit/static/static/js/{index.s88CwlpG.js → index.B0DCNp1Y.js} +8 -8
  329. streamlit/static/static/js/{index.BE-_bdmf.js → index.BIWD38us.js} +2 -2
  330. streamlit/static/static/js/{index.C8fg6FO8.js → index.BU_tKVxv.js} +2 -2
  331. streamlit/static/static/js/{index.DYR3j5ZF.js → index.BXggolS2.js} +1 -1
  332. streamlit/static/static/js/{index.B4jgy50K.js → index.BdwE460H.js} +1 -1
  333. streamlit/static/static/js/{index.HrvNEmn1.js → index.BgFWPu68.js} +1 -1
  334. streamlit/static/static/js/{index.CNXi20U2.js → index.BrhVkvAP.js} +1 -1
  335. streamlit/static/static/js/{index.2hZ1_TTv.js → index.BzF2fUQY.js} +1 -1
  336. streamlit/static/static/js/{index.DF31ixLt.js → index.C6KU1c_I.js} +2 -2
  337. streamlit/static/static/js/index.CJNYj-GU.js +7 -0
  338. streamlit/static/static/js/{index.BkQCUqLQ.js → index.CKv21ig2.js} +2 -2
  339. streamlit/static/static/js/index.CLchkPc0.js +1 -0
  340. streamlit/static/static/js/index.CMToM8tv.js +1 -0
  341. streamlit/static/static/js/{index.D9DEa36h.js → index.CP-UEHmv.js} +1 -1
  342. streamlit/static/static/js/index.CQk1zChj.js +1 -0
  343. streamlit/static/static/js/index.CU7z3OC0.js +1 -0
  344. streamlit/static/static/js/index.ChoFIv3e.js +1 -0
  345. streamlit/static/static/js/index.CkA0etie.js +1 -0
  346. streamlit/static/static/js/{index.3BdSdx9Q.js → index.CkWtzTE7.js} +1 -1
  347. streamlit/static/static/js/{index.BWwP9fh8.js → index.ClZw_QCU.js} +1 -1
  348. streamlit/static/static/js/index.Cma1PKQE.js +1 -0
  349. streamlit/static/static/js/index.CpgN7t8w.js +1 -0
  350. streamlit/static/static/js/{index.C3MpZoqE.js → index.Cqo3gLMs.js} +1 -1
  351. streamlit/static/static/js/{index.CTdvJfB7.js → index.D-LmUIYK.js} +2 -2
  352. streamlit/static/static/js/{index.Zx7pc4Ib.js → index.D9QOVKpD.js} +1 -1
  353. streamlit/static/static/js/{index.D5m5f2G-.js → index.DERvWU-H.js} +1 -1
  354. streamlit/static/static/js/{index.-Uw_gjRk.js → index.DPXljG88.js} +1 -1
  355. streamlit/static/static/js/index.DTtGJWwh.js +1 -0
  356. streamlit/static/static/js/{index.qg9M6uCh.js → index.D_MQwywr.js} +1 -1
  357. streamlit/static/static/js/index.DbV0rUEu.js +1 -0
  358. streamlit/static/static/js/index.DjxVfGrI.js +1 -0
  359. streamlit/static/static/js/{index.BZFLbiyp.js → index.REjZL5tN.js} +1 -1
  360. streamlit/static/static/js/index.VAsk7L3S.js +2 -0
  361. streamlit/static/static/js/{index.DQm9mE0T.js → index.XOden_TM.js} +25 -25
  362. streamlit/static/static/js/{index.zN5Ficl0.js → index.Y-fts05K.js} +2 -2
  363. streamlit/static/static/js/index.Y1-tp-v8.js +1 -0
  364. streamlit/static/static/js/{index.CggOKbv5.js → index.Y9iivd6m.js} +1 -1
  365. streamlit/static/static/js/{index.C40Nq5m8.js → index.ZVTCDY95.js} +1 -1
  366. streamlit/static/static/js/index.glmKpzAC.js +1 -0
  367. streamlit/static/static/js/{index.B-k1aQD6.js → index.hkR1h-xb.js} +1 -1
  368. streamlit/static/static/js/{index.DzWfLgsQ.js → index.hkwmBmj1.js} +1 -1
  369. streamlit/static/static/js/{index.CqMzbjp5.js → index.lGfrZbsE.js} +1 -1
  370. streamlit/static/static/js/{index.8C-cS-O4.js → index.oX51i0fi.js} +2 -2
  371. streamlit/static/static/js/{index.Dodgg4y_.js → index.qsDXxiva.js} +1 -1
  372. streamlit/static/static/js/{index.8I6SAQDm.js → index.xp9Iy5jw.js} +1 -1
  373. streamlit/static/static/js/{input.DnsJ8I9O.js → input.BLVfcIAQ.js} +1 -1
  374. streamlit/static/static/js/{main.Cs9yv8mP.js → main.DOT_xSoS.js} +1 -1
  375. streamlit/static/static/js/{memory.CnMAyKwP.js → memory.BU-JM8pI.js} +1 -1
  376. streamlit/static/static/js/{number-overlay-editor.CMfbFJmW.js → number-overlay-editor.BI4bxl54.js} +1 -1
  377. streamlit/static/static/js/{pandasStylerUtils.pLaEIPZw.js → pandasStylerUtils.BAO8bi8z.js} +1 -1
  378. streamlit/static/static/js/{sandbox.BcdOGz3D.js → sandbox.BEvKSsDs.js} +1 -1
  379. streamlit/static/static/js/styled-components.BeC32T5O.js +1 -0
  380. streamlit/static/static/js/{throttle.DM63_0Ui.js → throttle.BZ3PXlI9.js} +1 -1
  381. streamlit/static/static/js/{timepicker.pd9YKJun.js → timepicker.BThGAJl8.js} +1 -1
  382. streamlit/static/static/js/{toConsumableArray.C-vxP4eC.js → toConsumableArray.CFvVrWwv.js} +1 -1
  383. streamlit/static/static/js/uniqueId.DDvAwLSm.js +1 -0
  384. streamlit/static/static/js/{useBasicWidgetState.S1_DeDAF.js → useBasicWidgetState.DRzRDWGT.js} +1 -1
  385. streamlit/static/static/js/{useIntlLocale.BwbkZTj-.js → useIntlLocale.CdE4T1Ur.js} +1 -1
  386. streamlit/static/static/js/{useTextInputAutoExpand.DJy7lTuU.js → useTextInputAutoExpand.BVefdTg1.js} +1 -1
  387. streamlit/static/static/js/{useUpdateUiValue.KsXqwLCs.js → useUpdateUiValue.Ce3tYwUF.js} +1 -1
  388. streamlit/static/static/js/{useWaveformController.DQSftrKy.js → useWaveformController.CKTio31b.js} +1 -1
  389. streamlit/static/static/js/{withCalculatedWidth.Cf1aBuuB.js → withCalculatedWidth.BcZACcrB.js} +1 -1
  390. streamlit/static/static/js/withFullScreenWrapper.CZmpHubt.js +1 -0
  391. streamlit/string_util.py +1 -1
  392. streamlit/temporary_directory.py +1 -1
  393. streamlit/testing/__init__.py +1 -1
  394. streamlit/testing/v1/__init__.py +1 -1
  395. streamlit/testing/v1/app_test.py +1 -1
  396. streamlit/testing/v1/element_tree.py +1 -1
  397. streamlit/testing/v1/local_script_runner.py +1 -1
  398. streamlit/testing/v1/util.py +1 -1
  399. streamlit/time_util.py +1 -1
  400. streamlit/type_util.py +1 -1
  401. streamlit/url_util.py +1 -1
  402. streamlit/user_info.py +1 -1
  403. streamlit/util.py +1 -1
  404. streamlit/version.py +1 -1
  405. streamlit/watcher/__init__.py +1 -1
  406. streamlit/watcher/event_based_path_watcher.py +1 -1
  407. streamlit/watcher/folder_black_list.py +1 -1
  408. streamlit/watcher/local_sources_watcher.py +1 -1
  409. streamlit/watcher/path_watcher.py +1 -1
  410. streamlit/watcher/polling_path_watcher.py +1 -1
  411. streamlit/watcher/util.py +1 -1
  412. streamlit/web/__init__.py +1 -1
  413. streamlit/web/bootstrap.py +1 -1
  414. streamlit/web/cache_storage_manager_config.py +1 -1
  415. streamlit/web/cli.py +1 -1
  416. streamlit/web/server/__init__.py +1 -1
  417. streamlit/web/server/app_static_file_handler.py +1 -1
  418. streamlit/web/server/authlib_tornado_integration.py +1 -1
  419. streamlit/web/server/bidi_component_request_handler.py +1 -1
  420. streamlit/web/server/browser_websocket_handler.py +1 -1
  421. streamlit/web/server/component_file_utils.py +1 -1
  422. streamlit/web/server/component_request_handler.py +1 -1
  423. streamlit/web/server/media_file_handler.py +1 -1
  424. streamlit/web/server/oauth_authlib_routes.py +1 -1
  425. streamlit/web/server/oidc_mixin.py +1 -1
  426. streamlit/web/server/routes.py +1 -1
  427. streamlit/web/server/server.py +1 -1
  428. streamlit/web/server/server_util.py +1 -1
  429. streamlit/web/server/stats_request_handler.py +1 -1
  430. streamlit/web/server/upload_file_request_handler.py +1 -1
  431. streamlit/web/server/websocket_headers.py +1 -1
  432. {streamlit_nightly-1.52.3.dev20260101.data → streamlit_nightly-1.52.3.dev20260104.data}/scripts/streamlit.cmd +1 -1
  433. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260104.dist-info}/METADATA +1 -1
  434. streamlit_nightly-1.52.3.dev20260104.dist-info/RECORD +630 -0
  435. streamlit/static/static/js/InputInstructions.B-hrhnKS.js +0 -1
  436. streamlit/static/static/js/Particles.C1lQDBme.js +0 -1
  437. streamlit/static/static/js/Toolbar.COFccaTT.js +0 -1
  438. streamlit/static/static/js/index.B-2OnxuC.js +0 -1
  439. streamlit/static/static/js/index.BPDinT9W.js +0 -1
  440. streamlit/static/static/js/index.BWYs56td.js +0 -1
  441. streamlit/static/static/js/index.Bt-J_LLo.js +0 -1
  442. streamlit/static/static/js/index.BukrvZZ2.js +0 -1
  443. streamlit/static/static/js/index.CFRlw_Q4.js +0 -1
  444. streamlit/static/static/js/index.CoOQHuCm.js +0 -1
  445. streamlit/static/static/js/index.D3xfIqy_.js +0 -1
  446. streamlit/static/static/js/index.D67NXgZL.js +0 -1
  447. streamlit/static/static/js/index.DEUimtV1.js +0 -1
  448. streamlit/static/static/js/index.DK27W5ov.js +0 -1
  449. streamlit/static/static/js/index.DWUM7LrZ.js +0 -1
  450. streamlit/static/static/js/index.DaxZAmvz.js +0 -2
  451. streamlit/static/static/js/index.Dq9InAZx.js +0 -1
  452. streamlit/static/static/js/index.DtZbhbEr.js +0 -7
  453. streamlit/static/static/js/index.f-UZuoZE.js +0 -1
  454. streamlit/static/static/js/styled-components.571s8DEN.js +0 -1
  455. streamlit/static/static/js/uniqueId.Cx7-DRlG.js +0 -1
  456. streamlit/static/static/js/withFullScreenWrapper.BBQ6--wm.js +0 -1
  457. streamlit_nightly-1.52.3.dev20260101.dist-info/RECORD +0 -630
  458. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260104.dist-info}/WHEEL +0 -0
  459. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260104.dist-info}/entry_points.txt +0 -0
  460. {streamlit_nightly-1.52.3.dev20260101.dist-info → streamlit_nightly-1.52.3.dev20260104.dist-info}/top_level.txt +0 -0
streamlit/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/__main__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/auth_util.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/cli_util.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/config.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/config_util.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/cursor.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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/development.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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.
@@ -167,13 +167,17 @@ class LayoutsMixin:
167
167
  When ``horizontal`` is ``True``, ``"distribute"`` aligns the
168
168
  elements the same as ``"top"``.
169
169
 
170
- gap : "small", "medium", "large", or None
170
+ gap : "xxsmall", "xsmall", "small", "medium", "large", "xlarge", "xxlarge", or None
171
171
  The minimum gap size between the elements inside the container.
172
172
  This can be one of the following:
173
173
 
174
+ - ``"xxsmall"``: 0.25rem gap between the elements.
175
+ - ``"xsmall"``: 0.5rem gap between the elements.
174
176
  - ``"small"`` (default): 1rem gap between the elements.
175
177
  - ``"medium"``: 2rem gap between the elements.
176
178
  - ``"large"``: 4rem gap between the elements.
179
+ - ``"xlarge"``: 6rem gap between the elements.
180
+ - ``"xxlarge"``: 8rem gap between the elements.
177
181
  - ``None``: No gap between the elements.
178
182
 
179
183
  The rem unit is relative to the ``theme.baseFontSize``
@@ -364,13 +368,17 @@ class LayoutsMixin:
364
368
  Or ``[1, 2, 3]`` creates three columns where the second one is two times
365
369
  the width of the first one, and the third one is three times that width.
366
370
 
367
- gap : "small", "medium", "large", or None
371
+ gap : "xxsmall", "xsmall", "small", "medium", "large", "xlarge", "xxlarge", or None
368
372
  The size of the gap between the columns. This can be one of the
369
373
  following:
370
374
 
375
+ - ``"xxsmall"``: 0.25rem gap between the columns.
376
+ - ``"xsmall"``: 0.5rem gap between the columns.
371
377
  - ``"small"`` (default): 1rem gap between the columns.
372
378
  - ``"medium"``: 2rem gap between the columns.
373
379
  - ``"large"``: 4rem gap between the columns.
380
+ - ``"xlarge"``: 6rem gap between the columns.
381
+ - ``"xxlarge"``: 8rem gap between the columns.
374
382
  - ``None``: No gap between the columns.
375
383
 
376
384
  The rem unit is relative to the ``theme.baseFontSize``
@@ -1,4 +1,4 @@
1
- # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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-2025)
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
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.