streamlit 1.51.0__py3-none-any.whl → 1.52.0__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 (314) hide show
  1. streamlit/__init__.py +1 -0
  2. streamlit/commands/execution_control.py +89 -14
  3. streamlit/components/v1/component_arrow.py +7 -7
  4. streamlit/components/v2/__init__.py +59 -3
  5. streamlit/components/v2/bidi_component/main.py +161 -13
  6. streamlit/components/v2/bidi_component/serialization.py +13 -6
  7. streamlit/components/v2/component_manager.py +11 -3
  8. streamlit/components/v2/component_registry.py +18 -1
  9. streamlit/components/v2/types.py +2 -2
  10. streamlit/connections/snowflake_connection.py +1 -1
  11. streamlit/connections/snowpark_connection.py +1 -1
  12. streamlit/dataframe_util.py +18 -18
  13. streamlit/delta_generator.py +7 -0
  14. streamlit/delta_generator_singletons.py +8 -14
  15. streamlit/elements/alert.py +16 -0
  16. streamlit/elements/arrow.py +36 -6
  17. streamlit/elements/bokeh_chart.py +10 -78
  18. streamlit/elements/code.py +2 -2
  19. streamlit/elements/deck_gl_json_chart.py +1 -1
  20. streamlit/elements/exception.py +1 -1
  21. streamlit/elements/form.py +27 -0
  22. streamlit/elements/heading.py +60 -5
  23. streamlit/elements/html.py +13 -2
  24. streamlit/elements/image.py +1 -1
  25. streamlit/elements/layouts.py +28 -22
  26. streamlit/elements/lib/built_in_chart_utils.py +49 -16
  27. streamlit/elements/lib/color_util.py +1 -1
  28. streamlit/elements/lib/column_config_utils.py +6 -5
  29. streamlit/elements/lib/layout_utils.py +50 -0
  30. streamlit/elements/lib/pandas_styler_utils.py +17 -9
  31. streamlit/elements/lib/shortcut_utils.py +152 -0
  32. streamlit/elements/markdown.py +50 -3
  33. streamlit/elements/metric.py +31 -1
  34. streamlit/elements/plotly_chart.py +75 -6
  35. streamlit/elements/spinner.py +1 -1
  36. streamlit/elements/text.py +20 -3
  37. streamlit/elements/toast.py +2 -0
  38. streamlit/elements/vega_charts.py +17 -1
  39. streamlit/elements/widgets/audio_input.py +8 -7
  40. streamlit/elements/widgets/button.py +279 -40
  41. streamlit/elements/widgets/button_group.py +27 -2
  42. streamlit/elements/widgets/camera_input.py +1 -1
  43. streamlit/elements/widgets/chat.py +300 -42
  44. streamlit/elements/widgets/color_picker.py +7 -0
  45. streamlit/elements/widgets/data_editor.py +68 -28
  46. streamlit/elements/widgets/file_uploader.py +4 -1
  47. streamlit/elements/widgets/number_input.py +2 -0
  48. streamlit/elements/widgets/text_widgets.py +2 -0
  49. streamlit/elements/widgets/time_widgets.py +581 -9
  50. streamlit/errors.py +22 -0
  51. streamlit/git_util.py +1 -1
  52. streamlit/navigation/page.py +7 -0
  53. streamlit/net_util.py +2 -2
  54. streamlit/proto/Alert_pb2.pyi +3 -3
  55. streamlit/proto/AppPage_pb2.pyi +7 -1
  56. streamlit/proto/ArrowData_pb2.pyi +7 -1
  57. streamlit/proto/ArrowNamedDataSet_pb2.pyi +7 -1
  58. streamlit/proto/ArrowVegaLiteChart_pb2.pyi +7 -1
  59. streamlit/proto/Arrow_pb2.py +10 -10
  60. streamlit/proto/Arrow_pb2.pyi +19 -12
  61. streamlit/proto/AudioInput_pb2.pyi +7 -1
  62. streamlit/proto/Audio_pb2.pyi +7 -1
  63. streamlit/proto/AuthRedirect_pb2.pyi +7 -1
  64. streamlit/proto/AutoRerun_pb2.pyi +7 -1
  65. streamlit/proto/BackMsg_pb2.py +4 -2
  66. streamlit/proto/BackMsg_pb2.pyi +34 -4
  67. streamlit/proto/Balloons_pb2.pyi +7 -1
  68. streamlit/proto/BidiComponent_pb2.pyi +10 -4
  69. streamlit/proto/Block_pb2.pyi +35 -35
  70. streamlit/proto/BokehChart_pb2.pyi +7 -1
  71. streamlit/proto/ButtonGroup_pb2.pyi +9 -9
  72. streamlit/proto/Button_pb2.py +2 -2
  73. streamlit/proto/Button_pb2.pyi +11 -2
  74. streamlit/proto/CameraInput_pb2.pyi +7 -1
  75. streamlit/proto/ChatInput_pb2.py +6 -6
  76. streamlit/proto/ChatInput_pb2.pyi +18 -6
  77. streamlit/proto/Checkbox_pb2.pyi +3 -3
  78. streamlit/proto/ClientState_pb2.pyi +10 -4
  79. streamlit/proto/Code_pb2.pyi +7 -1
  80. streamlit/proto/ColorPicker_pb2.pyi +7 -1
  81. streamlit/proto/Common_pb2.py +3 -3
  82. streamlit/proto/Common_pb2.pyi +35 -23
  83. streamlit/proto/Components_pb2.pyi +19 -13
  84. streamlit/proto/DataFrame_pb2.pyi +55 -49
  85. streamlit/proto/DateInput_pb2.pyi +7 -1
  86. streamlit/proto/DateTimeInput_pb2.py +28 -0
  87. streamlit/proto/DateTimeInput_pb2.pyi +92 -0
  88. streamlit/proto/DeckGlJsonChart_pb2.pyi +3 -3
  89. streamlit/proto/Delta_pb2.pyi +7 -1
  90. streamlit/proto/DocString_pb2.pyi +10 -4
  91. streamlit/proto/DownloadButton_pb2.py +2 -2
  92. streamlit/proto/DownloadButton_pb2.pyi +16 -2
  93. streamlit/proto/Element_pb2.py +5 -3
  94. streamlit/proto/Element_pb2.pyi +23 -5
  95. streamlit/proto/Empty_pb2.pyi +7 -1
  96. streamlit/proto/Exception_pb2.pyi +7 -1
  97. streamlit/proto/Favicon_pb2.pyi +7 -1
  98. streamlit/proto/FileUploader_pb2.pyi +7 -1
  99. streamlit/proto/ForwardMsg_pb2.py +12 -10
  100. streamlit/proto/ForwardMsg_pb2.pyi +42 -15
  101. streamlit/proto/GapSize_pb2.pyi +4 -4
  102. streamlit/proto/GitInfo_pb2.pyi +3 -3
  103. streamlit/proto/GraphVizChart_pb2.pyi +7 -1
  104. streamlit/proto/Heading_pb2.pyi +7 -1
  105. streamlit/proto/HeightConfig_pb2.pyi +7 -1
  106. streamlit/proto/Html_pb2.py +2 -2
  107. streamlit/proto/Html_pb2.pyi +11 -2
  108. streamlit/proto/IFrame_pb2.pyi +7 -1
  109. streamlit/proto/Image_pb2.pyi +10 -4
  110. streamlit/proto/Json_pb2.pyi +7 -1
  111. streamlit/proto/LabelVisibilityMessage_pb2.pyi +3 -3
  112. streamlit/proto/LinkButton_pb2.py +2 -2
  113. streamlit/proto/LinkButton_pb2.pyi +15 -2
  114. streamlit/proto/Logo_pb2.pyi +7 -1
  115. streamlit/proto/Markdown_pb2.pyi +3 -3
  116. streamlit/proto/Metric_pb2.pyi +7 -7
  117. streamlit/proto/MetricsEvent_pb2.pyi +10 -4
  118. streamlit/proto/MultiSelect_pb2.pyi +7 -1
  119. streamlit/proto/NamedDataSet_pb2.pyi +7 -1
  120. streamlit/proto/Navigation_pb2.pyi +3 -3
  121. streamlit/proto/NewSession_pb2.pyi +40 -40
  122. streamlit/proto/NumberInput_pb2.pyi +3 -3
  123. streamlit/proto/PageConfig_pb2.pyi +7 -7
  124. streamlit/proto/PageInfo_pb2.pyi +7 -1
  125. streamlit/proto/PageLink_pb2.py +2 -2
  126. streamlit/proto/PageLink_pb2.pyi +11 -2
  127. streamlit/proto/PageNotFound_pb2.pyi +7 -1
  128. streamlit/proto/PageProfile_pb2.pyi +13 -7
  129. streamlit/proto/PagesChanged_pb2.pyi +7 -1
  130. streamlit/proto/ParentMessage_pb2.pyi +7 -1
  131. streamlit/proto/PlotlyChart_pb2.pyi +6 -6
  132. streamlit/proto/Progress_pb2.pyi +7 -1
  133. streamlit/proto/Radio_pb2.pyi +7 -1
  134. streamlit/proto/RootContainer_pb2.pyi +1 -1
  135. streamlit/proto/Selectbox_pb2.pyi +7 -1
  136. streamlit/proto/SessionEvent_pb2.pyi +7 -1
  137. streamlit/proto/SessionStatus_pb2.pyi +7 -1
  138. streamlit/proto/Skeleton_pb2.pyi +3 -3
  139. streamlit/proto/Slider_pb2.pyi +5 -5
  140. streamlit/proto/Snow_pb2.pyi +7 -1
  141. streamlit/proto/Space_pb2.pyi +7 -1
  142. streamlit/proto/Spinner_pb2.pyi +7 -1
  143. streamlit/proto/TextAlignmentConfig_pb2.py +29 -0
  144. streamlit/proto/TextAlignmentConfig_pb2.pyi +68 -0
  145. streamlit/proto/TextArea_pb2.pyi +7 -1
  146. streamlit/proto/TextInput_pb2.pyi +3 -3
  147. streamlit/proto/Text_pb2.pyi +7 -1
  148. streamlit/proto/TimeInput_pb2.pyi +7 -1
  149. streamlit/proto/Toast_pb2.pyi +7 -1
  150. streamlit/proto/VegaLiteChart_pb2.pyi +7 -1
  151. streamlit/proto/Video_pb2.pyi +6 -6
  152. streamlit/proto/WidgetStates_pb2.pyi +10 -4
  153. streamlit/proto/WidthConfig_pb2.pyi +7 -1
  154. streamlit/proto/openmetrics_data_model_pb2.pyi +52 -52
  155. streamlit/runtime/app_session.py +38 -1
  156. streamlit/runtime/caching/cache_data_api.py +1 -1
  157. streamlit/runtime/caching/cache_resource_api.py +2 -2
  158. streamlit/runtime/caching/cache_utils.py +1 -1
  159. streamlit/runtime/caching/hashing.py +1 -1
  160. streamlit/runtime/download_data_util.py +53 -0
  161. streamlit/runtime/forward_msg_queue.py +1 -0
  162. streamlit/runtime/media_file_manager.py +178 -2
  163. streamlit/runtime/metrics_util.py +87 -3
  164. streamlit/runtime/scriptrunner/script_runner.py +3 -1
  165. streamlit/runtime/state/query_params.py +80 -29
  166. streamlit/runtime/state/session_state.py +2 -2
  167. streamlit/static/index.html +1 -1
  168. streamlit/static/manifest.json +530 -229
  169. streamlit/static/static/js/{ErrorOutline.esm.YoJdlW1p.js → ErrorOutline.esm.ZJDbmVTx.js} +1 -1
  170. streamlit/static/static/js/{FileDownload.esm.Ddx8VEYy.js → FileDownload.esm.Dx0vI3vH.js} +1 -1
  171. streamlit/static/static/js/{FileHelper.90EtOmj9.js → FileHelper.B7Ero7qQ.js} +3 -3
  172. streamlit/static/static/js/{FormClearHelper.BB1Km6eP.js → FormClearHelper.CG2XN1_g.js} +1 -1
  173. streamlit/static/static/js/IFrameUtil.DefezniK.js +1 -0
  174. streamlit/static/static/js/InputInstructions.Cj5-1zf6.js +1 -0
  175. streamlit/static/static/js/Particles.BfWfv0Aw.js +1 -0
  176. streamlit/static/static/js/{ProgressBar.DLY8H6nE.js → ProgressBar.CGQ8OgfO.js} +2 -2
  177. streamlit/static/static/js/StreamlitSyntaxHighlighter.DTKLpwhl.js +20 -0
  178. streamlit/static/static/js/{Toolbar.D8nHCkuz.js → Toolbar.B2qFUmd9.js} +1 -1
  179. streamlit/static/static/js/_arrayIncludes.B19Iyn2B.js +1 -0
  180. streamlit/static/static/js/_baseIndexOf.BTknn6Gb.js +1 -0
  181. streamlit/static/static/js/{base-input.CJGiNqed.js → base-input.o9tL8MDP.js} +4 -4
  182. streamlit/static/static/js/{checkbox.Cpdd482O.js → checkbox.0BeV1IBL.js} +1 -1
  183. streamlit/static/static/js/{createSuper.CuQIogbW.js → createSuper.RBO59fEm.js} +1 -1
  184. streamlit/static/static/js/data-grid-overlay-editor.CiTkUy0t.js +1 -0
  185. streamlit/static/static/js/{downloader.CN0K7xlu.js → downloader.DwNZg3Mw.js} +1 -1
  186. streamlit/static/static/js/embed.XT9xNd3F.js +195 -0
  187. streamlit/static/static/js/{es6.BJcsVXQ0.js → es6.x9KsYQg-.js} +2 -2
  188. streamlit/static/static/js/{iframeResizer.contentWindow.XzUvQqcZ.js → iframeResizer.contentWindow.ZVXpMPi0.js} +1 -1
  189. streamlit/static/static/js/index.5VPOamri.js +1 -0
  190. streamlit/static/static/js/index.8HslT92O.js +14 -0
  191. streamlit/static/static/js/index.AnXMIBz3.js +7 -0
  192. streamlit/static/static/js/index.B0yp3bM1.js +6 -0
  193. streamlit/static/static/js/index.B1fRb5wF.js +1 -0
  194. streamlit/static/static/js/index.B527JZdO.js +3 -0
  195. streamlit/static/static/js/index.BHgV-yW4.js +1 -0
  196. streamlit/static/static/js/index.BQr-XwGV.js +1 -0
  197. streamlit/static/static/js/index.BTtmaLDB.js +1 -0
  198. streamlit/static/static/js/index.BWB_91TA.js +1 -0
  199. streamlit/static/static/js/index.BfEKaEmw.js +1 -0
  200. streamlit/static/static/js/index.BfXjTO8b.js +1 -0
  201. streamlit/static/static/js/index.Bjy4NRu9.js +3 -0
  202. streamlit/static/static/js/index.Bu5JWpT_.js +1 -0
  203. streamlit/static/static/js/index.BuCx76ZV.js +1 -0
  204. streamlit/static/static/js/index.BxjzhVUb.js +2 -0
  205. streamlit/static/static/js/index.By55VdPY.js +1 -0
  206. streamlit/static/static/js/index.CF5MxTbK.js +1 -0
  207. streamlit/static/static/js/index.CLmq_z9K.js +1 -0
  208. streamlit/static/static/js/index.CNH4rdSz.js +1 -0
  209. streamlit/static/static/js/{index.D3GPA5k4.js → index.CTgm_-jO.js} +9 -40
  210. streamlit/static/static/js/index.C_rK-Swb.js +188 -0
  211. streamlit/static/static/js/index.CjozwSzS.js +1 -0
  212. streamlit/static/static/js/{index.DOFlg3dS.js → index.CkGVt6-G.js} +1 -1
  213. streamlit/static/static/js/index.CuvXOyER.js +2 -0
  214. streamlit/static/static/js/{index.B_dWA3vd.js → index.CyUHWoCC.js} +2 -2
  215. streamlit/static/static/js/index.CyroQtI4.js +2 -0
  216. streamlit/static/static/js/index.D6HmkoDm.js +263 -0
  217. streamlit/static/static/js/index.DAqCNvsO.js +1 -0
  218. streamlit/static/static/js/index.DB_w_CZQ.js +1 -0
  219. streamlit/static/static/js/index.DBalctjj.js +2 -0
  220. streamlit/static/static/js/index.DK0RFJUG.js +11 -0
  221. streamlit/static/static/js/index.DMxc2XFp.js +151 -0
  222. streamlit/static/static/js/index.DO5utP74.js +2 -0
  223. streamlit/static/static/js/index.DS7lf09n.js +1 -0
  224. streamlit/static/static/js/index.DWexTVLY.js +1 -0
  225. streamlit/static/static/js/index.DXxnU5ej.js +1 -0
  226. streamlit/static/static/js/index.DcU3uDvB.js +2 -0
  227. streamlit/static/static/js/index.DlltaH7J.js +1 -0
  228. streamlit/static/static/js/index.DpNTZz82.js +27 -0
  229. streamlit/static/static/js/index.Dr9HIhQw.js +1 -0
  230. streamlit/static/static/js/index.DsgAU5lc.js +1 -0
  231. streamlit/static/static/js/{index.DPUXkcQL.js → index.KfXqjDYy.js} +1 -1
  232. streamlit/static/static/js/index.PaidgjCs.js +1 -0
  233. streamlit/static/static/js/index.RJZuWCGA.js +1 -0
  234. streamlit/static/static/js/{index.CxIUUfab.js → index.hbeqcRTn.js} +53 -122
  235. streamlit/static/static/js/index.q5hIQwAY.js +1 -0
  236. streamlit/static/static/js/index.rORSX6IW.js +1 -0
  237. streamlit/static/static/js/index.uSX757_v.js +1 -0
  238. streamlit/static/static/js/index.x_QRaLMd.js +1 -0
  239. streamlit/static/static/js/{input.D4MN_FzN.js → input.D5oh9-aB.js} +2 -2
  240. streamlit/static/static/js/main.q9oGOg0H.js +13 -0
  241. streamlit/static/static/js/{memory.DrZjtdGT.js → memory.5kCSFUJS.js} +1 -1
  242. streamlit/static/static/js/moment.C3j7ZXd7.js +4 -0
  243. streamlit/static/static/js/number-overlay-editor.Cn_LsK8N.js +9 -0
  244. streamlit/static/static/js/pandasStylerUtils.BqhXt51_.js +1 -0
  245. streamlit/static/static/js/{possibleConstructorReturn.exeeJQEP.js → possibleConstructorReturn.DD9NK1Z8.js} +1 -1
  246. streamlit/static/static/js/{sandbox.ClO3IuUr.js → sandbox.DACSyz29.js} +1 -1
  247. streamlit/static/static/js/styled-components.C3R090At.js +1 -0
  248. streamlit/static/static/js/threshold.Q1mXg5rX.js +1 -0
  249. streamlit/static/static/js/throttle.B0GR3Iyz.js +1 -0
  250. streamlit/static/static/js/{timepicker.DAhu-vcF.js → timepicker.BdhzPxrv.js} +1 -1
  251. streamlit/static/static/js/timer.C2hYhUse.js +1 -0
  252. streamlit/static/static/js/{toConsumableArray.DNbljYEC.js → toConsumableArray.Db2pdqM2.js} +1 -1
  253. streamlit/static/static/js/uniqueId.CtqIr-Yh.js +1 -0
  254. streamlit/static/static/js/urls.BwSlolu9.js +1 -0
  255. streamlit/static/static/js/{useBasicWidgetState.D6sOH6oI.js → useBasicWidgetState.Bfp6TnSw.js} +1 -1
  256. streamlit/static/static/js/useIntlLocale.hRV75Xgj.js +12 -0
  257. streamlit/static/static/js/{useTextInputAutoExpand.4u3_GcuN.js → useTextInputAutoExpand.QepX7n8Y.js} +1 -1
  258. streamlit/static/static/js/useUpdateUiValue.DHx8TzX6.js +1 -0
  259. streamlit/static/static/js/useWaveformController.WxVzpzEX.js +1 -0
  260. streamlit/static/static/js/value.B4vHRSi7.js +1 -0
  261. streamlit/static/static/js/withCalculatedWidth.DcKeRSWJ.js +1 -0
  262. streamlit/static/static/js/withFullScreenWrapper.CrHddARq.js +1 -0
  263. streamlit/string_util.py +8 -1
  264. streamlit/testing/v1/app_test.py +15 -0
  265. streamlit/testing/v1/element_tree.py +62 -0
  266. streamlit/web/bootstrap.py +24 -0
  267. streamlit/web/server/oauth_authlib_routes.py +5 -2
  268. streamlit/web/server/upload_file_request_handler.py +16 -0
  269. {streamlit-1.51.0.dist-info → streamlit-1.52.0.dist-info}/METADATA +9 -5
  270. {streamlit-1.51.0.dist-info → streamlit-1.52.0.dist-info}/RECORD +274 -239
  271. streamlit/static/static/js/InputInstructions.jhH15PqV.js +0 -1
  272. streamlit/static/static/js/Particles.DUsputn1.js +0 -1
  273. streamlit/static/static/js/data-grid-overlay-editor.2Ufgxc6y.js +0 -1
  274. streamlit/static/static/js/index.B1ZQh4P1.js +0 -1
  275. streamlit/static/static/js/index.BKstZk0M.js +0 -27
  276. streamlit/static/static/js/index.BMcFsUee.js +0 -1
  277. streamlit/static/static/js/index.BR-IdcTb.js +0 -2
  278. streamlit/static/static/js/index.BgnZEMVh.js +0 -1
  279. streamlit/static/static/js/index.BohqXifI.js +0 -1
  280. streamlit/static/static/js/index.Br5nxKNj.js +0 -2
  281. streamlit/static/static/js/index.BrIKVbNc.js +0 -3
  282. streamlit/static/static/js/index.BtWUPzle.js +0 -1
  283. streamlit/static/static/js/index.C0RLraek.js +0 -1
  284. streamlit/static/static/js/index.CAIjskgG.js +0 -1
  285. streamlit/static/static/js/index.CAj-7vWz.js +0 -949
  286. streamlit/static/static/js/index.CMtEit2O.js +0 -1
  287. streamlit/static/static/js/index.CkRlykEE.js +0 -12
  288. streamlit/static/static/js/index.CmN3FXfI.js +0 -1617
  289. streamlit/static/static/js/index.CwbFI1_-.js +0 -1
  290. streamlit/static/static/js/index.D2KPNy7e.js +0 -1
  291. streamlit/static/static/js/index.DGAh7DMq.js +0 -1
  292. streamlit/static/static/js/index.DKb_NvmG.js +0 -197
  293. streamlit/static/static/js/index.DMqgUYKq.js +0 -1
  294. streamlit/static/static/js/index.DX1xY89g.js +0 -1
  295. streamlit/static/static/js/index.DYATBCsq.js +0 -2
  296. streamlit/static/static/js/index.DaSmGJ76.js +0 -3
  297. streamlit/static/static/js/index.Dd7bMeLP.js +0 -1
  298. streamlit/static/static/js/index.DjmmgI5U.js +0 -1
  299. streamlit/static/static/js/index.Dq56CyM2.js +0 -1
  300. streamlit/static/static/js/index.DuiXaS5_.js +0 -7
  301. streamlit/static/static/js/index.DvFidMLe.js +0 -2
  302. streamlit/static/static/js/index.DwkhC5Pc.js +0 -1
  303. streamlit/static/static/js/index.Q-3sFn1v.js +0 -1
  304. streamlit/static/static/js/index.QJ5QO9sJ.js +0 -1
  305. streamlit/static/static/js/index.VwTaeety.js +0 -1
  306. streamlit/static/static/js/index.YOqQbeX8.js +0 -1
  307. streamlit/static/static/js/number-overlay-editor.DRwAw1In.js +0 -9
  308. streamlit/static/static/js/uniqueId.oG4Gvj1v.js +0 -1
  309. streamlit/static/static/js/useUpdateUiValue.F2R3eTeR.js +0 -1
  310. streamlit/static/static/js/withFullScreenWrapper.zothJIsI.js +0 -1
  311. {streamlit-1.51.0.data → streamlit-1.52.0.data}/scripts/streamlit.cmd +0 -0
  312. {streamlit-1.51.0.dist-info → streamlit-1.52.0.dist-info}/WHEEL +0 -0
  313. {streamlit-1.51.0.dist-info → streamlit-1.52.0.dist-info}/entry_points.txt +0 -0
  314. {streamlit-1.51.0.dist-info → streamlit-1.52.0.dist-info}/top_level.txt +0 -0
@@ -35,28 +35,51 @@
35
35
  "file": "static/media/flake-2.BnWSExPC.png",
36
36
  "src": "../lib/src/assets/img/snow/flake-2.png"
37
37
  },
38
+ "../lib/src/components/elements/ArrowTable/index.ts": {
39
+ "file": "static/js/index.RJZuWCGA.js",
40
+ "name": "index",
41
+ "src": "../lib/src/components/elements/ArrowTable/index.ts",
42
+ "isDynamicEntry": true,
43
+ "imports": [
44
+ "index.html",
45
+ "_pandasStylerUtils.BqhXt51_.js",
46
+ "_moment.C3j7ZXd7.js",
47
+ "__baseIndexOf.BTknn6Gb.js"
48
+ ]
49
+ },
38
50
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts": {
39
- "file": "static/js/index.D2KPNy7e.js",
51
+ "file": "static/js/index.DAqCNvsO.js",
40
52
  "name": "index",
41
53
  "src": "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
42
54
  "isDynamicEntry": true,
43
55
  "imports": [
44
56
  "index.html",
45
- "_withFullScreenWrapper.zothJIsI.js",
46
- "_Toolbar.D8nHCkuz.js",
47
- "_index.DKb_NvmG.js",
48
- "_FormClearHelper.BB1Km6eP.js",
57
+ "_withFullScreenWrapper.CrHddARq.js",
58
+ "_Toolbar.B2qFUmd9.js",
59
+ "_index.C_rK-Swb.js",
60
+ "_embed.XT9xNd3F.js",
61
+ "_FormClearHelper.CG2XN1_g.js",
62
+ "_moment.C3j7ZXd7.js",
63
+ "_pandasStylerUtils.BqhXt51_.js",
64
+ "__baseIndexOf.BTknn6Gb.js",
49
65
  "_sprintf.D7DtBTRn.js",
50
- "_checkbox.Cpdd482O.js",
66
+ "_index.8HslT92O.js",
67
+ "_main.q9oGOg0H.js",
68
+ "_throttle.B0GR3Iyz.js",
69
+ "_checkbox.0BeV1IBL.js",
51
70
  "_createDownloadLinkElement.ZaXNnPK4.js",
52
- "_toConsumableArray.DNbljYEC.js",
53
- "_possibleConstructorReturn.exeeJQEP.js",
54
- "_createSuper.CuQIogbW.js",
55
- "_FileDownload.esm.Ddx8VEYy.js"
71
+ "_toConsumableArray.Db2pdqM2.js",
72
+ "_possibleConstructorReturn.DD9NK1Z8.js",
73
+ "_createSuper.RBO59fEm.js",
74
+ "_FileDownload.esm.Dx0vI3vH.js",
75
+ "__arrayIncludes.B19Iyn2B.js",
76
+ "_threshold.Q1mXg5rX.js",
77
+ "_value.B4vHRSi7.js",
78
+ "_timer.C2hYhUse.js"
56
79
  ]
57
80
  },
58
81
  "../lib/src/components/elements/Audio/index.ts": {
59
- "file": "static/js/index.DOFlg3dS.js",
82
+ "file": "static/js/index.CkGVt6-G.js",
60
83
  "name": "index",
61
84
  "src": "../lib/src/components/elements/Audio/index.ts",
62
85
  "isDynamicEntry": true,
@@ -65,13 +88,13 @@
65
88
  ]
66
89
  },
67
90
  "../lib/src/components/elements/Balloons/index.ts": {
68
- "file": "static/js/index.YOqQbeX8.js",
91
+ "file": "static/js/index.rORSX6IW.js",
69
92
  "name": "index",
70
93
  "src": "../lib/src/components/elements/Balloons/index.ts",
71
94
  "isDynamicEntry": true,
72
95
  "imports": [
73
96
  "index.html",
74
- "_Particles.DUsputn1.js"
97
+ "_Particles.BfWfv0Aw.js"
75
98
  ],
76
99
  "assets": [
77
100
  "static/media/balloon-0.Czj7AKwE.png",
@@ -82,46 +105,51 @@
82
105
  "static/media/balloon-5.CSwkUfRA.png"
83
106
  ]
84
107
  },
85
- "../lib/src/components/elements/BokehChart/index.ts": {
86
- "file": "static/js/index.CmN3FXfI.js",
87
- "name": "index",
88
- "src": "../lib/src/components/elements/BokehChart/index.ts",
108
+ "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx": {
109
+ "file": "static/js/StreamlitSyntaxHighlighter.DTKLpwhl.js",
110
+ "name": "StreamlitSyntaxHighlighter",
111
+ "src": "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx",
89
112
  "isDynamicEntry": true,
90
113
  "imports": [
91
114
  "index.html"
92
115
  ]
93
116
  },
94
117
  "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
95
- "file": "static/js/index.D3GPA5k4.js",
118
+ "file": "static/js/index.CTgm_-jO.js",
96
119
  "name": "index",
97
120
  "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
98
121
  "isDynamicEntry": true,
99
122
  "imports": [
100
123
  "index.html",
101
- "_toConsumableArray.DNbljYEC.js",
102
- "_possibleConstructorReturn.exeeJQEP.js",
103
- "_withFullScreenWrapper.zothJIsI.js",
104
- "_Toolbar.D8nHCkuz.js",
105
- "_useBasicWidgetState.D6sOH6oI.js",
106
- "_FormClearHelper.BB1Km6eP.js"
124
+ "_toConsumableArray.Db2pdqM2.js",
125
+ "_possibleConstructorReturn.DD9NK1Z8.js",
126
+ "_withFullScreenWrapper.CrHddARq.js",
127
+ "_Toolbar.B2qFUmd9.js",
128
+ "_index.8HslT92O.js",
129
+ "_useBasicWidgetState.Bfp6TnSw.js",
130
+ "_threshold.Q1mXg5rX.js",
131
+ "_FormClearHelper.CG2XN1_g.js",
132
+ "_value.B4vHRSi7.js"
107
133
  ],
108
134
  "css": [
109
135
  "static/css/index.DzuxGC_t.css"
110
136
  ]
111
137
  },
112
138
  "../lib/src/components/elements/GraphVizChart/index.ts": {
113
- "file": "static/js/index.BrIKVbNc.js",
139
+ "file": "static/js/index.B527JZdO.js",
114
140
  "name": "index",
115
141
  "src": "../lib/src/components/elements/GraphVizChart/index.ts",
116
142
  "isDynamicEntry": true,
117
143
  "imports": [
118
144
  "index.html",
119
- "_withFullScreenWrapper.zothJIsI.js",
120
- "_Toolbar.D8nHCkuz.js"
145
+ "_timer.C2hYhUse.js",
146
+ "_value.B4vHRSi7.js",
147
+ "_withFullScreenWrapper.CrHddARq.js",
148
+ "_Toolbar.B2qFUmd9.js"
121
149
  ]
122
150
  },
123
151
  "../lib/src/components/elements/Html/index.ts": {
124
- "file": "static/js/index.BR-IdcTb.js",
152
+ "file": "static/js/index.BxjzhVUb.js",
125
153
  "name": "index",
126
154
  "src": "../lib/src/components/elements/Html/index.ts",
127
155
  "isDynamicEntry": true,
@@ -130,27 +158,39 @@
130
158
  ]
131
159
  },
132
160
  "../lib/src/components/elements/IFrame/index.ts": {
133
- "file": "static/js/index.CwbFI1_-.js",
161
+ "file": "static/js/index.Dr9HIhQw.js",
134
162
  "name": "index",
135
163
  "src": "../lib/src/components/elements/IFrame/index.ts",
136
164
  "isDynamicEntry": true,
137
165
  "imports": [
138
- "index.html"
166
+ "index.html",
167
+ "_IFrameUtil.DefezniK.js"
139
168
  ]
140
169
  },
141
170
  "../lib/src/components/elements/ImageList/index.ts": {
142
- "file": "static/js/index.DX1xY89g.js",
171
+ "file": "static/js/index.BfEKaEmw.js",
143
172
  "name": "index",
144
173
  "src": "../lib/src/components/elements/ImageList/index.ts",
145
174
  "isDynamicEntry": true,
146
175
  "imports": [
147
176
  "index.html",
148
- "_withFullScreenWrapper.zothJIsI.js",
149
- "_Toolbar.D8nHCkuz.js"
177
+ "_withFullScreenWrapper.CrHddARq.js",
178
+ "_Toolbar.B2qFUmd9.js"
179
+ ]
180
+ },
181
+ "../lib/src/components/elements/Json/index.ts": {
182
+ "file": "static/js/index.DBalctjj.js",
183
+ "name": "index",
184
+ "src": "../lib/src/components/elements/Json/index.ts",
185
+ "isDynamicEntry": true,
186
+ "imports": [
187
+ "index.html",
188
+ "_index.8HslT92O.js",
189
+ "_main.q9oGOg0H.js"
150
190
  ]
151
191
  },
152
192
  "../lib/src/components/elements/LinkButton/index.ts": {
153
- "file": "static/js/index.DjmmgI5U.js",
193
+ "file": "static/js/index.DXxnU5ej.js",
154
194
  "name": "index",
155
195
  "src": "../lib/src/components/elements/LinkButton/index.ts",
156
196
  "isDynamicEntry": true,
@@ -158,8 +198,21 @@
158
198
  "index.html"
159
199
  ]
160
200
  },
201
+ "../lib/src/components/elements/Metric/index.ts": {
202
+ "file": "static/js/index.DB_w_CZQ.js",
203
+ "name": "index",
204
+ "src": "../lib/src/components/elements/Metric/index.ts",
205
+ "isDynamicEntry": true,
206
+ "imports": [
207
+ "index.html",
208
+ "_embed.XT9xNd3F.js",
209
+ "_threshold.Q1mXg5rX.js",
210
+ "_value.B4vHRSi7.js",
211
+ "_timer.C2hYhUse.js"
212
+ ]
213
+ },
161
214
  "../lib/src/components/elements/PageLink/index.ts": {
162
- "file": "static/js/index.VwTaeety.js",
215
+ "file": "static/js/index.q5hIQwAY.js",
163
216
  "name": "index",
164
217
  "src": "../lib/src/components/elements/PageLink/index.ts",
165
218
  "isDynamicEntry": true,
@@ -168,34 +221,34 @@
168
221
  ]
169
222
  },
170
223
  "../lib/src/components/elements/PlotlyChart/index.ts": {
171
- "file": "static/js/index.CxIUUfab.js",
224
+ "file": "static/js/index.hbeqcRTn.js",
172
225
  "name": "index",
173
226
  "src": "../lib/src/components/elements/PlotlyChart/index.ts",
174
227
  "isDynamicEntry": true,
175
228
  "imports": [
176
229
  "index.html",
177
- "_withFullScreenWrapper.zothJIsI.js",
178
- "_FormClearHelper.BB1Km6eP.js"
230
+ "_withFullScreenWrapper.CrHddARq.js",
231
+ "_FormClearHelper.CG2XN1_g.js"
179
232
  ]
180
233
  },
181
234
  "../lib/src/components/elements/Progress/index.ts": {
182
- "file": "static/js/index.CAIjskgG.js",
235
+ "file": "static/js/index.DS7lf09n.js",
183
236
  "name": "index",
184
237
  "src": "../lib/src/components/elements/Progress/index.ts",
185
238
  "isDynamicEntry": true,
186
239
  "imports": [
187
240
  "index.html",
188
- "_ProgressBar.DLY8H6nE.js"
241
+ "_ProgressBar.CGQ8OgfO.js"
189
242
  ]
190
243
  },
191
244
  "../lib/src/components/elements/Snow/index.ts": {
192
- "file": "static/js/index.DuiXaS5_.js",
245
+ "file": "static/js/index.AnXMIBz3.js",
193
246
  "name": "index",
194
247
  "src": "../lib/src/components/elements/Snow/index.ts",
195
248
  "isDynamicEntry": true,
196
249
  "imports": [
197
250
  "index.html",
198
- "_Particles.DUsputn1.js"
251
+ "_Particles.BfWfv0Aw.js"
199
252
  ],
200
253
  "assets": [
201
254
  "static/media/flake-0.DgWaVvm5.png",
@@ -204,7 +257,7 @@
204
257
  ]
205
258
  },
206
259
  "../lib/src/components/elements/Spinner/index.ts": {
207
- "file": "static/js/index.QJ5QO9sJ.js",
260
+ "file": "static/js/index.uSX757_v.js",
208
261
  "name": "index",
209
262
  "src": "../lib/src/components/elements/Spinner/index.ts",
210
263
  "isDynamicEntry": true,
@@ -213,7 +266,7 @@
213
266
  ]
214
267
  },
215
268
  "../lib/src/components/elements/Toast/index.ts": {
216
- "file": "static/js/index.CMtEit2O.js",
269
+ "file": "static/js/index.DsgAU5lc.js",
217
270
  "name": "index",
218
271
  "src": "../lib/src/components/elements/Toast/index.ts",
219
272
  "isDynamicEntry": true,
@@ -222,7 +275,7 @@
222
275
  ]
223
276
  },
224
277
  "../lib/src/components/elements/Video/index.ts": {
225
- "file": "static/js/index.DMqgUYKq.js",
278
+ "file": "static/js/index.5VPOamri.js",
226
279
  "name": "index",
227
280
  "src": "../lib/src/components/elements/Video/index.ts",
228
281
  "isDynamicEntry": true,
@@ -231,24 +284,22 @@
231
284
  ]
232
285
  },
233
286
  "../lib/src/components/widgets/AudioInput/index.ts": {
234
- "file": "static/js/index.BtWUPzle.js",
287
+ "file": "static/js/index.BWB_91TA.js",
235
288
  "name": "index",
236
289
  "src": "../lib/src/components/widgets/AudioInput/index.ts",
237
290
  "isDynamicEntry": true,
238
291
  "imports": [
239
292
  "index.html",
240
- "_Toolbar.D8nHCkuz.js",
241
- "_FormClearHelper.BB1Km6eP.js",
293
+ "_useWaveformController.WxVzpzEX.js",
294
+ "_Toolbar.B2qFUmd9.js",
295
+ "_FormClearHelper.CG2XN1_g.js",
242
296
  "_createDownloadLinkElement.ZaXNnPK4.js",
243
- "_FileDownload.esm.Ddx8VEYy.js"
244
- ],
245
- "dynamicImports": [
246
- "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js",
247
- "../node_modules/wavesurfer.js/dist/plugins/record.js"
297
+ "_urls.BwSlolu9.js",
298
+ "_FileDownload.esm.Dx0vI3vH.js"
248
299
  ]
249
300
  },
250
301
  "../lib/src/components/widgets/BidiComponent/index.tsx": {
251
- "file": "static/js/index.DYATBCsq.js",
302
+ "file": "static/js/index.DcU3uDvB.js",
252
303
  "name": "index",
253
304
  "src": "../lib/src/components/widgets/BidiComponent/index.tsx",
254
305
  "isDynamicEntry": true,
@@ -257,7 +308,7 @@
257
308
  ]
258
309
  },
259
310
  "../lib/src/components/widgets/Button/index.ts": {
260
- "file": "static/js/index.BMcFsUee.js",
311
+ "file": "static/js/index.DWexTVLY.js",
261
312
  "name": "index",
262
313
  "src": "../lib/src/components/widgets/Button/index.ts",
263
314
  "isDynamicEntry": true,
@@ -266,86 +317,124 @@
266
317
  ]
267
318
  },
268
319
  "../lib/src/components/widgets/ButtonGroup/index.ts": {
269
- "file": "static/js/index.Br5nxKNj.js",
320
+ "file": "static/js/index.CyroQtI4.js",
270
321
  "name": "index",
271
322
  "src": "../lib/src/components/widgets/ButtonGroup/index.ts",
272
323
  "isDynamicEntry": true,
273
324
  "imports": [
274
325
  "index.html",
275
- "_useBasicWidgetState.D6sOH6oI.js",
276
- "_FormClearHelper.BB1Km6eP.js"
326
+ "_useBasicWidgetState.Bfp6TnSw.js",
327
+ "_FormClearHelper.CG2XN1_g.js"
277
328
  ]
278
329
  },
279
330
  "../lib/src/components/widgets/CameraInput/index.ts": {
280
- "file": "static/js/index.DGAh7DMq.js",
331
+ "file": "static/js/index.BHgV-yW4.js",
281
332
  "name": "index",
282
333
  "src": "../lib/src/components/widgets/CameraInput/index.ts",
283
334
  "isDynamicEntry": true,
284
335
  "imports": [
285
336
  "index.html",
337
+ "_withCalculatedWidth.DcKeRSWJ.js",
286
338
  "_UploadFileInfo.C-jY39rj.js",
287
- "_FormClearHelper.BB1Km6eP.js",
288
- "_ProgressBar.DLY8H6nE.js"
339
+ "_FormClearHelper.CG2XN1_g.js",
340
+ "_ProgressBar.CGQ8OgfO.js",
341
+ "_urls.BwSlolu9.js"
289
342
  ]
290
343
  },
291
344
  "../lib/src/components/widgets/ChatInput/index.ts": {
292
- "file": "static/js/index.Dq56CyM2.js",
345
+ "file": "static/js/index.PaidgjCs.js",
293
346
  "name": "index",
294
347
  "src": "../lib/src/components/widgets/ChatInput/index.ts",
295
348
  "isDynamicEntry": true,
296
349
  "imports": [
297
350
  "index.html",
298
- "_FileHelper.90EtOmj9.js",
299
- "_InputInstructions.jhH15PqV.js",
300
- "_useTextInputAutoExpand.4u3_GcuN.js",
351
+ "_FileHelper.B7Ero7qQ.js",
352
+ "_useWaveformController.WxVzpzEX.js",
353
+ "_InputInstructions.Cj5-1zf6.js",
354
+ "_useTextInputAutoExpand.QepX7n8Y.js",
301
355
  "_inputUtils.CptNuJwn.js",
302
- "_ErrorOutline.esm.YoJdlW1p.js",
356
+ "_ErrorOutline.esm.ZJDbmVTx.js",
303
357
  "_UploadFileInfo.C-jY39rj.js",
304
- "_base-input.CJGiNqed.js"
358
+ "_base-input.o9tL8MDP.js"
305
359
  ]
306
360
  },
307
361
  "../lib/src/components/widgets/Checkbox/index.ts": {
308
- "file": "static/js/index.Q-3sFn1v.js",
362
+ "file": "static/js/index.DlltaH7J.js",
309
363
  "name": "index",
310
364
  "src": "../lib/src/components/widgets/Checkbox/index.ts",
311
365
  "isDynamicEntry": true,
312
366
  "imports": [
313
367
  "index.html",
314
- "_useBasicWidgetState.D6sOH6oI.js",
315
- "_checkbox.Cpdd482O.js",
316
- "_FormClearHelper.BB1Km6eP.js"
368
+ "_useBasicWidgetState.Bfp6TnSw.js",
369
+ "_checkbox.0BeV1IBL.js",
370
+ "_FormClearHelper.CG2XN1_g.js"
317
371
  ]
318
372
  },
319
373
  "../lib/src/components/widgets/ColorPicker/index.ts": {
320
- "file": "static/js/index.BKstZk0M.js",
374
+ "file": "static/js/index.DpNTZz82.js",
321
375
  "name": "index",
322
376
  "src": "../lib/src/components/widgets/ColorPicker/index.ts",
323
377
  "isDynamicEntry": true,
324
378
  "imports": [
325
379
  "index.html",
326
- "_useBasicWidgetState.D6sOH6oI.js",
327
- "_FormClearHelper.BB1Km6eP.js"
380
+ "_useBasicWidgetState.Bfp6TnSw.js",
381
+ "_throttle.B0GR3Iyz.js",
382
+ "_FormClearHelper.CG2XN1_g.js"
383
+ ]
384
+ },
385
+ "../lib/src/components/widgets/CustomComponent/index.ts": {
386
+ "file": "static/js/index.DK0RFJUG.js",
387
+ "name": "index",
388
+ "src": "../lib/src/components/widgets/CustomComponent/index.ts",
389
+ "isDynamicEntry": true,
390
+ "imports": [
391
+ "index.html",
392
+ "_withCalculatedWidth.DcKeRSWJ.js",
393
+ "_urls.BwSlolu9.js",
394
+ "_IFrameUtil.DefezniK.js"
328
395
  ]
329
396
  },
330
397
  "../lib/src/components/widgets/DateInput/index.ts": {
331
- "file": "static/js/index.CkRlykEE.js",
398
+ "file": "static/js/index.CF5MxTbK.js",
332
399
  "name": "index",
333
400
  "src": "../lib/src/components/widgets/DateInput/index.ts",
334
401
  "isDynamicEntry": true,
335
402
  "imports": [
336
403
  "index.html",
337
- "_useBasicWidgetState.D6sOH6oI.js",
338
- "_ErrorOutline.esm.YoJdlW1p.js",
339
- "_timepicker.DAhu-vcF.js",
340
- "_input.D4MN_FzN.js",
341
- "_base-input.CJGiNqed.js",
342
- "_FormClearHelper.BB1Km6eP.js",
343
- "_possibleConstructorReturn.exeeJQEP.js",
344
- "_createSuper.CuQIogbW.js"
404
+ "_moment.C3j7ZXd7.js",
405
+ "_useBasicWidgetState.Bfp6TnSw.js",
406
+ "_useIntlLocale.hRV75Xgj.js",
407
+ "_ErrorOutline.esm.ZJDbmVTx.js",
408
+ "_FormClearHelper.CG2XN1_g.js",
409
+ "_timepicker.BdhzPxrv.js",
410
+ "_possibleConstructorReturn.DD9NK1Z8.js",
411
+ "_createSuper.RBO59fEm.js",
412
+ "_input.D5oh9-aB.js",
413
+ "_base-input.o9tL8MDP.js"
414
+ ]
415
+ },
416
+ "../lib/src/components/widgets/DateTimeInput/index.ts": {
417
+ "file": "static/js/index.CNH4rdSz.js",
418
+ "name": "index",
419
+ "src": "../lib/src/components/widgets/DateTimeInput/index.ts",
420
+ "isDynamicEntry": true,
421
+ "imports": [
422
+ "index.html",
423
+ "_moment.C3j7ZXd7.js",
424
+ "_useIntlLocale.hRV75Xgj.js",
425
+ "_useBasicWidgetState.Bfp6TnSw.js",
426
+ "_styled-components.C3R090At.js",
427
+ "_ErrorOutline.esm.ZJDbmVTx.js",
428
+ "_timepicker.BdhzPxrv.js",
429
+ "_possibleConstructorReturn.DD9NK1Z8.js",
430
+ "_createSuper.RBO59fEm.js",
431
+ "_input.D5oh9-aB.js",
432
+ "_base-input.o9tL8MDP.js",
433
+ "_FormClearHelper.CG2XN1_g.js"
345
434
  ]
346
435
  },
347
436
  "../lib/src/components/widgets/DownloadButton/index.ts": {
348
- "file": "static/js/index.BgnZEMVh.js",
437
+ "file": "static/js/index.BTtmaLDB.js",
349
438
  "name": "index",
350
439
  "src": "../lib/src/components/widgets/DownloadButton/index.ts",
351
440
  "isDynamicEntry": true,
@@ -355,166 +444,201 @@
355
444
  ]
356
445
  },
357
446
  "../lib/src/components/widgets/FileUploader/index.ts": {
358
- "file": "static/js/index.B1ZQh4P1.js",
447
+ "file": "static/js/index.B1fRb5wF.js",
359
448
  "name": "index",
360
449
  "src": "../lib/src/components/widgets/FileUploader/index.ts",
361
450
  "isDynamicEntry": true,
362
451
  "imports": [
363
452
  "index.html",
364
- "_FormClearHelper.BB1Km6eP.js",
365
- "_FileHelper.90EtOmj9.js",
366
- "_ProgressBar.DLY8H6nE.js",
453
+ "_FormClearHelper.CG2XN1_g.js",
454
+ "_FileHelper.B7Ero7qQ.js",
455
+ "_ProgressBar.CGQ8OgfO.js",
367
456
  "_UploadFileInfo.C-jY39rj.js"
368
457
  ]
369
458
  },
459
+ "../lib/src/components/widgets/Form/index.ts": {
460
+ "file": "static/js/index.BQr-XwGV.js",
461
+ "name": "index",
462
+ "src": "../lib/src/components/widgets/Form/index.ts",
463
+ "isDynamicEntry": true,
464
+ "imports": [
465
+ "index.html",
466
+ "_FormClearHelper.CG2XN1_g.js"
467
+ ]
468
+ },
370
469
  "../lib/src/components/widgets/Multiselect/index.ts": {
371
- "file": "static/js/index.Dd7bMeLP.js",
470
+ "file": "static/js/index.BuCx76ZV.js",
372
471
  "name": "index",
373
472
  "src": "../lib/src/components/widgets/Multiselect/index.ts",
374
473
  "isDynamicEntry": true,
375
474
  "imports": [
376
475
  "index.html",
377
- "_useBasicWidgetState.D6sOH6oI.js",
378
- "_FormClearHelper.BB1Km6eP.js"
476
+ "_useBasicWidgetState.Bfp6TnSw.js",
477
+ "__arrayIncludes.B19Iyn2B.js",
478
+ "_FormClearHelper.CG2XN1_g.js",
479
+ "__baseIndexOf.BTknn6Gb.js"
379
480
  ]
380
481
  },
381
482
  "../lib/src/components/widgets/NumberInput/index.ts": {
382
- "file": "static/js/index.C0RLraek.js",
483
+ "file": "static/js/index.Bu5JWpT_.js",
383
484
  "name": "index",
384
485
  "src": "../lib/src/components/widgets/NumberInput/index.ts",
385
486
  "isDynamicEntry": true,
386
487
  "imports": [
387
488
  "index.html",
388
- "_uniqueId.oG4Gvj1v.js",
389
- "_InputInstructions.jhH15PqV.js",
390
- "_FormClearHelper.BB1Km6eP.js",
489
+ "_InputInstructions.Cj5-1zf6.js",
490
+ "_FormClearHelper.CG2XN1_g.js",
391
491
  "_sprintf.D7DtBTRn.js",
392
- "_input.D4MN_FzN.js",
393
- "_base-input.CJGiNqed.js"
492
+ "_uniqueId.CtqIr-Yh.js",
493
+ "_input.D5oh9-aB.js",
494
+ "_base-input.o9tL8MDP.js"
394
495
  ]
395
496
  },
396
497
  "../lib/src/components/widgets/Radio/index.ts": {
397
- "file": "static/js/index.B_dWA3vd.js",
498
+ "file": "static/js/index.CyUHWoCC.js",
398
499
  "name": "index",
399
500
  "src": "../lib/src/components/widgets/Radio/index.ts",
400
501
  "isDynamicEntry": true,
401
502
  "imports": [
402
503
  "index.html",
403
- "_useBasicWidgetState.D6sOH6oI.js",
404
- "_FormClearHelper.BB1Km6eP.js"
504
+ "_useBasicWidgetState.Bfp6TnSw.js",
505
+ "_FormClearHelper.CG2XN1_g.js"
405
506
  ]
406
507
  },
407
508
  "../lib/src/components/widgets/Selectbox/index.ts": {
408
- "file": "static/js/index.DPUXkcQL.js",
509
+ "file": "static/js/index.KfXqjDYy.js",
409
510
  "name": "index",
410
511
  "src": "../lib/src/components/widgets/Selectbox/index.ts",
411
512
  "isDynamicEntry": true,
412
513
  "imports": [
413
514
  "index.html",
414
- "_useBasicWidgetState.D6sOH6oI.js",
415
- "_FormClearHelper.BB1Km6eP.js"
515
+ "_useBasicWidgetState.Bfp6TnSw.js",
516
+ "_FormClearHelper.CG2XN1_g.js"
416
517
  ]
417
518
  },
418
519
  "../lib/src/components/widgets/Slider/index.ts": {
419
- "file": "static/js/index.DvFidMLe.js",
520
+ "file": "static/js/index.CuvXOyER.js",
420
521
  "name": "index",
421
522
  "src": "../lib/src/components/widgets/Slider/index.ts",
422
523
  "isDynamicEntry": true,
423
524
  "imports": [
424
525
  "index.html",
526
+ "_moment.C3j7ZXd7.js",
425
527
  "_sprintf.D7DtBTRn.js",
426
- "_useBasicWidgetState.D6sOH6oI.js",
427
- "_FormClearHelper.BB1Km6eP.js"
528
+ "_withCalculatedWidth.DcKeRSWJ.js",
529
+ "_useBasicWidgetState.Bfp6TnSw.js",
530
+ "_FormClearHelper.CG2XN1_g.js"
428
531
  ]
429
532
  },
430
533
  "../lib/src/components/widgets/TextArea/index.ts": {
431
- "file": "static/js/index.BohqXifI.js",
534
+ "file": "static/js/index.BfXjTO8b.js",
432
535
  "name": "index",
433
536
  "src": "../lib/src/components/widgets/TextArea/index.ts",
434
537
  "isDynamicEntry": true,
435
538
  "imports": [
436
539
  "index.html",
437
- "_uniqueId.oG4Gvj1v.js",
438
- "_InputInstructions.jhH15PqV.js",
439
- "_useBasicWidgetState.D6sOH6oI.js",
440
- "_useUpdateUiValue.F2R3eTeR.js",
441
- "_useTextInputAutoExpand.4u3_GcuN.js",
442
- "_FormClearHelper.BB1Km6eP.js",
540
+ "_InputInstructions.Cj5-1zf6.js",
541
+ "_useBasicWidgetState.Bfp6TnSw.js",
542
+ "_useUpdateUiValue.DHx8TzX6.js",
543
+ "_useTextInputAutoExpand.QepX7n8Y.js",
544
+ "_uniqueId.CtqIr-Yh.js",
545
+ "_FormClearHelper.CG2XN1_g.js",
443
546
  "_inputUtils.CptNuJwn.js",
444
- "_base-input.CJGiNqed.js"
547
+ "_base-input.o9tL8MDP.js"
445
548
  ]
446
549
  },
447
550
  "../lib/src/components/widgets/TextInput/index.ts": {
448
- "file": "static/js/index.DwkhC5Pc.js",
551
+ "file": "static/js/index.x_QRaLMd.js",
449
552
  "name": "index",
450
553
  "src": "../lib/src/components/widgets/TextInput/index.ts",
451
554
  "isDynamicEntry": true,
452
555
  "imports": [
453
556
  "index.html",
454
- "_uniqueId.oG4Gvj1v.js",
455
- "_InputInstructions.jhH15PqV.js",
456
- "_useBasicWidgetState.D6sOH6oI.js",
457
- "_useUpdateUiValue.F2R3eTeR.js",
458
- "_input.D4MN_FzN.js",
459
- "_FormClearHelper.BB1Km6eP.js",
557
+ "_InputInstructions.Cj5-1zf6.js",
558
+ "_useBasicWidgetState.Bfp6TnSw.js",
559
+ "_useUpdateUiValue.DHx8TzX6.js",
560
+ "_uniqueId.CtqIr-Yh.js",
561
+ "_input.D5oh9-aB.js",
562
+ "_FormClearHelper.CG2XN1_g.js",
460
563
  "_inputUtils.CptNuJwn.js",
461
- "_base-input.CJGiNqed.js"
564
+ "_base-input.o9tL8MDP.js"
462
565
  ]
463
566
  },
464
567
  "../lib/src/components/widgets/TimeInput/index.ts": {
465
- "file": "static/js/index.DaSmGJ76.js",
568
+ "file": "static/js/index.Bjy4NRu9.js",
466
569
  "name": "index",
467
570
  "src": "../lib/src/components/widgets/TimeInput/index.ts",
468
571
  "isDynamicEntry": true,
469
572
  "imports": [
470
573
  "index.html",
471
- "_useBasicWidgetState.D6sOH6oI.js",
472
- "_timepicker.DAhu-vcF.js",
473
- "_FormClearHelper.BB1Km6eP.js",
474
- "_possibleConstructorReturn.exeeJQEP.js",
475
- "_createSuper.CuQIogbW.js"
574
+ "_useBasicWidgetState.Bfp6TnSw.js",
575
+ "_styled-components.C3R090At.js",
576
+ "_timepicker.BdhzPxrv.js",
577
+ "_FormClearHelper.CG2XN1_g.js",
578
+ "_possibleConstructorReturn.DD9NK1Z8.js",
579
+ "_createSuper.RBO59fEm.js"
476
580
  ]
477
581
  },
478
582
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js": {
479
- "file": "static/js/data-grid-overlay-editor.2Ufgxc6y.js",
583
+ "file": "static/js/data-grid-overlay-editor.CiTkUy0t.js",
480
584
  "name": "data-grid-overlay-editor",
481
585
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
482
586
  "isDynamicEntry": true,
483
587
  "imports": [
484
588
  "index.html",
485
- "_index.DKb_NvmG.js",
486
- "_withFullScreenWrapper.zothJIsI.js",
487
- "_Toolbar.D8nHCkuz.js",
488
- "_FormClearHelper.BB1Km6eP.js",
589
+ "_index.C_rK-Swb.js",
590
+ "_withFullScreenWrapper.CrHddARq.js",
591
+ "_Toolbar.B2qFUmd9.js",
592
+ "_FormClearHelper.CG2XN1_g.js",
593
+ "_moment.C3j7ZXd7.js",
594
+ "_pandasStylerUtils.BqhXt51_.js",
595
+ "__baseIndexOf.BTknn6Gb.js",
489
596
  "_sprintf.D7DtBTRn.js",
490
- "_checkbox.Cpdd482O.js",
597
+ "_index.8HslT92O.js",
598
+ "_main.q9oGOg0H.js",
599
+ "_throttle.B0GR3Iyz.js",
600
+ "_checkbox.0BeV1IBL.js",
491
601
  "_createDownloadLinkElement.ZaXNnPK4.js",
492
- "_toConsumableArray.DNbljYEC.js",
493
- "_possibleConstructorReturn.exeeJQEP.js",
494
- "_createSuper.CuQIogbW.js",
495
- "_FileDownload.esm.Ddx8VEYy.js"
602
+ "_toConsumableArray.Db2pdqM2.js",
603
+ "_possibleConstructorReturn.DD9NK1Z8.js",
604
+ "_createSuper.RBO59fEm.js",
605
+ "_FileDownload.esm.Dx0vI3vH.js",
606
+ "__arrayIncludes.B19Iyn2B.js"
496
607
  ]
497
608
  },
498
609
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js": {
499
- "file": "static/js/number-overlay-editor.DRwAw1In.js",
610
+ "file": "static/js/number-overlay-editor.Cn_LsK8N.js",
500
611
  "name": "number-overlay-editor",
501
612
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
502
613
  "isDynamicEntry": true,
503
614
  "imports": [
504
615
  "index.html",
505
- "_index.DKb_NvmG.js",
506
- "_withFullScreenWrapper.zothJIsI.js",
507
- "_Toolbar.D8nHCkuz.js",
508
- "_FormClearHelper.BB1Km6eP.js",
616
+ "_index.C_rK-Swb.js",
617
+ "_withFullScreenWrapper.CrHddARq.js",
618
+ "_Toolbar.B2qFUmd9.js",
619
+ "_FormClearHelper.CG2XN1_g.js",
620
+ "_moment.C3j7ZXd7.js",
621
+ "_pandasStylerUtils.BqhXt51_.js",
622
+ "__baseIndexOf.BTknn6Gb.js",
509
623
  "_sprintf.D7DtBTRn.js",
510
- "_checkbox.Cpdd482O.js",
624
+ "_index.8HslT92O.js",
625
+ "_main.q9oGOg0H.js",
626
+ "_throttle.B0GR3Iyz.js",
627
+ "_checkbox.0BeV1IBL.js",
511
628
  "_createDownloadLinkElement.ZaXNnPK4.js",
512
- "_toConsumableArray.DNbljYEC.js",
513
- "_possibleConstructorReturn.exeeJQEP.js",
514
- "_createSuper.CuQIogbW.js",
515
- "_FileDownload.esm.Ddx8VEYy.js"
629
+ "_toConsumableArray.Db2pdqM2.js",
630
+ "_possibleConstructorReturn.DD9NK1Z8.js",
631
+ "_createSuper.RBO59fEm.js",
632
+ "_FileDownload.esm.Dx0vI3vH.js",
633
+ "__arrayIncludes.B19Iyn2B.js"
516
634
  ]
517
635
  },
636
+ "../node_modules/axios/index.js": {
637
+ "file": "static/js/index.B0yp3bM1.js",
638
+ "name": "index",
639
+ "src": "../node_modules/axios/index.js",
640
+ "isDynamicEntry": true
641
+ },
518
642
  "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf": {
519
643
  "file": "static/media/KaTeX_AMS-Regular.DRggAlZN.ttf",
520
644
  "src": "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf"
@@ -752,32 +876,71 @@
752
876
  "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
753
877
  },
754
878
  "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
755
- "file": "static/js/downloader.CN0K7xlu.js",
879
+ "file": "static/js/downloader.DwNZg3Mw.js",
756
880
  "name": "downloader",
757
881
  "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
758
882
  "isDynamicEntry": true,
759
883
  "imports": [
760
- "_es6.BJcsVXQ0.js",
884
+ "_es6.x9KsYQg-.js",
761
885
  "index.html"
762
886
  ]
763
887
  },
764
888
  "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
765
- "file": "static/js/memory.DrZjtdGT.js",
889
+ "file": "static/js/memory.5kCSFUJS.js",
766
890
  "name": "memory",
767
891
  "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
768
892
  "isDynamicEntry": true,
769
893
  "imports": [
770
- "_es6.BJcsVXQ0.js",
894
+ "_es6.x9KsYQg-.js",
771
895
  "index.html"
772
896
  ]
773
897
  },
774
898
  "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
775
- "file": "static/js/sandbox.ClO3IuUr.js",
899
+ "file": "static/js/sandbox.DACSyz29.js",
776
900
  "name": "sandbox",
777
901
  "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
778
902
  "isDynamicEntry": true,
779
903
  "imports": [
780
- "_es6.BJcsVXQ0.js",
904
+ "_es6.x9KsYQg-.js",
905
+ "index.html"
906
+ ]
907
+ },
908
+ "../node_modules/node-emoji/lib/index.js": {
909
+ "file": "static/js/index.CjozwSzS.js",
910
+ "name": "index",
911
+ "src": "../node_modules/node-emoji/lib/index.js",
912
+ "isDynamicEntry": true,
913
+ "imports": [
914
+ "index.html"
915
+ ]
916
+ },
917
+ "../node_modules/rehype-katex/index.js": {
918
+ "file": "static/js/index.D6HmkoDm.js",
919
+ "name": "index",
920
+ "src": "../node_modules/rehype-katex/index.js",
921
+ "isDynamicEntry": true,
922
+ "imports": [
923
+ "_index.CLmq_z9K.js",
924
+ "index.html"
925
+ ]
926
+ },
927
+ "../node_modules/rehype-raw/index.js": {
928
+ "file": "static/js/index.DO5utP74.js",
929
+ "name": "index",
930
+ "src": "../node_modules/rehype-raw/index.js",
931
+ "isDynamicEntry": true,
932
+ "imports": [
933
+ "index.html",
934
+ "_index.CLmq_z9K.js"
935
+ ]
936
+ },
937
+ "../node_modules/remark-emoji/index.js": {
938
+ "file": "static/js/index.By55VdPY.js",
939
+ "name": "index",
940
+ "src": "../node_modules/remark-emoji/index.js",
941
+ "isDynamicEntry": true,
942
+ "imports": [
943
+ "../node_modules/node-emoji/lib/index.js",
781
944
  "index.html"
782
945
  ]
783
946
  },
@@ -793,58 +956,62 @@
793
956
  "src": "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js",
794
957
  "isDynamicEntry": true
795
958
  },
796
- "_ErrorOutline.esm.YoJdlW1p.js": {
797
- "file": "static/js/ErrorOutline.esm.YoJdlW1p.js",
959
+ "_ErrorOutline.esm.ZJDbmVTx.js": {
960
+ "file": "static/js/ErrorOutline.esm.ZJDbmVTx.js",
798
961
  "name": "ErrorOutline.esm",
799
962
  "imports": [
800
963
  "index.html"
801
964
  ]
802
965
  },
803
- "_FileDownload.esm.Ddx8VEYy.js": {
804
- "file": "static/js/FileDownload.esm.Ddx8VEYy.js",
966
+ "_FileDownload.esm.Dx0vI3vH.js": {
967
+ "file": "static/js/FileDownload.esm.Dx0vI3vH.js",
805
968
  "name": "FileDownload.esm",
806
969
  "imports": [
807
970
  "index.html"
808
971
  ]
809
972
  },
810
- "_FileHelper.90EtOmj9.js": {
811
- "file": "static/js/FileHelper.90EtOmj9.js",
973
+ "_FileHelper.B7Ero7qQ.js": {
974
+ "file": "static/js/FileHelper.B7Ero7qQ.js",
812
975
  "name": "FileHelper",
813
976
  "imports": [
814
977
  "index.html",
815
978
  "_UploadFileInfo.C-jY39rj.js"
816
979
  ]
817
980
  },
818
- "_FormClearHelper.BB1Km6eP.js": {
819
- "file": "static/js/FormClearHelper.BB1Km6eP.js",
981
+ "_FormClearHelper.CG2XN1_g.js": {
982
+ "file": "static/js/FormClearHelper.CG2XN1_g.js",
820
983
  "name": "FormClearHelper",
821
984
  "imports": [
822
985
  "index.html"
823
986
  ]
824
987
  },
825
- "_InputInstructions.jhH15PqV.js": {
826
- "file": "static/js/InputInstructions.jhH15PqV.js",
988
+ "_IFrameUtil.DefezniK.js": {
989
+ "file": "static/js/IFrameUtil.DefezniK.js",
990
+ "name": "IFrameUtil"
991
+ },
992
+ "_InputInstructions.Cj5-1zf6.js": {
993
+ "file": "static/js/InputInstructions.Cj5-1zf6.js",
827
994
  "name": "InputInstructions",
828
995
  "imports": [
829
996
  "index.html"
830
997
  ]
831
998
  },
832
- "_Particles.DUsputn1.js": {
833
- "file": "static/js/Particles.DUsputn1.js",
999
+ "_Particles.BfWfv0Aw.js": {
1000
+ "file": "static/js/Particles.BfWfv0Aw.js",
834
1001
  "name": "Particles",
835
1002
  "imports": [
836
1003
  "index.html"
837
1004
  ]
838
1005
  },
839
- "_ProgressBar.DLY8H6nE.js": {
840
- "file": "static/js/ProgressBar.DLY8H6nE.js",
1006
+ "_ProgressBar.CGQ8OgfO.js": {
1007
+ "file": "static/js/ProgressBar.CGQ8OgfO.js",
841
1008
  "name": "ProgressBar",
842
1009
  "imports": [
843
1010
  "index.html"
844
1011
  ]
845
1012
  },
846
- "_Toolbar.D8nHCkuz.js": {
847
- "file": "static/js/Toolbar.D8nHCkuz.js",
1013
+ "_Toolbar.B2qFUmd9.js": {
1014
+ "file": "static/js/Toolbar.B2qFUmd9.js",
848
1015
  "name": "Toolbar",
849
1016
  "imports": [
850
1017
  "index.html"
@@ -854,15 +1021,26 @@
854
1021
  "file": "static/js/UploadFileInfo.C-jY39rj.js",
855
1022
  "name": "UploadFileInfo"
856
1023
  },
857
- "_base-input.CJGiNqed.js": {
858
- "file": "static/js/base-input.CJGiNqed.js",
1024
+ "__arrayIncludes.B19Iyn2B.js": {
1025
+ "file": "static/js/_arrayIncludes.B19Iyn2B.js",
1026
+ "name": "_arrayIncludes",
1027
+ "imports": [
1028
+ "__baseIndexOf.BTknn6Gb.js"
1029
+ ]
1030
+ },
1031
+ "__baseIndexOf.BTknn6Gb.js": {
1032
+ "file": "static/js/_baseIndexOf.BTknn6Gb.js",
1033
+ "name": "_baseIndexOf"
1034
+ },
1035
+ "_base-input.o9tL8MDP.js": {
1036
+ "file": "static/js/base-input.o9tL8MDP.js",
859
1037
  "name": "base-input",
860
1038
  "imports": [
861
1039
  "index.html"
862
1040
  ]
863
1041
  },
864
- "_checkbox.Cpdd482O.js": {
865
- "file": "static/js/checkbox.Cpdd482O.js",
1042
+ "_checkbox.0BeV1IBL.js": {
1043
+ "file": "static/js/checkbox.0BeV1IBL.js",
866
1044
  "name": "checkbox",
867
1045
  "imports": [
868
1046
  "index.html"
@@ -872,15 +1050,25 @@
872
1050
  "file": "static/js/createDownloadLinkElement.ZaXNnPK4.js",
873
1051
  "name": "createDownloadLinkElement"
874
1052
  },
875
- "_createSuper.CuQIogbW.js": {
876
- "file": "static/js/createSuper.CuQIogbW.js",
1053
+ "_createSuper.RBO59fEm.js": {
1054
+ "file": "static/js/createSuper.RBO59fEm.js",
877
1055
  "name": "createSuper",
878
1056
  "imports": [
879
- "_possibleConstructorReturn.exeeJQEP.js"
1057
+ "_possibleConstructorReturn.DD9NK1Z8.js"
880
1058
  ]
881
1059
  },
882
- "_es6.BJcsVXQ0.js": {
883
- "file": "static/js/es6.BJcsVXQ0.js",
1060
+ "_embed.XT9xNd3F.js": {
1061
+ "file": "static/js/embed.XT9xNd3F.js",
1062
+ "name": "embed",
1063
+ "imports": [
1064
+ "index.html",
1065
+ "_threshold.Q1mXg5rX.js",
1066
+ "_value.B4vHRSi7.js",
1067
+ "_timer.C2hYhUse.js"
1068
+ ]
1069
+ },
1070
+ "_es6.x9KsYQg-.js": {
1071
+ "file": "static/js/es6.x9KsYQg-.js",
884
1072
  "name": "es6",
885
1073
  "isDynamicEntry": true,
886
1074
  "imports": [
@@ -895,35 +1083,52 @@
895
1083
  "../node_modules/native-file-system-adapter/src/adapters/memory.js"
896
1084
  ]
897
1085
  },
898
- "_iframeResizer.contentWindow.XzUvQqcZ.js": {
899
- "file": "static/js/iframeResizer.contentWindow.XzUvQqcZ.js",
1086
+ "_iframeResizer.contentWindow.ZVXpMPi0.js": {
1087
+ "file": "static/js/iframeResizer.contentWindow.ZVXpMPi0.js",
900
1088
  "name": "iframeResizer.contentWindow",
901
1089
  "isDynamicEntry": true,
902
1090
  "imports": [
903
1091
  "index.html"
904
1092
  ]
905
1093
  },
906
- "_index.DKb_NvmG.js": {
907
- "file": "static/js/index.DKb_NvmG.js",
1094
+ "_index.8HslT92O.js": {
1095
+ "file": "static/js/index.8HslT92O.js",
1096
+ "name": "index"
1097
+ },
1098
+ "_index.CLmq_z9K.js": {
1099
+ "file": "static/js/index.CLmq_z9K.js",
1100
+ "name": "index",
1101
+ "imports": [
1102
+ "index.html"
1103
+ ]
1104
+ },
1105
+ "_index.C_rK-Swb.js": {
1106
+ "file": "static/js/index.C_rK-Swb.js",
908
1107
  "name": "index",
909
1108
  "isDynamicEntry": true,
910
1109
  "imports": [
911
1110
  "index.html",
912
- "_withFullScreenWrapper.zothJIsI.js",
913
- "_Toolbar.D8nHCkuz.js",
914
- "_FormClearHelper.BB1Km6eP.js",
1111
+ "_withFullScreenWrapper.CrHddARq.js",
1112
+ "_Toolbar.B2qFUmd9.js",
1113
+ "_FormClearHelper.CG2XN1_g.js",
1114
+ "_moment.C3j7ZXd7.js",
1115
+ "_pandasStylerUtils.BqhXt51_.js",
915
1116
  "_sprintf.D7DtBTRn.js",
916
- "_checkbox.Cpdd482O.js",
1117
+ "_index.8HslT92O.js",
1118
+ "_main.q9oGOg0H.js",
1119
+ "_throttle.B0GR3Iyz.js",
1120
+ "_checkbox.0BeV1IBL.js",
917
1121
  "_createDownloadLinkElement.ZaXNnPK4.js",
918
- "_toConsumableArray.DNbljYEC.js",
919
- "_possibleConstructorReturn.exeeJQEP.js",
920
- "_createSuper.CuQIogbW.js",
921
- "_FileDownload.esm.Ddx8VEYy.js"
1122
+ "_toConsumableArray.Db2pdqM2.js",
1123
+ "_possibleConstructorReturn.DD9NK1Z8.js",
1124
+ "_createSuper.RBO59fEm.js",
1125
+ "_FileDownload.esm.Dx0vI3vH.js",
1126
+ "__arrayIncludes.B19Iyn2B.js"
922
1127
  ],
923
1128
  "dynamicImports": [
924
1129
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
925
1130
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
926
- "_es6.BJcsVXQ0.js"
1131
+ "_es6.x9KsYQg-.js"
927
1132
  ],
928
1133
  "css": [
929
1134
  "static/css/index.DgR7E2CV.css"
@@ -933,20 +1138,40 @@
933
1138
  "file": "static/css/index.DgR7E2CV.css",
934
1139
  "src": "_index.DgR7E2CV.css"
935
1140
  },
936
- "_input.D4MN_FzN.js": {
937
- "file": "static/js/input.D4MN_FzN.js",
1141
+ "_input.D5oh9-aB.js": {
1142
+ "file": "static/js/input.D5oh9-aB.js",
938
1143
  "name": "input",
939
1144
  "imports": [
940
1145
  "index.html",
941
- "_base-input.CJGiNqed.js"
1146
+ "_base-input.o9tL8MDP.js"
942
1147
  ]
943
1148
  },
944
1149
  "_inputUtils.CptNuJwn.js": {
945
1150
  "file": "static/js/inputUtils.CptNuJwn.js",
946
1151
  "name": "inputUtils"
947
1152
  },
948
- "_possibleConstructorReturn.exeeJQEP.js": {
949
- "file": "static/js/possibleConstructorReturn.exeeJQEP.js",
1153
+ "_main.q9oGOg0H.js": {
1154
+ "file": "static/js/main.q9oGOg0H.js",
1155
+ "name": "main",
1156
+ "imports": [
1157
+ "index.html"
1158
+ ]
1159
+ },
1160
+ "_moment.C3j7ZXd7.js": {
1161
+ "file": "static/js/moment.C3j7ZXd7.js",
1162
+ "name": "moment"
1163
+ },
1164
+ "_pandasStylerUtils.BqhXt51_.js": {
1165
+ "file": "static/js/pandasStylerUtils.BqhXt51_.js",
1166
+ "name": "pandasStylerUtils",
1167
+ "imports": [
1168
+ "index.html",
1169
+ "_moment.C3j7ZXd7.js",
1170
+ "__baseIndexOf.BTknn6Gb.js"
1171
+ ]
1172
+ },
1173
+ "_possibleConstructorReturn.DD9NK1Z8.js": {
1174
+ "file": "static/js/possibleConstructorReturn.DD9NK1Z8.js",
950
1175
  "name": "possibleConstructorReturn",
951
1176
  "imports": [
952
1177
  "index.html"
@@ -956,105 +1181,181 @@
956
1181
  "file": "static/js/sprintf.D7DtBTRn.js",
957
1182
  "name": "sprintf"
958
1183
  },
959
- "_timepicker.DAhu-vcF.js": {
960
- "file": "static/js/timepicker.DAhu-vcF.js",
1184
+ "_styled-components.C3R090At.js": {
1185
+ "file": "static/js/styled-components.C3R090At.js",
1186
+ "name": "styled-components",
1187
+ "imports": [
1188
+ "index.html"
1189
+ ]
1190
+ },
1191
+ "_threshold.Q1mXg5rX.js": {
1192
+ "file": "static/js/threshold.Q1mXg5rX.js",
1193
+ "name": "threshold",
1194
+ "imports": [
1195
+ "_value.B4vHRSi7.js"
1196
+ ]
1197
+ },
1198
+ "_throttle.B0GR3Iyz.js": {
1199
+ "file": "static/js/throttle.B0GR3Iyz.js",
1200
+ "name": "throttle",
1201
+ "imports": [
1202
+ "index.html"
1203
+ ]
1204
+ },
1205
+ "_timepicker.BdhzPxrv.js": {
1206
+ "file": "static/js/timepicker.BdhzPxrv.js",
961
1207
  "name": "timepicker",
962
1208
  "imports": [
963
1209
  "index.html",
964
- "_possibleConstructorReturn.exeeJQEP.js",
965
- "_createSuper.CuQIogbW.js"
1210
+ "_possibleConstructorReturn.DD9NK1Z8.js",
1211
+ "_createSuper.RBO59fEm.js"
966
1212
  ]
967
1213
  },
968
- "_toConsumableArray.DNbljYEC.js": {
969
- "file": "static/js/toConsumableArray.DNbljYEC.js",
1214
+ "_timer.C2hYhUse.js": {
1215
+ "file": "static/js/timer.C2hYhUse.js",
1216
+ "name": "timer",
1217
+ "imports": [
1218
+ "_value.B4vHRSi7.js"
1219
+ ]
1220
+ },
1221
+ "_toConsumableArray.Db2pdqM2.js": {
1222
+ "file": "static/js/toConsumableArray.Db2pdqM2.js",
970
1223
  "name": "toConsumableArray",
971
1224
  "imports": [
972
1225
  "index.html",
973
- "_possibleConstructorReturn.exeeJQEP.js"
1226
+ "_possibleConstructorReturn.DD9NK1Z8.js"
974
1227
  ]
975
1228
  },
976
- "_uniqueId.oG4Gvj1v.js": {
977
- "file": "static/js/uniqueId.oG4Gvj1v.js",
1229
+ "_uniqueId.CtqIr-Yh.js": {
1230
+ "file": "static/js/uniqueId.CtqIr-Yh.js",
978
1231
  "name": "uniqueId",
979
1232
  "imports": [
980
1233
  "index.html"
981
1234
  ]
982
1235
  },
983
- "_useBasicWidgetState.D6sOH6oI.js": {
984
- "file": "static/js/useBasicWidgetState.D6sOH6oI.js",
1236
+ "_urls.BwSlolu9.js": {
1237
+ "file": "static/js/urls.BwSlolu9.js",
1238
+ "name": "urls"
1239
+ },
1240
+ "_useBasicWidgetState.Bfp6TnSw.js": {
1241
+ "file": "static/js/useBasicWidgetState.Bfp6TnSw.js",
985
1242
  "name": "useBasicWidgetState",
986
1243
  "imports": [
987
1244
  "index.html",
988
- "_FormClearHelper.BB1Km6eP.js"
1245
+ "_FormClearHelper.CG2XN1_g.js"
989
1246
  ]
990
1247
  },
991
- "_useTextInputAutoExpand.4u3_GcuN.js": {
992
- "file": "static/js/useTextInputAutoExpand.4u3_GcuN.js",
1248
+ "_useIntlLocale.hRV75Xgj.js": {
1249
+ "file": "static/js/useIntlLocale.hRV75Xgj.js",
1250
+ "name": "useIntlLocale",
1251
+ "imports": [
1252
+ "index.html",
1253
+ "_timepicker.BdhzPxrv.js",
1254
+ "_input.D5oh9-aB.js",
1255
+ "_base-input.o9tL8MDP.js"
1256
+ ]
1257
+ },
1258
+ "_useTextInputAutoExpand.QepX7n8Y.js": {
1259
+ "file": "static/js/useTextInputAutoExpand.QepX7n8Y.js",
993
1260
  "name": "useTextInputAutoExpand",
994
1261
  "imports": [
995
1262
  "index.html",
996
- "_base-input.CJGiNqed.js"
1263
+ "_base-input.o9tL8MDP.js"
997
1264
  ]
998
1265
  },
999
- "_useUpdateUiValue.F2R3eTeR.js": {
1000
- "file": "static/js/useUpdateUiValue.F2R3eTeR.js",
1266
+ "_useUpdateUiValue.DHx8TzX6.js": {
1267
+ "file": "static/js/useUpdateUiValue.DHx8TzX6.js",
1001
1268
  "name": "useUpdateUiValue",
1002
1269
  "imports": [
1003
1270
  "index.html",
1004
1271
  "_inputUtils.CptNuJwn.js"
1005
1272
  ]
1006
1273
  },
1007
- "_withFullScreenWrapper.zothJIsI.js": {
1008
- "file": "static/js/withFullScreenWrapper.zothJIsI.js",
1274
+ "_useWaveformController.WxVzpzEX.js": {
1275
+ "file": "static/js/useWaveformController.WxVzpzEX.js",
1276
+ "name": "useWaveformController",
1277
+ "imports": [
1278
+ "index.html"
1279
+ ],
1280
+ "dynamicImports": [
1281
+ "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js",
1282
+ "../node_modules/wavesurfer.js/dist/plugins/record.js"
1283
+ ]
1284
+ },
1285
+ "_value.B4vHRSi7.js": {
1286
+ "file": "static/js/value.B4vHRSi7.js",
1287
+ "name": "value"
1288
+ },
1289
+ "_withCalculatedWidth.DcKeRSWJ.js": {
1290
+ "file": "static/js/withCalculatedWidth.DcKeRSWJ.js",
1291
+ "name": "withCalculatedWidth",
1292
+ "imports": [
1293
+ "index.html"
1294
+ ]
1295
+ },
1296
+ "_withFullScreenWrapper.CrHddARq.js": {
1297
+ "file": "static/js/withFullScreenWrapper.CrHddARq.js",
1009
1298
  "name": "withFullScreenWrapper",
1010
1299
  "imports": [
1011
1300
  "index.html"
1012
1301
  ]
1013
1302
  },
1014
1303
  "index.html": {
1015
- "file": "static/js/index.CAj-7vWz.js",
1304
+ "file": "static/js/index.DMxc2XFp.js",
1016
1305
  "name": "index",
1017
1306
  "src": "index.html",
1018
1307
  "isEntry": true,
1019
1308
  "dynamicImports": [
1309
+ "../node_modules/rehype-katex/index.js",
1310
+ "../node_modules/rehype-raw/index.js",
1311
+ "../node_modules/remark-emoji/index.js",
1312
+ "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx",
1313
+ "../lib/src/components/elements/ArrowTable/index.ts",
1314
+ "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1020
1315
  "../lib/src/components/elements/Audio/index.ts",
1021
1316
  "../lib/src/components/elements/Balloons/index.ts",
1022
- "../lib/src/components/elements/Snow/index.ts",
1023
- "_index.DKb_NvmG.js",
1024
- "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1025
- "../lib/src/components/elements/Toast/index.ts",
1026
- "../lib/src/components/elements/BokehChart/index.ts",
1027
1317
  "../lib/src/components/elements/DeckGlJsonChart/index.ts",
1028
1318
  "../lib/src/components/elements/GraphVizChart/index.ts",
1319
+ "../lib/src/components/elements/Html/index.ts",
1029
1320
  "../lib/src/components/elements/IFrame/index.ts",
1030
1321
  "../lib/src/components/elements/ImageList/index.ts",
1322
+ "../lib/src/components/elements/Json/index.ts",
1031
1323
  "../lib/src/components/elements/LinkButton/index.ts",
1324
+ "../lib/src/components/elements/Metric/index.ts",
1032
1325
  "../lib/src/components/elements/PageLink/index.ts",
1033
1326
  "../lib/src/components/elements/PlotlyChart/index.ts",
1327
+ "../lib/src/components/elements/Progress/index.ts",
1328
+ "../lib/src/components/elements/Snow/index.ts",
1329
+ "../lib/src/components/elements/Spinner/index.ts",
1330
+ "../lib/src/components/elements/CodeBlock/StreamlitSyntaxHighlighter.tsx",
1331
+ "../lib/src/components/elements/Toast/index.ts",
1034
1332
  "../lib/src/components/elements/Video/index.ts",
1035
1333
  "../lib/src/components/widgets/AudioInput/index.ts",
1334
+ "_index.C_rK-Swb.js",
1036
1335
  "../lib/src/components/widgets/Button/index.ts",
1037
1336
  "../lib/src/components/widgets/ButtonGroup/index.ts",
1038
- "../lib/src/components/widgets/DownloadButton/index.ts",
1337
+ "../lib/src/components/widgets/CustomComponent/index.ts",
1039
1338
  "../lib/src/components/widgets/CameraInput/index.ts",
1040
1339
  "../lib/src/components/widgets/ChatInput/index.ts",
1041
1340
  "../lib/src/components/widgets/Checkbox/index.ts",
1042
1341
  "../lib/src/components/widgets/ColorPicker/index.ts",
1043
1342
  "../lib/src/components/widgets/DateInput/index.ts",
1044
- "../lib/src/components/elements/Html/index.ts",
1343
+ "../lib/src/components/widgets/DateTimeInput/index.ts",
1344
+ "../lib/src/components/widgets/DownloadButton/index.ts",
1345
+ "../lib/src/components/widgets/FileUploader/index.ts",
1346
+ "../lib/src/components/widgets/Form/index.ts",
1045
1347
  "../lib/src/components/widgets/Multiselect/index.ts",
1046
- "../lib/src/components/elements/Progress/index.ts",
1047
- "../lib/src/components/elements/Spinner/index.ts",
1348
+ "../lib/src/components/widgets/NumberInput/index.ts",
1048
1349
  "../lib/src/components/widgets/Radio/index.ts",
1049
1350
  "../lib/src/components/widgets/Selectbox/index.ts",
1050
1351
  "../lib/src/components/widgets/Slider/index.ts",
1051
- "../lib/src/components/widgets/FileUploader/index.ts",
1052
1352
  "../lib/src/components/widgets/TextArea/index.ts",
1053
1353
  "../lib/src/components/widgets/TextInput/index.ts",
1054
1354
  "../lib/src/components/widgets/TimeInput/index.ts",
1055
- "../lib/src/components/widgets/NumberInput/index.ts",
1056
1355
  "../lib/src/components/widgets/BidiComponent/index.tsx",
1057
- "_iframeResizer.contentWindow.XzUvQqcZ.js"
1356
+ "../node_modules/node-emoji/lib/index.js",
1357
+ "../node_modules/axios/index.js",
1358
+ "_iframeResizer.contentWindow.ZVXpMPi0.js"
1058
1359
  ],
1059
1360
  "css": [
1060
1361
  "static/css/index.BpABIXK9.css"