streamlit 1.50.0__py3-none-any.whl → 1.51.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 (232) hide show
  1. streamlit/__init__.py +4 -1
  2. streamlit/commands/navigation.py +4 -6
  3. streamlit/commands/page_config.py +4 -6
  4. streamlit/components/v2/__init__.py +458 -0
  5. streamlit/components/v2/bidi_component/__init__.py +20 -0
  6. streamlit/components/v2/bidi_component/constants.py +29 -0
  7. streamlit/components/v2/bidi_component/main.py +386 -0
  8. streamlit/components/v2/bidi_component/serialization.py +265 -0
  9. streamlit/components/v2/bidi_component/state.py +92 -0
  10. streamlit/components/v2/component_definition_resolver.py +143 -0
  11. streamlit/components/v2/component_file_watcher.py +403 -0
  12. streamlit/components/v2/component_manager.py +431 -0
  13. streamlit/components/v2/component_manifest_handler.py +122 -0
  14. streamlit/components/v2/component_path_utils.py +245 -0
  15. streamlit/components/v2/component_registry.py +409 -0
  16. streamlit/components/v2/get_bidi_component_manager.py +51 -0
  17. streamlit/components/v2/manifest_scanner.py +615 -0
  18. streamlit/components/v2/presentation.py +198 -0
  19. streamlit/components/v2/types.py +324 -0
  20. streamlit/config.py +456 -53
  21. streamlit/config_option.py +4 -1
  22. streamlit/config_util.py +650 -1
  23. streamlit/dataframe_util.py +15 -8
  24. streamlit/delta_generator.py +6 -4
  25. streamlit/delta_generator_singletons.py +3 -1
  26. streamlit/deprecation_util.py +17 -6
  27. streamlit/elements/arrow.py +37 -9
  28. streamlit/elements/deck_gl_json_chart.py +97 -39
  29. streamlit/elements/dialog_decorator.py +2 -1
  30. streamlit/elements/exception.py +3 -1
  31. streamlit/elements/graphviz_chart.py +1 -3
  32. streamlit/elements/heading.py +3 -5
  33. streamlit/elements/image.py +2 -4
  34. streamlit/elements/layouts.py +31 -11
  35. streamlit/elements/lib/built_in_chart_utils.py +1 -3
  36. streamlit/elements/lib/color_util.py +8 -18
  37. streamlit/elements/lib/column_config_utils.py +4 -8
  38. streamlit/elements/lib/column_types.py +40 -12
  39. streamlit/elements/lib/dialog.py +2 -2
  40. streamlit/elements/lib/image_utils.py +3 -5
  41. streamlit/elements/lib/layout_utils.py +50 -13
  42. streamlit/elements/lib/mutable_status_container.py +2 -2
  43. streamlit/elements/lib/options_selector_utils.py +2 -2
  44. streamlit/elements/lib/utils.py +4 -4
  45. streamlit/elements/map.py +80 -37
  46. streamlit/elements/media.py +5 -7
  47. streamlit/elements/metric.py +3 -5
  48. streamlit/elements/pdf.py +2 -4
  49. streamlit/elements/plotly_chart.py +125 -17
  50. streamlit/elements/progress.py +2 -4
  51. streamlit/elements/space.py +113 -0
  52. streamlit/elements/vega_charts.py +339 -148
  53. streamlit/elements/widgets/audio_input.py +5 -5
  54. streamlit/elements/widgets/button.py +2 -4
  55. streamlit/elements/widgets/button_group.py +33 -7
  56. streamlit/elements/widgets/camera_input.py +2 -4
  57. streamlit/elements/widgets/chat.py +7 -1
  58. streamlit/elements/widgets/color_picker.py +1 -1
  59. streamlit/elements/widgets/data_editor.py +28 -24
  60. streamlit/elements/widgets/file_uploader.py +5 -10
  61. streamlit/elements/widgets/multiselect.py +4 -3
  62. streamlit/elements/widgets/number_input.py +2 -4
  63. streamlit/elements/widgets/radio.py +10 -3
  64. streamlit/elements/widgets/select_slider.py +8 -5
  65. streamlit/elements/widgets/selectbox.py +6 -3
  66. streamlit/elements/widgets/slider.py +38 -42
  67. streamlit/elements/widgets/time_widgets.py +6 -12
  68. streamlit/elements/write.py +27 -6
  69. streamlit/emojis.py +1 -1
  70. streamlit/errors.py +115 -0
  71. streamlit/hello/hello.py +8 -0
  72. streamlit/hello/utils.py +2 -1
  73. streamlit/material_icon_names.py +1 -1
  74. streamlit/navigation/page.py +4 -1
  75. streamlit/proto/ArrowData_pb2.py +27 -0
  76. streamlit/proto/ArrowData_pb2.pyi +46 -0
  77. streamlit/proto/BidiComponent_pb2.py +34 -0
  78. streamlit/proto/BidiComponent_pb2.pyi +153 -0
  79. streamlit/proto/Block_pb2.py +7 -7
  80. streamlit/proto/Block_pb2.pyi +4 -1
  81. streamlit/proto/DeckGlJsonChart_pb2.py +10 -4
  82. streamlit/proto/DeckGlJsonChart_pb2.pyi +9 -3
  83. streamlit/proto/Element_pb2.py +5 -3
  84. streamlit/proto/Element_pb2.pyi +14 -4
  85. streamlit/proto/HeightConfig_pb2.py +2 -2
  86. streamlit/proto/HeightConfig_pb2.pyi +6 -3
  87. streamlit/proto/NewSession_pb2.py +18 -18
  88. streamlit/proto/NewSession_pb2.pyi +25 -6
  89. streamlit/proto/PlotlyChart_pb2.py +8 -6
  90. streamlit/proto/PlotlyChart_pb2.pyi +3 -1
  91. streamlit/proto/Space_pb2.py +27 -0
  92. streamlit/proto/Space_pb2.pyi +42 -0
  93. streamlit/proto/WidgetStates_pb2.py +2 -2
  94. streamlit/proto/WidgetStates_pb2.pyi +13 -3
  95. streamlit/proto/WidthConfig_pb2.py +2 -2
  96. streamlit/proto/WidthConfig_pb2.pyi +6 -3
  97. streamlit/runtime/app_session.py +27 -1
  98. streamlit/runtime/caching/cache_data_api.py +4 -4
  99. streamlit/runtime/caching/cache_errors.py +4 -1
  100. streamlit/runtime/caching/cache_resource_api.py +3 -2
  101. streamlit/runtime/caching/cache_utils.py +2 -1
  102. streamlit/runtime/caching/cached_message_replay.py +3 -3
  103. streamlit/runtime/caching/hashing.py +3 -4
  104. streamlit/runtime/caching/legacy_cache_api.py +2 -1
  105. streamlit/runtime/connection_factory.py +1 -3
  106. streamlit/runtime/forward_msg_queue.py +4 -1
  107. streamlit/runtime/fragment.py +2 -1
  108. streamlit/runtime/memory_media_file_storage.py +1 -1
  109. streamlit/runtime/metrics_util.py +6 -2
  110. streamlit/runtime/runtime.py +14 -0
  111. streamlit/runtime/scriptrunner/exec_code.py +2 -1
  112. streamlit/runtime/scriptrunner/script_runner.py +2 -2
  113. streamlit/runtime/scriptrunner_utils/script_run_context.py +3 -6
  114. streamlit/runtime/secrets.py +2 -4
  115. streamlit/runtime/session_manager.py +3 -1
  116. streamlit/runtime/state/common.py +30 -5
  117. streamlit/runtime/state/presentation.py +85 -0
  118. streamlit/runtime/state/safe_session_state.py +2 -2
  119. streamlit/runtime/state/session_state.py +220 -16
  120. streamlit/runtime/state/widgets.py +19 -3
  121. streamlit/runtime/websocket_session_manager.py +3 -1
  122. streamlit/source_util.py +2 -2
  123. streamlit/static/index.html +2 -2
  124. streamlit/static/manifest.json +243 -226
  125. streamlit/static/static/css/{index.CIiu7Ygf.css → index.BpABIXK9.css} +1 -1
  126. streamlit/static/static/css/index.DgR7E2CV.css +1 -0
  127. streamlit/static/static/js/{ErrorOutline.esm.DUpR0_Ka.js → ErrorOutline.esm.YoJdlW1p.js} +1 -1
  128. streamlit/static/static/js/{FileDownload.esm.CN4j9-1w.js → FileDownload.esm.Ddx8VEYy.js} +1 -1
  129. streamlit/static/static/js/{FileHelper.CaIUKG91.js → FileHelper.90EtOmj9.js} +1 -1
  130. streamlit/static/static/js/{FormClearHelper.DTcdrasw.js → FormClearHelper.BB1Km6eP.js} +1 -1
  131. streamlit/static/static/js/InputInstructions.jhH15PqV.js +1 -0
  132. streamlit/static/static/js/{Particles.CElH0XX2.js → Particles.DUsputn1.js} +1 -1
  133. streamlit/static/static/js/{ProgressBar.DetlP5aY.js → ProgressBar.DLY8H6nE.js} +1 -1
  134. streamlit/static/static/js/{Toolbar.C77ar7rq.js → Toolbar.D8nHCkuz.js} +1 -1
  135. streamlit/static/static/js/{base-input.BQft14La.js → base-input.CJGiNqed.js} +3 -3
  136. streamlit/static/static/js/{checkbox.yZOfXCeX.js → checkbox.Cpdd482O.js} +1 -1
  137. streamlit/static/static/js/{createSuper.Dh9w1cs8.js → createSuper.CuQIogbW.js} +1 -1
  138. streamlit/static/static/js/{data-grid-overlay-editor.DcuHuCyW.js → data-grid-overlay-editor.2Ufgxc6y.js} +1 -1
  139. streamlit/static/static/js/{downloader.MeHtkq8r.js → downloader.CN0K7xlu.js} +1 -1
  140. streamlit/static/static/js/{es6.VpBPGCnM.js → es6.BJcsVXQ0.js} +2 -2
  141. streamlit/static/static/js/{iframeResizer.contentWindow.yMw_ARIL.js → iframeResizer.contentWindow.XzUvQqcZ.js} +1 -1
  142. streamlit/static/static/js/index.B1ZQh4P1.js +1 -0
  143. streamlit/static/static/js/index.BKstZk0M.js +27 -0
  144. streamlit/static/static/js/{index.Cnpi3o3E.js → index.BMcFsUee.js} +1 -1
  145. streamlit/static/static/js/{index.DKv_lNO7.js → index.BR-IdcTb.js} +1 -1
  146. streamlit/static/static/js/{index.FFOzOWzC.js → index.B_dWA3vd.js} +1 -1
  147. streamlit/static/static/js/{index.Bj9JgOEC.js → index.BgnZEMVh.js} +1 -1
  148. streamlit/static/static/js/{index.Bxz2yX3P.js → index.BohqXifI.js} +1 -1
  149. streamlit/static/static/js/{index.Dbe-Q3C-.js → index.Br5nxKNj.js} +1 -1
  150. streamlit/static/static/js/{index.BjCwMzj4.js → index.BrIKVbNc.js} +2 -2
  151. streamlit/static/static/js/index.BtWUPzle.js +1 -0
  152. streamlit/static/static/js/{index.CGYqqs6j.js → index.C0RLraek.js} +1 -1
  153. streamlit/static/static/js/{index.D2QEXQq_.js → index.CAIjskgG.js} +1 -1
  154. streamlit/static/static/js/{index.6xX1278W.js → index.CAj-7vWz.js} +131 -157
  155. streamlit/static/static/js/{index.DK7hD7_w.js → index.CMtEit2O.js} +1 -1
  156. streamlit/static/static/js/{index.DNLrMXgm.js → index.CkRlykEE.js} +1 -1
  157. streamlit/static/static/js/{index.ClELlchS.js → index.CmN3FXfI.js} +1 -1
  158. streamlit/static/static/js/{index.GRUzrudl.js → index.CwbFI1_-.js} +1 -1
  159. streamlit/static/static/js/{index.Ctn27_AE.js → index.CxIUUfab.js} +27 -27
  160. streamlit/static/static/js/index.D2KPNy7e.js +1 -0
  161. streamlit/static/static/js/{index.B0H9IXUJ.js → index.D3GPA5k4.js} +3 -3
  162. streamlit/static/static/js/{index.BycLveZ4.js → index.DGAh7DMq.js} +1 -1
  163. streamlit/static/static/js/index.DKb_NvmG.js +197 -0
  164. streamlit/static/static/js/{index.BPQo7BKk.js → index.DMqgUYKq.js} +1 -1
  165. streamlit/static/static/js/{index.CH1tqnSs.js → index.DOFlg3dS.js} +1 -1
  166. streamlit/static/static/js/{index.64ejlaaT.js → index.DPUXkcQL.js} +1 -1
  167. streamlit/static/static/js/{index.B-hiXRzw.js → index.DX1xY89g.js} +1 -1
  168. streamlit/static/static/js/index.DYATBCsq.js +2 -0
  169. streamlit/static/static/js/{index.DHh-U0dK.js → index.DaSmGJ76.js} +3 -3
  170. streamlit/static/static/js/{index.DuxqVQpd.js → index.Dd7bMeLP.js} +1 -1
  171. streamlit/static/static/js/{index.B4cAbHP6.js → index.DjmmgI5U.js} +1 -1
  172. streamlit/static/static/js/{index.DcPNYEUo.js → index.Dq56CyM2.js} +1 -1
  173. streamlit/static/static/js/{index.CiAQIz1H.js → index.DuiXaS5_.js} +1 -1
  174. streamlit/static/static/js/index.DvFidMLe.js +2 -0
  175. streamlit/static/static/js/{index.C9BdUqTi.js → index.DwkhC5Pc.js} +1 -1
  176. streamlit/static/static/js/{index.B4dUQfni.js → index.Q-3sFn1v.js} +1 -1
  177. streamlit/static/static/js/{index.CMItVsFA.js → index.QJ5QO9sJ.js} +1 -1
  178. streamlit/static/static/js/{index.CTBk8Vk2.js → index.VwTaeety.js} +1 -1
  179. streamlit/static/static/js/{index.Ck8rQ9OL.js → index.YOqQbeX8.js} +1 -1
  180. streamlit/static/static/js/{input.s6pjQ49A.js → input.D4MN_FzN.js} +1 -1
  181. streamlit/static/static/js/{memory.Cuvsdfrl.js → memory.DrZjtdGT.js} +1 -1
  182. streamlit/static/static/js/{number-overlay-editor.DdgVR5m3.js → number-overlay-editor.DRwAw1In.js} +1 -1
  183. streamlit/static/static/js/{possibleConstructorReturn.CqidKeei.js → possibleConstructorReturn.exeeJQEP.js} +1 -1
  184. streamlit/static/static/js/record.B-tDciZb.js +1 -0
  185. streamlit/static/static/js/{sandbox.CCQREcJx.js → sandbox.ClO3IuUr.js} +1 -1
  186. streamlit/static/static/js/{timepicker.mkJF97Bb.js → timepicker.DAhu-vcF.js} +1 -1
  187. streamlit/static/static/js/{toConsumableArray.De7I7KVR.js → toConsumableArray.DNbljYEC.js} +1 -1
  188. streamlit/static/static/js/{uniqueId.RI1LJdtz.js → uniqueId.oG4Gvj1v.js} +1 -1
  189. streamlit/static/static/js/{useBasicWidgetState.CedkNjUW.js → useBasicWidgetState.D6sOH6oI.js} +1 -1
  190. streamlit/static/static/js/{useTextInputAutoExpand.Ca7w8dVs.js → useTextInputAutoExpand.4u3_GcuN.js} +1 -1
  191. streamlit/static/static/js/{useUpdateUiValue.DeXelfRH.js → useUpdateUiValue.F2R3eTeR.js} +1 -1
  192. streamlit/static/static/js/wavesurfer.esm.vI8Eid4k.js +73 -0
  193. streamlit/static/static/js/{withFullScreenWrapper.C3561XxJ.js → withFullScreenWrapper.zothJIsI.js} +1 -1
  194. streamlit/static/static/media/MaterialSymbols-Rounded.C7IFxh57.woff2 +0 -0
  195. streamlit/string_util.py +1 -3
  196. streamlit/testing/v1/app_test.py +2 -2
  197. streamlit/testing/v1/element_tree.py +23 -9
  198. streamlit/testing/v1/util.py +2 -2
  199. streamlit/type_util.py +3 -4
  200. streamlit/url_util.py +1 -3
  201. streamlit/user_info.py +1 -2
  202. streamlit/util.py +3 -1
  203. streamlit/watcher/event_based_path_watcher.py +23 -12
  204. streamlit/watcher/local_sources_watcher.py +11 -1
  205. streamlit/watcher/path_watcher.py +9 -6
  206. streamlit/watcher/polling_path_watcher.py +4 -1
  207. streamlit/watcher/util.py +2 -2
  208. streamlit/web/cli.py +51 -22
  209. streamlit/web/server/bidi_component_request_handler.py +193 -0
  210. streamlit/web/server/component_file_utils.py +97 -0
  211. streamlit/web/server/component_request_handler.py +8 -21
  212. streamlit/web/server/oidc_mixin.py +3 -1
  213. streamlit/web/server/routes.py +2 -2
  214. streamlit/web/server/server.py +9 -0
  215. streamlit/web/server/server_util.py +3 -1
  216. streamlit/web/server/upload_file_request_handler.py +3 -1
  217. {streamlit-1.50.0.dist-info → streamlit-1.51.0.dist-info}/METADATA +4 -5
  218. {streamlit-1.50.0.dist-info → streamlit-1.51.0.dist-info}/RECORD +222 -194
  219. streamlit/static/static/css/index.CHEnSPGk.css +0 -1
  220. streamlit/static/static/js/Hooks.BRba_Own.js +0 -1
  221. streamlit/static/static/js/InputInstructions.xnSDuYeQ.js +0 -1
  222. streamlit/static/static/js/index.Baqa90pe.js +0 -2
  223. streamlit/static/static/js/index.Bm3VbPB5.js +0 -1
  224. streamlit/static/static/js/index.CFMf5_ez.js +0 -197
  225. streamlit/static/static/js/index.Cj7DSzVR.js +0 -73
  226. streamlit/static/static/js/index.DH71Ezyj.js +0 -1
  227. streamlit/static/static/js/index.DW0Grddz.js +0 -1
  228. streamlit/static/static/media/MaterialSymbols-Rounded.DeCZgS-4.woff2 +0 -0
  229. {streamlit-1.50.0.data → streamlit-1.51.0.data}/scripts/streamlit.cmd +0 -0
  230. {streamlit-1.50.0.dist-info → streamlit-1.51.0.dist-info}/WHEEL +0 -0
  231. {streamlit-1.50.0.dist-info → streamlit-1.51.0.dist-info}/entry_points.txt +0 -0
  232. {streamlit-1.50.0.dist-info → streamlit-1.51.0.dist-info}/top_level.txt +0 -0
@@ -36,27 +36,27 @@
36
36
  "src": "../lib/src/assets/img/snow/flake-2.png"
37
37
  },
38
38
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts": {
39
- "file": "static/js/index.DW0Grddz.js",
39
+ "file": "static/js/index.D2KPNy7e.js",
40
40
  "name": "index",
41
41
  "src": "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
42
42
  "isDynamicEntry": true,
43
43
  "imports": [
44
44
  "index.html",
45
- "_withFullScreenWrapper.C3561XxJ.js",
46
- "_Toolbar.C77ar7rq.js",
47
- "_index.CFMf5_ez.js",
48
- "_FormClearHelper.DTcdrasw.js",
45
+ "_withFullScreenWrapper.zothJIsI.js",
46
+ "_Toolbar.D8nHCkuz.js",
47
+ "_index.DKb_NvmG.js",
48
+ "_FormClearHelper.BB1Km6eP.js",
49
49
  "_sprintf.D7DtBTRn.js",
50
- "_checkbox.yZOfXCeX.js",
50
+ "_checkbox.Cpdd482O.js",
51
51
  "_createDownloadLinkElement.ZaXNnPK4.js",
52
- "_toConsumableArray.De7I7KVR.js",
53
- "_possibleConstructorReturn.CqidKeei.js",
54
- "_createSuper.Dh9w1cs8.js",
55
- "_FileDownload.esm.CN4j9-1w.js"
52
+ "_toConsumableArray.DNbljYEC.js",
53
+ "_possibleConstructorReturn.exeeJQEP.js",
54
+ "_createSuper.CuQIogbW.js",
55
+ "_FileDownload.esm.Ddx8VEYy.js"
56
56
  ]
57
57
  },
58
58
  "../lib/src/components/elements/Audio/index.ts": {
59
- "file": "static/js/index.CH1tqnSs.js",
59
+ "file": "static/js/index.DOFlg3dS.js",
60
60
  "name": "index",
61
61
  "src": "../lib/src/components/elements/Audio/index.ts",
62
62
  "isDynamicEntry": true,
@@ -65,13 +65,13 @@
65
65
  ]
66
66
  },
67
67
  "../lib/src/components/elements/Balloons/index.ts": {
68
- "file": "static/js/index.Ck8rQ9OL.js",
68
+ "file": "static/js/index.YOqQbeX8.js",
69
69
  "name": "index",
70
70
  "src": "../lib/src/components/elements/Balloons/index.ts",
71
71
  "isDynamicEntry": true,
72
72
  "imports": [
73
73
  "index.html",
74
- "_Particles.CElH0XX2.js"
74
+ "_Particles.DUsputn1.js"
75
75
  ],
76
76
  "assets": [
77
77
  "static/media/balloon-0.Czj7AKwE.png",
@@ -83,7 +83,7 @@
83
83
  ]
84
84
  },
85
85
  "../lib/src/components/elements/BokehChart/index.ts": {
86
- "file": "static/js/index.ClELlchS.js",
86
+ "file": "static/js/index.CmN3FXfI.js",
87
87
  "name": "index",
88
88
  "src": "../lib/src/components/elements/BokehChart/index.ts",
89
89
  "isDynamicEntry": true,
@@ -92,36 +92,36 @@
92
92
  ]
93
93
  },
94
94
  "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
95
- "file": "static/js/index.B0H9IXUJ.js",
95
+ "file": "static/js/index.D3GPA5k4.js",
96
96
  "name": "index",
97
97
  "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
98
98
  "isDynamicEntry": true,
99
99
  "imports": [
100
100
  "index.html",
101
- "_toConsumableArray.De7I7KVR.js",
102
- "_possibleConstructorReturn.CqidKeei.js",
103
- "_withFullScreenWrapper.C3561XxJ.js",
104
- "_Toolbar.C77ar7rq.js",
105
- "_useBasicWidgetState.CedkNjUW.js",
106
- "_FormClearHelper.DTcdrasw.js"
101
+ "_toConsumableArray.DNbljYEC.js",
102
+ "_possibleConstructorReturn.exeeJQEP.js",
103
+ "_withFullScreenWrapper.zothJIsI.js",
104
+ "_Toolbar.D8nHCkuz.js",
105
+ "_useBasicWidgetState.D6sOH6oI.js",
106
+ "_FormClearHelper.BB1Km6eP.js"
107
107
  ],
108
108
  "css": [
109
109
  "static/css/index.DzuxGC_t.css"
110
110
  ]
111
111
  },
112
112
  "../lib/src/components/elements/GraphVizChart/index.ts": {
113
- "file": "static/js/index.BjCwMzj4.js",
113
+ "file": "static/js/index.BrIKVbNc.js",
114
114
  "name": "index",
115
115
  "src": "../lib/src/components/elements/GraphVizChart/index.ts",
116
116
  "isDynamicEntry": true,
117
117
  "imports": [
118
118
  "index.html",
119
- "_withFullScreenWrapper.C3561XxJ.js",
120
- "_Toolbar.C77ar7rq.js"
119
+ "_withFullScreenWrapper.zothJIsI.js",
120
+ "_Toolbar.D8nHCkuz.js"
121
121
  ]
122
122
  },
123
123
  "../lib/src/components/elements/Html/index.ts": {
124
- "file": "static/js/index.DKv_lNO7.js",
124
+ "file": "static/js/index.BR-IdcTb.js",
125
125
  "name": "index",
126
126
  "src": "../lib/src/components/elements/Html/index.ts",
127
127
  "isDynamicEntry": true,
@@ -130,7 +130,7 @@
130
130
  ]
131
131
  },
132
132
  "../lib/src/components/elements/IFrame/index.ts": {
133
- "file": "static/js/index.GRUzrudl.js",
133
+ "file": "static/js/index.CwbFI1_-.js",
134
134
  "name": "index",
135
135
  "src": "../lib/src/components/elements/IFrame/index.ts",
136
136
  "isDynamicEntry": true,
@@ -139,18 +139,18 @@
139
139
  ]
140
140
  },
141
141
  "../lib/src/components/elements/ImageList/index.ts": {
142
- "file": "static/js/index.B-hiXRzw.js",
142
+ "file": "static/js/index.DX1xY89g.js",
143
143
  "name": "index",
144
144
  "src": "../lib/src/components/elements/ImageList/index.ts",
145
145
  "isDynamicEntry": true,
146
146
  "imports": [
147
147
  "index.html",
148
- "_withFullScreenWrapper.C3561XxJ.js",
149
- "_Toolbar.C77ar7rq.js"
148
+ "_withFullScreenWrapper.zothJIsI.js",
149
+ "_Toolbar.D8nHCkuz.js"
150
150
  ]
151
151
  },
152
152
  "../lib/src/components/elements/LinkButton/index.ts": {
153
- "file": "static/js/index.B4cAbHP6.js",
153
+ "file": "static/js/index.DjmmgI5U.js",
154
154
  "name": "index",
155
155
  "src": "../lib/src/components/elements/LinkButton/index.ts",
156
156
  "isDynamicEntry": true,
@@ -159,7 +159,7 @@
159
159
  ]
160
160
  },
161
161
  "../lib/src/components/elements/PageLink/index.ts": {
162
- "file": "static/js/index.CTBk8Vk2.js",
162
+ "file": "static/js/index.VwTaeety.js",
163
163
  "name": "index",
164
164
  "src": "../lib/src/components/elements/PageLink/index.ts",
165
165
  "isDynamicEntry": true,
@@ -168,34 +168,34 @@
168
168
  ]
169
169
  },
170
170
  "../lib/src/components/elements/PlotlyChart/index.ts": {
171
- "file": "static/js/index.Ctn27_AE.js",
171
+ "file": "static/js/index.CxIUUfab.js",
172
172
  "name": "index",
173
173
  "src": "../lib/src/components/elements/PlotlyChart/index.ts",
174
174
  "isDynamicEntry": true,
175
175
  "imports": [
176
176
  "index.html",
177
- "_withFullScreenWrapper.C3561XxJ.js",
178
- "_FormClearHelper.DTcdrasw.js"
177
+ "_withFullScreenWrapper.zothJIsI.js",
178
+ "_FormClearHelper.BB1Km6eP.js"
179
179
  ]
180
180
  },
181
181
  "../lib/src/components/elements/Progress/index.ts": {
182
- "file": "static/js/index.D2QEXQq_.js",
182
+ "file": "static/js/index.CAIjskgG.js",
183
183
  "name": "index",
184
184
  "src": "../lib/src/components/elements/Progress/index.ts",
185
185
  "isDynamicEntry": true,
186
186
  "imports": [
187
187
  "index.html",
188
- "_ProgressBar.DetlP5aY.js"
188
+ "_ProgressBar.DLY8H6nE.js"
189
189
  ]
190
190
  },
191
191
  "../lib/src/components/elements/Snow/index.ts": {
192
- "file": "static/js/index.CiAQIz1H.js",
192
+ "file": "static/js/index.DuiXaS5_.js",
193
193
  "name": "index",
194
194
  "src": "../lib/src/components/elements/Snow/index.ts",
195
195
  "isDynamicEntry": true,
196
196
  "imports": [
197
197
  "index.html",
198
- "_Particles.CElH0XX2.js"
198
+ "_Particles.DUsputn1.js"
199
199
  ],
200
200
  "assets": [
201
201
  "static/media/flake-0.DgWaVvm5.png",
@@ -204,7 +204,7 @@
204
204
  ]
205
205
  },
206
206
  "../lib/src/components/elements/Spinner/index.ts": {
207
- "file": "static/js/index.CMItVsFA.js",
207
+ "file": "static/js/index.QJ5QO9sJ.js",
208
208
  "name": "index",
209
209
  "src": "../lib/src/components/elements/Spinner/index.ts",
210
210
  "isDynamicEntry": true,
@@ -213,7 +213,7 @@
213
213
  ]
214
214
  },
215
215
  "../lib/src/components/elements/Toast/index.ts": {
216
- "file": "static/js/index.DK7hD7_w.js",
216
+ "file": "static/js/index.CMtEit2O.js",
217
217
  "name": "index",
218
218
  "src": "../lib/src/components/elements/Toast/index.ts",
219
219
  "isDynamicEntry": true,
@@ -222,7 +222,7 @@
222
222
  ]
223
223
  },
224
224
  "../lib/src/components/elements/Video/index.ts": {
225
- "file": "static/js/index.BPQo7BKk.js",
225
+ "file": "static/js/index.DMqgUYKq.js",
226
226
  "name": "index",
227
227
  "src": "../lib/src/components/elements/Video/index.ts",
228
228
  "isDynamicEntry": true,
@@ -231,21 +231,33 @@
231
231
  ]
232
232
  },
233
233
  "../lib/src/components/widgets/AudioInput/index.ts": {
234
- "file": "static/js/index.Cj7DSzVR.js",
234
+ "file": "static/js/index.BtWUPzle.js",
235
235
  "name": "index",
236
236
  "src": "../lib/src/components/widgets/AudioInput/index.ts",
237
237
  "isDynamicEntry": true,
238
238
  "imports": [
239
239
  "index.html",
240
- "_Toolbar.C77ar7rq.js",
241
- "_FormClearHelper.DTcdrasw.js",
240
+ "_Toolbar.D8nHCkuz.js",
241
+ "_FormClearHelper.BB1Km6eP.js",
242
242
  "_createDownloadLinkElement.ZaXNnPK4.js",
243
- "_Hooks.BRba_Own.js",
244
- "_FileDownload.esm.CN4j9-1w.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"
248
+ ]
249
+ },
250
+ "../lib/src/components/widgets/BidiComponent/index.tsx": {
251
+ "file": "static/js/index.DYATBCsq.js",
252
+ "name": "index",
253
+ "src": "../lib/src/components/widgets/BidiComponent/index.tsx",
254
+ "isDynamicEntry": true,
255
+ "imports": [
256
+ "index.html"
245
257
  ]
246
258
  },
247
259
  "../lib/src/components/widgets/Button/index.ts": {
248
- "file": "static/js/index.Cnpi3o3E.js",
260
+ "file": "static/js/index.BMcFsUee.js",
249
261
  "name": "index",
250
262
  "src": "../lib/src/components/widgets/Button/index.ts",
251
263
  "isDynamicEntry": true,
@@ -254,86 +266,86 @@
254
266
  ]
255
267
  },
256
268
  "../lib/src/components/widgets/ButtonGroup/index.ts": {
257
- "file": "static/js/index.Dbe-Q3C-.js",
269
+ "file": "static/js/index.Br5nxKNj.js",
258
270
  "name": "index",
259
271
  "src": "../lib/src/components/widgets/ButtonGroup/index.ts",
260
272
  "isDynamicEntry": true,
261
273
  "imports": [
262
274
  "index.html",
263
- "_useBasicWidgetState.CedkNjUW.js",
264
- "_FormClearHelper.DTcdrasw.js"
275
+ "_useBasicWidgetState.D6sOH6oI.js",
276
+ "_FormClearHelper.BB1Km6eP.js"
265
277
  ]
266
278
  },
267
279
  "../lib/src/components/widgets/CameraInput/index.ts": {
268
- "file": "static/js/index.BycLveZ4.js",
280
+ "file": "static/js/index.DGAh7DMq.js",
269
281
  "name": "index",
270
282
  "src": "../lib/src/components/widgets/CameraInput/index.ts",
271
283
  "isDynamicEntry": true,
272
284
  "imports": [
273
285
  "index.html",
274
286
  "_UploadFileInfo.C-jY39rj.js",
275
- "_FormClearHelper.DTcdrasw.js",
276
- "_ProgressBar.DetlP5aY.js"
287
+ "_FormClearHelper.BB1Km6eP.js",
288
+ "_ProgressBar.DLY8H6nE.js"
277
289
  ]
278
290
  },
279
291
  "../lib/src/components/widgets/ChatInput/index.ts": {
280
- "file": "static/js/index.DcPNYEUo.js",
292
+ "file": "static/js/index.Dq56CyM2.js",
281
293
  "name": "index",
282
294
  "src": "../lib/src/components/widgets/ChatInput/index.ts",
283
295
  "isDynamicEntry": true,
284
296
  "imports": [
285
297
  "index.html",
286
- "_FileHelper.CaIUKG91.js",
287
- "_InputInstructions.xnSDuYeQ.js",
288
- "_useTextInputAutoExpand.Ca7w8dVs.js",
298
+ "_FileHelper.90EtOmj9.js",
299
+ "_InputInstructions.jhH15PqV.js",
300
+ "_useTextInputAutoExpand.4u3_GcuN.js",
289
301
  "_inputUtils.CptNuJwn.js",
290
- "_ErrorOutline.esm.DUpR0_Ka.js",
302
+ "_ErrorOutline.esm.YoJdlW1p.js",
291
303
  "_UploadFileInfo.C-jY39rj.js",
292
- "_base-input.BQft14La.js"
304
+ "_base-input.CJGiNqed.js"
293
305
  ]
294
306
  },
295
307
  "../lib/src/components/widgets/Checkbox/index.ts": {
296
- "file": "static/js/index.B4dUQfni.js",
308
+ "file": "static/js/index.Q-3sFn1v.js",
297
309
  "name": "index",
298
310
  "src": "../lib/src/components/widgets/Checkbox/index.ts",
299
311
  "isDynamicEntry": true,
300
312
  "imports": [
301
313
  "index.html",
302
- "_useBasicWidgetState.CedkNjUW.js",
303
- "_checkbox.yZOfXCeX.js",
304
- "_FormClearHelper.DTcdrasw.js"
314
+ "_useBasicWidgetState.D6sOH6oI.js",
315
+ "_checkbox.Cpdd482O.js",
316
+ "_FormClearHelper.BB1Km6eP.js"
305
317
  ]
306
318
  },
307
319
  "../lib/src/components/widgets/ColorPicker/index.ts": {
308
- "file": "static/js/index.Bm3VbPB5.js",
320
+ "file": "static/js/index.BKstZk0M.js",
309
321
  "name": "index",
310
322
  "src": "../lib/src/components/widgets/ColorPicker/index.ts",
311
323
  "isDynamicEntry": true,
312
324
  "imports": [
313
325
  "index.html",
314
- "_useBasicWidgetState.CedkNjUW.js",
315
- "_FormClearHelper.DTcdrasw.js"
326
+ "_useBasicWidgetState.D6sOH6oI.js",
327
+ "_FormClearHelper.BB1Km6eP.js"
316
328
  ]
317
329
  },
318
330
  "../lib/src/components/widgets/DateInput/index.ts": {
319
- "file": "static/js/index.DNLrMXgm.js",
331
+ "file": "static/js/index.CkRlykEE.js",
320
332
  "name": "index",
321
333
  "src": "../lib/src/components/widgets/DateInput/index.ts",
322
334
  "isDynamicEntry": true,
323
335
  "imports": [
324
336
  "index.html",
325
- "_useBasicWidgetState.CedkNjUW.js",
326
- "_ErrorOutline.esm.DUpR0_Ka.js",
327
- "_timepicker.mkJF97Bb.js",
328
- "_input.s6pjQ49A.js",
329
- "_base-input.BQft14La.js",
330
- "_FormClearHelper.DTcdrasw.js",
331
- "_possibleConstructorReturn.CqidKeei.js",
332
- "_createSuper.Dh9w1cs8.js"
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"
333
345
  ]
334
346
  },
335
347
  "../lib/src/components/widgets/DownloadButton/index.ts": {
336
- "file": "static/js/index.Bj9JgOEC.js",
348
+ "file": "static/js/index.BgnZEMVh.js",
337
349
  "name": "index",
338
350
  "src": "../lib/src/components/widgets/DownloadButton/index.ts",
339
351
  "isDynamicEntry": true,
@@ -343,165 +355,164 @@
343
355
  ]
344
356
  },
345
357
  "../lib/src/components/widgets/FileUploader/index.ts": {
346
- "file": "static/js/index.DH71Ezyj.js",
358
+ "file": "static/js/index.B1ZQh4P1.js",
347
359
  "name": "index",
348
360
  "src": "../lib/src/components/widgets/FileUploader/index.ts",
349
361
  "isDynamicEntry": true,
350
362
  "imports": [
351
363
  "index.html",
352
- "_FormClearHelper.DTcdrasw.js",
353
- "_FileHelper.CaIUKG91.js",
354
- "_ProgressBar.DetlP5aY.js",
355
- "_Hooks.BRba_Own.js",
364
+ "_FormClearHelper.BB1Km6eP.js",
365
+ "_FileHelper.90EtOmj9.js",
366
+ "_ProgressBar.DLY8H6nE.js",
356
367
  "_UploadFileInfo.C-jY39rj.js"
357
368
  ]
358
369
  },
359
370
  "../lib/src/components/widgets/Multiselect/index.ts": {
360
- "file": "static/js/index.DuxqVQpd.js",
371
+ "file": "static/js/index.Dd7bMeLP.js",
361
372
  "name": "index",
362
373
  "src": "../lib/src/components/widgets/Multiselect/index.ts",
363
374
  "isDynamicEntry": true,
364
375
  "imports": [
365
376
  "index.html",
366
- "_useBasicWidgetState.CedkNjUW.js",
367
- "_FormClearHelper.DTcdrasw.js"
377
+ "_useBasicWidgetState.D6sOH6oI.js",
378
+ "_FormClearHelper.BB1Km6eP.js"
368
379
  ]
369
380
  },
370
381
  "../lib/src/components/widgets/NumberInput/index.ts": {
371
- "file": "static/js/index.CGYqqs6j.js",
382
+ "file": "static/js/index.C0RLraek.js",
372
383
  "name": "index",
373
384
  "src": "../lib/src/components/widgets/NumberInput/index.ts",
374
385
  "isDynamicEntry": true,
375
386
  "imports": [
376
387
  "index.html",
377
- "_uniqueId.RI1LJdtz.js",
378
- "_InputInstructions.xnSDuYeQ.js",
379
- "_FormClearHelper.DTcdrasw.js",
388
+ "_uniqueId.oG4Gvj1v.js",
389
+ "_InputInstructions.jhH15PqV.js",
390
+ "_FormClearHelper.BB1Km6eP.js",
380
391
  "_sprintf.D7DtBTRn.js",
381
- "_input.s6pjQ49A.js",
382
- "_base-input.BQft14La.js"
392
+ "_input.D4MN_FzN.js",
393
+ "_base-input.CJGiNqed.js"
383
394
  ]
384
395
  },
385
396
  "../lib/src/components/widgets/Radio/index.ts": {
386
- "file": "static/js/index.FFOzOWzC.js",
397
+ "file": "static/js/index.B_dWA3vd.js",
387
398
  "name": "index",
388
399
  "src": "../lib/src/components/widgets/Radio/index.ts",
389
400
  "isDynamicEntry": true,
390
401
  "imports": [
391
402
  "index.html",
392
- "_useBasicWidgetState.CedkNjUW.js",
393
- "_FormClearHelper.DTcdrasw.js"
403
+ "_useBasicWidgetState.D6sOH6oI.js",
404
+ "_FormClearHelper.BB1Km6eP.js"
394
405
  ]
395
406
  },
396
407
  "../lib/src/components/widgets/Selectbox/index.ts": {
397
- "file": "static/js/index.64ejlaaT.js",
408
+ "file": "static/js/index.DPUXkcQL.js",
398
409
  "name": "index",
399
410
  "src": "../lib/src/components/widgets/Selectbox/index.ts",
400
411
  "isDynamicEntry": true,
401
412
  "imports": [
402
413
  "index.html",
403
- "_useBasicWidgetState.CedkNjUW.js",
404
- "_FormClearHelper.DTcdrasw.js"
414
+ "_useBasicWidgetState.D6sOH6oI.js",
415
+ "_FormClearHelper.BB1Km6eP.js"
405
416
  ]
406
417
  },
407
418
  "../lib/src/components/widgets/Slider/index.ts": {
408
- "file": "static/js/index.Baqa90pe.js",
419
+ "file": "static/js/index.DvFidMLe.js",
409
420
  "name": "index",
410
421
  "src": "../lib/src/components/widgets/Slider/index.ts",
411
422
  "isDynamicEntry": true,
412
423
  "imports": [
413
424
  "index.html",
414
425
  "_sprintf.D7DtBTRn.js",
415
- "_useBasicWidgetState.CedkNjUW.js",
416
- "_FormClearHelper.DTcdrasw.js"
426
+ "_useBasicWidgetState.D6sOH6oI.js",
427
+ "_FormClearHelper.BB1Km6eP.js"
417
428
  ]
418
429
  },
419
430
  "../lib/src/components/widgets/TextArea/index.ts": {
420
- "file": "static/js/index.Bxz2yX3P.js",
431
+ "file": "static/js/index.BohqXifI.js",
421
432
  "name": "index",
422
433
  "src": "../lib/src/components/widgets/TextArea/index.ts",
423
434
  "isDynamicEntry": true,
424
435
  "imports": [
425
436
  "index.html",
426
- "_uniqueId.RI1LJdtz.js",
427
- "_InputInstructions.xnSDuYeQ.js",
428
- "_useBasicWidgetState.CedkNjUW.js",
429
- "_useUpdateUiValue.DeXelfRH.js",
430
- "_useTextInputAutoExpand.Ca7w8dVs.js",
431
- "_FormClearHelper.DTcdrasw.js",
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",
432
443
  "_inputUtils.CptNuJwn.js",
433
- "_base-input.BQft14La.js"
444
+ "_base-input.CJGiNqed.js"
434
445
  ]
435
446
  },
436
447
  "../lib/src/components/widgets/TextInput/index.ts": {
437
- "file": "static/js/index.C9BdUqTi.js",
448
+ "file": "static/js/index.DwkhC5Pc.js",
438
449
  "name": "index",
439
450
  "src": "../lib/src/components/widgets/TextInput/index.ts",
440
451
  "isDynamicEntry": true,
441
452
  "imports": [
442
453
  "index.html",
443
- "_uniqueId.RI1LJdtz.js",
444
- "_InputInstructions.xnSDuYeQ.js",
445
- "_useBasicWidgetState.CedkNjUW.js",
446
- "_useUpdateUiValue.DeXelfRH.js",
447
- "_input.s6pjQ49A.js",
448
- "_FormClearHelper.DTcdrasw.js",
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",
449
460
  "_inputUtils.CptNuJwn.js",
450
- "_base-input.BQft14La.js"
461
+ "_base-input.CJGiNqed.js"
451
462
  ]
452
463
  },
453
464
  "../lib/src/components/widgets/TimeInput/index.ts": {
454
- "file": "static/js/index.DHh-U0dK.js",
465
+ "file": "static/js/index.DaSmGJ76.js",
455
466
  "name": "index",
456
467
  "src": "../lib/src/components/widgets/TimeInput/index.ts",
457
468
  "isDynamicEntry": true,
458
469
  "imports": [
459
470
  "index.html",
460
- "_useBasicWidgetState.CedkNjUW.js",
461
- "_timepicker.mkJF97Bb.js",
462
- "_FormClearHelper.DTcdrasw.js",
463
- "_possibleConstructorReturn.CqidKeei.js",
464
- "_createSuper.Dh9w1cs8.js"
471
+ "_useBasicWidgetState.D6sOH6oI.js",
472
+ "_timepicker.DAhu-vcF.js",
473
+ "_FormClearHelper.BB1Km6eP.js",
474
+ "_possibleConstructorReturn.exeeJQEP.js",
475
+ "_createSuper.CuQIogbW.js"
465
476
  ]
466
477
  },
467
478
  "../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.DcuHuCyW.js",
479
+ "file": "static/js/data-grid-overlay-editor.2Ufgxc6y.js",
469
480
  "name": "data-grid-overlay-editor",
470
481
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
471
482
  "isDynamicEntry": true,
472
483
  "imports": [
473
484
  "index.html",
474
- "_index.CFMf5_ez.js",
475
- "_withFullScreenWrapper.C3561XxJ.js",
476
- "_Toolbar.C77ar7rq.js",
477
- "_FormClearHelper.DTcdrasw.js",
485
+ "_index.DKb_NvmG.js",
486
+ "_withFullScreenWrapper.zothJIsI.js",
487
+ "_Toolbar.D8nHCkuz.js",
488
+ "_FormClearHelper.BB1Km6eP.js",
478
489
  "_sprintf.D7DtBTRn.js",
479
- "_checkbox.yZOfXCeX.js",
490
+ "_checkbox.Cpdd482O.js",
480
491
  "_createDownloadLinkElement.ZaXNnPK4.js",
481
- "_toConsumableArray.De7I7KVR.js",
482
- "_possibleConstructorReturn.CqidKeei.js",
483
- "_createSuper.Dh9w1cs8.js",
484
- "_FileDownload.esm.CN4j9-1w.js"
492
+ "_toConsumableArray.DNbljYEC.js",
493
+ "_possibleConstructorReturn.exeeJQEP.js",
494
+ "_createSuper.CuQIogbW.js",
495
+ "_FileDownload.esm.Ddx8VEYy.js"
485
496
  ]
486
497
  },
487
498
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js": {
488
- "file": "static/js/number-overlay-editor.DdgVR5m3.js",
499
+ "file": "static/js/number-overlay-editor.DRwAw1In.js",
489
500
  "name": "number-overlay-editor",
490
501
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
491
502
  "isDynamicEntry": true,
492
503
  "imports": [
493
504
  "index.html",
494
- "_index.CFMf5_ez.js",
495
- "_withFullScreenWrapper.C3561XxJ.js",
496
- "_Toolbar.C77ar7rq.js",
497
- "_FormClearHelper.DTcdrasw.js",
505
+ "_index.DKb_NvmG.js",
506
+ "_withFullScreenWrapper.zothJIsI.js",
507
+ "_Toolbar.D8nHCkuz.js",
508
+ "_FormClearHelper.BB1Km6eP.js",
498
509
  "_sprintf.D7DtBTRn.js",
499
- "_checkbox.yZOfXCeX.js",
510
+ "_checkbox.Cpdd482O.js",
500
511
  "_createDownloadLinkElement.ZaXNnPK4.js",
501
- "_toConsumableArray.De7I7KVR.js",
502
- "_possibleConstructorReturn.CqidKeei.js",
503
- "_createSuper.Dh9w1cs8.js",
504
- "_FileDownload.esm.CN4j9-1w.js"
512
+ "_toConsumableArray.DNbljYEC.js",
513
+ "_possibleConstructorReturn.exeeJQEP.js",
514
+ "_createSuper.CuQIogbW.js",
515
+ "_FileDownload.esm.Ddx8VEYy.js"
505
516
  ]
506
517
  },
507
518
  "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf": {
@@ -741,94 +752,99 @@
741
752
  "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
742
753
  },
743
754
  "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
744
- "file": "static/js/downloader.MeHtkq8r.js",
755
+ "file": "static/js/downloader.CN0K7xlu.js",
745
756
  "name": "downloader",
746
757
  "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
747
758
  "isDynamicEntry": true,
748
759
  "imports": [
749
- "_es6.VpBPGCnM.js",
760
+ "_es6.BJcsVXQ0.js",
750
761
  "index.html"
751
762
  ]
752
763
  },
753
764
  "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
754
- "file": "static/js/memory.Cuvsdfrl.js",
765
+ "file": "static/js/memory.DrZjtdGT.js",
755
766
  "name": "memory",
756
767
  "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
757
768
  "isDynamicEntry": true,
758
769
  "imports": [
759
- "_es6.VpBPGCnM.js",
770
+ "_es6.BJcsVXQ0.js",
760
771
  "index.html"
761
772
  ]
762
773
  },
763
774
  "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
764
- "file": "static/js/sandbox.CCQREcJx.js",
775
+ "file": "static/js/sandbox.ClO3IuUr.js",
765
776
  "name": "sandbox",
766
777
  "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
767
778
  "isDynamicEntry": true,
768
779
  "imports": [
769
- "_es6.VpBPGCnM.js",
780
+ "_es6.BJcsVXQ0.js",
770
781
  "index.html"
771
782
  ]
772
783
  },
773
- "_ErrorOutline.esm.DUpR0_Ka.js": {
774
- "file": "static/js/ErrorOutline.esm.DUpR0_Ka.js",
784
+ "../node_modules/wavesurfer.js/dist/plugins/record.js": {
785
+ "file": "static/js/record.B-tDciZb.js",
786
+ "name": "record",
787
+ "src": "../node_modules/wavesurfer.js/dist/plugins/record.js",
788
+ "isDynamicEntry": true
789
+ },
790
+ "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js": {
791
+ "file": "static/js/wavesurfer.esm.vI8Eid4k.js",
792
+ "name": "wavesurfer.esm",
793
+ "src": "../node_modules/wavesurfer.js/dist/wavesurfer.esm.js",
794
+ "isDynamicEntry": true
795
+ },
796
+ "_ErrorOutline.esm.YoJdlW1p.js": {
797
+ "file": "static/js/ErrorOutline.esm.YoJdlW1p.js",
775
798
  "name": "ErrorOutline.esm",
776
799
  "imports": [
777
800
  "index.html"
778
801
  ]
779
802
  },
780
- "_FileDownload.esm.CN4j9-1w.js": {
781
- "file": "static/js/FileDownload.esm.CN4j9-1w.js",
803
+ "_FileDownload.esm.Ddx8VEYy.js": {
804
+ "file": "static/js/FileDownload.esm.Ddx8VEYy.js",
782
805
  "name": "FileDownload.esm",
783
806
  "imports": [
784
807
  "index.html"
785
808
  ]
786
809
  },
787
- "_FileHelper.CaIUKG91.js": {
788
- "file": "static/js/FileHelper.CaIUKG91.js",
810
+ "_FileHelper.90EtOmj9.js": {
811
+ "file": "static/js/FileHelper.90EtOmj9.js",
789
812
  "name": "FileHelper",
790
813
  "imports": [
791
814
  "index.html",
792
815
  "_UploadFileInfo.C-jY39rj.js"
793
816
  ]
794
817
  },
795
- "_FormClearHelper.DTcdrasw.js": {
796
- "file": "static/js/FormClearHelper.DTcdrasw.js",
818
+ "_FormClearHelper.BB1Km6eP.js": {
819
+ "file": "static/js/FormClearHelper.BB1Km6eP.js",
797
820
  "name": "FormClearHelper",
798
821
  "imports": [
799
822
  "index.html"
800
823
  ]
801
824
  },
802
- "_Hooks.BRba_Own.js": {
803
- "file": "static/js/Hooks.BRba_Own.js",
804
- "name": "Hooks",
805
- "imports": [
806
- "index.html"
807
- ]
808
- },
809
- "_InputInstructions.xnSDuYeQ.js": {
810
- "file": "static/js/InputInstructions.xnSDuYeQ.js",
825
+ "_InputInstructions.jhH15PqV.js": {
826
+ "file": "static/js/InputInstructions.jhH15PqV.js",
811
827
  "name": "InputInstructions",
812
828
  "imports": [
813
829
  "index.html"
814
830
  ]
815
831
  },
816
- "_Particles.CElH0XX2.js": {
817
- "file": "static/js/Particles.CElH0XX2.js",
832
+ "_Particles.DUsputn1.js": {
833
+ "file": "static/js/Particles.DUsputn1.js",
818
834
  "name": "Particles",
819
835
  "imports": [
820
836
  "index.html"
821
837
  ]
822
838
  },
823
- "_ProgressBar.DetlP5aY.js": {
824
- "file": "static/js/ProgressBar.DetlP5aY.js",
839
+ "_ProgressBar.DLY8H6nE.js": {
840
+ "file": "static/js/ProgressBar.DLY8H6nE.js",
825
841
  "name": "ProgressBar",
826
842
  "imports": [
827
843
  "index.html"
828
844
  ]
829
845
  },
830
- "_Toolbar.C77ar7rq.js": {
831
- "file": "static/js/Toolbar.C77ar7rq.js",
846
+ "_Toolbar.D8nHCkuz.js": {
847
+ "file": "static/js/Toolbar.D8nHCkuz.js",
832
848
  "name": "Toolbar",
833
849
  "imports": [
834
850
  "index.html"
@@ -838,15 +854,15 @@
838
854
  "file": "static/js/UploadFileInfo.C-jY39rj.js",
839
855
  "name": "UploadFileInfo"
840
856
  },
841
- "_base-input.BQft14La.js": {
842
- "file": "static/js/base-input.BQft14La.js",
857
+ "_base-input.CJGiNqed.js": {
858
+ "file": "static/js/base-input.CJGiNqed.js",
843
859
  "name": "base-input",
844
860
  "imports": [
845
861
  "index.html"
846
862
  ]
847
863
  },
848
- "_checkbox.yZOfXCeX.js": {
849
- "file": "static/js/checkbox.yZOfXCeX.js",
864
+ "_checkbox.Cpdd482O.js": {
865
+ "file": "static/js/checkbox.Cpdd482O.js",
850
866
  "name": "checkbox",
851
867
  "imports": [
852
868
  "index.html"
@@ -856,15 +872,15 @@
856
872
  "file": "static/js/createDownloadLinkElement.ZaXNnPK4.js",
857
873
  "name": "createDownloadLinkElement"
858
874
  },
859
- "_createSuper.Dh9w1cs8.js": {
860
- "file": "static/js/createSuper.Dh9w1cs8.js",
875
+ "_createSuper.CuQIogbW.js": {
876
+ "file": "static/js/createSuper.CuQIogbW.js",
861
877
  "name": "createSuper",
862
878
  "imports": [
863
- "_possibleConstructorReturn.CqidKeei.js"
879
+ "_possibleConstructorReturn.exeeJQEP.js"
864
880
  ]
865
881
  },
866
- "_es6.VpBPGCnM.js": {
867
- "file": "static/js/es6.VpBPGCnM.js",
882
+ "_es6.BJcsVXQ0.js": {
883
+ "file": "static/js/es6.BJcsVXQ0.js",
868
884
  "name": "es6",
869
885
  "isDynamicEntry": true,
870
886
  "imports": [
@@ -879,58 +895,58 @@
879
895
  "../node_modules/native-file-system-adapter/src/adapters/memory.js"
880
896
  ]
881
897
  },
882
- "_iframeResizer.contentWindow.yMw_ARIL.js": {
883
- "file": "static/js/iframeResizer.contentWindow.yMw_ARIL.js",
898
+ "_iframeResizer.contentWindow.XzUvQqcZ.js": {
899
+ "file": "static/js/iframeResizer.contentWindow.XzUvQqcZ.js",
884
900
  "name": "iframeResizer.contentWindow",
885
901
  "isDynamicEntry": true,
886
902
  "imports": [
887
903
  "index.html"
888
904
  ]
889
905
  },
890
- "_index.CFMf5_ez.js": {
891
- "file": "static/js/index.CFMf5_ez.js",
906
+ "_index.DKb_NvmG.js": {
907
+ "file": "static/js/index.DKb_NvmG.js",
892
908
  "name": "index",
893
909
  "isDynamicEntry": true,
894
910
  "imports": [
895
911
  "index.html",
896
- "_withFullScreenWrapper.C3561XxJ.js",
897
- "_Toolbar.C77ar7rq.js",
898
- "_FormClearHelper.DTcdrasw.js",
912
+ "_withFullScreenWrapper.zothJIsI.js",
913
+ "_Toolbar.D8nHCkuz.js",
914
+ "_FormClearHelper.BB1Km6eP.js",
899
915
  "_sprintf.D7DtBTRn.js",
900
- "_checkbox.yZOfXCeX.js",
916
+ "_checkbox.Cpdd482O.js",
901
917
  "_createDownloadLinkElement.ZaXNnPK4.js",
902
- "_toConsumableArray.De7I7KVR.js",
903
- "_possibleConstructorReturn.CqidKeei.js",
904
- "_createSuper.Dh9w1cs8.js",
905
- "_FileDownload.esm.CN4j9-1w.js"
918
+ "_toConsumableArray.DNbljYEC.js",
919
+ "_possibleConstructorReturn.exeeJQEP.js",
920
+ "_createSuper.CuQIogbW.js",
921
+ "_FileDownload.esm.Ddx8VEYy.js"
906
922
  ],
907
923
  "dynamicImports": [
908
924
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
909
925
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
910
- "_es6.VpBPGCnM.js"
926
+ "_es6.BJcsVXQ0.js"
911
927
  ],
912
928
  "css": [
913
- "static/css/index.CHEnSPGk.css"
929
+ "static/css/index.DgR7E2CV.css"
914
930
  ]
915
931
  },
916
- "_index.CHEnSPGk.css": {
917
- "file": "static/css/index.CHEnSPGk.css",
918
- "src": "_index.CHEnSPGk.css"
932
+ "_index.DgR7E2CV.css": {
933
+ "file": "static/css/index.DgR7E2CV.css",
934
+ "src": "_index.DgR7E2CV.css"
919
935
  },
920
- "_input.s6pjQ49A.js": {
921
- "file": "static/js/input.s6pjQ49A.js",
936
+ "_input.D4MN_FzN.js": {
937
+ "file": "static/js/input.D4MN_FzN.js",
922
938
  "name": "input",
923
939
  "imports": [
924
940
  "index.html",
925
- "_base-input.BQft14La.js"
941
+ "_base-input.CJGiNqed.js"
926
942
  ]
927
943
  },
928
944
  "_inputUtils.CptNuJwn.js": {
929
945
  "file": "static/js/inputUtils.CptNuJwn.js",
930
946
  "name": "inputUtils"
931
947
  },
932
- "_possibleConstructorReturn.CqidKeei.js": {
933
- "file": "static/js/possibleConstructorReturn.CqidKeei.js",
948
+ "_possibleConstructorReturn.exeeJQEP.js": {
949
+ "file": "static/js/possibleConstructorReturn.exeeJQEP.js",
934
950
  "name": "possibleConstructorReturn",
935
951
  "imports": [
936
952
  "index.html"
@@ -940,63 +956,63 @@
940
956
  "file": "static/js/sprintf.D7DtBTRn.js",
941
957
  "name": "sprintf"
942
958
  },
943
- "_timepicker.mkJF97Bb.js": {
944
- "file": "static/js/timepicker.mkJF97Bb.js",
959
+ "_timepicker.DAhu-vcF.js": {
960
+ "file": "static/js/timepicker.DAhu-vcF.js",
945
961
  "name": "timepicker",
946
962
  "imports": [
947
963
  "index.html",
948
- "_possibleConstructorReturn.CqidKeei.js",
949
- "_createSuper.Dh9w1cs8.js"
964
+ "_possibleConstructorReturn.exeeJQEP.js",
965
+ "_createSuper.CuQIogbW.js"
950
966
  ]
951
967
  },
952
- "_toConsumableArray.De7I7KVR.js": {
953
- "file": "static/js/toConsumableArray.De7I7KVR.js",
968
+ "_toConsumableArray.DNbljYEC.js": {
969
+ "file": "static/js/toConsumableArray.DNbljYEC.js",
954
970
  "name": "toConsumableArray",
955
971
  "imports": [
956
972
  "index.html",
957
- "_possibleConstructorReturn.CqidKeei.js"
973
+ "_possibleConstructorReturn.exeeJQEP.js"
958
974
  ]
959
975
  },
960
- "_uniqueId.RI1LJdtz.js": {
961
- "file": "static/js/uniqueId.RI1LJdtz.js",
976
+ "_uniqueId.oG4Gvj1v.js": {
977
+ "file": "static/js/uniqueId.oG4Gvj1v.js",
962
978
  "name": "uniqueId",
963
979
  "imports": [
964
980
  "index.html"
965
981
  ]
966
982
  },
967
- "_useBasicWidgetState.CedkNjUW.js": {
968
- "file": "static/js/useBasicWidgetState.CedkNjUW.js",
983
+ "_useBasicWidgetState.D6sOH6oI.js": {
984
+ "file": "static/js/useBasicWidgetState.D6sOH6oI.js",
969
985
  "name": "useBasicWidgetState",
970
986
  "imports": [
971
987
  "index.html",
972
- "_FormClearHelper.DTcdrasw.js"
988
+ "_FormClearHelper.BB1Km6eP.js"
973
989
  ]
974
990
  },
975
- "_useTextInputAutoExpand.Ca7w8dVs.js": {
976
- "file": "static/js/useTextInputAutoExpand.Ca7w8dVs.js",
991
+ "_useTextInputAutoExpand.4u3_GcuN.js": {
992
+ "file": "static/js/useTextInputAutoExpand.4u3_GcuN.js",
977
993
  "name": "useTextInputAutoExpand",
978
994
  "imports": [
979
995
  "index.html",
980
- "_base-input.BQft14La.js"
996
+ "_base-input.CJGiNqed.js"
981
997
  ]
982
998
  },
983
- "_useUpdateUiValue.DeXelfRH.js": {
984
- "file": "static/js/useUpdateUiValue.DeXelfRH.js",
999
+ "_useUpdateUiValue.F2R3eTeR.js": {
1000
+ "file": "static/js/useUpdateUiValue.F2R3eTeR.js",
985
1001
  "name": "useUpdateUiValue",
986
1002
  "imports": [
987
1003
  "index.html",
988
1004
  "_inputUtils.CptNuJwn.js"
989
1005
  ]
990
1006
  },
991
- "_withFullScreenWrapper.C3561XxJ.js": {
992
- "file": "static/js/withFullScreenWrapper.C3561XxJ.js",
1007
+ "_withFullScreenWrapper.zothJIsI.js": {
1008
+ "file": "static/js/withFullScreenWrapper.zothJIsI.js",
993
1009
  "name": "withFullScreenWrapper",
994
1010
  "imports": [
995
1011
  "index.html"
996
1012
  ]
997
1013
  },
998
1014
  "index.html": {
999
- "file": "static/js/index.6xX1278W.js",
1015
+ "file": "static/js/index.CAj-7vWz.js",
1000
1016
  "name": "index",
1001
1017
  "src": "index.html",
1002
1018
  "isEntry": true,
@@ -1004,7 +1020,7 @@
1004
1020
  "../lib/src/components/elements/Audio/index.ts",
1005
1021
  "../lib/src/components/elements/Balloons/index.ts",
1006
1022
  "../lib/src/components/elements/Snow/index.ts",
1007
- "_index.CFMf5_ez.js",
1023
+ "_index.DKb_NvmG.js",
1008
1024
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1009
1025
  "../lib/src/components/elements/Toast/index.ts",
1010
1026
  "../lib/src/components/elements/BokehChart/index.ts",
@@ -1037,10 +1053,11 @@
1037
1053
  "../lib/src/components/widgets/TextInput/index.ts",
1038
1054
  "../lib/src/components/widgets/TimeInput/index.ts",
1039
1055
  "../lib/src/components/widgets/NumberInput/index.ts",
1040
- "_iframeResizer.contentWindow.yMw_ARIL.js"
1056
+ "../lib/src/components/widgets/BidiComponent/index.tsx",
1057
+ "_iframeResizer.contentWindow.XzUvQqcZ.js"
1041
1058
  ],
1042
1059
  "css": [
1043
- "static/css/index.CIiu7Ygf.css"
1060
+ "static/css/index.BpABIXK9.css"
1044
1061
  ],
1045
1062
  "assets": [
1046
1063
  "static/media/fireworks.B4d-_KUe.gif",
@@ -1110,11 +1127,11 @@
1110
1127
  "static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2",
1111
1128
  "static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2",
1112
1129
  "static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2",
1113
- "static/media/MaterialSymbols-Rounded.DeCZgS-4.woff2"
1130
+ "static/media/MaterialSymbols-Rounded.C7IFxh57.woff2"
1114
1131
  ]
1115
1132
  },
1116
1133
  "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2": {
1117
- "file": "static/media/MaterialSymbols-Rounded.DeCZgS-4.woff2",
1134
+ "file": "static/media/MaterialSymbols-Rounded.C7IFxh57.woff2",
1118
1135
  "src": "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2"
1119
1136
  },
1120
1137
  "src/assets/fonts/Source_Code/SourceCodeVF-Italic.ttf.woff2": {