streamlit 1.45.1__py3-none-any.whl → 1.46.1__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 (335) hide show
  1. streamlit/__init__.py +5 -1
  2. streamlit/auth_util.py +12 -12
  3. streamlit/cli_util.py +4 -3
  4. streamlit/column_config.py +11 -9
  5. streamlit/commands/echo.py +6 -4
  6. streamlit/commands/execution_control.py +33 -32
  7. streamlit/commands/experimental_query_params.py +2 -2
  8. streamlit/commands/logo.py +9 -4
  9. streamlit/commands/navigation.py +61 -18
  10. streamlit/commands/page_config.py +57 -47
  11. streamlit/components/types/base_custom_component.py +7 -7
  12. streamlit/components/v1/component_registry.py +7 -3
  13. streamlit/components/v1/components.py +1 -1
  14. streamlit/components/v1/custom_component.py +8 -8
  15. streamlit/config.py +289 -144
  16. streamlit/config_option.py +19 -15
  17. streamlit/config_util.py +29 -23
  18. streamlit/connections/__init__.py +2 -2
  19. streamlit/connections/base_connection.py +5 -5
  20. streamlit/connections/snowflake_connection.py +13 -11
  21. streamlit/connections/snowpark_connection.py +3 -3
  22. streamlit/connections/sql_connection.py +20 -18
  23. streamlit/connections/util.py +2 -2
  24. streamlit/cursor.py +6 -6
  25. streamlit/dataframe_util.py +52 -52
  26. streamlit/delta_generator.py +46 -48
  27. streamlit/delta_generator_singletons.py +3 -3
  28. streamlit/deprecation_util.py +6 -6
  29. streamlit/elements/alert.py +37 -29
  30. streamlit/elements/arrow.py +40 -22
  31. streamlit/elements/code.py +46 -13
  32. streamlit/elements/deck_gl_json_chart.py +38 -27
  33. streamlit/elements/dialog_decorator.py +3 -4
  34. streamlit/elements/doc_string.py +64 -58
  35. streamlit/elements/exception.py +23 -27
  36. streamlit/elements/form.py +41 -0
  37. streamlit/elements/graphviz_chart.py +1 -1
  38. streamlit/elements/heading.py +60 -9
  39. streamlit/elements/html.py +3 -4
  40. streamlit/elements/image.py +8 -9
  41. streamlit/elements/json.py +21 -2
  42. streamlit/elements/layouts.py +120 -31
  43. streamlit/elements/lib/built_in_chart_utils.py +96 -73
  44. streamlit/elements/lib/color_util.py +3 -3
  45. streamlit/elements/lib/column_config_utils.py +2 -4
  46. streamlit/elements/lib/column_types.py +14 -8
  47. streamlit/elements/lib/dialog.py +9 -5
  48. streamlit/elements/lib/image_utils.py +39 -40
  49. streamlit/elements/lib/js_number.py +4 -4
  50. streamlit/elements/lib/layout_utils.py +65 -1
  51. streamlit/elements/lib/mutable_status_container.py +14 -3
  52. streamlit/elements/lib/options_selector_utils.py +22 -12
  53. streamlit/elements/lib/pandas_styler_utils.py +25 -21
  54. streamlit/elements/lib/policies.py +6 -5
  55. streamlit/elements/lib/streamlit_plotly_theme.py +54 -53
  56. streamlit/elements/lib/subtitle_utils.py +6 -9
  57. streamlit/elements/lib/utils.py +20 -5
  58. streamlit/elements/map.py +32 -56
  59. streamlit/elements/markdown.py +101 -12
  60. streamlit/elements/media.py +78 -21
  61. streamlit/elements/metric.py +32 -16
  62. streamlit/elements/plotly_chart.py +15 -15
  63. streamlit/elements/progress.py +33 -15
  64. streamlit/elements/spinner.py +31 -6
  65. streamlit/elements/text.py +21 -1
  66. streamlit/elements/toast.py +1 -2
  67. streamlit/elements/vega_charts.py +54 -23
  68. streamlit/elements/widgets/audio_input.py +24 -7
  69. streamlit/elements/widgets/button.py +26 -19
  70. streamlit/elements/widgets/button_group.py +10 -15
  71. streamlit/elements/widgets/camera_input.py +27 -7
  72. streamlit/elements/widgets/chat.py +91 -38
  73. streamlit/elements/widgets/checkbox.py +45 -4
  74. streamlit/elements/widgets/color_picker.py +40 -17
  75. streamlit/elements/widgets/data_editor.py +76 -37
  76. streamlit/elements/widgets/file_uploader.py +42 -13
  77. streamlit/elements/widgets/multiselect.py +7 -10
  78. streamlit/elements/widgets/number_input.py +123 -47
  79. streamlit/elements/widgets/radio.py +59 -13
  80. streamlit/elements/widgets/select_slider.py +35 -30
  81. streamlit/elements/widgets/selectbox.py +56 -9
  82. streamlit/elements/widgets/slider.py +190 -99
  83. streamlit/elements/widgets/text_widgets.py +54 -8
  84. streamlit/elements/widgets/time_widgets.py +53 -14
  85. streamlit/elements/write.py +5 -8
  86. streamlit/env_util.py +2 -7
  87. streamlit/error_util.py +16 -9
  88. streamlit/errors.py +69 -48
  89. streamlit/external/langchain/streamlit_callback_handler.py +10 -5
  90. streamlit/file_util.py +27 -10
  91. streamlit/git_util.py +29 -24
  92. streamlit/hello/animation_demo.py +9 -9
  93. streamlit/hello/dataframe_demo.py +5 -5
  94. streamlit/hello/hello.py +1 -0
  95. streamlit/hello/mapping_demo.py +7 -8
  96. streamlit/hello/plotting_demo.py +3 -3
  97. streamlit/hello/streamlit_app.py +28 -26
  98. streamlit/hello/utils.py +2 -1
  99. streamlit/logger.py +10 -11
  100. streamlit/navigation/page.py +11 -8
  101. streamlit/proto/Audio_pb2.py +4 -3
  102. streamlit/proto/Audio_pb2.pyi +8 -1
  103. streamlit/proto/Block_pb2.py +38 -29
  104. streamlit/proto/Block_pb2.pyi +72 -4
  105. streamlit/proto/ClientState_pb2.py +4 -4
  106. streamlit/proto/ClientState_pb2.pyi +7 -2
  107. streamlit/proto/Code_pb2.py +4 -2
  108. streamlit/proto/Code_pb2.pyi +1 -0
  109. streamlit/proto/DataFrame_pb2.pyi +1 -1
  110. streamlit/proto/DeckGlJsonChart_pb2.pyi +1 -1
  111. streamlit/proto/Element_pb2.py +5 -3
  112. streamlit/proto/Element_pb2.pyi +20 -3
  113. streamlit/proto/GapSize_pb2.py +29 -0
  114. streamlit/proto/GapSize_pb2.pyi +70 -0
  115. streamlit/proto/HeightConfig_pb2.py +27 -0
  116. streamlit/proto/HeightConfig_pb2.pyi +48 -0
  117. streamlit/proto/NamedDataSet_pb2.pyi +1 -1
  118. streamlit/proto/Navigation_pb2.py +3 -3
  119. streamlit/proto/Navigation_pb2.pyi +4 -0
  120. streamlit/proto/NewSession_pb2.py +18 -16
  121. streamlit/proto/NewSession_pb2.pyi +29 -3
  122. streamlit/proto/PageConfig_pb2.py +7 -7
  123. streamlit/proto/PageConfig_pb2.pyi +21 -1
  124. streamlit/proto/Video_pb2.py +8 -7
  125. streamlit/proto/Video_pb2.pyi +8 -1
  126. streamlit/proto/WidthConfig_pb2.py +2 -2
  127. streamlit/proto/WidthConfig_pb2.pyi +15 -1
  128. streamlit/runtime/__init__.py +1 -1
  129. streamlit/runtime/app_session.py +53 -40
  130. streamlit/runtime/caching/__init__.py +9 -9
  131. streamlit/runtime/caching/cache_data_api.py +36 -30
  132. streamlit/runtime/caching/cache_errors.py +4 -4
  133. streamlit/runtime/caching/cache_resource_api.py +8 -8
  134. streamlit/runtime/caching/cache_utils.py +15 -14
  135. streamlit/runtime/caching/cached_message_replay.py +14 -8
  136. streamlit/runtime/caching/hashing.py +91 -97
  137. streamlit/runtime/caching/legacy_cache_api.py +2 -2
  138. streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
  139. streamlit/runtime/caching/storage/dummy_cache_storage.py +1 -1
  140. streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +12 -14
  141. streamlit/runtime/caching/storage/local_disk_cache_storage.py +6 -6
  142. streamlit/runtime/connection_factory.py +36 -36
  143. streamlit/runtime/context.py +58 -9
  144. streamlit/runtime/credentials.py +29 -40
  145. streamlit/runtime/forward_msg_queue.py +11 -11
  146. streamlit/runtime/fragment.py +7 -7
  147. streamlit/runtime/media_file_manager.py +3 -4
  148. streamlit/runtime/memory_media_file_storage.py +6 -5
  149. streamlit/runtime/memory_uploaded_file_manager.py +2 -2
  150. streamlit/runtime/metrics_util.py +11 -12
  151. streamlit/runtime/pages_manager.py +4 -6
  152. streamlit/runtime/runtime.py +8 -6
  153. streamlit/runtime/runtime_util.py +7 -6
  154. streamlit/runtime/scriptrunner/__init__.py +4 -4
  155. streamlit/runtime/scriptrunner/exec_code.py +12 -5
  156. streamlit/runtime/scriptrunner/magic.py +16 -12
  157. streamlit/runtime/scriptrunner/script_cache.py +1 -1
  158. streamlit/runtime/scriptrunner/script_runner.py +53 -29
  159. streamlit/runtime/scriptrunner_utils/exceptions.py +1 -1
  160. streamlit/runtime/scriptrunner_utils/script_requests.py +7 -4
  161. streamlit/runtime/scriptrunner_utils/script_run_context.py +10 -23
  162. streamlit/runtime/secrets.py +40 -35
  163. streamlit/runtime/session_manager.py +2 -1
  164. streamlit/runtime/state/__init__.py +5 -5
  165. streamlit/runtime/state/common.py +2 -2
  166. streamlit/runtime/state/query_params.py +13 -15
  167. streamlit/runtime/state/query_params_proxy.py +17 -13
  168. streamlit/runtime/state/safe_session_state.py +2 -2
  169. streamlit/runtime/state/session_state.py +52 -34
  170. streamlit/runtime/stats.py +2 -2
  171. streamlit/runtime/uploaded_file_manager.py +1 -1
  172. streamlit/runtime/websocket_session_manager.py +10 -6
  173. streamlit/source_util.py +8 -6
  174. streamlit/static/index.html +3 -17
  175. streamlit/static/manifest.json +1180 -0
  176. streamlit/static/static/css/{index.DqDwtg6_.css → index.CJVRHjQZ.css} +1 -1
  177. streamlit/static/static/js/{ErrorOutline.esm.DU9IrB3M.js → ErrorOutline.esm.DitPpe1Y.js} +1 -1
  178. streamlit/static/static/js/{FileDownload.esm.P9rKwKo8.js → FileDownload.esm.AI3watX9.js} +1 -1
  179. streamlit/static/static/js/{FileHelper.D7RMkx0e.js → FileHelper.kt7mhnu8.js} +5 -5
  180. streamlit/static/static/js/{FormClearHelper.B67tgll0.js → FormClearHelper.D1M9GM_c.js} +1 -1
  181. streamlit/static/static/js/{Hooks.ncTJktu9.js → Hooks.BGwHKeUc.js} +1 -1
  182. streamlit/static/static/js/{InputInstructions.D-Y8geDN.js → InputInstructions.DaZ89mzH.js} +1 -1
  183. streamlit/static/static/js/{ProgressBar.B-kexwwD.js → ProgressBar.C0zPMe-p.js} +2 -2
  184. streamlit/static/static/js/{RenderInPortalIfExists.BgaoZgep.js → RenderInPortalIfExists.Ox8gQvdz.js} +1 -1
  185. streamlit/static/static/js/Toolbar.KhlcEc0K.js +1 -0
  186. streamlit/static/static/js/UploadFileInfo.0DCkpDDf.js +6 -0
  187. streamlit/static/static/js/{base-input.BoAa1U94.js → base-input.BJ4qsfSq.js} +4 -4
  188. streamlit/static/static/js/{checkbox.Z6iSfe5F.js → checkbox.DSDh78Xz.js} +2 -2
  189. streamlit/static/static/js/{createSuper.B4oGDYRm.js → createSuper.wQ9SIXEJ.js} +1 -1
  190. streamlit/static/static/js/{data-grid-overlay-editor.msYws2Ou.js → data-grid-overlay-editor.DvbdPJ15.js} +1 -1
  191. streamlit/static/static/js/{downloader.kc14n2Hv.js → downloader.CD9rzih5.js} +1 -1
  192. streamlit/static/static/js/{es6.CxQz807-.js → es6.48Q9Qjgb.js} +2 -2
  193. streamlit/static/static/js/{iframeResizer.contentWindow.B19u0ONI.js → iframeResizer.contentWindow.CKdem3Bn.js} +1 -1
  194. streamlit/static/static/js/{index.LaIasviC.js → index.6md5Qhod.js} +1 -1
  195. streamlit/static/static/js/index.7hy6AeJ1.js +1 -0
  196. streamlit/static/static/js/index.B4CGJiBW.js +1 -0
  197. streamlit/static/static/js/index.B8oW0ZTD.js +1 -0
  198. streamlit/static/static/js/index.BU6RnlHI.js +73 -0
  199. streamlit/static/static/js/index.BUq9Wcf8.js +197 -0
  200. streamlit/static/static/js/{index.BFz9U2y0.js → index.BXXo-Yoj.js} +1 -1
  201. streamlit/static/static/js/index.Bae9H0OS.js +1 -0
  202. streamlit/static/static/js/{index.-5ruC9At.js → index.BhTl2Uyb.js} +1 -1
  203. streamlit/static/static/js/{index.BpILzHf_.js → index.BiSaCB1o.js} +20 -20
  204. streamlit/static/static/js/{index.xNQq3Ei5.js → index.BulSAJ9z.js} +1 -1
  205. streamlit/static/static/js/{index.9V1KdxfP.js → index.Bv-EuTKR.js} +1 -1
  206. streamlit/static/static/js/index.BvMLYCHi.js +1 -0
  207. streamlit/static/static/js/index.C1NIn1Y2.js +783 -0
  208. streamlit/static/static/js/index.CP-fthOJ.js +2 -0
  209. streamlit/static/static/js/{index.BoigZiu7.js → index.CS9guO3p.js} +1 -1
  210. streamlit/static/static/js/index.CYTBHth8.js +1 -0
  211. streamlit/static/static/js/{index.CmTAF0dM.js → index.CcJufcuD.js} +1 -1
  212. streamlit/static/static/js/index.CnENU1yn.js +1 -0
  213. streamlit/static/static/js/index.Cns13qBb.js +1 -0
  214. streamlit/static/static/js/index.Ct_xXq7w.js +1 -0
  215. streamlit/static/static/js/{index.BqfdT8-Q.js → index.CxGSemHL.js} +1 -1
  216. streamlit/static/static/js/index.D5S0ldVb.js +1 -0
  217. streamlit/static/static/js/index.D72B_ksb.js +2 -0
  218. streamlit/static/static/js/index.DI4yZ27M.js +1 -0
  219. streamlit/static/static/js/index.DN51vLxR.js +1 -0
  220. streamlit/static/static/js/index.DRtq5dka.js +1 -0
  221. streamlit/static/static/js/{index.BHXxWdde.js → index.DX-oiXlb.js} +1 -1
  222. streamlit/static/static/js/index.DlFE4_Aq.js +12 -0
  223. streamlit/static/static/js/{index.BHGGDa8K.js → index.J7BJwXOi.js} +2 -2
  224. streamlit/static/static/js/index.Jg38kJPP.js +1 -0
  225. streamlit/static/static/js/index.JhIO6abf.js +3 -0
  226. streamlit/static/static/js/{index.DeB9iKFW.js → index.NkRcWwc5.js} +255 -255
  227. streamlit/static/static/js/{index.BGga-hcS.js → index.prekPLrm.js} +25 -25
  228. streamlit/static/static/js/{index.BRXmLIsC.js → index.wyzngKUE.js} +1 -1
  229. streamlit/static/static/js/index.xW7mVdI8.js +1 -0
  230. streamlit/static/static/js/index.yk07dYGx.js +1 -0
  231. streamlit/static/static/js/{input.DsCfafm0.js → input.CxKZ5Wrc.js} +2 -2
  232. streamlit/static/static/js/{memory.nY_lMTtu.js → memory.DeZ9VUvl.js} +1 -1
  233. streamlit/static/static/js/{mergeWith.B_7zmsM4.js → mergeWith.CVkhrWUb.js} +1 -1
  234. streamlit/static/static/js/{number-overlay-editor.CSeVhHRU.js → number-overlay-editor.Bpkm3nTq.js} +1 -1
  235. streamlit/static/static/js/{possibleConstructorReturn.nNhsvgRd.js → possibleConstructorReturn.CIDCId52.js} +1 -1
  236. streamlit/static/static/js/{sandbox.Cgm3iuL6.js → sandbox.TrkMaokR.js} +1 -1
  237. streamlit/static/static/js/{textarea.BR8rlyih.js → textarea.QKjxR64N.js} +2 -2
  238. streamlit/static/static/js/{timepicker.w4XhAenH.js → timepicker.DJYmE1dK.js} +1 -1
  239. streamlit/static/static/js/{toConsumableArray.CgkEPBwD.js → toConsumableArray.BZoworE-.js} +1 -1
  240. streamlit/static/static/js/{uniqueId.j-1rlNNH.js → uniqueId.O0UbJ2Bu.js} +1 -1
  241. streamlit/static/static/js/{useBasicWidgetState.zXY9CjFS.js → useBasicWidgetState.Ci89jaH5.js} +1 -1
  242. streamlit/static/static/js/useOnInputChange.Cxh6ExEn.js +1 -0
  243. streamlit/static/static/js/{withFullScreenWrapper.Ov13692o.js → withFullScreenWrapper.iW37lS8Z.js} +1 -1
  244. streamlit/static/static/media/SourceCodeVF-Italic.ttf.Ba1oaZG1.woff2 +0 -0
  245. streamlit/static/static/media/SourceCodeVF-Upright.ttf.BjWn63N-.woff2 +0 -0
  246. streamlit/static/static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2 +0 -0
  247. streamlit/static/static/media/SourceSansVF-Upright.ttf.BsWL4Kly.woff2 +0 -0
  248. streamlit/static/static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2 +0 -0
  249. streamlit/static/static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2 +0 -0
  250. streamlit/string_util.py +14 -19
  251. streamlit/temporary_directory.py +13 -4
  252. streamlit/testing/v1/app_test.py +15 -10
  253. streamlit/testing/v1/element_tree.py +157 -178
  254. streamlit/testing/v1/local_script_runner.py +11 -15
  255. streamlit/testing/v1/util.py +11 -4
  256. streamlit/type_util.py +8 -12
  257. streamlit/url_util.py +1 -1
  258. streamlit/user_info.py +6 -5
  259. streamlit/util.py +25 -1
  260. streamlit/vendor/pympler/asizeof.py +3 -2
  261. streamlit/watcher/event_based_path_watcher.py +21 -2
  262. streamlit/watcher/folder_black_list.py +2 -2
  263. streamlit/watcher/local_sources_watcher.py +64 -18
  264. streamlit/watcher/path_watcher.py +6 -10
  265. streamlit/watcher/polling_path_watcher.py +8 -7
  266. streamlit/watcher/util.py +7 -6
  267. streamlit/web/bootstrap.py +16 -14
  268. streamlit/web/cli.py +52 -45
  269. streamlit/web/server/__init__.py +7 -3
  270. streamlit/web/server/app_static_file_handler.py +1 -1
  271. streamlit/web/server/authlib_tornado_integration.py +9 -4
  272. streamlit/web/server/browser_websocket_handler.py +8 -2
  273. streamlit/web/server/component_request_handler.py +14 -10
  274. streamlit/web/server/media_file_handler.py +14 -7
  275. streamlit/web/server/oauth_authlib_routes.py +41 -9
  276. streamlit/web/server/oidc_mixin.py +35 -17
  277. streamlit/web/server/routes.py +32 -22
  278. streamlit/web/server/server.py +13 -24
  279. streamlit/web/server/server_util.py +43 -9
  280. streamlit/web/server/stats_request_handler.py +7 -5
  281. streamlit/web/server/upload_file_request_handler.py +22 -19
  282. streamlit/web/server/websocket_headers.py +1 -1
  283. {streamlit-1.45.1.dist-info → streamlit-1.46.1.dist-info}/METADATA +4 -4
  284. streamlit-1.46.1.dist-info/RECORD +559 -0
  285. {streamlit-1.45.1.dist-info → streamlit-1.46.1.dist-info}/WHEEL +1 -1
  286. streamlit/elements/lib/event_utils.py +0 -39
  287. streamlit/static/static/js/Toolbar.D9RUZv9G.js +0 -1
  288. streamlit/static/static/js/UploadFileInfo.C-jY39rj.js +0 -1
  289. streamlit/static/static/js/index.8jhZBWF2.js +0 -3
  290. streamlit/static/static/js/index.BCx3C6e_.js +0 -1
  291. streamlit/static/static/js/index.BRuTz_S4.js +0 -1
  292. streamlit/static/static/js/index.Bcru_ti-.js +0 -1
  293. streamlit/static/static/js/index.Bl1FMJRd.js +0 -1
  294. streamlit/static/static/js/index.C1z8KpLA.js +0 -779
  295. streamlit/static/static/js/index.C32I2PUe.js +0 -2
  296. streamlit/static/static/js/index.C5GnDRB7.js +0 -1
  297. streamlit/static/static/js/index.CG4qPaaW.js +0 -2
  298. streamlit/static/static/js/index.C_msmT1u.js +0 -1
  299. streamlit/static/static/js/index.CbeNTdd6.js +0 -1
  300. streamlit/static/static/js/index.CnGQVJcw.js +0 -12
  301. streamlit/static/static/js/index.CopVVq4l.js +0 -1
  302. streamlit/static/static/js/index.CtXupx4d.js +0 -197
  303. streamlit/static/static/js/index.DGmCchO7.js +0 -1
  304. streamlit/static/static/js/index.DH6zBk0e.js +0 -1
  305. streamlit/static/static/js/index.DHVlVWsm.js +0 -1
  306. streamlit/static/static/js/index.DRKIVBoi.js +0 -1
  307. streamlit/static/static/js/index.DUd-lFXx.js +0 -73
  308. streamlit/static/static/js/index.D_uRBA4B.js +0 -1
  309. streamlit/static/static/js/index.QHNfgPJd.js +0 -1
  310. streamlit/static/static/js/index.a-RJocYL.js +0 -1
  311. streamlit/static/static/js/index.cvz4B1gy.js +0 -1
  312. streamlit/static/static/js/index.t--hEgTQ.js +0 -6
  313. streamlit/static/static/js/useOnInputChange.z04u96A8.js +0 -1
  314. streamlit/static/static/media/SourceCodePro-Bold.CFEfr7-q.woff2 +0 -0
  315. streamlit/static/static/media/SourceCodePro-BoldItalic.C-LkFXxa.woff2 +0 -0
  316. streamlit/static/static/media/SourceCodePro-Italic.CxFOx7N-.woff2 +0 -0
  317. streamlit/static/static/media/SourceCodePro-Regular.CBOlD63d.woff2 +0 -0
  318. streamlit/static/static/media/SourceCodePro-SemiBold.CFHwW3Wd.woff2 +0 -0
  319. streamlit/static/static/media/SourceCodePro-SemiBoldItalic.Cg2yRu82.woff2 +0 -0
  320. streamlit/static/static/media/SourceSansPro-Bold.-6c9oR8J.woff2 +0 -0
  321. streamlit/static/static/media/SourceSansPro-BoldItalic.DmM_grLY.woff2 +0 -0
  322. streamlit/static/static/media/SourceSansPro-Italic.I1ipWe7Q.woff2 +0 -0
  323. streamlit/static/static/media/SourceSansPro-Regular.DZLUzqI4.woff2 +0 -0
  324. streamlit/static/static/media/SourceSansPro-SemiBold.sKQIyTMz.woff2 +0 -0
  325. streamlit/static/static/media/SourceSansPro-SemiBoldItalic.C0wP0icr.woff2 +0 -0
  326. streamlit/static/static/media/SourceSerifPro-Bold.8TUnKj4x.woff2 +0 -0
  327. streamlit/static/static/media/SourceSerifPro-BoldItalic.CBVO7Ve7.woff2 +0 -0
  328. streamlit/static/static/media/SourceSerifPro-Italic.DkFgL2HZ.woff2 +0 -0
  329. streamlit/static/static/media/SourceSerifPro-Regular.CNJNET2S.woff2 +0 -0
  330. streamlit/static/static/media/SourceSerifPro-SemiBold.CHyh9GC5.woff2 +0 -0
  331. streamlit/static/static/media/SourceSerifPro-SemiBoldItalic.CBtz8sWN.woff2 +0 -0
  332. streamlit-1.45.1.dist-info/RECORD +0 -568
  333. {streamlit-1.45.1.data → streamlit-1.46.1.data}/scripts/streamlit.cmd +0 -0
  334. {streamlit-1.45.1.dist-info → streamlit-1.46.1.dist-info}/entry_points.txt +0 -0
  335. {streamlit-1.45.1.dist-info → streamlit-1.46.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1180 @@
1
+ {
2
+ "../lib/src/assets/img/balloons/balloon-0.png": {
3
+ "file": "static/media/balloon-0.Czj7AKwE.png",
4
+ "src": "../lib/src/assets/img/balloons/balloon-0.png"
5
+ },
6
+ "../lib/src/assets/img/balloons/balloon-1.png": {
7
+ "file": "static/media/balloon-1.CNvFFrND.png",
8
+ "src": "../lib/src/assets/img/balloons/balloon-1.png"
9
+ },
10
+ "../lib/src/assets/img/balloons/balloon-2.png": {
11
+ "file": "static/media/balloon-2.DTvC6B1t.png",
12
+ "src": "../lib/src/assets/img/balloons/balloon-2.png"
13
+ },
14
+ "../lib/src/assets/img/balloons/balloon-3.png": {
15
+ "file": "static/media/balloon-3.CgSk4tbL.png",
16
+ "src": "../lib/src/assets/img/balloons/balloon-3.png"
17
+ },
18
+ "../lib/src/assets/img/balloons/balloon-4.png": {
19
+ "file": "static/media/balloon-4.mbtFrzxf.png",
20
+ "src": "../lib/src/assets/img/balloons/balloon-4.png"
21
+ },
22
+ "../lib/src/assets/img/balloons/balloon-5.png": {
23
+ "file": "static/media/balloon-5.CSwkUfRA.png",
24
+ "src": "../lib/src/assets/img/balloons/balloon-5.png"
25
+ },
26
+ "../lib/src/assets/img/snow/flake-0.png": {
27
+ "file": "static/media/flake-0.DgWaVvm5.png",
28
+ "src": "../lib/src/assets/img/snow/flake-0.png"
29
+ },
30
+ "../lib/src/assets/img/snow/flake-1.png": {
31
+ "file": "static/media/flake-1.B2r5AHMK.png",
32
+ "src": "../lib/src/assets/img/snow/flake-1.png"
33
+ },
34
+ "../lib/src/assets/img/snow/flake-2.png": {
35
+ "file": "static/media/flake-2.BnWSExPC.png",
36
+ "src": "../lib/src/assets/img/snow/flake-2.png"
37
+ },
38
+ "../lib/src/components/elements/ArrowVegaLiteChart/index.ts": {
39
+ "file": "static/js/index.BiSaCB1o.js",
40
+ "name": "index",
41
+ "src": "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
42
+ "isDynamicEntry": true,
43
+ "imports": [
44
+ "index.html",
45
+ "_Toolbar.KhlcEc0K.js",
46
+ "_withFullScreenWrapper.iW37lS8Z.js",
47
+ "_mergeWith.CVkhrWUb.js",
48
+ "_threshold.DjX0wlsa.js",
49
+ "_value.CgPGBV_l.js",
50
+ "_timer.CAwTRJ_g.js",
51
+ "_FormClearHelper.D1M9GM_c.js"
52
+ ]
53
+ },
54
+ "../lib/src/components/elements/Audio/index.ts": {
55
+ "file": "static/js/index.CcJufcuD.js",
56
+ "name": "index",
57
+ "src": "../lib/src/components/elements/Audio/index.ts",
58
+ "isDynamicEntry": true,
59
+ "imports": [
60
+ "index.html"
61
+ ]
62
+ },
63
+ "../lib/src/components/elements/Balloons/index.ts": {
64
+ "file": "static/js/index.CS9guO3p.js",
65
+ "name": "index",
66
+ "src": "../lib/src/components/elements/Balloons/index.ts",
67
+ "isDynamicEntry": true,
68
+ "imports": [
69
+ "index.html",
70
+ "_RenderInPortalIfExists.Ox8gQvdz.js"
71
+ ],
72
+ "assets": [
73
+ "static/media/balloon-0.Czj7AKwE.png",
74
+ "static/media/balloon-1.CNvFFrND.png",
75
+ "static/media/balloon-2.DTvC6B1t.png",
76
+ "static/media/balloon-3.CgSk4tbL.png",
77
+ "static/media/balloon-4.mbtFrzxf.png",
78
+ "static/media/balloon-5.CSwkUfRA.png"
79
+ ]
80
+ },
81
+ "../lib/src/components/elements/BokehChart/index.ts": {
82
+ "file": "static/js/index.BulSAJ9z.js",
83
+ "name": "index",
84
+ "src": "../lib/src/components/elements/BokehChart/index.ts",
85
+ "isDynamicEntry": true,
86
+ "imports": [
87
+ "index.html"
88
+ ]
89
+ },
90
+ "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
91
+ "file": "static/js/index.NkRcWwc5.js",
92
+ "name": "index",
93
+ "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
94
+ "isDynamicEntry": true,
95
+ "imports": [
96
+ "index.html",
97
+ "_toConsumableArray.BZoworE-.js",
98
+ "_possibleConstructorReturn.CIDCId52.js",
99
+ "_Toolbar.KhlcEc0K.js",
100
+ "_withFullScreenWrapper.iW37lS8Z.js",
101
+ "_useBasicWidgetState.Ci89jaH5.js",
102
+ "_threshold.DjX0wlsa.js",
103
+ "_FormClearHelper.D1M9GM_c.js",
104
+ "_value.CgPGBV_l.js"
105
+ ],
106
+ "css": [
107
+ "static/css/index.DzuxGC_t.css"
108
+ ]
109
+ },
110
+ "../lib/src/components/elements/GraphVizChart/index.ts": {
111
+ "file": "static/js/index.BXXo-Yoj.js",
112
+ "name": "index",
113
+ "src": "../lib/src/components/elements/GraphVizChart/index.ts",
114
+ "isDynamicEntry": true,
115
+ "imports": [
116
+ "index.html",
117
+ "_timer.CAwTRJ_g.js",
118
+ "_value.CgPGBV_l.js",
119
+ "_Toolbar.KhlcEc0K.js",
120
+ "_withFullScreenWrapper.iW37lS8Z.js"
121
+ ]
122
+ },
123
+ "../lib/src/components/elements/Html/index.ts": {
124
+ "file": "static/js/index.CP-fthOJ.js",
125
+ "name": "index",
126
+ "src": "../lib/src/components/elements/Html/index.ts",
127
+ "isDynamicEntry": true,
128
+ "imports": [
129
+ "index.html"
130
+ ]
131
+ },
132
+ "../lib/src/components/elements/IFrame/index.ts": {
133
+ "file": "static/js/index.B4CGJiBW.js",
134
+ "name": "index",
135
+ "src": "../lib/src/components/elements/IFrame/index.ts",
136
+ "isDynamicEntry": true,
137
+ "imports": [
138
+ "index.html"
139
+ ]
140
+ },
141
+ "../lib/src/components/elements/ImageList/index.ts": {
142
+ "file": "static/js/index.Jg38kJPP.js",
143
+ "name": "index",
144
+ "src": "../lib/src/components/elements/ImageList/index.ts",
145
+ "isDynamicEntry": true,
146
+ "imports": [
147
+ "index.html",
148
+ "_withFullScreenWrapper.iW37lS8Z.js",
149
+ "_Toolbar.KhlcEc0K.js"
150
+ ]
151
+ },
152
+ "../lib/src/components/elements/LinkButton/index.ts": {
153
+ "file": "static/js/index.Bae9H0OS.js",
154
+ "name": "index",
155
+ "src": "../lib/src/components/elements/LinkButton/index.ts",
156
+ "isDynamicEntry": true,
157
+ "imports": [
158
+ "index.html"
159
+ ]
160
+ },
161
+ "../lib/src/components/elements/PageLink/index.ts": {
162
+ "file": "static/js/index.DI4yZ27M.js",
163
+ "name": "index",
164
+ "src": "../lib/src/components/elements/PageLink/index.ts",
165
+ "isDynamicEntry": true,
166
+ "imports": [
167
+ "index.html"
168
+ ]
169
+ },
170
+ "../lib/src/components/elements/PlotlyChart/index.ts": {
171
+ "file": "static/js/index.prekPLrm.js",
172
+ "name": "index",
173
+ "src": "../lib/src/components/elements/PlotlyChart/index.ts",
174
+ "isDynamicEntry": true,
175
+ "imports": [
176
+ "index.html",
177
+ "_FormClearHelper.D1M9GM_c.js",
178
+ "_withFullScreenWrapper.iW37lS8Z.js"
179
+ ]
180
+ },
181
+ "../lib/src/components/elements/Progress/index.ts": {
182
+ "file": "static/js/index.BhTl2Uyb.js",
183
+ "name": "index",
184
+ "src": "../lib/src/components/elements/Progress/index.ts",
185
+ "isDynamicEntry": true,
186
+ "imports": [
187
+ "index.html",
188
+ "_ProgressBar.C0zPMe-p.js"
189
+ ]
190
+ },
191
+ "../lib/src/components/elements/Snow/index.ts": {
192
+ "file": "static/js/index.Bv-EuTKR.js",
193
+ "name": "index",
194
+ "src": "../lib/src/components/elements/Snow/index.ts",
195
+ "isDynamicEntry": true,
196
+ "imports": [
197
+ "index.html",
198
+ "_RenderInPortalIfExists.Ox8gQvdz.js"
199
+ ],
200
+ "assets": [
201
+ "static/media/flake-0.DgWaVvm5.png",
202
+ "static/media/flake-1.B2r5AHMK.png",
203
+ "static/media/flake-2.BnWSExPC.png"
204
+ ]
205
+ },
206
+ "../lib/src/components/elements/Spinner/index.ts": {
207
+ "file": "static/js/index.Ct_xXq7w.js",
208
+ "name": "index",
209
+ "src": "../lib/src/components/elements/Spinner/index.ts",
210
+ "isDynamicEntry": true,
211
+ "imports": [
212
+ "index.html"
213
+ ]
214
+ },
215
+ "../lib/src/components/elements/Toast/index.ts": {
216
+ "file": "static/js/index.yk07dYGx.js",
217
+ "name": "index",
218
+ "src": "../lib/src/components/elements/Toast/index.ts",
219
+ "isDynamicEntry": true,
220
+ "imports": [
221
+ "index.html"
222
+ ]
223
+ },
224
+ "../lib/src/components/elements/Video/index.ts": {
225
+ "file": "static/js/index.BvMLYCHi.js",
226
+ "name": "index",
227
+ "src": "../lib/src/components/elements/Video/index.ts",
228
+ "isDynamicEntry": true,
229
+ "imports": [
230
+ "index.html"
231
+ ]
232
+ },
233
+ "../lib/src/components/widgets/AudioInput/index.ts": {
234
+ "file": "static/js/index.BU6RnlHI.js",
235
+ "name": "index",
236
+ "src": "../lib/src/components/widgets/AudioInput/index.ts",
237
+ "isDynamicEntry": true,
238
+ "imports": [
239
+ "index.html",
240
+ "_FormClearHelper.D1M9GM_c.js",
241
+ "_Toolbar.KhlcEc0K.js",
242
+ "_Hooks.BGwHKeUc.js",
243
+ "_createDownloadLinkElement.DZMwyjvU.js",
244
+ "_FileDownload.esm.AI3watX9.js"
245
+ ]
246
+ },
247
+ "../lib/src/components/widgets/Button/index.ts": {
248
+ "file": "static/js/index.DX-oiXlb.js",
249
+ "name": "index",
250
+ "src": "../lib/src/components/widgets/Button/index.ts",
251
+ "isDynamicEntry": true,
252
+ "imports": [
253
+ "index.html"
254
+ ]
255
+ },
256
+ "../lib/src/components/widgets/ButtonGroup/index.ts": {
257
+ "file": "static/js/index.J7BJwXOi.js",
258
+ "name": "index",
259
+ "src": "../lib/src/components/widgets/ButtonGroup/index.ts",
260
+ "isDynamicEntry": true,
261
+ "imports": [
262
+ "index.html",
263
+ "_useBasicWidgetState.Ci89jaH5.js",
264
+ "_FormClearHelper.D1M9GM_c.js"
265
+ ]
266
+ },
267
+ "../lib/src/components/widgets/CameraInput/index.ts": {
268
+ "file": "static/js/index.DN51vLxR.js",
269
+ "name": "index",
270
+ "src": "../lib/src/components/widgets/CameraInput/index.ts",
271
+ "isDynamicEntry": true,
272
+ "imports": [
273
+ "index.html",
274
+ "_UploadFileInfo.0DCkpDDf.js",
275
+ "_FormClearHelper.D1M9GM_c.js",
276
+ "_ProgressBar.C0zPMe-p.js"
277
+ ]
278
+ },
279
+ "../lib/src/components/widgets/ChatInput/index.ts": {
280
+ "file": "static/js/index.7hy6AeJ1.js",
281
+ "name": "index",
282
+ "src": "../lib/src/components/widgets/ChatInput/index.ts",
283
+ "isDynamicEntry": true,
284
+ "imports": [
285
+ "index.html",
286
+ "_FileHelper.kt7mhnu8.js",
287
+ "_InputInstructions.DaZ89mzH.js",
288
+ "_inputUtils.CQWz5UKz.js",
289
+ "_ErrorOutline.esm.DitPpe1Y.js",
290
+ "_UploadFileInfo.0DCkpDDf.js",
291
+ "_textarea.QKjxR64N.js",
292
+ "_base-input.BJ4qsfSq.js"
293
+ ]
294
+ },
295
+ "../lib/src/components/widgets/Checkbox/index.ts": {
296
+ "file": "static/js/index.CxGSemHL.js",
297
+ "name": "index",
298
+ "src": "../lib/src/components/widgets/Checkbox/index.ts",
299
+ "isDynamicEntry": true,
300
+ "imports": [
301
+ "index.html",
302
+ "_useBasicWidgetState.Ci89jaH5.js",
303
+ "_checkbox.DSDh78Xz.js",
304
+ "_FormClearHelper.D1M9GM_c.js"
305
+ ]
306
+ },
307
+ "../lib/src/components/widgets/ColorPicker/index.ts": {
308
+ "file": "static/js/index.wyzngKUE.js",
309
+ "name": "index",
310
+ "src": "../lib/src/components/widgets/ColorPicker/index.ts",
311
+ "isDynamicEntry": true,
312
+ "imports": [
313
+ "index.html",
314
+ "_useBasicWidgetState.Ci89jaH5.js",
315
+ "_FormClearHelper.D1M9GM_c.js"
316
+ ]
317
+ },
318
+ "../lib/src/components/widgets/DateInput/index.ts": {
319
+ "file": "static/js/index.DlFE4_Aq.js",
320
+ "name": "index",
321
+ "src": "../lib/src/components/widgets/DateInput/index.ts",
322
+ "isDynamicEntry": true,
323
+ "imports": [
324
+ "index.html",
325
+ "_useBasicWidgetState.Ci89jaH5.js",
326
+ "_ErrorOutline.esm.DitPpe1Y.js",
327
+ "_timepicker.DJYmE1dK.js",
328
+ "_input.CxKZ5Wrc.js",
329
+ "_base-input.BJ4qsfSq.js",
330
+ "_FormClearHelper.D1M9GM_c.js",
331
+ "_possibleConstructorReturn.CIDCId52.js",
332
+ "_createSuper.wQ9SIXEJ.js"
333
+ ]
334
+ },
335
+ "../lib/src/components/widgets/DownloadButton/index.ts": {
336
+ "file": "static/js/index.CYTBHth8.js",
337
+ "name": "index",
338
+ "src": "../lib/src/components/widgets/DownloadButton/index.ts",
339
+ "isDynamicEntry": true,
340
+ "imports": [
341
+ "index.html",
342
+ "_createDownloadLinkElement.DZMwyjvU.js"
343
+ ]
344
+ },
345
+ "../lib/src/components/widgets/FileUploader/index.ts": {
346
+ "file": "static/js/index.D5S0ldVb.js",
347
+ "name": "index",
348
+ "src": "../lib/src/components/widgets/FileUploader/index.ts",
349
+ "isDynamicEntry": true,
350
+ "imports": [
351
+ "index.html",
352
+ "_UploadFileInfo.0DCkpDDf.js",
353
+ "_FormClearHelper.D1M9GM_c.js",
354
+ "_FileHelper.kt7mhnu8.js",
355
+ "_ProgressBar.C0zPMe-p.js",
356
+ "_Hooks.BGwHKeUc.js"
357
+ ]
358
+ },
359
+ "../lib/src/components/widgets/Multiselect/index.ts": {
360
+ "file": "static/js/index.CnENU1yn.js",
361
+ "name": "index",
362
+ "src": "../lib/src/components/widgets/Multiselect/index.ts",
363
+ "isDynamicEntry": true,
364
+ "imports": [
365
+ "index.html",
366
+ "_useBasicWidgetState.Ci89jaH5.js",
367
+ "_FormClearHelper.D1M9GM_c.js"
368
+ ]
369
+ },
370
+ "../lib/src/components/widgets/NumberInput/index.ts": {
371
+ "file": "static/js/index.DRtq5dka.js",
372
+ "name": "index",
373
+ "src": "../lib/src/components/widgets/NumberInput/index.ts",
374
+ "isDynamicEntry": true,
375
+ "imports": [
376
+ "index.html",
377
+ "_uniqueId.O0UbJ2Bu.js",
378
+ "_FormClearHelper.D1M9GM_c.js",
379
+ "_InputInstructions.DaZ89mzH.js",
380
+ "_sprintf.D7DtBTRn.js",
381
+ "_input.CxKZ5Wrc.js",
382
+ "_base-input.BJ4qsfSq.js"
383
+ ]
384
+ },
385
+ "../lib/src/components/widgets/Radio/index.ts": {
386
+ "file": "static/js/index.6md5Qhod.js",
387
+ "name": "index",
388
+ "src": "../lib/src/components/widgets/Radio/index.ts",
389
+ "isDynamicEntry": true,
390
+ "imports": [
391
+ "index.html",
392
+ "_useBasicWidgetState.Ci89jaH5.js",
393
+ "_FormClearHelper.D1M9GM_c.js"
394
+ ]
395
+ },
396
+ "../lib/src/components/widgets/Selectbox/index.ts": {
397
+ "file": "static/js/index.B8oW0ZTD.js",
398
+ "name": "index",
399
+ "src": "../lib/src/components/widgets/Selectbox/index.ts",
400
+ "isDynamicEntry": true,
401
+ "imports": [
402
+ "index.html",
403
+ "_useBasicWidgetState.Ci89jaH5.js",
404
+ "_FormClearHelper.D1M9GM_c.js"
405
+ ]
406
+ },
407
+ "../lib/src/components/widgets/Slider/index.ts": {
408
+ "file": "static/js/index.D72B_ksb.js",
409
+ "name": "index",
410
+ "src": "../lib/src/components/widgets/Slider/index.ts",
411
+ "isDynamicEntry": true,
412
+ "imports": [
413
+ "index.html",
414
+ "_sprintf.D7DtBTRn.js",
415
+ "_useBasicWidgetState.Ci89jaH5.js",
416
+ "_FormClearHelper.D1M9GM_c.js"
417
+ ]
418
+ },
419
+ "../lib/src/components/widgets/TextArea/index.ts": {
420
+ "file": "static/js/index.Cns13qBb.js",
421
+ "name": "index",
422
+ "src": "../lib/src/components/widgets/TextArea/index.ts",
423
+ "isDynamicEntry": true,
424
+ "imports": [
425
+ "index.html",
426
+ "_uniqueId.O0UbJ2Bu.js",
427
+ "_useOnInputChange.Cxh6ExEn.js",
428
+ "_InputInstructions.DaZ89mzH.js",
429
+ "_useBasicWidgetState.Ci89jaH5.js",
430
+ "_textarea.QKjxR64N.js",
431
+ "_inputUtils.CQWz5UKz.js",
432
+ "_FormClearHelper.D1M9GM_c.js",
433
+ "_base-input.BJ4qsfSq.js"
434
+ ]
435
+ },
436
+ "../lib/src/components/widgets/TextInput/index.ts": {
437
+ "file": "static/js/index.xW7mVdI8.js",
438
+ "name": "index",
439
+ "src": "../lib/src/components/widgets/TextInput/index.ts",
440
+ "isDynamicEntry": true,
441
+ "imports": [
442
+ "index.html",
443
+ "_uniqueId.O0UbJ2Bu.js",
444
+ "_useOnInputChange.Cxh6ExEn.js",
445
+ "_useBasicWidgetState.Ci89jaH5.js",
446
+ "_InputInstructions.DaZ89mzH.js",
447
+ "_input.CxKZ5Wrc.js",
448
+ "_inputUtils.CQWz5UKz.js",
449
+ "_FormClearHelper.D1M9GM_c.js",
450
+ "_base-input.BJ4qsfSq.js"
451
+ ]
452
+ },
453
+ "../lib/src/components/widgets/TimeInput/index.ts": {
454
+ "file": "static/js/index.JhIO6abf.js",
455
+ "name": "index",
456
+ "src": "../lib/src/components/widgets/TimeInput/index.ts",
457
+ "isDynamicEntry": true,
458
+ "imports": [
459
+ "index.html",
460
+ "_useBasicWidgetState.Ci89jaH5.js",
461
+ "_timepicker.DJYmE1dK.js",
462
+ "_FormClearHelper.D1M9GM_c.js",
463
+ "_possibleConstructorReturn.CIDCId52.js",
464
+ "_createSuper.wQ9SIXEJ.js"
465
+ ]
466
+ },
467
+ "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js": {
468
+ "file": "static/js/data-grid-overlay-editor.DvbdPJ15.js",
469
+ "name": "data-grid-overlay-editor",
470
+ "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
471
+ "isDynamicEntry": true,
472
+ "imports": [
473
+ "index.html",
474
+ "_index.BUq9Wcf8.js",
475
+ "_FormClearHelper.D1M9GM_c.js",
476
+ "_withFullScreenWrapper.iW37lS8Z.js",
477
+ "_Toolbar.KhlcEc0K.js",
478
+ "_checkbox.DSDh78Xz.js",
479
+ "_mergeWith.CVkhrWUb.js",
480
+ "_sprintf.D7DtBTRn.js",
481
+ "_createDownloadLinkElement.DZMwyjvU.js",
482
+ "_toConsumableArray.BZoworE-.js",
483
+ "_possibleConstructorReturn.CIDCId52.js",
484
+ "_createSuper.wQ9SIXEJ.js",
485
+ "_FileDownload.esm.AI3watX9.js"
486
+ ]
487
+ },
488
+ "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js": {
489
+ "file": "static/js/number-overlay-editor.Bpkm3nTq.js",
490
+ "name": "number-overlay-editor",
491
+ "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
492
+ "isDynamicEntry": true,
493
+ "imports": [
494
+ "index.html",
495
+ "_index.BUq9Wcf8.js",
496
+ "_FormClearHelper.D1M9GM_c.js",
497
+ "_withFullScreenWrapper.iW37lS8Z.js",
498
+ "_Toolbar.KhlcEc0K.js",
499
+ "_checkbox.DSDh78Xz.js",
500
+ "_mergeWith.CVkhrWUb.js",
501
+ "_sprintf.D7DtBTRn.js",
502
+ "_createDownloadLinkElement.DZMwyjvU.js",
503
+ "_toConsumableArray.BZoworE-.js",
504
+ "_possibleConstructorReturn.CIDCId52.js",
505
+ "_createSuper.wQ9SIXEJ.js",
506
+ "_FileDownload.esm.AI3watX9.js"
507
+ ]
508
+ },
509
+ "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf": {
510
+ "file": "static/media/KaTeX_AMS-Regular.DRggAlZN.ttf",
511
+ "src": "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf"
512
+ },
513
+ "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff": {
514
+ "file": "static/media/KaTeX_AMS-Regular.DMm9YOAa.woff",
515
+ "src": "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff"
516
+ },
517
+ "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff2": {
518
+ "file": "static/media/KaTeX_AMS-Regular.BQhdFMY1.woff2",
519
+ "src": "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff2"
520
+ },
521
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf": {
522
+ "file": "static/media/KaTeX_Caligraphic-Bold.ATXxdsX0.ttf",
523
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf"
524
+ },
525
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff": {
526
+ "file": "static/media/KaTeX_Caligraphic-Bold.BEiXGLvX.woff",
527
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff"
528
+ },
529
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2": {
530
+ "file": "static/media/KaTeX_Caligraphic-Bold.Dq_IR9rO.woff2",
531
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2"
532
+ },
533
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf": {
534
+ "file": "static/media/KaTeX_Caligraphic-Regular.wX97UBjC.ttf",
535
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf"
536
+ },
537
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff": {
538
+ "file": "static/media/KaTeX_Caligraphic-Regular.CTRA-rTL.woff",
539
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff"
540
+ },
541
+ "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2": {
542
+ "file": "static/media/KaTeX_Caligraphic-Regular.Di6jR-x-.woff2",
543
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2"
544
+ },
545
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf": {
546
+ "file": "static/media/KaTeX_Fraktur-Bold.BdnERNNW.ttf",
547
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf"
548
+ },
549
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff": {
550
+ "file": "static/media/KaTeX_Fraktur-Bold.BsDP51OF.woff",
551
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff"
552
+ },
553
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2": {
554
+ "file": "static/media/KaTeX_Fraktur-Bold.CL6g_b3V.woff2",
555
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2"
556
+ },
557
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf": {
558
+ "file": "static/media/KaTeX_Fraktur-Regular.CB_wures.ttf",
559
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf"
560
+ },
561
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff": {
562
+ "file": "static/media/KaTeX_Fraktur-Regular.Dxdc4cR9.woff",
563
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff"
564
+ },
565
+ "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2": {
566
+ "file": "static/media/KaTeX_Fraktur-Regular.CTYiF6lA.woff2",
567
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2"
568
+ },
569
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.ttf": {
570
+ "file": "static/media/KaTeX_Main-Bold.waoOVXN0.ttf",
571
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.ttf"
572
+ },
573
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff": {
574
+ "file": "static/media/KaTeX_Main-Bold.Jm3AIy58.woff",
575
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff"
576
+ },
577
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff2": {
578
+ "file": "static/media/KaTeX_Main-Bold.Cx986IdX.woff2",
579
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Bold.woff2"
580
+ },
581
+ "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf": {
582
+ "file": "static/media/KaTeX_Main-BoldItalic.DzxPMmG6.ttf",
583
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf"
584
+ },
585
+ "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff": {
586
+ "file": "static/media/KaTeX_Main-BoldItalic.SpSLRI95.woff",
587
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff"
588
+ },
589
+ "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2": {
590
+ "file": "static/media/KaTeX_Main-BoldItalic.DxDJ3AOS.woff2",
591
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2"
592
+ },
593
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.ttf": {
594
+ "file": "static/media/KaTeX_Main-Italic.3WenGoN9.ttf",
595
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.ttf"
596
+ },
597
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff": {
598
+ "file": "static/media/KaTeX_Main-Italic.BMLOBm91.woff",
599
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff"
600
+ },
601
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff2": {
602
+ "file": "static/media/KaTeX_Main-Italic.NWA7e6Wa.woff2",
603
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Italic.woff2"
604
+ },
605
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.ttf": {
606
+ "file": "static/media/KaTeX_Main-Regular.ypZvNtVU.ttf",
607
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.ttf"
608
+ },
609
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff": {
610
+ "file": "static/media/KaTeX_Main-Regular.Dr94JaBh.woff",
611
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff"
612
+ },
613
+ "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff2": {
614
+ "file": "static/media/KaTeX_Main-Regular.B22Nviop.woff2",
615
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff2"
616
+ },
617
+ "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf": {
618
+ "file": "static/media/KaTeX_Math-BoldItalic.B3XSjfu4.ttf",
619
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf"
620
+ },
621
+ "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff": {
622
+ "file": "static/media/KaTeX_Math-BoldItalic.iY-2wyZ7.woff",
623
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff"
624
+ },
625
+ "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2": {
626
+ "file": "static/media/KaTeX_Math-BoldItalic.CZnvNsCZ.woff2",
627
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2"
628
+ },
629
+ "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.ttf": {
630
+ "file": "static/media/KaTeX_Math-Italic.flOr_0UB.ttf",
631
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.ttf"
632
+ },
633
+ "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff": {
634
+ "file": "static/media/KaTeX_Math-Italic.DA0__PXp.woff",
635
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff"
636
+ },
637
+ "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff2": {
638
+ "file": "static/media/KaTeX_Math-Italic.t53AETM-.woff2",
639
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff2"
640
+ },
641
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf": {
642
+ "file": "static/media/KaTeX_SansSerif-Bold.CFMepnvq.ttf",
643
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf"
644
+ },
645
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff": {
646
+ "file": "static/media/KaTeX_SansSerif-Bold.DbIhKOiC.woff",
647
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff"
648
+ },
649
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2": {
650
+ "file": "static/media/KaTeX_SansSerif-Bold.D1sUS0GD.woff2",
651
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2"
652
+ },
653
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf": {
654
+ "file": "static/media/KaTeX_SansSerif-Italic.YYjJ1zSn.ttf",
655
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf"
656
+ },
657
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff": {
658
+ "file": "static/media/KaTeX_SansSerif-Italic.DN2j7dab.woff",
659
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff"
660
+ },
661
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2": {
662
+ "file": "static/media/KaTeX_SansSerif-Italic.C3H0VqGB.woff2",
663
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2"
664
+ },
665
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf": {
666
+ "file": "static/media/KaTeX_SansSerif-Regular.BNo7hRIc.ttf",
667
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf"
668
+ },
669
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff": {
670
+ "file": "static/media/KaTeX_SansSerif-Regular.CS6fqUqJ.woff",
671
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff"
672
+ },
673
+ "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2": {
674
+ "file": "static/media/KaTeX_SansSerif-Regular.DDBCnlJ7.woff2",
675
+ "src": "../node_modules/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2"
676
+ },
677
+ "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.ttf": {
678
+ "file": "static/media/KaTeX_Script-Regular.C5JkGWo-.ttf",
679
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.ttf"
680
+ },
681
+ "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff": {
682
+ "file": "static/media/KaTeX_Script-Regular.D5yQViql.woff",
683
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff"
684
+ },
685
+ "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff2": {
686
+ "file": "static/media/KaTeX_Script-Regular.D3wIWfF6.woff2",
687
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Script-Regular.woff2"
688
+ },
689
+ "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.ttf": {
690
+ "file": "static/media/KaTeX_Size1-Regular.Dbsnue_I.ttf",
691
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.ttf"
692
+ },
693
+ "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff": {
694
+ "file": "static/media/KaTeX_Size1-Regular.C195tn64.woff",
695
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff"
696
+ },
697
+ "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff2": {
698
+ "file": "static/media/KaTeX_Size1-Regular.mCD8mA8B.woff2",
699
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size1-Regular.woff2"
700
+ },
701
+ "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.ttf": {
702
+ "file": "static/media/KaTeX_Size2-Regular.B7gKUWhC.ttf",
703
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.ttf"
704
+ },
705
+ "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff": {
706
+ "file": "static/media/KaTeX_Size2-Regular.oD1tc_U0.woff",
707
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff"
708
+ },
709
+ "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff2": {
710
+ "file": "static/media/KaTeX_Size2-Regular.Dy4dx90m.woff2",
711
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size2-Regular.woff2"
712
+ },
713
+ "../node_modules/katex/dist/fonts/KaTeX_Size3-Regular.ttf": {
714
+ "file": "static/media/KaTeX_Size3-Regular.DgpXs0kz.ttf",
715
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size3-Regular.ttf"
716
+ },
717
+ "../node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff": {
718
+ "file": "static/media/KaTeX_Size3-Regular.CTq5MqoE.woff",
719
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size3-Regular.woff"
720
+ },
721
+ "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.ttf": {
722
+ "file": "static/media/KaTeX_Size4-Regular.DWFBv043.ttf",
723
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.ttf"
724
+ },
725
+ "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff": {
726
+ "file": "static/media/KaTeX_Size4-Regular.BF-4gkZK.woff",
727
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff"
728
+ },
729
+ "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff2": {
730
+ "file": "static/media/KaTeX_Size4-Regular.Dl5lxZxV.woff2",
731
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Size4-Regular.woff2"
732
+ },
733
+ "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf": {
734
+ "file": "static/media/KaTeX_Typewriter-Regular.D3Ib7_Hf.ttf",
735
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf"
736
+ },
737
+ "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff": {
738
+ "file": "static/media/KaTeX_Typewriter-Regular.C0xS9mPB.woff",
739
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff"
740
+ },
741
+ "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2": {
742
+ "file": "static/media/KaTeX_Typewriter-Regular.CO6r4hn1.woff2",
743
+ "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
744
+ },
745
+ "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
746
+ "file": "static/js/downloader.CD9rzih5.js",
747
+ "name": "downloader",
748
+ "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
749
+ "isDynamicEntry": true,
750
+ "imports": [
751
+ "_es6.48Q9Qjgb.js",
752
+ "index.html"
753
+ ]
754
+ },
755
+ "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
756
+ "file": "static/js/memory.DeZ9VUvl.js",
757
+ "name": "memory",
758
+ "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
759
+ "isDynamicEntry": true,
760
+ "imports": [
761
+ "_es6.48Q9Qjgb.js",
762
+ "index.html"
763
+ ]
764
+ },
765
+ "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
766
+ "file": "static/js/sandbox.TrkMaokR.js",
767
+ "name": "sandbox",
768
+ "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
769
+ "isDynamicEntry": true,
770
+ "imports": [
771
+ "_es6.48Q9Qjgb.js",
772
+ "index.html"
773
+ ]
774
+ },
775
+ "_ErrorOutline.esm.DitPpe1Y.js": {
776
+ "file": "static/js/ErrorOutline.esm.DitPpe1Y.js",
777
+ "name": "ErrorOutline.esm",
778
+ "imports": [
779
+ "index.html"
780
+ ]
781
+ },
782
+ "_FileDownload.esm.AI3watX9.js": {
783
+ "file": "static/js/FileDownload.esm.AI3watX9.js",
784
+ "name": "FileDownload.esm",
785
+ "imports": [
786
+ "index.html"
787
+ ]
788
+ },
789
+ "_FileHelper.kt7mhnu8.js": {
790
+ "file": "static/js/FileHelper.kt7mhnu8.js",
791
+ "name": "FileHelper",
792
+ "imports": [
793
+ "index.html",
794
+ "_UploadFileInfo.0DCkpDDf.js"
795
+ ]
796
+ },
797
+ "_FormClearHelper.D1M9GM_c.js": {
798
+ "file": "static/js/FormClearHelper.D1M9GM_c.js",
799
+ "name": "FormClearHelper",
800
+ "imports": [
801
+ "index.html"
802
+ ]
803
+ },
804
+ "_Hooks.BGwHKeUc.js": {
805
+ "file": "static/js/Hooks.BGwHKeUc.js",
806
+ "name": "Hooks",
807
+ "imports": [
808
+ "index.html"
809
+ ]
810
+ },
811
+ "_InputInstructions.DaZ89mzH.js": {
812
+ "file": "static/js/InputInstructions.DaZ89mzH.js",
813
+ "name": "InputInstructions",
814
+ "imports": [
815
+ "index.html"
816
+ ]
817
+ },
818
+ "_ProgressBar.C0zPMe-p.js": {
819
+ "file": "static/js/ProgressBar.C0zPMe-p.js",
820
+ "name": "ProgressBar",
821
+ "imports": [
822
+ "index.html"
823
+ ]
824
+ },
825
+ "_RenderInPortalIfExists.Ox8gQvdz.js": {
826
+ "file": "static/js/RenderInPortalIfExists.Ox8gQvdz.js",
827
+ "name": "RenderInPortalIfExists",
828
+ "imports": [
829
+ "index.html"
830
+ ]
831
+ },
832
+ "_Toolbar.KhlcEc0K.js": {
833
+ "file": "static/js/Toolbar.KhlcEc0K.js",
834
+ "name": "Toolbar",
835
+ "imports": [
836
+ "index.html"
837
+ ]
838
+ },
839
+ "_UploadFileInfo.0DCkpDDf.js": {
840
+ "file": "static/js/UploadFileInfo.0DCkpDDf.js",
841
+ "name": "UploadFileInfo"
842
+ },
843
+ "_base-input.BJ4qsfSq.js": {
844
+ "file": "static/js/base-input.BJ4qsfSq.js",
845
+ "name": "base-input",
846
+ "imports": [
847
+ "index.html"
848
+ ]
849
+ },
850
+ "_checkbox.DSDh78Xz.js": {
851
+ "file": "static/js/checkbox.DSDh78Xz.js",
852
+ "name": "checkbox",
853
+ "imports": [
854
+ "index.html"
855
+ ]
856
+ },
857
+ "_createDownloadLinkElement.DZMwyjvU.js": {
858
+ "file": "static/js/createDownloadLinkElement.DZMwyjvU.js",
859
+ "name": "createDownloadLinkElement"
860
+ },
861
+ "_createSuper.wQ9SIXEJ.js": {
862
+ "file": "static/js/createSuper.wQ9SIXEJ.js",
863
+ "name": "createSuper",
864
+ "imports": [
865
+ "_possibleConstructorReturn.CIDCId52.js"
866
+ ]
867
+ },
868
+ "_es6.48Q9Qjgb.js": {
869
+ "file": "static/js/es6.48Q9Qjgb.js",
870
+ "name": "es6",
871
+ "isDynamicEntry": true,
872
+ "imports": [
873
+ "index.html"
874
+ ],
875
+ "dynamicImports": [
876
+ "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
877
+ "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
878
+ "../node_modules/native-file-system-adapter/src/adapters/memory.js",
879
+ "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
880
+ "../node_modules/native-file-system-adapter/src/adapters/memory.js",
881
+ "../node_modules/native-file-system-adapter/src/adapters/memory.js"
882
+ ]
883
+ },
884
+ "_iframeResizer.contentWindow.CKdem3Bn.js": {
885
+ "file": "static/js/iframeResizer.contentWindow.CKdem3Bn.js",
886
+ "name": "iframeResizer.contentWindow",
887
+ "isDynamicEntry": true,
888
+ "imports": [
889
+ "index.html"
890
+ ]
891
+ },
892
+ "_index.BUq9Wcf8.js": {
893
+ "file": "static/js/index.BUq9Wcf8.js",
894
+ "name": "index",
895
+ "isDynamicEntry": true,
896
+ "imports": [
897
+ "index.html",
898
+ "_FormClearHelper.D1M9GM_c.js",
899
+ "_withFullScreenWrapper.iW37lS8Z.js",
900
+ "_Toolbar.KhlcEc0K.js",
901
+ "_checkbox.DSDh78Xz.js",
902
+ "_mergeWith.CVkhrWUb.js",
903
+ "_sprintf.D7DtBTRn.js",
904
+ "_createDownloadLinkElement.DZMwyjvU.js",
905
+ "_toConsumableArray.BZoworE-.js",
906
+ "_possibleConstructorReturn.CIDCId52.js",
907
+ "_createSuper.wQ9SIXEJ.js",
908
+ "_FileDownload.esm.AI3watX9.js"
909
+ ],
910
+ "dynamicImports": [
911
+ "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
912
+ "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
913
+ "_es6.48Q9Qjgb.js"
914
+ ],
915
+ "css": [
916
+ "static/css/index.C5t3M85E.css"
917
+ ]
918
+ },
919
+ "_index.C5t3M85E.css": {
920
+ "file": "static/css/index.C5t3M85E.css",
921
+ "src": "_index.C5t3M85E.css"
922
+ },
923
+ "_input.CxKZ5Wrc.js": {
924
+ "file": "static/js/input.CxKZ5Wrc.js",
925
+ "name": "input",
926
+ "imports": [
927
+ "index.html",
928
+ "_base-input.BJ4qsfSq.js"
929
+ ]
930
+ },
931
+ "_inputUtils.CQWz5UKz.js": {
932
+ "file": "static/js/inputUtils.CQWz5UKz.js",
933
+ "name": "inputUtils"
934
+ },
935
+ "_mergeWith.CVkhrWUb.js": {
936
+ "file": "static/js/mergeWith.CVkhrWUb.js",
937
+ "name": "mergeWith",
938
+ "imports": [
939
+ "index.html"
940
+ ]
941
+ },
942
+ "_possibleConstructorReturn.CIDCId52.js": {
943
+ "file": "static/js/possibleConstructorReturn.CIDCId52.js",
944
+ "name": "possibleConstructorReturn",
945
+ "imports": [
946
+ "index.html"
947
+ ]
948
+ },
949
+ "_sprintf.D7DtBTRn.js": {
950
+ "file": "static/js/sprintf.D7DtBTRn.js",
951
+ "name": "sprintf"
952
+ },
953
+ "_textarea.QKjxR64N.js": {
954
+ "file": "static/js/textarea.QKjxR64N.js",
955
+ "name": "textarea",
956
+ "imports": [
957
+ "index.html",
958
+ "_base-input.BJ4qsfSq.js"
959
+ ]
960
+ },
961
+ "_threshold.DjX0wlsa.js": {
962
+ "file": "static/js/threshold.DjX0wlsa.js",
963
+ "name": "threshold",
964
+ "imports": [
965
+ "_value.CgPGBV_l.js"
966
+ ]
967
+ },
968
+ "_timepicker.DJYmE1dK.js": {
969
+ "file": "static/js/timepicker.DJYmE1dK.js",
970
+ "name": "timepicker",
971
+ "imports": [
972
+ "index.html",
973
+ "_possibleConstructorReturn.CIDCId52.js",
974
+ "_createSuper.wQ9SIXEJ.js"
975
+ ]
976
+ },
977
+ "_timer.CAwTRJ_g.js": {
978
+ "file": "static/js/timer.CAwTRJ_g.js",
979
+ "name": "timer",
980
+ "imports": [
981
+ "_value.CgPGBV_l.js"
982
+ ]
983
+ },
984
+ "_toConsumableArray.BZoworE-.js": {
985
+ "file": "static/js/toConsumableArray.BZoworE-.js",
986
+ "name": "toConsumableArray",
987
+ "imports": [
988
+ "index.html",
989
+ "_possibleConstructorReturn.CIDCId52.js"
990
+ ]
991
+ },
992
+ "_uniqueId.O0UbJ2Bu.js": {
993
+ "file": "static/js/uniqueId.O0UbJ2Bu.js",
994
+ "name": "uniqueId",
995
+ "imports": [
996
+ "index.html"
997
+ ]
998
+ },
999
+ "_useBasicWidgetState.Ci89jaH5.js": {
1000
+ "file": "static/js/useBasicWidgetState.Ci89jaH5.js",
1001
+ "name": "useBasicWidgetState",
1002
+ "imports": [
1003
+ "index.html",
1004
+ "_FormClearHelper.D1M9GM_c.js"
1005
+ ]
1006
+ },
1007
+ "_useOnInputChange.Cxh6ExEn.js": {
1008
+ "file": "static/js/useOnInputChange.Cxh6ExEn.js",
1009
+ "name": "useOnInputChange",
1010
+ "imports": [
1011
+ "index.html",
1012
+ "_inputUtils.CQWz5UKz.js"
1013
+ ]
1014
+ },
1015
+ "_value.CgPGBV_l.js": {
1016
+ "file": "static/js/value.CgPGBV_l.js",
1017
+ "name": "value"
1018
+ },
1019
+ "_withFullScreenWrapper.iW37lS8Z.js": {
1020
+ "file": "static/js/withFullScreenWrapper.iW37lS8Z.js",
1021
+ "name": "withFullScreenWrapper",
1022
+ "imports": [
1023
+ "index.html"
1024
+ ]
1025
+ },
1026
+ "index.html": {
1027
+ "file": "static/js/index.C1NIn1Y2.js",
1028
+ "name": "index",
1029
+ "src": "index.html",
1030
+ "isEntry": true,
1031
+ "dynamicImports": [
1032
+ "../lib/src/components/elements/Audio/index.ts",
1033
+ "../lib/src/components/elements/Balloons/index.ts",
1034
+ "../lib/src/components/elements/Snow/index.ts",
1035
+ "_index.BUq9Wcf8.js",
1036
+ "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1037
+ "../lib/src/components/elements/Toast/index.ts",
1038
+ "../lib/src/components/elements/BokehChart/index.ts",
1039
+ "../lib/src/components/elements/DeckGlJsonChart/index.ts",
1040
+ "../lib/src/components/elements/GraphVizChart/index.ts",
1041
+ "../lib/src/components/elements/IFrame/index.ts",
1042
+ "../lib/src/components/elements/ImageList/index.ts",
1043
+ "../lib/src/components/elements/LinkButton/index.ts",
1044
+ "../lib/src/components/elements/PageLink/index.ts",
1045
+ "../lib/src/components/elements/PlotlyChart/index.ts",
1046
+ "../lib/src/components/elements/Video/index.ts",
1047
+ "../lib/src/components/widgets/AudioInput/index.ts",
1048
+ "../lib/src/components/widgets/Button/index.ts",
1049
+ "../lib/src/components/widgets/ButtonGroup/index.ts",
1050
+ "../lib/src/components/widgets/DownloadButton/index.ts",
1051
+ "../lib/src/components/widgets/CameraInput/index.ts",
1052
+ "../lib/src/components/widgets/ChatInput/index.ts",
1053
+ "../lib/src/components/widgets/Checkbox/index.ts",
1054
+ "../lib/src/components/widgets/ColorPicker/index.ts",
1055
+ "../lib/src/components/widgets/DateInput/index.ts",
1056
+ "../lib/src/components/elements/Html/index.ts",
1057
+ "../lib/src/components/widgets/Multiselect/index.ts",
1058
+ "../lib/src/components/elements/Progress/index.ts",
1059
+ "../lib/src/components/elements/Spinner/index.ts",
1060
+ "../lib/src/components/widgets/Radio/index.ts",
1061
+ "../lib/src/components/widgets/Selectbox/index.ts",
1062
+ "../lib/src/components/widgets/Slider/index.ts",
1063
+ "../lib/src/components/widgets/FileUploader/index.ts",
1064
+ "../lib/src/components/widgets/TextArea/index.ts",
1065
+ "../lib/src/components/widgets/TextInput/index.ts",
1066
+ "../lib/src/components/widgets/TimeInput/index.ts",
1067
+ "../lib/src/components/widgets/NumberInput/index.ts",
1068
+ "_iframeResizer.contentWindow.CKdem3Bn.js"
1069
+ ],
1070
+ "css": [
1071
+ "static/css/index.CJVRHjQZ.css"
1072
+ ],
1073
+ "assets": [
1074
+ "static/media/fireworks.B4d-_KUe.gif",
1075
+ "static/media/snowflake.JU2jBHL8.svg",
1076
+ "static/media/KaTeX_AMS-Regular.BQhdFMY1.woff2",
1077
+ "static/media/KaTeX_AMS-Regular.DMm9YOAa.woff",
1078
+ "static/media/KaTeX_AMS-Regular.DRggAlZN.ttf",
1079
+ "static/media/KaTeX_Caligraphic-Bold.Dq_IR9rO.woff2",
1080
+ "static/media/KaTeX_Caligraphic-Bold.BEiXGLvX.woff",
1081
+ "static/media/KaTeX_Caligraphic-Bold.ATXxdsX0.ttf",
1082
+ "static/media/KaTeX_Caligraphic-Regular.Di6jR-x-.woff2",
1083
+ "static/media/KaTeX_Caligraphic-Regular.CTRA-rTL.woff",
1084
+ "static/media/KaTeX_Caligraphic-Regular.wX97UBjC.ttf",
1085
+ "static/media/KaTeX_Fraktur-Bold.CL6g_b3V.woff2",
1086
+ "static/media/KaTeX_Fraktur-Bold.BsDP51OF.woff",
1087
+ "static/media/KaTeX_Fraktur-Bold.BdnERNNW.ttf",
1088
+ "static/media/KaTeX_Fraktur-Regular.CTYiF6lA.woff2",
1089
+ "static/media/KaTeX_Fraktur-Regular.Dxdc4cR9.woff",
1090
+ "static/media/KaTeX_Fraktur-Regular.CB_wures.ttf",
1091
+ "static/media/KaTeX_Main-Bold.Cx986IdX.woff2",
1092
+ "static/media/KaTeX_Main-Bold.Jm3AIy58.woff",
1093
+ "static/media/KaTeX_Main-Bold.waoOVXN0.ttf",
1094
+ "static/media/KaTeX_Main-BoldItalic.DxDJ3AOS.woff2",
1095
+ "static/media/KaTeX_Main-BoldItalic.SpSLRI95.woff",
1096
+ "static/media/KaTeX_Main-BoldItalic.DzxPMmG6.ttf",
1097
+ "static/media/KaTeX_Main-Italic.NWA7e6Wa.woff2",
1098
+ "static/media/KaTeX_Main-Italic.BMLOBm91.woff",
1099
+ "static/media/KaTeX_Main-Italic.3WenGoN9.ttf",
1100
+ "static/media/KaTeX_Main-Regular.B22Nviop.woff2",
1101
+ "static/media/KaTeX_Main-Regular.Dr94JaBh.woff",
1102
+ "static/media/KaTeX_Main-Regular.ypZvNtVU.ttf",
1103
+ "static/media/KaTeX_Math-BoldItalic.CZnvNsCZ.woff2",
1104
+ "static/media/KaTeX_Math-BoldItalic.iY-2wyZ7.woff",
1105
+ "static/media/KaTeX_Math-BoldItalic.B3XSjfu4.ttf",
1106
+ "static/media/KaTeX_Math-Italic.t53AETM-.woff2",
1107
+ "static/media/KaTeX_Math-Italic.DA0__PXp.woff",
1108
+ "static/media/KaTeX_Math-Italic.flOr_0UB.ttf",
1109
+ "static/media/KaTeX_SansSerif-Bold.D1sUS0GD.woff2",
1110
+ "static/media/KaTeX_SansSerif-Bold.DbIhKOiC.woff",
1111
+ "static/media/KaTeX_SansSerif-Bold.CFMepnvq.ttf",
1112
+ "static/media/KaTeX_SansSerif-Italic.C3H0VqGB.woff2",
1113
+ "static/media/KaTeX_SansSerif-Italic.DN2j7dab.woff",
1114
+ "static/media/KaTeX_SansSerif-Italic.YYjJ1zSn.ttf",
1115
+ "static/media/KaTeX_SansSerif-Regular.DDBCnlJ7.woff2",
1116
+ "static/media/KaTeX_SansSerif-Regular.CS6fqUqJ.woff",
1117
+ "static/media/KaTeX_SansSerif-Regular.BNo7hRIc.ttf",
1118
+ "static/media/KaTeX_Script-Regular.D3wIWfF6.woff2",
1119
+ "static/media/KaTeX_Script-Regular.D5yQViql.woff",
1120
+ "static/media/KaTeX_Script-Regular.C5JkGWo-.ttf",
1121
+ "static/media/KaTeX_Size1-Regular.mCD8mA8B.woff2",
1122
+ "static/media/KaTeX_Size1-Regular.C195tn64.woff",
1123
+ "static/media/KaTeX_Size1-Regular.Dbsnue_I.ttf",
1124
+ "static/media/KaTeX_Size2-Regular.Dy4dx90m.woff2",
1125
+ "static/media/KaTeX_Size2-Regular.oD1tc_U0.woff",
1126
+ "static/media/KaTeX_Size2-Regular.B7gKUWhC.ttf",
1127
+ "static/media/KaTeX_Size3-Regular.CTq5MqoE.woff",
1128
+ "static/media/KaTeX_Size3-Regular.DgpXs0kz.ttf",
1129
+ "static/media/KaTeX_Size4-Regular.Dl5lxZxV.woff2",
1130
+ "static/media/KaTeX_Size4-Regular.BF-4gkZK.woff",
1131
+ "static/media/KaTeX_Size4-Regular.DWFBv043.ttf",
1132
+ "static/media/KaTeX_Typewriter-Regular.CO6r4hn1.woff2",
1133
+ "static/media/KaTeX_Typewriter-Regular.C0xS9mPB.woff",
1134
+ "static/media/KaTeX_Typewriter-Regular.D3Ib7_Hf.ttf",
1135
+ "static/media/SourceCodeVF-Upright.ttf.BjWn63N-.woff2",
1136
+ "static/media/SourceCodeVF-Italic.ttf.Ba1oaZG1.woff2",
1137
+ "static/media/SourceSansVF-Upright.ttf.BsWL4Kly.woff2",
1138
+ "static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2",
1139
+ "static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2",
1140
+ "static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2",
1141
+ "static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2"
1142
+ ]
1143
+ },
1144
+ "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2": {
1145
+ "file": "static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2",
1146
+ "src": "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2"
1147
+ },
1148
+ "src/assets/fonts/Source_Code/SourceCodeVF-Italic.ttf.woff2": {
1149
+ "file": "static/media/SourceCodeVF-Italic.ttf.Ba1oaZG1.woff2",
1150
+ "src": "src/assets/fonts/Source_Code/SourceCodeVF-Italic.ttf.woff2"
1151
+ },
1152
+ "src/assets/fonts/Source_Code/SourceCodeVF-Upright.ttf.woff2": {
1153
+ "file": "static/media/SourceCodeVF-Upright.ttf.BjWn63N-.woff2",
1154
+ "src": "src/assets/fonts/Source_Code/SourceCodeVF-Upright.ttf.woff2"
1155
+ },
1156
+ "src/assets/fonts/Source_Sans/SourceSansVF-Italic.ttf.woff2": {
1157
+ "file": "static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2",
1158
+ "src": "src/assets/fonts/Source_Sans/SourceSansVF-Italic.ttf.woff2"
1159
+ },
1160
+ "src/assets/fonts/Source_Sans/SourceSansVF-Upright.ttf.woff2": {
1161
+ "file": "static/media/SourceSansVF-Upright.ttf.BsWL4Kly.woff2",
1162
+ "src": "src/assets/fonts/Source_Sans/SourceSansVF-Upright.ttf.woff2"
1163
+ },
1164
+ "src/assets/fonts/Source_Serif/SourceSerifVariable-Italic.ttf.woff2": {
1165
+ "file": "static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2",
1166
+ "src": "src/assets/fonts/Source_Serif/SourceSerifVariable-Italic.ttf.woff2"
1167
+ },
1168
+ "src/assets/fonts/Source_Serif/SourceSerifVariable-Roman.ttf.woff2": {
1169
+ "file": "static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2",
1170
+ "src": "src/assets/fonts/Source_Serif/SourceSerifVariable-Roman.ttf.woff2"
1171
+ },
1172
+ "src/assets/img/fireworks.gif": {
1173
+ "file": "static/media/fireworks.B4d-_KUe.gif",
1174
+ "src": "src/assets/img/fireworks.gif"
1175
+ },
1176
+ "src/assets/svg/snowflake.svg": {
1177
+ "file": "static/media/snowflake.JU2jBHL8.svg",
1178
+ "src": "src/assets/svg/snowflake.svg"
1179
+ }
1180
+ }