streamlit-nightly 1.52.3.dev20251231__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.dev20251231.data → streamlit_nightly-1.52.3.dev20260102.data}/scripts/streamlit.cmd +1 -1
  432. {streamlit_nightly-1.52.3.dev20251231.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.dev20251231.dist-info/RECORD +0 -630
  457. {streamlit_nightly-1.52.3.dev20251231.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/WHEEL +0 -0
  458. {streamlit_nightly-1.52.3.dev20251231.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/entry_points.txt +0 -0
  459. {streamlit_nightly-1.52.3.dev20251231.dist-info → streamlit_nightly-1.52.3.dev20260102.dist-info}/top_level.txt +0 -0
@@ -36,45 +36,45 @@
36
36
  "src": "../lib/src/assets/img/snow/flake-2.png"
37
37
  },
38
38
  "../lib/src/components/elements/ArrowTable/index.ts": {
39
- "file": "static/js/index.f-UZuoZE.js",
39
+ "file": "static/js/index.DwRMR_Ao.js",
40
40
  "name": "index",
41
41
  "src": "../lib/src/components/elements/ArrowTable/index.ts",
42
42
  "isDynamicEntry": true,
43
43
  "imports": [
44
44
  "index.html",
45
- "_pandasStylerUtils.pLaEIPZw.js",
45
+ "_pandasStylerUtils.BQNPcCRH.js",
46
46
  "_moment.C7qA8nIE.js",
47
47
  "_numbro.B9_PXfzp.js",
48
48
  "__baseIndexOf.BTknn6Gb.js"
49
49
  ]
50
50
  },
51
51
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts": {
52
- "file": "static/js/index.qg9M6uCh.js",
52
+ "file": "static/js/index.DD6jbP16.js",
53
53
  "name": "index",
54
54
  "src": "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
55
55
  "isDynamicEntry": true,
56
56
  "imports": [
57
57
  "index.html",
58
- "_withFullScreenWrapper.BBQ6--wm.js",
59
- "_Toolbar.COFccaTT.js",
60
- "_index.s88CwlpG.js",
61
- "_embed.CjSf3HQ8.js",
62
- "_FormClearHelper.CcrsaZUN.js",
63
- "_TableChart.esm.BsEqAKaW.js",
58
+ "_withFullScreenWrapper.DGTtbbLe.js",
59
+ "_Toolbar.uViLYWIL.js",
60
+ "_index.DEF4aL6h.js",
61
+ "_embed.C4scQ-hW.js",
62
+ "_FormClearHelper.2gb34MMC.js",
63
+ "_TableChart.esm.DkPOnPiP.js",
64
64
  "_moment.C7qA8nIE.js",
65
- "_pandasStylerUtils.pLaEIPZw.js",
65
+ "_pandasStylerUtils.BQNPcCRH.js",
66
66
  "_numbro.B9_PXfzp.js",
67
67
  "__baseIndexOf.BTknn6Gb.js",
68
68
  "_index.8HslT92O.js",
69
- "_main.Cs9yv8mP.js",
70
- "_throttle.DM63_0Ui.js",
71
- "_formatNumber.CtWVEKkt.js",
69
+ "_main.DCurQa2X.js",
70
+ "_throttle.DpJVqfiM.js",
71
+ "_formatNumber.DwAT32vb.js",
72
72
  "_sprintf.DpPCfzXw.js",
73
73
  "_formatMoment.C6Hwn6X5.js",
74
- "_checkbox.SvhUmEPl.js",
75
- "_createDownloadLinkElement.mdzy2wqu.js",
76
- "_toConsumableArray.C-vxP4eC.js",
77
- "_FileDownload.esm.DYcl0HsS.js",
74
+ "_checkbox.lSnX8MiZ.js",
75
+ "_createDownloadLinkElement.qE-XPzHd.js",
76
+ "_toConsumableArray.nocm-m15.js",
77
+ "_FileDownload.esm.3-xCz5Dn.js",
78
78
  "__arrayIncludes.B19Iyn2B.js",
79
79
  "_threshold.CUNQbqMA.js",
80
80
  "_value.DaKxGC7O.js",
@@ -82,7 +82,7 @@
82
82
  ]
83
83
  },
84
84
  "../lib/src/components/elements/Audio/index.ts": {
85
- "file": "static/js/index.Bt-J_LLo.js",
85
+ "file": "static/js/index.BMEupOtG.js",
86
86
  "name": "index",
87
87
  "src": "../lib/src/components/elements/Audio/index.ts",
88
88
  "isDynamicEntry": true,
@@ -91,13 +91,13 @@
91
91
  ]
92
92
  },
93
93
  "../lib/src/components/elements/Balloons/index.ts": {
94
- "file": "static/js/index.BPDinT9W.js",
94
+ "file": "static/js/index.Cio1dNsf.js",
95
95
  "name": "index",
96
96
  "src": "../lib/src/components/elements/Balloons/index.ts",
97
97
  "isDynamicEntry": true,
98
98
  "imports": [
99
99
  "index.html",
100
- "_Particles.C1lQDBme.js"
100
+ "_Particles.DD6E7DiG.js"
101
101
  ],
102
102
  "assets": [
103
103
  "static/media/balloon-0.Czj7AKwE.png",
@@ -109,29 +109,29 @@
109
109
  ]
110
110
  },
111
111
  "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx": {
112
- "file": "static/js/StreamlitSyntaxHighlighter.D6tqIUNe.js",
112
+ "file": "static/js/StreamlitSyntaxHighlighter.Cbd0Ng31.js",
113
113
  "name": "StreamlitSyntaxHighlighter",
114
114
  "src": "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx",
115
115
  "isDynamicEntry": true,
116
116
  "imports": [
117
117
  "index.html",
118
- "_index.CqMzbjp5.js"
118
+ "_index.BO_-eOf-.js"
119
119
  ]
120
120
  },
121
121
  "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
122
- "file": "static/js/index.DF31ixLt.js",
122
+ "file": "static/js/index.Duio3diQ.js",
123
123
  "name": "index",
124
124
  "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
125
125
  "isDynamicEntry": true,
126
126
  "imports": [
127
127
  "index.html",
128
- "_toConsumableArray.C-vxP4eC.js",
129
- "_withFullScreenWrapper.BBQ6--wm.js",
130
- "_Toolbar.COFccaTT.js",
128
+ "_toConsumableArray.nocm-m15.js",
129
+ "_withFullScreenWrapper.DGTtbbLe.js",
130
+ "_Toolbar.uViLYWIL.js",
131
131
  "_index.8HslT92O.js",
132
- "_useBasicWidgetState.S1_DeDAF.js",
132
+ "_useBasicWidgetState.CD1aG6-a.js",
133
133
  "_threshold.CUNQbqMA.js",
134
- "_FormClearHelper.CcrsaZUN.js",
134
+ "_FormClearHelper.2gb34MMC.js",
135
135
  "_value.DaKxGC7O.js"
136
136
  ],
137
137
  "css": [
@@ -139,7 +139,7 @@
139
139
  ]
140
140
  },
141
141
  "../lib/src/components/elements/GraphVizChart/index.ts": {
142
- "file": "static/js/index.BE-_bdmf.js",
142
+ "file": "static/js/index.L46XQsIY.js",
143
143
  "name": "index",
144
144
  "src": "../lib/src/components/elements/GraphVizChart/index.ts",
145
145
  "isDynamicEntry": true,
@@ -147,12 +147,12 @@
147
147
  "index.html",
148
148
  "_timer.BZio6gjG.js",
149
149
  "_value.DaKxGC7O.js",
150
- "_withFullScreenWrapper.BBQ6--wm.js",
151
- "_Toolbar.COFccaTT.js"
150
+ "_withFullScreenWrapper.DGTtbbLe.js",
151
+ "_Toolbar.uViLYWIL.js"
152
152
  ]
153
153
  },
154
154
  "../lib/src/components/elements/Html/index.ts": {
155
- "file": "static/js/index.zN5Ficl0.js",
155
+ "file": "static/js/index.BQm1_d2O.js",
156
156
  "name": "index",
157
157
  "src": "../lib/src/components/elements/Html/index.ts",
158
158
  "isDynamicEntry": true,
@@ -161,7 +161,7 @@
161
161
  ]
162
162
  },
163
163
  "../lib/src/components/elements/IFrame/index.ts": {
164
- "file": "static/js/index.8I6SAQDm.js",
164
+ "file": "static/js/index.D1JGP_72.js",
165
165
  "name": "index",
166
166
  "src": "../lib/src/components/elements/IFrame/index.ts",
167
167
  "isDynamicEntry": true,
@@ -171,47 +171,47 @@
171
171
  ]
172
172
  },
173
173
  "../lib/src/components/elements/ImageList/index.ts": {
174
- "file": "static/js/index.DK27W5ov.js",
174
+ "file": "static/js/index.x9TEvcRW.js",
175
175
  "name": "index",
176
176
  "src": "../lib/src/components/elements/ImageList/index.ts",
177
177
  "isDynamicEntry": true,
178
178
  "imports": [
179
179
  "index.html",
180
- "_withFullScreenWrapper.BBQ6--wm.js",
181
- "_Toolbar.COFccaTT.js"
180
+ "_withFullScreenWrapper.DGTtbbLe.js",
181
+ "_Toolbar.uViLYWIL.js"
182
182
  ]
183
183
  },
184
184
  "../lib/src/components/elements/Json/index.ts": {
185
- "file": "static/js/index.DaxZAmvz.js",
185
+ "file": "static/js/index.BdVxH2a1.js",
186
186
  "name": "index",
187
187
  "src": "../lib/src/components/elements/Json/index.ts",
188
188
  "isDynamicEntry": true,
189
189
  "imports": [
190
190
  "index.html",
191
191
  "_index.8HslT92O.js",
192
- "_main.Cs9yv8mP.js"
192
+ "_main.DCurQa2X.js"
193
193
  ]
194
194
  },
195
195
  "../lib/src/components/elements/LinkButton/index.ts": {
196
- "file": "static/js/index.BWYs56td.js",
196
+ "file": "static/js/index.BsbD_ZbU.js",
197
197
  "name": "index",
198
198
  "src": "../lib/src/components/elements/LinkButton/index.ts",
199
199
  "isDynamicEntry": true,
200
200
  "imports": [
201
201
  "index.html",
202
- "_iconPosition.Docx9KVT.js"
202
+ "_iconPosition.BF4yacmi.js"
203
203
  ]
204
204
  },
205
205
  "../lib/src/components/elements/Metric/index.ts": {
206
- "file": "static/js/index.CFRlw_Q4.js",
206
+ "file": "static/js/index.BMxizVm_.js",
207
207
  "name": "index",
208
208
  "src": "../lib/src/components/elements/Metric/index.ts",
209
209
  "isDynamicEntry": true,
210
210
  "imports": [
211
211
  "index.html",
212
- "_embed.CjSf3HQ8.js",
213
- "_WidgetLabelHelpIconInline.tetiwgyt.js",
214
- "_formatNumber.CtWVEKkt.js",
212
+ "_embed.C4scQ-hW.js",
213
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js",
214
+ "_formatNumber.DwAT32vb.js",
215
215
  "_threshold.CUNQbqMA.js",
216
216
  "_value.DaKxGC7O.js",
217
217
  "_timer.BZio6gjG.js",
@@ -220,44 +220,44 @@
220
220
  ]
221
221
  },
222
222
  "../lib/src/components/elements/PageLink/index.ts": {
223
- "file": "static/js/index.BakUx9hH.js",
223
+ "file": "static/js/index.CsbjfvSm.js",
224
224
  "name": "index",
225
225
  "src": "../lib/src/components/elements/PageLink/index.ts",
226
226
  "isDynamicEntry": true,
227
227
  "imports": [
228
228
  "index.html",
229
- "_iconPosition.Docx9KVT.js"
229
+ "_iconPosition.BF4yacmi.js"
230
230
  ]
231
231
  },
232
232
  "../lib/src/components/elements/PlotlyChart/index.ts": {
233
- "file": "static/js/index.8C-cS-O4.js",
233
+ "file": "static/js/index.BDI5MuEQ.js",
234
234
  "name": "index",
235
235
  "src": "../lib/src/components/elements/PlotlyChart/index.ts",
236
236
  "isDynamicEntry": true,
237
237
  "imports": [
238
238
  "index.html",
239
- "_withFullScreenWrapper.BBQ6--wm.js",
240
- "_FormClearHelper.CcrsaZUN.js"
239
+ "_withFullScreenWrapper.DGTtbbLe.js",
240
+ "_FormClearHelper.2gb34MMC.js"
241
241
  ]
242
242
  },
243
243
  "../lib/src/components/elements/Progress/index.ts": {
244
- "file": "static/js/index.BukrvZZ2.js",
244
+ "file": "static/js/index.dPnBpGLy.js",
245
245
  "name": "index",
246
246
  "src": "../lib/src/components/elements/Progress/index.ts",
247
247
  "isDynamicEntry": true,
248
248
  "imports": [
249
249
  "index.html",
250
- "_ProgressBar.D54tj-jr.js"
250
+ "_ProgressBar.CBHvskJx.js"
251
251
  ]
252
252
  },
253
253
  "../lib/src/components/elements/Snow/index.ts": {
254
- "file": "static/js/index.DtZbhbEr.js",
254
+ "file": "static/js/index.DPeqx79l.js",
255
255
  "name": "index",
256
256
  "src": "../lib/src/components/elements/Snow/index.ts",
257
257
  "isDynamicEntry": true,
258
258
  "imports": [
259
259
  "index.html",
260
- "_Particles.C1lQDBme.js"
260
+ "_Particles.DD6E7DiG.js"
261
261
  ],
262
262
  "assets": [
263
263
  "static/media/flake-0.DgWaVvm5.png",
@@ -266,7 +266,7 @@
266
266
  ]
267
267
  },
268
268
  "../lib/src/components/elements/Spinner/index.ts": {
269
- "file": "static/js/index.DEUimtV1.js",
269
+ "file": "static/js/index.BxQj1n_M.js",
270
270
  "name": "index",
271
271
  "src": "../lib/src/components/elements/Spinner/index.ts",
272
272
  "isDynamicEntry": true,
@@ -275,7 +275,7 @@
275
275
  ]
276
276
  },
277
277
  "../lib/src/components/elements/Toast/index.ts": {
278
- "file": "static/js/index.CoOQHuCm.js",
278
+ "file": "static/js/index.BduCcO_U.js",
279
279
  "name": "index",
280
280
  "src": "../lib/src/components/elements/Toast/index.ts",
281
281
  "isDynamicEntry": true,
@@ -284,7 +284,7 @@
284
284
  ]
285
285
  },
286
286
  "../lib/src/components/elements/Video/index.ts": {
287
- "file": "static/js/index.D9DEa36h.js",
287
+ "file": "static/js/index.AbRqTgeF.js",
288
288
  "name": "index",
289
289
  "src": "../lib/src/components/elements/Video/index.ts",
290
290
  "isDynamicEntry": true,
@@ -293,22 +293,22 @@
293
293
  ]
294
294
  },
295
295
  "../lib/src/components/widgets/AudioInput/index.ts": {
296
- "file": "static/js/index.Dq9InAZx.js",
296
+ "file": "static/js/index.CrqhxXJA.js",
297
297
  "name": "index",
298
298
  "src": "../lib/src/components/widgets/AudioInput/index.ts",
299
299
  "isDynamicEntry": true,
300
300
  "imports": [
301
301
  "index.html",
302
- "_useWaveformController.DQSftrKy.js",
303
- "_Toolbar.COFccaTT.js",
304
- "_FormClearHelper.CcrsaZUN.js",
305
- "_createDownloadLinkElement.mdzy2wqu.js",
302
+ "_useWaveformController.B3tf7xqQ.js",
303
+ "_Toolbar.uViLYWIL.js",
304
+ "_FormClearHelper.2gb34MMC.js",
305
+ "_createDownloadLinkElement.qE-XPzHd.js",
306
306
  "_urls.BwSlolu9.js",
307
- "_FileDownload.esm.DYcl0HsS.js"
307
+ "_FileDownload.esm.3-xCz5Dn.js"
308
308
  ]
309
309
  },
310
310
  "../lib/src/components/widgets/BidiComponent/index.tsx": {
311
- "file": "static/js/index.C8fg6FO8.js",
311
+ "file": "static/js/index.CU6HHyYl.js",
312
312
  "name": "index",
313
313
  "src": "../lib/src/components/widgets/BidiComponent/index.tsx",
314
314
  "isDynamicEntry": true,
@@ -317,335 +317,335 @@
317
317
  ]
318
318
  },
319
319
  "../lib/src/components/widgets/Button/index.ts": {
320
- "file": "static/js/index.BWwP9fh8.js",
320
+ "file": "static/js/index.B2FiJl2X.js",
321
321
  "name": "index",
322
322
  "src": "../lib/src/components/widgets/Button/index.ts",
323
323
  "isDynamicEntry": true,
324
324
  "imports": [
325
325
  "index.html",
326
- "_iconPosition.Docx9KVT.js"
326
+ "_iconPosition.BF4yacmi.js"
327
327
  ]
328
328
  },
329
329
  "../lib/src/components/widgets/ButtonGroup/index.ts": {
330
- "file": "static/js/index.-Uw_gjRk.js",
330
+ "file": "static/js/index.-zR4Ojkd.js",
331
331
  "name": "index",
332
332
  "src": "../lib/src/components/widgets/ButtonGroup/index.ts",
333
333
  "isDynamicEntry": true,
334
334
  "imports": [
335
335
  "index.html",
336
- "_WidgetLabelHelpIconInline.tetiwgyt.js",
337
- "_useBasicWidgetState.S1_DeDAF.js",
338
- "_FormClearHelper.CcrsaZUN.js"
336
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js",
337
+ "_useBasicWidgetState.CD1aG6-a.js",
338
+ "_FormClearHelper.2gb34MMC.js"
339
339
  ]
340
340
  },
341
341
  "../lib/src/components/widgets/CameraInput/index.ts": {
342
- "file": "static/js/index.DWUM7LrZ.js",
342
+ "file": "static/js/index.Ce0tmU7o.js",
343
343
  "name": "index",
344
344
  "src": "../lib/src/components/widgets/CameraInput/index.ts",
345
345
  "isDynamicEntry": true,
346
346
  "imports": [
347
347
  "index.html",
348
348
  "_UploadFileInfo.Dr-zDST7.js",
349
- "_FormClearHelper.CcrsaZUN.js",
350
- "_ProgressBar.D54tj-jr.js",
349
+ "_FormClearHelper.2gb34MMC.js",
350
+ "_ProgressBar.CBHvskJx.js",
351
351
  "_urls.BwSlolu9.js"
352
352
  ]
353
353
  },
354
354
  "../lib/src/components/widgets/ChatInput/index.ts": {
355
- "file": "static/js/index.D67NXgZL.js",
355
+ "file": "static/js/index.Es18h2ap.js",
356
356
  "name": "index",
357
357
  "src": "../lib/src/components/widgets/ChatInput/index.ts",
358
358
  "isDynamicEntry": true,
359
359
  "imports": [
360
360
  "index.html",
361
- "_FileHelper.BG4elCiu.js",
362
- "_useWaveformController.DQSftrKy.js",
363
- "_InputInstructions.B-hrhnKS.js",
364
- "_useTextInputAutoExpand.DJy7lTuU.js",
361
+ "_FileHelper.B7p1stfH.js",
362
+ "_useWaveformController.B3tf7xqQ.js",
363
+ "_InputInstructions.CMaz--YN.js",
364
+ "_useTextInputAutoExpand.5E_gpUfB.js",
365
365
  "_inputUtils.CptNuJwn.js",
366
- "_TableChart.esm.BsEqAKaW.js",
367
- "_ErrorOutline.esm.bKqSjdNS.js",
366
+ "_TableChart.esm.DkPOnPiP.js",
367
+ "_ErrorOutline.esm.0yuPC2le.js",
368
368
  "_UploadFileInfo.Dr-zDST7.js",
369
- "_base-input.bCQ8S-FY.js"
369
+ "_base-input.CWLDgMIQ.js"
370
370
  ]
371
371
  },
372
372
  "../lib/src/components/widgets/Checkbox/index.ts": {
373
- "file": "static/js/index.BZFLbiyp.js",
373
+ "file": "static/js/index.Bu9qeYdI.js",
374
374
  "name": "index",
375
375
  "src": "../lib/src/components/widgets/Checkbox/index.ts",
376
376
  "isDynamicEntry": true,
377
377
  "imports": [
378
378
  "index.html",
379
- "_WidgetLabelHelpIconInline.tetiwgyt.js",
380
- "_useBasicWidgetState.S1_DeDAF.js",
381
- "_checkbox.SvhUmEPl.js",
382
- "_FormClearHelper.CcrsaZUN.js"
379
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js",
380
+ "_useBasicWidgetState.CD1aG6-a.js",
381
+ "_checkbox.lSnX8MiZ.js",
382
+ "_FormClearHelper.2gb34MMC.js"
383
383
  ]
384
384
  },
385
385
  "../lib/src/components/widgets/ColorPicker/index.ts": {
386
- "file": "static/js/index.BkQCUqLQ.js",
386
+ "file": "static/js/index.47QtlXbw.js",
387
387
  "name": "index",
388
388
  "src": "../lib/src/components/widgets/ColorPicker/index.ts",
389
389
  "isDynamicEntry": true,
390
390
  "imports": [
391
391
  "index.html",
392
- "_useBasicWidgetState.S1_DeDAF.js",
393
- "_throttle.DM63_0Ui.js",
394
- "_WidgetLabelHelpIconInline.tetiwgyt.js",
395
- "_FormClearHelper.CcrsaZUN.js"
392
+ "_useBasicWidgetState.CD1aG6-a.js",
393
+ "_throttle.DpJVqfiM.js",
394
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js",
395
+ "_FormClearHelper.2gb34MMC.js"
396
396
  ]
397
397
  },
398
398
  "../lib/src/components/widgets/CustomComponent/index.ts": {
399
- "file": "static/js/index.3BdSdx9Q.js",
399
+ "file": "static/js/index.DkQIXYcv.js",
400
400
  "name": "index",
401
401
  "src": "../lib/src/components/widgets/CustomComponent/index.ts",
402
402
  "isDynamicEntry": true,
403
403
  "imports": [
404
404
  "index.html",
405
- "_withCalculatedWidth.Cf1aBuuB.js",
405
+ "_withCalculatedWidth.kZou334h.js",
406
406
  "_urls.BwSlolu9.js",
407
407
  "_IFrameUtil.DefezniK.js"
408
408
  ]
409
409
  },
410
410
  "../lib/src/components/widgets/DateInput/index.ts": {
411
- "file": "static/js/index.CggOKbv5.js",
411
+ "file": "static/js/index.C1zhyjFt.js",
412
412
  "name": "index",
413
413
  "src": "../lib/src/components/widgets/DateInput/index.ts",
414
414
  "isDynamicEntry": true,
415
415
  "imports": [
416
416
  "index.html",
417
417
  "_moment.C7qA8nIE.js",
418
- "_useBasicWidgetState.S1_DeDAF.js",
419
- "_useIntlLocale.BwbkZTj-.js",
420
- "_ErrorOutline.esm.bKqSjdNS.js",
421
- "_FormClearHelper.CcrsaZUN.js",
422
- "_timepicker.pd9YKJun.js",
423
- "_input.DnsJ8I9O.js",
424
- "_base-input.bCQ8S-FY.js"
418
+ "_useBasicWidgetState.CD1aG6-a.js",
419
+ "_useIntlLocale.DLuHgCFO.js",
420
+ "_ErrorOutline.esm.0yuPC2le.js",
421
+ "_FormClearHelper.2gb34MMC.js",
422
+ "_timepicker.plxFjD2l.js",
423
+ "_input.BViGVyAy.js",
424
+ "_base-input.CWLDgMIQ.js"
425
425
  ]
426
426
  },
427
427
  "../lib/src/components/widgets/DateTimeInput/index.ts": {
428
- "file": "static/js/index.2hZ1_TTv.js",
428
+ "file": "static/js/index.CYAiwpaf.js",
429
429
  "name": "index",
430
430
  "src": "../lib/src/components/widgets/DateTimeInput/index.ts",
431
431
  "isDynamicEntry": true,
432
432
  "imports": [
433
433
  "index.html",
434
434
  "_moment.C7qA8nIE.js",
435
- "_useIntlLocale.BwbkZTj-.js",
436
- "_useBasicWidgetState.S1_DeDAF.js",
437
- "_styled-components.571s8DEN.js",
438
- "_ErrorOutline.esm.bKqSjdNS.js",
439
- "_timepicker.pd9YKJun.js",
440
- "_input.DnsJ8I9O.js",
441
- "_base-input.bCQ8S-FY.js",
442
- "_FormClearHelper.CcrsaZUN.js"
435
+ "_useIntlLocale.DLuHgCFO.js",
436
+ "_useBasicWidgetState.CD1aG6-a.js",
437
+ "_styled-components.C0Ar4ws1.js",
438
+ "_ErrorOutline.esm.0yuPC2le.js",
439
+ "_timepicker.plxFjD2l.js",
440
+ "_input.BViGVyAy.js",
441
+ "_base-input.CWLDgMIQ.js",
442
+ "_FormClearHelper.2gb34MMC.js"
443
443
  ]
444
444
  },
445
445
  "../lib/src/components/widgets/DownloadButton/index.ts": {
446
- "file": "static/js/index.Dodgg4y_.js",
446
+ "file": "static/js/index.DLYqRljk.js",
447
447
  "name": "index",
448
448
  "src": "../lib/src/components/widgets/DownloadButton/index.ts",
449
449
  "isDynamicEntry": true,
450
450
  "imports": [
451
451
  "index.html",
452
- "_iconPosition.Docx9KVT.js",
453
- "_createDownloadLinkElement.mdzy2wqu.js"
452
+ "_iconPosition.BF4yacmi.js",
453
+ "_createDownloadLinkElement.qE-XPzHd.js"
454
454
  ]
455
455
  },
456
456
  "../lib/src/components/widgets/FileUploader/index.ts": {
457
- "file": "static/js/index.D3xfIqy_.js",
457
+ "file": "static/js/index.BibdADOD.js",
458
458
  "name": "index",
459
459
  "src": "../lib/src/components/widgets/FileUploader/index.ts",
460
460
  "isDynamicEntry": true,
461
461
  "imports": [
462
462
  "index.html",
463
- "_FormClearHelper.CcrsaZUN.js",
464
- "_FileHelper.BG4elCiu.js",
465
- "_ProgressBar.D54tj-jr.js",
463
+ "_FormClearHelper.2gb34MMC.js",
464
+ "_FileHelper.B7p1stfH.js",
465
+ "_ProgressBar.CBHvskJx.js",
466
466
  "_UploadFileInfo.Dr-zDST7.js"
467
467
  ]
468
468
  },
469
469
  "../lib/src/components/widgets/Form/index.ts": {
470
- "file": "static/js/index.B-k1aQD6.js",
470
+ "file": "static/js/index.C3Czde8V.js",
471
471
  "name": "index",
472
472
  "src": "../lib/src/components/widgets/Form/index.ts",
473
473
  "isDynamicEntry": true,
474
474
  "imports": [
475
475
  "index.html",
476
- "_iconPosition.Docx9KVT.js",
477
- "_FormClearHelper.CcrsaZUN.js"
476
+ "_iconPosition.BF4yacmi.js",
477
+ "_FormClearHelper.2gb34MMC.js"
478
478
  ]
479
479
  },
480
480
  "../lib/src/components/widgets/Multiselect/index.ts": {
481
- "file": "static/js/index.Zx7pc4Ib.js",
481
+ "file": "static/js/index.DPn1549d.js",
482
482
  "name": "index",
483
483
  "src": "../lib/src/components/widgets/Multiselect/index.ts",
484
484
  "isDynamicEntry": true,
485
485
  "imports": [
486
486
  "index.html",
487
- "_useBasicWidgetState.S1_DeDAF.js",
487
+ "_useBasicWidgetState.CD1aG6-a.js",
488
488
  "__arrayIncludes.B19Iyn2B.js",
489
- "_FormClearHelper.CcrsaZUN.js",
489
+ "_FormClearHelper.2gb34MMC.js",
490
490
  "__baseIndexOf.BTknn6Gb.js"
491
491
  ]
492
492
  },
493
493
  "../lib/src/components/widgets/NumberInput/index.ts": {
494
- "file": "static/js/index.C3MpZoqE.js",
494
+ "file": "static/js/index.Cd-5Vmzk.js",
495
495
  "name": "index",
496
496
  "src": "../lib/src/components/widgets/NumberInput/index.ts",
497
497
  "isDynamicEntry": true,
498
498
  "imports": [
499
499
  "index.html",
500
- "_InputInstructions.B-hrhnKS.js",
501
- "_useBasicWidgetState.S1_DeDAF.js",
500
+ "_InputInstructions.CMaz--YN.js",
501
+ "_useBasicWidgetState.CD1aG6-a.js",
502
502
  "_sprintf.DpPCfzXw.js",
503
- "_uniqueId.Cx7-DRlG.js",
504
- "_input.DnsJ8I9O.js",
505
- "_FormClearHelper.CcrsaZUN.js",
506
- "_base-input.bCQ8S-FY.js"
503
+ "_uniqueId.BgdRqRrS.js",
504
+ "_input.BViGVyAy.js",
505
+ "_FormClearHelper.2gb34MMC.js",
506
+ "_base-input.CWLDgMIQ.js"
507
507
  ]
508
508
  },
509
509
  "../lib/src/components/widgets/Radio/index.ts": {
510
- "file": "static/js/index.DzWfLgsQ.js",
510
+ "file": "static/js/index.C4N9_AWk.js",
511
511
  "name": "index",
512
512
  "src": "../lib/src/components/widgets/Radio/index.ts",
513
513
  "isDynamicEntry": true,
514
514
  "imports": [
515
515
  "index.html",
516
- "_WidgetLabelHelpIconInline.tetiwgyt.js",
517
- "_useBasicWidgetState.S1_DeDAF.js",
518
- "_FormClearHelper.CcrsaZUN.js"
516
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js",
517
+ "_useBasicWidgetState.CD1aG6-a.js",
518
+ "_FormClearHelper.2gb34MMC.js"
519
519
  ]
520
520
  },
521
521
  "../lib/src/components/widgets/Selectbox/index.ts": {
522
- "file": "static/js/index.DYR3j5ZF.js",
522
+ "file": "static/js/index.B_rx628n.js",
523
523
  "name": "index",
524
524
  "src": "../lib/src/components/widgets/Selectbox/index.ts",
525
525
  "isDynamicEntry": true,
526
526
  "imports": [
527
527
  "index.html",
528
- "_useBasicWidgetState.S1_DeDAF.js",
529
- "_FormClearHelper.CcrsaZUN.js"
528
+ "_useBasicWidgetState.CD1aG6-a.js",
529
+ "_FormClearHelper.2gb34MMC.js"
530
530
  ]
531
531
  },
532
532
  "../lib/src/components/widgets/Slider/index.ts": {
533
- "file": "static/js/index.CTdvJfB7.js",
533
+ "file": "static/js/index.D_zZYX-F.js",
534
534
  "name": "index",
535
535
  "src": "../lib/src/components/widgets/Slider/index.ts",
536
536
  "isDynamicEntry": true,
537
537
  "imports": [
538
538
  "index.html",
539
539
  "_moment.C7qA8nIE.js",
540
- "_withCalculatedWidth.Cf1aBuuB.js",
541
- "_useBasicWidgetState.S1_DeDAF.js",
540
+ "_withCalculatedWidth.kZou334h.js",
541
+ "_useBasicWidgetState.CD1aG6-a.js",
542
542
  "_formatMoment.C6Hwn6X5.js",
543
- "_formatNumber.CtWVEKkt.js",
544
- "_FormClearHelper.CcrsaZUN.js",
543
+ "_formatNumber.DwAT32vb.js",
544
+ "_FormClearHelper.2gb34MMC.js",
545
545
  "_numbro.B9_PXfzp.js",
546
546
  "_sprintf.DpPCfzXw.js"
547
547
  ]
548
548
  },
549
549
  "../lib/src/components/widgets/TextArea/index.ts": {
550
- "file": "static/js/index.C40Nq5m8.js",
550
+ "file": "static/js/index.BD8Aa49F.js",
551
551
  "name": "index",
552
552
  "src": "../lib/src/components/widgets/TextArea/index.ts",
553
553
  "isDynamicEntry": true,
554
554
  "imports": [
555
555
  "index.html",
556
- "_InputInstructions.B-hrhnKS.js",
557
- "_useBasicWidgetState.S1_DeDAF.js",
558
- "_useUpdateUiValue.KsXqwLCs.js",
559
- "_useTextInputAutoExpand.DJy7lTuU.js",
560
- "_uniqueId.Cx7-DRlG.js",
561
- "_FormClearHelper.CcrsaZUN.js",
556
+ "_InputInstructions.CMaz--YN.js",
557
+ "_useBasicWidgetState.CD1aG6-a.js",
558
+ "_useUpdateUiValue.DWX5Hfxx.js",
559
+ "_useTextInputAutoExpand.5E_gpUfB.js",
560
+ "_uniqueId.BgdRqRrS.js",
561
+ "_FormClearHelper.2gb34MMC.js",
562
562
  "_inputUtils.CptNuJwn.js",
563
- "_base-input.bCQ8S-FY.js"
563
+ "_base-input.CWLDgMIQ.js"
564
564
  ]
565
565
  },
566
566
  "../lib/src/components/widgets/TextInput/index.ts": {
567
- "file": "static/js/index.B-2OnxuC.js",
567
+ "file": "static/js/index.DgxjQf8D.js",
568
568
  "name": "index",
569
569
  "src": "../lib/src/components/widgets/TextInput/index.ts",
570
570
  "isDynamicEntry": true,
571
571
  "imports": [
572
572
  "index.html",
573
- "_InputInstructions.B-hrhnKS.js",
574
- "_useBasicWidgetState.S1_DeDAF.js",
575
- "_useUpdateUiValue.KsXqwLCs.js",
576
- "_uniqueId.Cx7-DRlG.js",
577
- "_input.DnsJ8I9O.js",
578
- "_FormClearHelper.CcrsaZUN.js",
573
+ "_InputInstructions.CMaz--YN.js",
574
+ "_useBasicWidgetState.CD1aG6-a.js",
575
+ "_useUpdateUiValue.DWX5Hfxx.js",
576
+ "_uniqueId.BgdRqRrS.js",
577
+ "_input.BViGVyAy.js",
578
+ "_FormClearHelper.2gb34MMC.js",
579
579
  "_inputUtils.CptNuJwn.js",
580
- "_base-input.bCQ8S-FY.js"
580
+ "_base-input.CWLDgMIQ.js"
581
581
  ]
582
582
  },
583
583
  "../lib/src/components/widgets/TimeInput/index.ts": {
584
- "file": "static/js/index.B4jgy50K.js",
584
+ "file": "static/js/index.Bh-DEB0O.js",
585
585
  "name": "index",
586
586
  "src": "../lib/src/components/widgets/TimeInput/index.ts",
587
587
  "isDynamicEntry": true,
588
588
  "imports": [
589
589
  "index.html",
590
- "_useBasicWidgetState.S1_DeDAF.js",
591
- "_styled-components.571s8DEN.js",
592
- "_timepicker.pd9YKJun.js",
593
- "_FormClearHelper.CcrsaZUN.js"
590
+ "_useBasicWidgetState.CD1aG6-a.js",
591
+ "_styled-components.C0Ar4ws1.js",
592
+ "_timepicker.plxFjD2l.js",
593
+ "_FormClearHelper.2gb34MMC.js"
594
594
  ]
595
595
  },
596
596
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js": {
597
- "file": "static/js/data-grid-overlay-editor.BRpG6UuQ.js",
597
+ "file": "static/js/data-grid-overlay-editor.CixSgiOW.js",
598
598
  "name": "data-grid-overlay-editor",
599
599
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
600
600
  "isDynamicEntry": true,
601
601
  "imports": [
602
602
  "index.html",
603
- "_index.s88CwlpG.js",
604
- "_withFullScreenWrapper.BBQ6--wm.js",
605
- "_Toolbar.COFccaTT.js",
606
- "_FormClearHelper.CcrsaZUN.js",
603
+ "_index.DEF4aL6h.js",
604
+ "_withFullScreenWrapper.DGTtbbLe.js",
605
+ "_Toolbar.uViLYWIL.js",
606
+ "_FormClearHelper.2gb34MMC.js",
607
607
  "_moment.C7qA8nIE.js",
608
- "_pandasStylerUtils.pLaEIPZw.js",
608
+ "_pandasStylerUtils.BQNPcCRH.js",
609
609
  "_numbro.B9_PXfzp.js",
610
610
  "__baseIndexOf.BTknn6Gb.js",
611
611
  "_index.8HslT92O.js",
612
- "_main.Cs9yv8mP.js",
613
- "_throttle.DM63_0Ui.js",
614
- "_formatNumber.CtWVEKkt.js",
612
+ "_main.DCurQa2X.js",
613
+ "_throttle.DpJVqfiM.js",
614
+ "_formatNumber.DwAT32vb.js",
615
615
  "_sprintf.DpPCfzXw.js",
616
616
  "_formatMoment.C6Hwn6X5.js",
617
- "_checkbox.SvhUmEPl.js",
618
- "_createDownloadLinkElement.mdzy2wqu.js",
619
- "_toConsumableArray.C-vxP4eC.js",
620
- "_FileDownload.esm.DYcl0HsS.js",
617
+ "_checkbox.lSnX8MiZ.js",
618
+ "_createDownloadLinkElement.qE-XPzHd.js",
619
+ "_toConsumableArray.nocm-m15.js",
620
+ "_FileDownload.esm.3-xCz5Dn.js",
621
621
  "__arrayIncludes.B19Iyn2B.js"
622
622
  ]
623
623
  },
624
624
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js": {
625
- "file": "static/js/number-overlay-editor.CMfbFJmW.js",
625
+ "file": "static/js/number-overlay-editor.BNei35vX.js",
626
626
  "name": "number-overlay-editor",
627
627
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
628
628
  "isDynamicEntry": true,
629
629
  "imports": [
630
630
  "index.html",
631
- "_index.s88CwlpG.js",
632
- "_withFullScreenWrapper.BBQ6--wm.js",
633
- "_Toolbar.COFccaTT.js",
634
- "_FormClearHelper.CcrsaZUN.js",
631
+ "_index.DEF4aL6h.js",
632
+ "_withFullScreenWrapper.DGTtbbLe.js",
633
+ "_Toolbar.uViLYWIL.js",
634
+ "_FormClearHelper.2gb34MMC.js",
635
635
  "_moment.C7qA8nIE.js",
636
- "_pandasStylerUtils.pLaEIPZw.js",
636
+ "_pandasStylerUtils.BQNPcCRH.js",
637
637
  "_numbro.B9_PXfzp.js",
638
638
  "__baseIndexOf.BTknn6Gb.js",
639
639
  "_index.8HslT92O.js",
640
- "_main.Cs9yv8mP.js",
641
- "_throttle.DM63_0Ui.js",
642
- "_formatNumber.CtWVEKkt.js",
640
+ "_main.DCurQa2X.js",
641
+ "_throttle.DpJVqfiM.js",
642
+ "_formatNumber.DwAT32vb.js",
643
643
  "_sprintf.DpPCfzXw.js",
644
644
  "_formatMoment.C6Hwn6X5.js",
645
- "_checkbox.SvhUmEPl.js",
646
- "_createDownloadLinkElement.mdzy2wqu.js",
647
- "_toConsumableArray.C-vxP4eC.js",
648
- "_FileDownload.esm.DYcl0HsS.js",
645
+ "_checkbox.lSnX8MiZ.js",
646
+ "_createDownloadLinkElement.qE-XPzHd.js",
647
+ "_toConsumableArray.nocm-m15.js",
648
+ "_FileDownload.esm.3-xCz5Dn.js",
649
649
  "__arrayIncludes.B19Iyn2B.js"
650
650
  ]
651
651
  },
@@ -892,37 +892,37 @@
892
892
  "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
893
893
  },
894
894
  "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
895
- "file": "static/js/downloader.BFho_Alx.js",
895
+ "file": "static/js/downloader.BR9PJ-pW.js",
896
896
  "name": "downloader",
897
897
  "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
898
898
  "isDynamicEntry": true,
899
899
  "imports": [
900
- "_es6.DnRofDlD.js",
900
+ "_es6.NjGX1Pno.js",
901
901
  "index.html"
902
902
  ]
903
903
  },
904
904
  "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
905
- "file": "static/js/memory.CnMAyKwP.js",
905
+ "file": "static/js/memory.CeqRSVmL.js",
906
906
  "name": "memory",
907
907
  "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
908
908
  "isDynamicEntry": true,
909
909
  "imports": [
910
- "_es6.DnRofDlD.js",
910
+ "_es6.NjGX1Pno.js",
911
911
  "index.html"
912
912
  ]
913
913
  },
914
914
  "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
915
- "file": "static/js/sandbox.BcdOGz3D.js",
915
+ "file": "static/js/sandbox.Bkc6ExUI.js",
916
916
  "name": "sandbox",
917
917
  "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
918
918
  "isDynamicEntry": true,
919
919
  "imports": [
920
- "_es6.DnRofDlD.js",
920
+ "_es6.NjGX1Pno.js",
921
921
  "index.html"
922
922
  ]
923
923
  },
924
924
  "../node_modules/node-emoji/lib/index.js": {
925
- "file": "static/js/index.D5m5f2G-.js",
925
+ "file": "static/js/index.CW9ezGuy.js",
926
926
  "name": "index",
927
927
  "src": "../node_modules/node-emoji/lib/index.js",
928
928
  "isDynamicEntry": true,
@@ -931,29 +931,29 @@
931
931
  ]
932
932
  },
933
933
  "../node_modules/rehype-katex/index.js": {
934
- "file": "static/js/index.HrvNEmn1.js",
934
+ "file": "static/js/index.iV4zN5GV.js",
935
935
  "name": "index",
936
936
  "src": "../node_modules/rehype-katex/index.js",
937
937
  "isDynamicEntry": true,
938
938
  "imports": [
939
939
  "_index.bsVAaBS1.js",
940
- "_index.CqMzbjp5.js",
940
+ "_index.BO_-eOf-.js",
941
941
  "index.html"
942
942
  ]
943
943
  },
944
944
  "../node_modules/rehype-raw/index.js": {
945
- "file": "static/js/index.CNXi20U2.js",
945
+ "file": "static/js/index.CSPw4GmF.js",
946
946
  "name": "index",
947
947
  "src": "../node_modules/rehype-raw/index.js",
948
948
  "isDynamicEntry": true,
949
949
  "imports": [
950
950
  "index.html",
951
951
  "_index.bsVAaBS1.js",
952
- "_index.CqMzbjp5.js"
952
+ "_index.BO_-eOf-.js"
953
953
  ]
954
954
  },
955
955
  "../node_modules/remark-emoji/index.js": {
956
- "file": "static/js/index.Bd9Ju7cE.js",
956
+ "file": "static/js/index.DUS_Khvb.js",
957
957
  "name": "index",
958
958
  "src": "../node_modules/remark-emoji/index.js",
959
959
  "isDynamicEntry": true,
@@ -974,30 +974,30 @@
974
974
  "src": "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js",
975
975
  "isDynamicEntry": true
976
976
  },
977
- "_ErrorOutline.esm.bKqSjdNS.js": {
978
- "file": "static/js/ErrorOutline.esm.bKqSjdNS.js",
977
+ "_ErrorOutline.esm.0yuPC2le.js": {
978
+ "file": "static/js/ErrorOutline.esm.0yuPC2le.js",
979
979
  "name": "ErrorOutline.esm",
980
980
  "imports": [
981
981
  "index.html"
982
982
  ]
983
983
  },
984
- "_FileDownload.esm.DYcl0HsS.js": {
985
- "file": "static/js/FileDownload.esm.DYcl0HsS.js",
984
+ "_FileDownload.esm.3-xCz5Dn.js": {
985
+ "file": "static/js/FileDownload.esm.3-xCz5Dn.js",
986
986
  "name": "FileDownload.esm",
987
987
  "imports": [
988
988
  "index.html"
989
989
  ]
990
990
  },
991
- "_FileHelper.BG4elCiu.js": {
992
- "file": "static/js/FileHelper.BG4elCiu.js",
991
+ "_FileHelper.B7p1stfH.js": {
992
+ "file": "static/js/FileHelper.B7p1stfH.js",
993
993
  "name": "FileHelper",
994
994
  "imports": [
995
995
  "index.html",
996
996
  "_UploadFileInfo.Dr-zDST7.js"
997
997
  ]
998
998
  },
999
- "_FormClearHelper.CcrsaZUN.js": {
1000
- "file": "static/js/FormClearHelper.CcrsaZUN.js",
999
+ "_FormClearHelper.2gb34MMC.js": {
1000
+ "file": "static/js/FormClearHelper.2gb34MMC.js",
1001
1001
  "name": "FormClearHelper",
1002
1002
  "imports": [
1003
1003
  "index.html"
@@ -1007,36 +1007,36 @@
1007
1007
  "file": "static/js/IFrameUtil.DefezniK.js",
1008
1008
  "name": "IFrameUtil"
1009
1009
  },
1010
- "_InputInstructions.B-hrhnKS.js": {
1011
- "file": "static/js/InputInstructions.B-hrhnKS.js",
1010
+ "_InputInstructions.CMaz--YN.js": {
1011
+ "file": "static/js/InputInstructions.CMaz--YN.js",
1012
1012
  "name": "InputInstructions",
1013
1013
  "imports": [
1014
1014
  "index.html"
1015
1015
  ]
1016
1016
  },
1017
- "_Particles.C1lQDBme.js": {
1018
- "file": "static/js/Particles.C1lQDBme.js",
1017
+ "_Particles.DD6E7DiG.js": {
1018
+ "file": "static/js/Particles.DD6E7DiG.js",
1019
1019
  "name": "Particles",
1020
1020
  "imports": [
1021
1021
  "index.html"
1022
1022
  ]
1023
1023
  },
1024
- "_ProgressBar.D54tj-jr.js": {
1025
- "file": "static/js/ProgressBar.D54tj-jr.js",
1024
+ "_ProgressBar.CBHvskJx.js": {
1025
+ "file": "static/js/ProgressBar.CBHvskJx.js",
1026
1026
  "name": "ProgressBar",
1027
1027
  "imports": [
1028
1028
  "index.html"
1029
1029
  ]
1030
1030
  },
1031
- "_TableChart.esm.BsEqAKaW.js": {
1032
- "file": "static/js/TableChart.esm.BsEqAKaW.js",
1031
+ "_TableChart.esm.DkPOnPiP.js": {
1032
+ "file": "static/js/TableChart.esm.DkPOnPiP.js",
1033
1033
  "name": "TableChart.esm",
1034
1034
  "imports": [
1035
1035
  "index.html"
1036
1036
  ]
1037
1037
  },
1038
- "_Toolbar.COFccaTT.js": {
1039
- "file": "static/js/Toolbar.COFccaTT.js",
1038
+ "_Toolbar.uViLYWIL.js": {
1039
+ "file": "static/js/Toolbar.uViLYWIL.js",
1040
1040
  "name": "Toolbar",
1041
1041
  "imports": [
1042
1042
  "index.html"
@@ -1046,8 +1046,8 @@
1046
1046
  "file": "static/js/UploadFileInfo.Dr-zDST7.js",
1047
1047
  "name": "UploadFileInfo"
1048
1048
  },
1049
- "_WidgetLabelHelpIconInline.tetiwgyt.js": {
1050
- "file": "static/js/WidgetLabelHelpIconInline.tetiwgyt.js",
1049
+ "_WidgetLabelHelpIconInline.DrQP-jZR.js": {
1050
+ "file": "static/js/WidgetLabelHelpIconInline.DrQP-jZR.js",
1051
1051
  "name": "WidgetLabelHelpIconInline",
1052
1052
  "imports": [
1053
1053
  "index.html"
@@ -1064,29 +1064,29 @@
1064
1064
  "file": "static/js/_baseIndexOf.BTknn6Gb.js",
1065
1065
  "name": "_baseIndexOf"
1066
1066
  },
1067
- "_base-input.bCQ8S-FY.js": {
1068
- "file": "static/js/base-input.bCQ8S-FY.js",
1067
+ "_base-input.CWLDgMIQ.js": {
1068
+ "file": "static/js/base-input.CWLDgMIQ.js",
1069
1069
  "name": "base-input",
1070
1070
  "imports": [
1071
1071
  "index.html"
1072
1072
  ]
1073
1073
  },
1074
- "_checkbox.SvhUmEPl.js": {
1075
- "file": "static/js/checkbox.SvhUmEPl.js",
1074
+ "_checkbox.lSnX8MiZ.js": {
1075
+ "file": "static/js/checkbox.lSnX8MiZ.js",
1076
1076
  "name": "checkbox",
1077
1077
  "imports": [
1078
1078
  "index.html"
1079
1079
  ]
1080
1080
  },
1081
- "_createDownloadLinkElement.mdzy2wqu.js": {
1082
- "file": "static/js/createDownloadLinkElement.mdzy2wqu.js",
1081
+ "_createDownloadLinkElement.qE-XPzHd.js": {
1082
+ "file": "static/js/createDownloadLinkElement.qE-XPzHd.js",
1083
1083
  "name": "createDownloadLinkElement",
1084
1084
  "imports": [
1085
1085
  "index.html"
1086
1086
  ]
1087
1087
  },
1088
- "_embed.CjSf3HQ8.js": {
1089
- "file": "static/js/embed.CjSf3HQ8.js",
1088
+ "_embed.C4scQ-hW.js": {
1089
+ "file": "static/js/embed.C4scQ-hW.js",
1090
1090
  "name": "embed",
1091
1091
  "imports": [
1092
1092
  "index.html",
@@ -1095,8 +1095,8 @@
1095
1095
  "_timer.BZio6gjG.js"
1096
1096
  ]
1097
1097
  },
1098
- "_es6.DnRofDlD.js": {
1099
- "file": "static/js/es6.DnRofDlD.js",
1098
+ "_es6.NjGX1Pno.js": {
1099
+ "file": "static/js/es6.NjGX1Pno.js",
1100
1100
  "name": "es6",
1101
1101
  "isDynamicEntry": true,
1102
1102
  "imports": [
@@ -1115,8 +1115,8 @@
1115
1115
  "file": "static/js/formatMoment.C6Hwn6X5.js",
1116
1116
  "name": "formatMoment"
1117
1117
  },
1118
- "_formatNumber.CtWVEKkt.js": {
1119
- "file": "static/js/formatNumber.CtWVEKkt.js",
1118
+ "_formatNumber.DwAT32vb.js": {
1119
+ "file": "static/js/formatNumber.DwAT32vb.js",
1120
1120
  "name": "formatNumber",
1121
1121
  "imports": [
1122
1122
  "_numbro.B9_PXfzp.js",
@@ -1124,15 +1124,15 @@
1124
1124
  "index.html"
1125
1125
  ]
1126
1126
  },
1127
- "_iconPosition.Docx9KVT.js": {
1128
- "file": "static/js/iconPosition.Docx9KVT.js",
1127
+ "_iconPosition.BF4yacmi.js": {
1128
+ "file": "static/js/iconPosition.BF4yacmi.js",
1129
1129
  "name": "iconPosition",
1130
1130
  "imports": [
1131
1131
  "index.html"
1132
1132
  ]
1133
1133
  },
1134
- "_iframeResizer.contentWindow.DPJjr14X.js": {
1135
- "file": "static/js/iframeResizer.contentWindow.DPJjr14X.js",
1134
+ "_iframeResizer.contentWindow.BGF3G8-a.js": {
1135
+ "file": "static/js/iframeResizer.contentWindow.BGF3G8-a.js",
1136
1136
  "name": "iframeResizer.contentWindow",
1137
1137
  "isDynamicEntry": true,
1138
1138
  "imports": [
@@ -1143,67 +1143,67 @@
1143
1143
  "file": "static/js/index.8HslT92O.js",
1144
1144
  "name": "index"
1145
1145
  },
1146
- "_index.CqMzbjp5.js": {
1147
- "file": "static/js/index.CqMzbjp5.js",
1146
+ "_index.BO_-eOf-.js": {
1147
+ "file": "static/js/index.BO_-eOf-.js",
1148
1148
  "name": "index",
1149
1149
  "imports": [
1150
1150
  "index.html"
1151
1151
  ]
1152
1152
  },
1153
- "_index.DgR7E2CV.css": {
1154
- "file": "static/css/index.DgR7E2CV.css",
1155
- "src": "_index.DgR7E2CV.css"
1156
- },
1157
- "_index.bsVAaBS1.js": {
1158
- "file": "static/js/index.bsVAaBS1.js",
1159
- "name": "index"
1160
- },
1161
- "_index.s88CwlpG.js": {
1162
- "file": "static/js/index.s88CwlpG.js",
1153
+ "_index.DEF4aL6h.js": {
1154
+ "file": "static/js/index.DEF4aL6h.js",
1163
1155
  "name": "index",
1164
1156
  "isDynamicEntry": true,
1165
1157
  "imports": [
1166
1158
  "index.html",
1167
- "_withFullScreenWrapper.BBQ6--wm.js",
1168
- "_Toolbar.COFccaTT.js",
1169
- "_FormClearHelper.CcrsaZUN.js",
1159
+ "_withFullScreenWrapper.DGTtbbLe.js",
1160
+ "_Toolbar.uViLYWIL.js",
1161
+ "_FormClearHelper.2gb34MMC.js",
1170
1162
  "_moment.C7qA8nIE.js",
1171
- "_pandasStylerUtils.pLaEIPZw.js",
1163
+ "_pandasStylerUtils.BQNPcCRH.js",
1172
1164
  "_numbro.B9_PXfzp.js",
1173
1165
  "_index.8HslT92O.js",
1174
- "_main.Cs9yv8mP.js",
1175
- "_throttle.DM63_0Ui.js",
1176
- "_formatNumber.CtWVEKkt.js",
1166
+ "_main.DCurQa2X.js",
1167
+ "_throttle.DpJVqfiM.js",
1168
+ "_formatNumber.DwAT32vb.js",
1177
1169
  "_formatMoment.C6Hwn6X5.js",
1178
- "_checkbox.SvhUmEPl.js",
1179
- "_createDownloadLinkElement.mdzy2wqu.js",
1180
- "_toConsumableArray.C-vxP4eC.js",
1181
- "_FileDownload.esm.DYcl0HsS.js",
1170
+ "_checkbox.lSnX8MiZ.js",
1171
+ "_createDownloadLinkElement.qE-XPzHd.js",
1172
+ "_toConsumableArray.nocm-m15.js",
1173
+ "_FileDownload.esm.3-xCz5Dn.js",
1182
1174
  "__arrayIncludes.B19Iyn2B.js"
1183
1175
  ],
1184
1176
  "dynamicImports": [
1185
1177
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
1186
1178
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
1187
- "_es6.DnRofDlD.js"
1179
+ "_es6.NjGX1Pno.js"
1188
1180
  ],
1189
1181
  "css": [
1190
1182
  "static/css/index.DgR7E2CV.css"
1191
1183
  ]
1192
1184
  },
1193
- "_input.DnsJ8I9O.js": {
1194
- "file": "static/js/input.DnsJ8I9O.js",
1185
+ "_index.DgR7E2CV.css": {
1186
+ "file": "static/css/index.DgR7E2CV.css",
1187
+ "src": "_index.DgR7E2CV.css"
1188
+ },
1189
+ "_index.bsVAaBS1.js": {
1190
+ "file": "static/js/index.bsVAaBS1.js",
1191
+ "name": "index"
1192
+ },
1193
+ "_input.BViGVyAy.js": {
1194
+ "file": "static/js/input.BViGVyAy.js",
1195
1195
  "name": "input",
1196
1196
  "imports": [
1197
1197
  "index.html",
1198
- "_base-input.bCQ8S-FY.js"
1198
+ "_base-input.CWLDgMIQ.js"
1199
1199
  ]
1200
1200
  },
1201
1201
  "_inputUtils.CptNuJwn.js": {
1202
1202
  "file": "static/js/inputUtils.CptNuJwn.js",
1203
1203
  "name": "inputUtils"
1204
1204
  },
1205
- "_main.Cs9yv8mP.js": {
1206
- "file": "static/js/main.Cs9yv8mP.js",
1205
+ "_main.DCurQa2X.js": {
1206
+ "file": "static/js/main.DCurQa2X.js",
1207
1207
  "name": "main",
1208
1208
  "imports": [
1209
1209
  "index.html"
@@ -1217,8 +1217,8 @@
1217
1217
  "file": "static/js/numbro.B9_PXfzp.js",
1218
1218
  "name": "numbro"
1219
1219
  },
1220
- "_pandasStylerUtils.pLaEIPZw.js": {
1221
- "file": "static/js/pandasStylerUtils.pLaEIPZw.js",
1220
+ "_pandasStylerUtils.BQNPcCRH.js": {
1221
+ "file": "static/js/pandasStylerUtils.BQNPcCRH.js",
1222
1222
  "name": "pandasStylerUtils",
1223
1223
  "imports": [
1224
1224
  "index.html",
@@ -1231,8 +1231,8 @@
1231
1231
  "file": "static/js/sprintf.DpPCfzXw.js",
1232
1232
  "name": "sprintf"
1233
1233
  },
1234
- "_styled-components.571s8DEN.js": {
1235
- "file": "static/js/styled-components.571s8DEN.js",
1234
+ "_styled-components.C0Ar4ws1.js": {
1235
+ "file": "static/js/styled-components.C0Ar4ws1.js",
1236
1236
  "name": "styled-components",
1237
1237
  "imports": [
1238
1238
  "index.html"
@@ -1245,15 +1245,15 @@
1245
1245
  "_value.DaKxGC7O.js"
1246
1246
  ]
1247
1247
  },
1248
- "_throttle.DM63_0Ui.js": {
1249
- "file": "static/js/throttle.DM63_0Ui.js",
1248
+ "_throttle.DpJVqfiM.js": {
1249
+ "file": "static/js/throttle.DpJVqfiM.js",
1250
1250
  "name": "throttle",
1251
1251
  "imports": [
1252
1252
  "index.html"
1253
1253
  ]
1254
1254
  },
1255
- "_timepicker.pd9YKJun.js": {
1256
- "file": "static/js/timepicker.pd9YKJun.js",
1255
+ "_timepicker.plxFjD2l.js": {
1256
+ "file": "static/js/timepicker.plxFjD2l.js",
1257
1257
  "name": "timepicker",
1258
1258
  "imports": [
1259
1259
  "index.html"
@@ -1266,15 +1266,15 @@
1266
1266
  "_value.DaKxGC7O.js"
1267
1267
  ]
1268
1268
  },
1269
- "_toConsumableArray.C-vxP4eC.js": {
1270
- "file": "static/js/toConsumableArray.C-vxP4eC.js",
1269
+ "_toConsumableArray.nocm-m15.js": {
1270
+ "file": "static/js/toConsumableArray.nocm-m15.js",
1271
1271
  "name": "toConsumableArray",
1272
1272
  "imports": [
1273
1273
  "index.html"
1274
1274
  ]
1275
1275
  },
1276
- "_uniqueId.Cx7-DRlG.js": {
1277
- "file": "static/js/uniqueId.Cx7-DRlG.js",
1276
+ "_uniqueId.BgdRqRrS.js": {
1277
+ "file": "static/js/uniqueId.BgdRqRrS.js",
1278
1278
  "name": "uniqueId",
1279
1279
  "imports": [
1280
1280
  "index.html"
@@ -1284,42 +1284,42 @@
1284
1284
  "file": "static/js/urls.BwSlolu9.js",
1285
1285
  "name": "urls"
1286
1286
  },
1287
- "_useBasicWidgetState.S1_DeDAF.js": {
1288
- "file": "static/js/useBasicWidgetState.S1_DeDAF.js",
1287
+ "_useBasicWidgetState.CD1aG6-a.js": {
1288
+ "file": "static/js/useBasicWidgetState.CD1aG6-a.js",
1289
1289
  "name": "useBasicWidgetState",
1290
1290
  "imports": [
1291
1291
  "index.html",
1292
- "_FormClearHelper.CcrsaZUN.js"
1292
+ "_FormClearHelper.2gb34MMC.js"
1293
1293
  ]
1294
1294
  },
1295
- "_useIntlLocale.BwbkZTj-.js": {
1296
- "file": "static/js/useIntlLocale.BwbkZTj-.js",
1295
+ "_useIntlLocale.DLuHgCFO.js": {
1296
+ "file": "static/js/useIntlLocale.DLuHgCFO.js",
1297
1297
  "name": "useIntlLocale",
1298
1298
  "imports": [
1299
1299
  "index.html",
1300
- "_timepicker.pd9YKJun.js",
1301
- "_input.DnsJ8I9O.js",
1302
- "_base-input.bCQ8S-FY.js"
1300
+ "_timepicker.plxFjD2l.js",
1301
+ "_input.BViGVyAy.js",
1302
+ "_base-input.CWLDgMIQ.js"
1303
1303
  ]
1304
1304
  },
1305
- "_useTextInputAutoExpand.DJy7lTuU.js": {
1306
- "file": "static/js/useTextInputAutoExpand.DJy7lTuU.js",
1305
+ "_useTextInputAutoExpand.5E_gpUfB.js": {
1306
+ "file": "static/js/useTextInputAutoExpand.5E_gpUfB.js",
1307
1307
  "name": "useTextInputAutoExpand",
1308
1308
  "imports": [
1309
1309
  "index.html",
1310
- "_base-input.bCQ8S-FY.js"
1310
+ "_base-input.CWLDgMIQ.js"
1311
1311
  ]
1312
1312
  },
1313
- "_useUpdateUiValue.KsXqwLCs.js": {
1314
- "file": "static/js/useUpdateUiValue.KsXqwLCs.js",
1313
+ "_useUpdateUiValue.DWX5Hfxx.js": {
1314
+ "file": "static/js/useUpdateUiValue.DWX5Hfxx.js",
1315
1315
  "name": "useUpdateUiValue",
1316
1316
  "imports": [
1317
1317
  "index.html",
1318
1318
  "_inputUtils.CptNuJwn.js"
1319
1319
  ]
1320
1320
  },
1321
- "_useWaveformController.DQSftrKy.js": {
1322
- "file": "static/js/useWaveformController.DQSftrKy.js",
1321
+ "_useWaveformController.B3tf7xqQ.js": {
1322
+ "file": "static/js/useWaveformController.B3tf7xqQ.js",
1323
1323
  "name": "useWaveformController",
1324
1324
  "imports": [
1325
1325
  "index.html"
@@ -1333,22 +1333,22 @@
1333
1333
  "file": "static/js/value.DaKxGC7O.js",
1334
1334
  "name": "value"
1335
1335
  },
1336
- "_withCalculatedWidth.Cf1aBuuB.js": {
1337
- "file": "static/js/withCalculatedWidth.Cf1aBuuB.js",
1336
+ "_withCalculatedWidth.kZou334h.js": {
1337
+ "file": "static/js/withCalculatedWidth.kZou334h.js",
1338
1338
  "name": "withCalculatedWidth",
1339
1339
  "imports": [
1340
1340
  "index.html"
1341
1341
  ]
1342
1342
  },
1343
- "_withFullScreenWrapper.BBQ6--wm.js": {
1344
- "file": "static/js/withFullScreenWrapper.BBQ6--wm.js",
1343
+ "_withFullScreenWrapper.DGTtbbLe.js": {
1344
+ "file": "static/js/withFullScreenWrapper.DGTtbbLe.js",
1345
1345
  "name": "withFullScreenWrapper",
1346
1346
  "imports": [
1347
1347
  "index.html"
1348
1348
  ]
1349
1349
  },
1350
1350
  "index.html": {
1351
- "file": "static/js/index.DQm9mE0T.js",
1351
+ "file": "static/js/index.ayxJkxJS.js",
1352
1352
  "name": "index",
1353
1353
  "src": "index.html",
1354
1354
  "isEntry": true,
@@ -1378,7 +1378,7 @@
1378
1378
  "../lib/src/components/elements/Toast/index.ts",
1379
1379
  "../lib/src/components/elements/Video/index.ts",
1380
1380
  "../lib/src/components/widgets/AudioInput/index.ts",
1381
- "_index.s88CwlpG.js",
1381
+ "_index.DEF4aL6h.js",
1382
1382
  "../lib/src/components/widgets/Button/index.ts",
1383
1383
  "../lib/src/components/widgets/ButtonGroup/index.ts",
1384
1384
  "../lib/src/components/widgets/CustomComponent/index.ts",
@@ -1402,7 +1402,7 @@
1402
1402
  "../lib/src/components/widgets/BidiComponent/index.tsx",
1403
1403
  "../node_modules/node-emoji/lib/index.js",
1404
1404
  "../node_modules/axios/index.js",
1405
- "_iframeResizer.contentWindow.DPJjr14X.js"
1405
+ "_iframeResizer.contentWindow.BGF3G8-a.js"
1406
1406
  ],
1407
1407
  "css": [
1408
1408
  "static/css/index.BUP6fTcR.css"