streamlit 1.47.1__py3-none-any.whl → 1.48.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 (193) hide show
  1. streamlit/cli_util.py +1 -1
  2. streamlit/commands/echo.py +2 -2
  3. streamlit/commands/execution_control.py +1 -1
  4. streamlit/commands/page_config.py +16 -16
  5. streamlit/components/v1/component_arrow.py +4 -4
  6. streamlit/config.py +23 -5
  7. streamlit/connections/base_connection.py +2 -2
  8. streamlit/connections/snowflake_connection.py +2 -2
  9. streamlit/connections/sql_connection.py +4 -3
  10. streamlit/dataframe_util.py +1 -1
  11. streamlit/deprecation_util.py +20 -5
  12. streamlit/elements/arrow.py +105 -79
  13. streamlit/elements/deck_gl_json_chart.py +6 -6
  14. streamlit/elements/dialog_decorator.py +72 -17
  15. streamlit/elements/form.py +36 -7
  16. streamlit/elements/graphviz_chart.py +7 -0
  17. streamlit/elements/iframe.py +13 -22
  18. streamlit/elements/json.py +3 -3
  19. streamlit/elements/layouts.py +241 -75
  20. streamlit/elements/lib/built_in_chart_utils.py +11 -3
  21. streamlit/elements/lib/dialog.py +43 -0
  22. streamlit/elements/lib/file_uploader_utils.py +21 -2
  23. streamlit/elements/lib/layout_utils.py +88 -2
  24. streamlit/elements/lib/options_selector_utils.py +1 -1
  25. streamlit/elements/lib/utils.py +23 -3
  26. streamlit/elements/map.py +12 -11
  27. streamlit/elements/plotly_chart.py +21 -21
  28. streamlit/elements/pyplot.py +8 -4
  29. streamlit/elements/vega_charts.py +237 -143
  30. streamlit/elements/widgets/audio_input.py +2 -2
  31. streamlit/elements/widgets/button.py +147 -35
  32. streamlit/elements/widgets/button_group.py +9 -8
  33. streamlit/elements/widgets/camera_input.py +2 -2
  34. streamlit/elements/widgets/chat.py +8 -2
  35. streamlit/elements/widgets/checkbox.py +4 -4
  36. streamlit/elements/widgets/color_picker.py +2 -2
  37. streamlit/elements/widgets/data_editor.py +22 -15
  38. streamlit/elements/widgets/file_uploader.py +8 -2
  39. streamlit/elements/widgets/multiselect.py +27 -17
  40. streamlit/elements/widgets/number_input.py +2 -2
  41. streamlit/elements/widgets/radio.py +5 -4
  42. streamlit/elements/widgets/select_slider.py +8 -5
  43. streamlit/elements/widgets/selectbox.py +14 -4
  44. streamlit/elements/widgets/slider.py +59 -33
  45. streamlit/elements/widgets/text_widgets.py +4 -4
  46. streamlit/elements/widgets/time_widgets.py +4 -4
  47. streamlit/elements/write.py +9 -8
  48. streamlit/env_util.py +1 -1
  49. streamlit/errors.py +20 -4
  50. streamlit/file_util.py +1 -1
  51. streamlit/git_util.py +1 -1
  52. streamlit/logger.py +2 -2
  53. streamlit/proto/Block_pb2.py +39 -31
  54. streamlit/proto/Block_pb2.pyi +54 -3
  55. streamlit/proto/Button_pb2.py +4 -2
  56. streamlit/proto/Button_pb2.pyi +1 -0
  57. streamlit/proto/IFrame_pb2.py +8 -2
  58. streamlit/proto/IFrame_pb2.pyi +3 -0
  59. streamlit/runtime/caching/cache_data_api.py +15 -2
  60. streamlit/runtime/caching/cache_errors.py +1 -1
  61. streamlit/runtime/caching/cache_resource_api.py +24 -2
  62. streamlit/runtime/caching/cache_utils.py +6 -3
  63. streamlit/runtime/caching/hashing.py +6 -9
  64. streamlit/runtime/fragment.py +3 -2
  65. streamlit/runtime/runtime.py +19 -2
  66. streamlit/runtime/scriptrunner/script_runner.py +3 -3
  67. streamlit/runtime/state/common.py +2 -1
  68. streamlit/runtime/state/query_params.py +2 -1
  69. streamlit/runtime/state/session_state.py +1 -1
  70. streamlit/static/index.html +1 -1
  71. streamlit/static/manifest.json +231 -231
  72. streamlit/static/static/css/index.CQt5TjGB.css +1 -0
  73. streamlit/static/static/js/{ErrorOutline.esm.BEZPMjuG.js → ErrorOutline.esm.DjObtx4K.js} +1 -1
  74. streamlit/static/static/js/{FileDownload.esm.Dy1V9a2E.js → FileDownload.esm.Bz9nxNC5.js} +1 -1
  75. streamlit/static/static/js/{FileHelper.D0K06YBq.js → FileHelper.BrQvUXVD.js} +1 -1
  76. streamlit/static/static/js/{FormClearHelper.Cdw5Y7_m.js → FormClearHelper.DF4gFAOO.js} +1 -1
  77. streamlit/static/static/js/{Hooks.C_qx1sSw.js → Hooks.DEoLCfOE.js} +1 -1
  78. streamlit/static/static/js/{InputInstructions.D3IDU-eY.js → InputInstructions.D8zoMog9.js} +1 -1
  79. streamlit/static/static/js/Particles.CCFySwdL.js +1 -0
  80. streamlit/static/static/js/ProgressBar.COK9j1l0.js +2 -0
  81. streamlit/static/static/js/Toolbar.Dt4jIKlY.js +1 -0
  82. streamlit/static/static/js/{base-input.DMlw5p7n.js → base-input.BmvSaPd2.js} +4 -4
  83. streamlit/static/static/js/{checkbox.C7QR6llE.js → checkbox.Cgxgc0et.js} +2 -2
  84. streamlit/static/static/js/createDownloadLinkElement.ZaXNnPK4.js +1 -0
  85. streamlit/static/static/js/{createSuper.C5k_2vfB.js → createSuper.siQeagI2.js} +1 -1
  86. streamlit/static/static/js/data-grid-overlay-editor.Ct51iCb_.js +1 -0
  87. streamlit/static/static/js/{downloader.Nj6v3ioB.js → downloader.M6jQeNDf.js} +1 -1
  88. streamlit/static/static/js/{es6.CVz13CSz.js → es6.CMaUdEZ5.js} +2 -2
  89. streamlit/static/static/js/{iframeResizer.contentWindow.gZ8zjT0K.js → iframeResizer.contentWindow.C33BryyP.js} +1 -1
  90. streamlit/static/static/js/index.8GJD0eeD.js +1 -0
  91. streamlit/static/static/js/index.8QEYHMQD.js +1 -0
  92. streamlit/static/static/js/index.Ay41Wnu9.js +1 -0
  93. streamlit/static/static/js/index.BLiKiJ7_.js +1 -0
  94. streamlit/static/static/js/index.BT78cJmU.js +1 -0
  95. streamlit/static/static/js/index.BXDq9dj4.js +1 -0
  96. streamlit/static/static/js/index.BdGvnhlM.js +1 -0
  97. streamlit/static/static/js/index.BfasrT0d.js +1 -0
  98. streamlit/static/static/js/index.CCdtFMFG.js +1 -0
  99. streamlit/static/static/js/index.CFRGZDz1.js +1 -0
  100. streamlit/static/static/js/{index.MbqsiUV4.js → index.CFSFYiPA.js} +289 -289
  101. streamlit/static/static/js/{index.B2L574n6.js → index.CbdWnLqS.js} +3 -3
  102. streamlit/static/static/js/index.CeiIiXap.js +1 -0
  103. streamlit/static/static/js/index.CgZDfhN4.js +2 -0
  104. streamlit/static/static/js/{index.xfcNJBLM.js → index.Cqa4gqqN.js} +1 -1
  105. streamlit/static/static/js/index.CzX2xpyc.js +1 -0
  106. streamlit/static/static/js/index.D1EayrNh.js +73 -0
  107. streamlit/static/static/js/index.D1ErX5go.js +2 -0
  108. streamlit/static/static/js/{index.CTT2YqEU.js → index.D1jHqUJq.js} +1 -1
  109. streamlit/static/static/js/index.D5gweoL5.js +7 -0
  110. streamlit/static/static/js/index.DByVKZgq.js +1 -0
  111. streamlit/static/static/js/index.DEND45D1.js +3 -0
  112. streamlit/static/static/js/{index.CbQtRkVt.js → index.DKN5MVff.js} +162 -188
  113. streamlit/static/static/js/index.DfoxW1gP.js +3855 -0
  114. streamlit/static/static/js/index.Dtf1Ac0x.js +1 -0
  115. streamlit/static/static/js/index.DxrLhpeO.js +1 -0
  116. streamlit/static/static/js/{index.BSFzxMXi.js → index.J7o-_HIh.js} +1 -1
  117. streamlit/static/static/js/index.LU8juINp.js +197 -0
  118. streamlit/static/static/js/index.L_N2iylt.js +1 -0
  119. streamlit/static/static/js/{index.BscWuWHL.js → index.PZUX2kRz.js} +3 -3
  120. streamlit/static/static/js/index.ROjU6K0k.js +1 -0
  121. streamlit/static/static/js/index.WSNLkF94.js +1 -0
  122. streamlit/static/static/js/index.X5W3gJLn.js +1 -0
  123. streamlit/static/static/js/index.k9LYqfSL.js +1 -0
  124. streamlit/static/static/js/{index.D3wOJJsg.js → index.pnHtHv_c.js} +12 -12
  125. streamlit/static/static/js/index.tPUXqsfW.js +1 -0
  126. streamlit/static/static/js/index.tsvTLdio.js +12 -0
  127. streamlit/static/static/js/{input.D_45B0P-.js → input.DZd6EQlV.js} +2 -2
  128. streamlit/static/static/js/{memory.BmhrRyO2.js → memory.ptkfuI71.js} +1 -1
  129. streamlit/static/static/js/{mergeWith.DvOME7eH.js → mergeWith.GRNk8iwv.js} +1 -1
  130. streamlit/static/static/js/{number-overlay-editor.BRNxOzEZ.js → number-overlay-editor.DXS2qb1U.js} +1 -1
  131. streamlit/static/static/js/{possibleConstructorReturn.C5GiK_Ob.js → possibleConstructorReturn.Bd4ImlQ9.js} +1 -1
  132. streamlit/static/static/js/{sandbox.B-Q9S7vW.js → sandbox.DsH8LuID.js} +1 -1
  133. streamlit/static/static/js/{timepicker.DOMbfm_a.js → timepicker.QVekV78C.js} +1 -1
  134. streamlit/static/static/js/{toConsumableArray.CbNz0Ciu.js → toConsumableArray.BJvaP8gb.js} +1 -1
  135. streamlit/static/static/js/{uniqueId.-ygIU7IL.js → uniqueId.D_5M8Dgf.js} +1 -1
  136. streamlit/static/static/js/{useBasicWidgetState.Bx3VaRHk.js → useBasicWidgetState.DB3vMS9V.js} +1 -1
  137. streamlit/static/static/js/useTextInputAutoExpand.CBkGkaRt.js +2 -0
  138. streamlit/static/static/js/useUpdateUiValue.C7ZKpLQK.js +1 -0
  139. streamlit/static/static/js/withFullScreenWrapper.C-gXt0Rl.js +1 -0
  140. streamlit/temporary_directory.py +5 -3
  141. streamlit/testing/v1/app_test.py +4 -1
  142. streamlit/testing/v1/element_tree.py +4 -5
  143. streamlit/type_util.py +10 -3
  144. streamlit/user_info.py +6 -1
  145. streamlit/util.py +11 -1
  146. streamlit/watcher/local_sources_watcher.py +4 -3
  147. streamlit/web/bootstrap.py +18 -12
  148. streamlit/web/cli.py +2 -1
  149. streamlit/web/server/server.py +72 -21
  150. {streamlit-1.47.1.dist-info → streamlit-1.48.1.dist-info}/METADATA +14 -2
  151. {streamlit-1.47.1.dist-info → streamlit-1.48.1.dist-info}/RECORD +155 -155
  152. streamlit/static/static/css/index.CsLB_Bnz.css +0 -1
  153. streamlit/static/static/js/ProgressBar.EhJ_lCOf.js +0 -2
  154. streamlit/static/static/js/RenderInPortalIfExists.D6a0mMll.js +0 -1
  155. streamlit/static/static/js/Toolbar.D6yqQ65-.js +0 -1
  156. streamlit/static/static/js/createDownloadLinkElement.DZMwyjvU.js +0 -1
  157. streamlit/static/static/js/data-grid-overlay-editor.CoquyZNK.js +0 -1
  158. streamlit/static/static/js/index.B3n-pURl.js +0 -2
  159. streamlit/static/static/js/index.B9jJp9aE.js +0 -1
  160. streamlit/static/static/js/index.BBVtld-D.js +0 -1
  161. streamlit/static/static/js/index.BKHPnvYd.js +0 -1
  162. streamlit/static/static/js/index.B_1CXynz.js +0 -1
  163. streamlit/static/static/js/index.Bm1LklYO.js +0 -1
  164. streamlit/static/static/js/index.Byi6__iF.js +0 -1
  165. streamlit/static/static/js/index.BzJeMpQ-.js +0 -197
  166. streamlit/static/static/js/index.C4tw7-Cl.js +0 -2
  167. streamlit/static/static/js/index.CG0C49ex.js +0 -1
  168. streamlit/static/static/js/index.CMuSJPv-.js +0 -1
  169. streamlit/static/static/js/index.COPFcr_K.js +0 -3855
  170. streamlit/static/static/js/index.CU3TLDlu.js +0 -1
  171. streamlit/static/static/js/index.CVKKDwaf.js +0 -1
  172. streamlit/static/static/js/index.CWZeK3mV.js +0 -12
  173. streamlit/static/static/js/index.CWbiNJQl.js +0 -1
  174. streamlit/static/static/js/index.CWxefYP6.js +0 -73
  175. streamlit/static/static/js/index.DOdWa88b.js +0 -1
  176. streamlit/static/static/js/index.DXtnaPua.js +0 -1
  177. streamlit/static/static/js/index.DatDwFl3.js +0 -3
  178. streamlit/static/static/js/index.DeWYPvQR.js +0 -1
  179. streamlit/static/static/js/index.Do4vzIvK.js +0 -1
  180. streamlit/static/static/js/index.Dvrstlh8.js +0 -1
  181. streamlit/static/static/js/index.DvznfdF_.js +0 -1
  182. streamlit/static/static/js/index.U1vvXeGn.js +0 -1
  183. streamlit/static/static/js/index._WAuWRkp.js +0 -7
  184. streamlit/static/static/js/index.bwA9_eWC.js +0 -1
  185. streamlit/static/static/js/index.m1njXuKl.js +0 -1
  186. streamlit/static/static/js/index.mihWZKb1.js +0 -1
  187. streamlit/static/static/js/useOnInputChange.CDZx-L6q.js +0 -1
  188. streamlit/static/static/js/useTextInputAutoExpand.BuE9l5TG.js +0 -2
  189. streamlit/static/static/js/withFullScreenWrapper.DWXejOhQ.js +0 -1
  190. {streamlit-1.47.1.data → streamlit-1.48.1.data}/scripts/streamlit.cmd +0 -0
  191. {streamlit-1.47.1.dist-info → streamlit-1.48.1.dist-info}/WHEEL +0 -0
  192. {streamlit-1.47.1.dist-info → streamlit-1.48.1.dist-info}/entry_points.txt +0 -0
  193. {streamlit-1.47.1.dist-info → streamlit-1.48.1.dist-info}/top_level.txt +0 -0
@@ -36,23 +36,23 @@
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.D3wOJJsg.js",
39
+ "file": "static/js/index.pnHtHv_c.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
- "_Toolbar.D6yqQ65-.js",
46
- "_withFullScreenWrapper.DWXejOhQ.js",
47
- "_mergeWith.DvOME7eH.js",
45
+ "_withFullScreenWrapper.C-gXt0Rl.js",
46
+ "_Toolbar.Dt4jIKlY.js",
47
+ "_mergeWith.GRNk8iwv.js",
48
48
  "_threshold.DjX0wlsa.js",
49
49
  "_value.CgPGBV_l.js",
50
50
  "_timer.CAwTRJ_g.js",
51
- "_FormClearHelper.Cdw5Y7_m.js"
51
+ "_FormClearHelper.DF4gFAOO.js"
52
52
  ]
53
53
  },
54
54
  "../lib/src/components/elements/Audio/index.ts": {
55
- "file": "static/js/index.Dvrstlh8.js",
55
+ "file": "static/js/index.BXDq9dj4.js",
56
56
  "name": "index",
57
57
  "src": "../lib/src/components/elements/Audio/index.ts",
58
58
  "isDynamicEntry": true,
@@ -61,13 +61,13 @@
61
61
  ]
62
62
  },
63
63
  "../lib/src/components/elements/Balloons/index.ts": {
64
- "file": "static/js/index.CMuSJPv-.js",
64
+ "file": "static/js/index.WSNLkF94.js",
65
65
  "name": "index",
66
66
  "src": "../lib/src/components/elements/Balloons/index.ts",
67
67
  "isDynamicEntry": true,
68
68
  "imports": [
69
69
  "index.html",
70
- "_RenderInPortalIfExists.D6a0mMll.js"
70
+ "_Particles.CCFySwdL.js"
71
71
  ],
72
72
  "assets": [
73
73
  "static/media/balloon-0.Czj7AKwE.png",
@@ -79,7 +79,7 @@
79
79
  ]
80
80
  },
81
81
  "../lib/src/components/elements/BokehChart/index.ts": {
82
- "file": "static/js/index.xfcNJBLM.js",
82
+ "file": "static/js/index.Cqa4gqqN.js",
83
83
  "name": "index",
84
84
  "src": "../lib/src/components/elements/BokehChart/index.ts",
85
85
  "isDynamicEntry": true,
@@ -88,19 +88,19 @@
88
88
  ]
89
89
  },
90
90
  "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
91
- "file": "static/js/index.MbqsiUV4.js",
91
+ "file": "static/js/index.CFSFYiPA.js",
92
92
  "name": "index",
93
93
  "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
94
94
  "isDynamicEntry": true,
95
95
  "imports": [
96
96
  "index.html",
97
- "_toConsumableArray.CbNz0Ciu.js",
98
- "_possibleConstructorReturn.C5GiK_Ob.js",
99
- "_Toolbar.D6yqQ65-.js",
100
- "_withFullScreenWrapper.DWXejOhQ.js",
101
- "_useBasicWidgetState.Bx3VaRHk.js",
97
+ "_toConsumableArray.BJvaP8gb.js",
98
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
99
+ "_withFullScreenWrapper.C-gXt0Rl.js",
100
+ "_Toolbar.Dt4jIKlY.js",
101
+ "_useBasicWidgetState.DB3vMS9V.js",
102
102
  "_threshold.DjX0wlsa.js",
103
- "_FormClearHelper.Cdw5Y7_m.js",
103
+ "_FormClearHelper.DF4gFAOO.js",
104
104
  "_value.CgPGBV_l.js"
105
105
  ],
106
106
  "css": [
@@ -108,7 +108,7 @@
108
108
  ]
109
109
  },
110
110
  "../lib/src/components/elements/GraphVizChart/index.ts": {
111
- "file": "static/js/index.DatDwFl3.js",
111
+ "file": "static/js/index.DEND45D1.js",
112
112
  "name": "index",
113
113
  "src": "../lib/src/components/elements/GraphVizChart/index.ts",
114
114
  "isDynamicEntry": true,
@@ -116,12 +116,12 @@
116
116
  "index.html",
117
117
  "_timer.CAwTRJ_g.js",
118
118
  "_value.CgPGBV_l.js",
119
- "_Toolbar.D6yqQ65-.js",
120
- "_withFullScreenWrapper.DWXejOhQ.js"
119
+ "_withFullScreenWrapper.C-gXt0Rl.js",
120
+ "_Toolbar.Dt4jIKlY.js"
121
121
  ]
122
122
  },
123
123
  "../lib/src/components/elements/Html/index.ts": {
124
- "file": "static/js/index.CTT2YqEU.js",
124
+ "file": "static/js/index.D1jHqUJq.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.mihWZKb1.js",
133
+ "file": "static/js/index.BdGvnhlM.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.DOdWa88b.js",
142
+ "file": "static/js/index.8GJD0eeD.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.DWXejOhQ.js",
149
- "_Toolbar.D6yqQ65-.js"
148
+ "_withFullScreenWrapper.C-gXt0Rl.js",
149
+ "_Toolbar.Dt4jIKlY.js"
150
150
  ]
151
151
  },
152
152
  "../lib/src/components/elements/LinkButton/index.ts": {
153
- "file": "static/js/index.B_1CXynz.js",
153
+ "file": "static/js/index.Ay41Wnu9.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.m1njXuKl.js",
162
+ "file": "static/js/index.Dtf1Ac0x.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.COPFcr_K.js",
171
+ "file": "static/js/index.DfoxW1gP.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
- "_FormClearHelper.Cdw5Y7_m.js",
178
- "_withFullScreenWrapper.DWXejOhQ.js"
177
+ "_withFullScreenWrapper.C-gXt0Rl.js",
178
+ "_FormClearHelper.DF4gFAOO.js"
179
179
  ]
180
180
  },
181
181
  "../lib/src/components/elements/Progress/index.ts": {
182
- "file": "static/js/index.B9jJp9aE.js",
182
+ "file": "static/js/index.tPUXqsfW.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.EhJ_lCOf.js"
188
+ "_ProgressBar.COK9j1l0.js"
189
189
  ]
190
190
  },
191
191
  "../lib/src/components/elements/Snow/index.ts": {
192
- "file": "static/js/index._WAuWRkp.js",
192
+ "file": "static/js/index.D5gweoL5.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
- "_RenderInPortalIfExists.D6a0mMll.js"
198
+ "_Particles.CCFySwdL.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.CG0C49ex.js",
207
+ "file": "static/js/index.CCdtFMFG.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.DeWYPvQR.js",
216
+ "file": "static/js/index.BLiKiJ7_.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.CWbiNJQl.js",
225
+ "file": "static/js/index.8QEYHMQD.js",
226
226
  "name": "index",
227
227
  "src": "../lib/src/components/elements/Video/index.ts",
228
228
  "isDynamicEntry": true,
@@ -231,21 +231,21 @@
231
231
  ]
232
232
  },
233
233
  "../lib/src/components/widgets/AudioInput/index.ts": {
234
- "file": "static/js/index.CWxefYP6.js",
234
+ "file": "static/js/index.D1EayrNh.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
- "_FormClearHelper.Cdw5Y7_m.js",
241
- "_Toolbar.D6yqQ65-.js",
242
- "_Hooks.C_qx1sSw.js",
243
- "_createDownloadLinkElement.DZMwyjvU.js",
244
- "_FileDownload.esm.Dy1V9a2E.js"
240
+ "_Toolbar.Dt4jIKlY.js",
241
+ "_FormClearHelper.DF4gFAOO.js",
242
+ "_createDownloadLinkElement.ZaXNnPK4.js",
243
+ "_Hooks.DEoLCfOE.js",
244
+ "_FileDownload.esm.Bz9nxNC5.js"
245
245
  ]
246
246
  },
247
247
  "../lib/src/components/widgets/Button/index.ts": {
248
- "file": "static/js/index.CU3TLDlu.js",
248
+ "file": "static/js/index.BT78cJmU.js",
249
249
  "name": "index",
250
250
  "src": "../lib/src/components/widgets/Button/index.ts",
251
251
  "isDynamicEntry": true,
@@ -254,256 +254,256 @@
254
254
  ]
255
255
  },
256
256
  "../lib/src/components/widgets/ButtonGroup/index.ts": {
257
- "file": "static/js/index.C4tw7-Cl.js",
257
+ "file": "static/js/index.CgZDfhN4.js",
258
258
  "name": "index",
259
259
  "src": "../lib/src/components/widgets/ButtonGroup/index.ts",
260
260
  "isDynamicEntry": true,
261
261
  "imports": [
262
262
  "index.html",
263
- "_useBasicWidgetState.Bx3VaRHk.js",
264
- "_FormClearHelper.Cdw5Y7_m.js"
263
+ "_useBasicWidgetState.DB3vMS9V.js",
264
+ "_FormClearHelper.DF4gFAOO.js"
265
265
  ]
266
266
  },
267
267
  "../lib/src/components/widgets/CameraInput/index.ts": {
268
- "file": "static/js/index.DvznfdF_.js",
268
+ "file": "static/js/index.k9LYqfSL.js",
269
269
  "name": "index",
270
270
  "src": "../lib/src/components/widgets/CameraInput/index.ts",
271
271
  "isDynamicEntry": true,
272
272
  "imports": [
273
273
  "index.html",
274
- "_FormClearHelper.Cdw5Y7_m.js",
275
274
  "_UploadFileInfo.C-jY39rj.js",
276
- "_ProgressBar.EhJ_lCOf.js"
275
+ "_FormClearHelper.DF4gFAOO.js",
276
+ "_ProgressBar.COK9j1l0.js"
277
277
  ]
278
278
  },
279
279
  "../lib/src/components/widgets/ChatInput/index.ts": {
280
- "file": "static/js/index.DXtnaPua.js",
280
+ "file": "static/js/index.DxrLhpeO.js",
281
281
  "name": "index",
282
282
  "src": "../lib/src/components/widgets/ChatInput/index.ts",
283
283
  "isDynamicEntry": true,
284
284
  "imports": [
285
285
  "index.html",
286
- "_FileHelper.D0K06YBq.js",
287
- "_InputInstructions.D3IDU-eY.js",
286
+ "_FileHelper.BrQvUXVD.js",
287
+ "_InputInstructions.D8zoMog9.js",
288
+ "_useTextInputAutoExpand.CBkGkaRt.js",
288
289
  "_inputUtils.CptNuJwn.js",
289
- "_useTextInputAutoExpand.BuE9l5TG.js",
290
- "_ErrorOutline.esm.BEZPMjuG.js",
290
+ "_ErrorOutline.esm.DjObtx4K.js",
291
291
  "_UploadFileInfo.C-jY39rj.js",
292
- "_base-input.DMlw5p7n.js"
292
+ "_base-input.BmvSaPd2.js"
293
293
  ]
294
294
  },
295
295
  "../lib/src/components/widgets/Checkbox/index.ts": {
296
- "file": "static/js/index.U1vvXeGn.js",
296
+ "file": "static/js/index.CzX2xpyc.js",
297
297
  "name": "index",
298
298
  "src": "../lib/src/components/widgets/Checkbox/index.ts",
299
299
  "isDynamicEntry": true,
300
300
  "imports": [
301
301
  "index.html",
302
- "_useBasicWidgetState.Bx3VaRHk.js",
303
- "_checkbox.C7QR6llE.js",
304
- "_FormClearHelper.Cdw5Y7_m.js"
302
+ "_useBasicWidgetState.DB3vMS9V.js",
303
+ "_checkbox.Cgxgc0et.js",
304
+ "_FormClearHelper.DF4gFAOO.js"
305
305
  ]
306
306
  },
307
307
  "../lib/src/components/widgets/ColorPicker/index.ts": {
308
- "file": "static/js/index.BSFzxMXi.js",
308
+ "file": "static/js/index.J7o-_HIh.js",
309
309
  "name": "index",
310
310
  "src": "../lib/src/components/widgets/ColorPicker/index.ts",
311
311
  "isDynamicEntry": true,
312
312
  "imports": [
313
313
  "index.html",
314
- "_useBasicWidgetState.Bx3VaRHk.js",
315
- "_FormClearHelper.Cdw5Y7_m.js"
314
+ "_useBasicWidgetState.DB3vMS9V.js",
315
+ "_FormClearHelper.DF4gFAOO.js"
316
316
  ]
317
317
  },
318
318
  "../lib/src/components/widgets/DateInput/index.ts": {
319
- "file": "static/js/index.CWZeK3mV.js",
319
+ "file": "static/js/index.tsvTLdio.js",
320
320
  "name": "index",
321
321
  "src": "../lib/src/components/widgets/DateInput/index.ts",
322
322
  "isDynamicEntry": true,
323
323
  "imports": [
324
324
  "index.html",
325
- "_useBasicWidgetState.Bx3VaRHk.js",
326
- "_ErrorOutline.esm.BEZPMjuG.js",
327
- "_timepicker.DOMbfm_a.js",
328
- "_input.D_45B0P-.js",
329
- "_base-input.DMlw5p7n.js",
330
- "_FormClearHelper.Cdw5Y7_m.js",
331
- "_possibleConstructorReturn.C5GiK_Ob.js",
332
- "_createSuper.C5k_2vfB.js"
325
+ "_useBasicWidgetState.DB3vMS9V.js",
326
+ "_ErrorOutline.esm.DjObtx4K.js",
327
+ "_timepicker.QVekV78C.js",
328
+ "_input.DZd6EQlV.js",
329
+ "_base-input.BmvSaPd2.js",
330
+ "_FormClearHelper.DF4gFAOO.js",
331
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
332
+ "_createSuper.siQeagI2.js"
333
333
  ]
334
334
  },
335
335
  "../lib/src/components/widgets/DownloadButton/index.ts": {
336
- "file": "static/js/index.Byi6__iF.js",
336
+ "file": "static/js/index.DByVKZgq.js",
337
337
  "name": "index",
338
338
  "src": "../lib/src/components/widgets/DownloadButton/index.ts",
339
339
  "isDynamicEntry": true,
340
340
  "imports": [
341
341
  "index.html",
342
- "_createDownloadLinkElement.DZMwyjvU.js"
342
+ "_createDownloadLinkElement.ZaXNnPK4.js"
343
343
  ]
344
344
  },
345
345
  "../lib/src/components/widgets/FileUploader/index.ts": {
346
- "file": "static/js/index.Bm1LklYO.js",
346
+ "file": "static/js/index.CeiIiXap.js",
347
347
  "name": "index",
348
348
  "src": "../lib/src/components/widgets/FileUploader/index.ts",
349
349
  "isDynamicEntry": true,
350
350
  "imports": [
351
351
  "index.html",
352
- "_FormClearHelper.Cdw5Y7_m.js",
353
- "_FileHelper.D0K06YBq.js",
354
- "_ProgressBar.EhJ_lCOf.js",
355
- "_Hooks.C_qx1sSw.js",
352
+ "_FormClearHelper.DF4gFAOO.js",
353
+ "_FileHelper.BrQvUXVD.js",
354
+ "_ProgressBar.COK9j1l0.js",
355
+ "_Hooks.DEoLCfOE.js",
356
356
  "_UploadFileInfo.C-jY39rj.js"
357
357
  ]
358
358
  },
359
359
  "../lib/src/components/widgets/Multiselect/index.ts": {
360
- "file": "static/js/index.BBVtld-D.js",
360
+ "file": "static/js/index.BfasrT0d.js",
361
361
  "name": "index",
362
362
  "src": "../lib/src/components/widgets/Multiselect/index.ts",
363
363
  "isDynamicEntry": true,
364
364
  "imports": [
365
365
  "index.html",
366
- "_useBasicWidgetState.Bx3VaRHk.js",
367
- "_FormClearHelper.Cdw5Y7_m.js"
366
+ "_useBasicWidgetState.DB3vMS9V.js",
367
+ "_FormClearHelper.DF4gFAOO.js"
368
368
  ]
369
369
  },
370
370
  "../lib/src/components/widgets/NumberInput/index.ts": {
371
- "file": "static/js/index.BKHPnvYd.js",
371
+ "file": "static/js/index.ROjU6K0k.js",
372
372
  "name": "index",
373
373
  "src": "../lib/src/components/widgets/NumberInput/index.ts",
374
374
  "isDynamicEntry": true,
375
375
  "imports": [
376
376
  "index.html",
377
- "_uniqueId.-ygIU7IL.js",
378
- "_FormClearHelper.Cdw5Y7_m.js",
379
- "_InputInstructions.D3IDU-eY.js",
377
+ "_uniqueId.D_5M8Dgf.js",
378
+ "_InputInstructions.D8zoMog9.js",
379
+ "_FormClearHelper.DF4gFAOO.js",
380
380
  "_sprintf.D7DtBTRn.js",
381
- "_input.D_45B0P-.js",
382
- "_base-input.DMlw5p7n.js"
381
+ "_input.DZd6EQlV.js",
382
+ "_base-input.BmvSaPd2.js"
383
383
  ]
384
384
  },
385
385
  "../lib/src/components/widgets/Radio/index.ts": {
386
- "file": "static/js/index.B2L574n6.js",
386
+ "file": "static/js/index.CbdWnLqS.js",
387
387
  "name": "index",
388
388
  "src": "../lib/src/components/widgets/Radio/index.ts",
389
389
  "isDynamicEntry": true,
390
390
  "imports": [
391
391
  "index.html",
392
- "_useBasicWidgetState.Bx3VaRHk.js",
393
- "_FormClearHelper.Cdw5Y7_m.js"
392
+ "_useBasicWidgetState.DB3vMS9V.js",
393
+ "_FormClearHelper.DF4gFAOO.js"
394
394
  ]
395
395
  },
396
396
  "../lib/src/components/widgets/Selectbox/index.ts": {
397
- "file": "static/js/index.Do4vzIvK.js",
397
+ "file": "static/js/index.L_N2iylt.js",
398
398
  "name": "index",
399
399
  "src": "../lib/src/components/widgets/Selectbox/index.ts",
400
400
  "isDynamicEntry": true,
401
401
  "imports": [
402
402
  "index.html",
403
- "_useBasicWidgetState.Bx3VaRHk.js",
404
- "_FormClearHelper.Cdw5Y7_m.js"
403
+ "_useBasicWidgetState.DB3vMS9V.js",
404
+ "_FormClearHelper.DF4gFAOO.js"
405
405
  ]
406
406
  },
407
407
  "../lib/src/components/widgets/Slider/index.ts": {
408
- "file": "static/js/index.B3n-pURl.js",
408
+ "file": "static/js/index.D1ErX5go.js",
409
409
  "name": "index",
410
410
  "src": "../lib/src/components/widgets/Slider/index.ts",
411
411
  "isDynamicEntry": true,
412
412
  "imports": [
413
413
  "index.html",
414
414
  "_sprintf.D7DtBTRn.js",
415
- "_useBasicWidgetState.Bx3VaRHk.js",
416
- "_FormClearHelper.Cdw5Y7_m.js"
415
+ "_useBasicWidgetState.DB3vMS9V.js",
416
+ "_FormClearHelper.DF4gFAOO.js"
417
417
  ]
418
418
  },
419
419
  "../lib/src/components/widgets/TextArea/index.ts": {
420
- "file": "static/js/index.CVKKDwaf.js",
420
+ "file": "static/js/index.X5W3gJLn.js",
421
421
  "name": "index",
422
422
  "src": "../lib/src/components/widgets/TextArea/index.ts",
423
423
  "isDynamicEntry": true,
424
424
  "imports": [
425
425
  "index.html",
426
- "_uniqueId.-ygIU7IL.js",
427
- "_useOnInputChange.CDZx-L6q.js",
428
- "_InputInstructions.D3IDU-eY.js",
429
- "_useBasicWidgetState.Bx3VaRHk.js",
430
- "_useTextInputAutoExpand.BuE9l5TG.js",
426
+ "_uniqueId.D_5M8Dgf.js",
427
+ "_InputInstructions.D8zoMog9.js",
428
+ "_useBasicWidgetState.DB3vMS9V.js",
429
+ "_useUpdateUiValue.C7ZKpLQK.js",
430
+ "_useTextInputAutoExpand.CBkGkaRt.js",
431
+ "_FormClearHelper.DF4gFAOO.js",
431
432
  "_inputUtils.CptNuJwn.js",
432
- "_FormClearHelper.Cdw5Y7_m.js",
433
- "_base-input.DMlw5p7n.js"
433
+ "_base-input.BmvSaPd2.js"
434
434
  ]
435
435
  },
436
436
  "../lib/src/components/widgets/TextInput/index.ts": {
437
- "file": "static/js/index.bwA9_eWC.js",
437
+ "file": "static/js/index.CFRGZDz1.js",
438
438
  "name": "index",
439
439
  "src": "../lib/src/components/widgets/TextInput/index.ts",
440
440
  "isDynamicEntry": true,
441
441
  "imports": [
442
442
  "index.html",
443
- "_uniqueId.-ygIU7IL.js",
444
- "_useOnInputChange.CDZx-L6q.js",
445
- "_useBasicWidgetState.Bx3VaRHk.js",
446
- "_InputInstructions.D3IDU-eY.js",
447
- "_input.D_45B0P-.js",
443
+ "_uniqueId.D_5M8Dgf.js",
444
+ "_InputInstructions.D8zoMog9.js",
445
+ "_useBasicWidgetState.DB3vMS9V.js",
446
+ "_useUpdateUiValue.C7ZKpLQK.js",
447
+ "_input.DZd6EQlV.js",
448
+ "_FormClearHelper.DF4gFAOO.js",
448
449
  "_inputUtils.CptNuJwn.js",
449
- "_FormClearHelper.Cdw5Y7_m.js",
450
- "_base-input.DMlw5p7n.js"
450
+ "_base-input.BmvSaPd2.js"
451
451
  ]
452
452
  },
453
453
  "../lib/src/components/widgets/TimeInput/index.ts": {
454
- "file": "static/js/index.BscWuWHL.js",
454
+ "file": "static/js/index.PZUX2kRz.js",
455
455
  "name": "index",
456
456
  "src": "../lib/src/components/widgets/TimeInput/index.ts",
457
457
  "isDynamicEntry": true,
458
458
  "imports": [
459
459
  "index.html",
460
- "_useBasicWidgetState.Bx3VaRHk.js",
461
- "_timepicker.DOMbfm_a.js",
462
- "_FormClearHelper.Cdw5Y7_m.js",
463
- "_possibleConstructorReturn.C5GiK_Ob.js",
464
- "_createSuper.C5k_2vfB.js"
460
+ "_useBasicWidgetState.DB3vMS9V.js",
461
+ "_timepicker.QVekV78C.js",
462
+ "_FormClearHelper.DF4gFAOO.js",
463
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
464
+ "_createSuper.siQeagI2.js"
465
465
  ]
466
466
  },
467
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.CoquyZNK.js",
468
+ "file": "static/js/data-grid-overlay-editor.Ct51iCb_.js",
469
469
  "name": "data-grid-overlay-editor",
470
470
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
471
471
  "isDynamicEntry": true,
472
472
  "imports": [
473
473
  "index.html",
474
- "_index.BzJeMpQ-.js",
475
- "_FormClearHelper.Cdw5Y7_m.js",
476
- "_withFullScreenWrapper.DWXejOhQ.js",
477
- "_Toolbar.D6yqQ65-.js",
478
- "_checkbox.C7QR6llE.js",
479
- "_mergeWith.DvOME7eH.js",
474
+ "_index.LU8juINp.js",
475
+ "_withFullScreenWrapper.C-gXt0Rl.js",
476
+ "_Toolbar.Dt4jIKlY.js",
477
+ "_FormClearHelper.DF4gFAOO.js",
478
+ "_mergeWith.GRNk8iwv.js",
480
479
  "_sprintf.D7DtBTRn.js",
481
- "_createDownloadLinkElement.DZMwyjvU.js",
482
- "_toConsumableArray.CbNz0Ciu.js",
483
- "_possibleConstructorReturn.C5GiK_Ob.js",
484
- "_createSuper.C5k_2vfB.js",
485
- "_FileDownload.esm.Dy1V9a2E.js"
480
+ "_checkbox.Cgxgc0et.js",
481
+ "_createDownloadLinkElement.ZaXNnPK4.js",
482
+ "_toConsumableArray.BJvaP8gb.js",
483
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
484
+ "_createSuper.siQeagI2.js",
485
+ "_FileDownload.esm.Bz9nxNC5.js"
486
486
  ]
487
487
  },
488
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.BRNxOzEZ.js",
489
+ "file": "static/js/number-overlay-editor.DXS2qb1U.js",
490
490
  "name": "number-overlay-editor",
491
491
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
492
492
  "isDynamicEntry": true,
493
493
  "imports": [
494
494
  "index.html",
495
- "_index.BzJeMpQ-.js",
496
- "_FormClearHelper.Cdw5Y7_m.js",
497
- "_withFullScreenWrapper.DWXejOhQ.js",
498
- "_Toolbar.D6yqQ65-.js",
499
- "_checkbox.C7QR6llE.js",
500
- "_mergeWith.DvOME7eH.js",
495
+ "_index.LU8juINp.js",
496
+ "_withFullScreenWrapper.C-gXt0Rl.js",
497
+ "_Toolbar.Dt4jIKlY.js",
498
+ "_FormClearHelper.DF4gFAOO.js",
499
+ "_mergeWith.GRNk8iwv.js",
501
500
  "_sprintf.D7DtBTRn.js",
502
- "_createDownloadLinkElement.DZMwyjvU.js",
503
- "_toConsumableArray.CbNz0Ciu.js",
504
- "_possibleConstructorReturn.C5GiK_Ob.js",
505
- "_createSuper.C5k_2vfB.js",
506
- "_FileDownload.esm.Dy1V9a2E.js"
501
+ "_checkbox.Cgxgc0et.js",
502
+ "_createDownloadLinkElement.ZaXNnPK4.js",
503
+ "_toConsumableArray.BJvaP8gb.js",
504
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
505
+ "_createSuper.siQeagI2.js",
506
+ "_FileDownload.esm.Bz9nxNC5.js"
507
507
  ]
508
508
  },
509
509
  "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf": {
@@ -743,94 +743,94 @@
743
743
  "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
744
744
  },
745
745
  "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
746
- "file": "static/js/downloader.Nj6v3ioB.js",
746
+ "file": "static/js/downloader.M6jQeNDf.js",
747
747
  "name": "downloader",
748
748
  "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
749
749
  "isDynamicEntry": true,
750
750
  "imports": [
751
- "_es6.CVz13CSz.js",
751
+ "_es6.CMaUdEZ5.js",
752
752
  "index.html"
753
753
  ]
754
754
  },
755
755
  "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
756
- "file": "static/js/memory.BmhrRyO2.js",
756
+ "file": "static/js/memory.ptkfuI71.js",
757
757
  "name": "memory",
758
758
  "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
759
759
  "isDynamicEntry": true,
760
760
  "imports": [
761
- "_es6.CVz13CSz.js",
761
+ "_es6.CMaUdEZ5.js",
762
762
  "index.html"
763
763
  ]
764
764
  },
765
765
  "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
766
- "file": "static/js/sandbox.B-Q9S7vW.js",
766
+ "file": "static/js/sandbox.DsH8LuID.js",
767
767
  "name": "sandbox",
768
768
  "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
769
769
  "isDynamicEntry": true,
770
770
  "imports": [
771
- "_es6.CVz13CSz.js",
771
+ "_es6.CMaUdEZ5.js",
772
772
  "index.html"
773
773
  ]
774
774
  },
775
- "_ErrorOutline.esm.BEZPMjuG.js": {
776
- "file": "static/js/ErrorOutline.esm.BEZPMjuG.js",
775
+ "_ErrorOutline.esm.DjObtx4K.js": {
776
+ "file": "static/js/ErrorOutline.esm.DjObtx4K.js",
777
777
  "name": "ErrorOutline.esm",
778
778
  "imports": [
779
779
  "index.html"
780
780
  ]
781
781
  },
782
- "_FileDownload.esm.Dy1V9a2E.js": {
783
- "file": "static/js/FileDownload.esm.Dy1V9a2E.js",
782
+ "_FileDownload.esm.Bz9nxNC5.js": {
783
+ "file": "static/js/FileDownload.esm.Bz9nxNC5.js",
784
784
  "name": "FileDownload.esm",
785
785
  "imports": [
786
786
  "index.html"
787
787
  ]
788
788
  },
789
- "_FileHelper.D0K06YBq.js": {
790
- "file": "static/js/FileHelper.D0K06YBq.js",
789
+ "_FileHelper.BrQvUXVD.js": {
790
+ "file": "static/js/FileHelper.BrQvUXVD.js",
791
791
  "name": "FileHelper",
792
792
  "imports": [
793
793
  "index.html",
794
794
  "_UploadFileInfo.C-jY39rj.js"
795
795
  ]
796
796
  },
797
- "_FormClearHelper.Cdw5Y7_m.js": {
798
- "file": "static/js/FormClearHelper.Cdw5Y7_m.js",
797
+ "_FormClearHelper.DF4gFAOO.js": {
798
+ "file": "static/js/FormClearHelper.DF4gFAOO.js",
799
799
  "name": "FormClearHelper",
800
800
  "imports": [
801
801
  "index.html"
802
802
  ]
803
803
  },
804
- "_Hooks.C_qx1sSw.js": {
805
- "file": "static/js/Hooks.C_qx1sSw.js",
804
+ "_Hooks.DEoLCfOE.js": {
805
+ "file": "static/js/Hooks.DEoLCfOE.js",
806
806
  "name": "Hooks",
807
807
  "imports": [
808
808
  "index.html"
809
809
  ]
810
810
  },
811
- "_InputInstructions.D3IDU-eY.js": {
812
- "file": "static/js/InputInstructions.D3IDU-eY.js",
811
+ "_InputInstructions.D8zoMog9.js": {
812
+ "file": "static/js/InputInstructions.D8zoMog9.js",
813
813
  "name": "InputInstructions",
814
814
  "imports": [
815
815
  "index.html"
816
816
  ]
817
817
  },
818
- "_ProgressBar.EhJ_lCOf.js": {
819
- "file": "static/js/ProgressBar.EhJ_lCOf.js",
820
- "name": "ProgressBar",
818
+ "_Particles.CCFySwdL.js": {
819
+ "file": "static/js/Particles.CCFySwdL.js",
820
+ "name": "Particles",
821
821
  "imports": [
822
822
  "index.html"
823
823
  ]
824
824
  },
825
- "_RenderInPortalIfExists.D6a0mMll.js": {
826
- "file": "static/js/RenderInPortalIfExists.D6a0mMll.js",
827
- "name": "RenderInPortalIfExists",
825
+ "_ProgressBar.COK9j1l0.js": {
826
+ "file": "static/js/ProgressBar.COK9j1l0.js",
827
+ "name": "ProgressBar",
828
828
  "imports": [
829
829
  "index.html"
830
830
  ]
831
831
  },
832
- "_Toolbar.D6yqQ65-.js": {
833
- "file": "static/js/Toolbar.D6yqQ65-.js",
832
+ "_Toolbar.Dt4jIKlY.js": {
833
+ "file": "static/js/Toolbar.Dt4jIKlY.js",
834
834
  "name": "Toolbar",
835
835
  "imports": [
836
836
  "index.html"
@@ -840,33 +840,33 @@
840
840
  "file": "static/js/UploadFileInfo.C-jY39rj.js",
841
841
  "name": "UploadFileInfo"
842
842
  },
843
- "_base-input.DMlw5p7n.js": {
844
- "file": "static/js/base-input.DMlw5p7n.js",
843
+ "_base-input.BmvSaPd2.js": {
844
+ "file": "static/js/base-input.BmvSaPd2.js",
845
845
  "name": "base-input",
846
846
  "imports": [
847
847
  "index.html"
848
848
  ]
849
849
  },
850
- "_checkbox.C7QR6llE.js": {
851
- "file": "static/js/checkbox.C7QR6llE.js",
850
+ "_checkbox.Cgxgc0et.js": {
851
+ "file": "static/js/checkbox.Cgxgc0et.js",
852
852
  "name": "checkbox",
853
853
  "imports": [
854
854
  "index.html"
855
855
  ]
856
856
  },
857
- "_createDownloadLinkElement.DZMwyjvU.js": {
858
- "file": "static/js/createDownloadLinkElement.DZMwyjvU.js",
857
+ "_createDownloadLinkElement.ZaXNnPK4.js": {
858
+ "file": "static/js/createDownloadLinkElement.ZaXNnPK4.js",
859
859
  "name": "createDownloadLinkElement"
860
860
  },
861
- "_createSuper.C5k_2vfB.js": {
862
- "file": "static/js/createSuper.C5k_2vfB.js",
861
+ "_createSuper.siQeagI2.js": {
862
+ "file": "static/js/createSuper.siQeagI2.js",
863
863
  "name": "createSuper",
864
864
  "imports": [
865
- "_possibleConstructorReturn.C5GiK_Ob.js"
865
+ "_possibleConstructorReturn.Bd4ImlQ9.js"
866
866
  ]
867
867
  },
868
- "_es6.CVz13CSz.js": {
869
- "file": "static/js/es6.CVz13CSz.js",
868
+ "_es6.CMaUdEZ5.js": {
869
+ "file": "static/js/es6.CMaUdEZ5.js",
870
870
  "name": "es6",
871
871
  "isDynamicEntry": true,
872
872
  "imports": [
@@ -881,66 +881,66 @@
881
881
  "../node_modules/native-file-system-adapter/src/adapters/memory.js"
882
882
  ]
883
883
  },
884
- "_iframeResizer.contentWindow.gZ8zjT0K.js": {
885
- "file": "static/js/iframeResizer.contentWindow.gZ8zjT0K.js",
884
+ "_iframeResizer.contentWindow.C33BryyP.js": {
885
+ "file": "static/js/iframeResizer.contentWindow.C33BryyP.js",
886
886
  "name": "iframeResizer.contentWindow",
887
887
  "isDynamicEntry": true,
888
888
  "imports": [
889
889
  "index.html"
890
890
  ]
891
891
  },
892
- "_index.BzJeMpQ-.js": {
893
- "file": "static/js/index.BzJeMpQ-.js",
892
+ "_index.CQt5TjGB.css": {
893
+ "file": "static/css/index.CQt5TjGB.css",
894
+ "src": "_index.CQt5TjGB.css"
895
+ },
896
+ "_index.LU8juINp.js": {
897
+ "file": "static/js/index.LU8juINp.js",
894
898
  "name": "index",
895
899
  "isDynamicEntry": true,
896
900
  "imports": [
897
901
  "index.html",
898
- "_FormClearHelper.Cdw5Y7_m.js",
899
- "_withFullScreenWrapper.DWXejOhQ.js",
900
- "_Toolbar.D6yqQ65-.js",
901
- "_checkbox.C7QR6llE.js",
902
- "_mergeWith.DvOME7eH.js",
902
+ "_withFullScreenWrapper.C-gXt0Rl.js",
903
+ "_Toolbar.Dt4jIKlY.js",
904
+ "_FormClearHelper.DF4gFAOO.js",
905
+ "_mergeWith.GRNk8iwv.js",
903
906
  "_sprintf.D7DtBTRn.js",
904
- "_createDownloadLinkElement.DZMwyjvU.js",
905
- "_toConsumableArray.CbNz0Ciu.js",
906
- "_possibleConstructorReturn.C5GiK_Ob.js",
907
- "_createSuper.C5k_2vfB.js",
908
- "_FileDownload.esm.Dy1V9a2E.js"
907
+ "_checkbox.Cgxgc0et.js",
908
+ "_createDownloadLinkElement.ZaXNnPK4.js",
909
+ "_toConsumableArray.BJvaP8gb.js",
910
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
911
+ "_createSuper.siQeagI2.js",
912
+ "_FileDownload.esm.Bz9nxNC5.js"
909
913
  ],
910
914
  "dynamicImports": [
911
915
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
912
916
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
913
- "_es6.CVz13CSz.js"
917
+ "_es6.CMaUdEZ5.js"
914
918
  ],
915
919
  "css": [
916
- "static/css/index.CsLB_Bnz.css"
920
+ "static/css/index.CQt5TjGB.css"
917
921
  ]
918
922
  },
919
- "_index.CsLB_Bnz.css": {
920
- "file": "static/css/index.CsLB_Bnz.css",
921
- "src": "_index.CsLB_Bnz.css"
922
- },
923
- "_input.D_45B0P-.js": {
924
- "file": "static/js/input.D_45B0P-.js",
923
+ "_input.DZd6EQlV.js": {
924
+ "file": "static/js/input.DZd6EQlV.js",
925
925
  "name": "input",
926
926
  "imports": [
927
927
  "index.html",
928
- "_base-input.DMlw5p7n.js"
928
+ "_base-input.BmvSaPd2.js"
929
929
  ]
930
930
  },
931
931
  "_inputUtils.CptNuJwn.js": {
932
932
  "file": "static/js/inputUtils.CptNuJwn.js",
933
933
  "name": "inputUtils"
934
934
  },
935
- "_mergeWith.DvOME7eH.js": {
936
- "file": "static/js/mergeWith.DvOME7eH.js",
935
+ "_mergeWith.GRNk8iwv.js": {
936
+ "file": "static/js/mergeWith.GRNk8iwv.js",
937
937
  "name": "mergeWith",
938
938
  "imports": [
939
939
  "index.html"
940
940
  ]
941
941
  },
942
- "_possibleConstructorReturn.C5GiK_Ob.js": {
943
- "file": "static/js/possibleConstructorReturn.C5GiK_Ob.js",
942
+ "_possibleConstructorReturn.Bd4ImlQ9.js": {
943
+ "file": "static/js/possibleConstructorReturn.Bd4ImlQ9.js",
944
944
  "name": "possibleConstructorReturn",
945
945
  "imports": [
946
946
  "index.html"
@@ -957,13 +957,13 @@
957
957
  "_value.CgPGBV_l.js"
958
958
  ]
959
959
  },
960
- "_timepicker.DOMbfm_a.js": {
961
- "file": "static/js/timepicker.DOMbfm_a.js",
960
+ "_timepicker.QVekV78C.js": {
961
+ "file": "static/js/timepicker.QVekV78C.js",
962
962
  "name": "timepicker",
963
963
  "imports": [
964
964
  "index.html",
965
- "_possibleConstructorReturn.C5GiK_Ob.js",
966
- "_createSuper.C5k_2vfB.js"
965
+ "_possibleConstructorReturn.Bd4ImlQ9.js",
966
+ "_createSuper.siQeagI2.js"
967
967
  ]
968
968
  },
969
969
  "_timer.CAwTRJ_g.js": {
@@ -973,58 +973,58 @@
973
973
  "_value.CgPGBV_l.js"
974
974
  ]
975
975
  },
976
- "_toConsumableArray.CbNz0Ciu.js": {
977
- "file": "static/js/toConsumableArray.CbNz0Ciu.js",
976
+ "_toConsumableArray.BJvaP8gb.js": {
977
+ "file": "static/js/toConsumableArray.BJvaP8gb.js",
978
978
  "name": "toConsumableArray",
979
979
  "imports": [
980
980
  "index.html",
981
- "_possibleConstructorReturn.C5GiK_Ob.js"
981
+ "_possibleConstructorReturn.Bd4ImlQ9.js"
982
982
  ]
983
983
  },
984
- "_uniqueId.-ygIU7IL.js": {
985
- "file": "static/js/uniqueId.-ygIU7IL.js",
984
+ "_uniqueId.D_5M8Dgf.js": {
985
+ "file": "static/js/uniqueId.D_5M8Dgf.js",
986
986
  "name": "uniqueId",
987
987
  "imports": [
988
988
  "index.html"
989
989
  ]
990
990
  },
991
- "_useBasicWidgetState.Bx3VaRHk.js": {
992
- "file": "static/js/useBasicWidgetState.Bx3VaRHk.js",
991
+ "_useBasicWidgetState.DB3vMS9V.js": {
992
+ "file": "static/js/useBasicWidgetState.DB3vMS9V.js",
993
993
  "name": "useBasicWidgetState",
994
994
  "imports": [
995
995
  "index.html",
996
- "_FormClearHelper.Cdw5Y7_m.js"
996
+ "_FormClearHelper.DF4gFAOO.js"
997
997
  ]
998
998
  },
999
- "_useOnInputChange.CDZx-L6q.js": {
1000
- "file": "static/js/useOnInputChange.CDZx-L6q.js",
1001
- "name": "useOnInputChange",
999
+ "_useTextInputAutoExpand.CBkGkaRt.js": {
1000
+ "file": "static/js/useTextInputAutoExpand.CBkGkaRt.js",
1001
+ "name": "useTextInputAutoExpand",
1002
1002
  "imports": [
1003
1003
  "index.html",
1004
- "_inputUtils.CptNuJwn.js"
1004
+ "_base-input.BmvSaPd2.js"
1005
1005
  ]
1006
1006
  },
1007
- "_useTextInputAutoExpand.BuE9l5TG.js": {
1008
- "file": "static/js/useTextInputAutoExpand.BuE9l5TG.js",
1009
- "name": "useTextInputAutoExpand",
1007
+ "_useUpdateUiValue.C7ZKpLQK.js": {
1008
+ "file": "static/js/useUpdateUiValue.C7ZKpLQK.js",
1009
+ "name": "useUpdateUiValue",
1010
1010
  "imports": [
1011
1011
  "index.html",
1012
- "_base-input.DMlw5p7n.js"
1012
+ "_inputUtils.CptNuJwn.js"
1013
1013
  ]
1014
1014
  },
1015
1015
  "_value.CgPGBV_l.js": {
1016
1016
  "file": "static/js/value.CgPGBV_l.js",
1017
1017
  "name": "value"
1018
1018
  },
1019
- "_withFullScreenWrapper.DWXejOhQ.js": {
1020
- "file": "static/js/withFullScreenWrapper.DWXejOhQ.js",
1019
+ "_withFullScreenWrapper.C-gXt0Rl.js": {
1020
+ "file": "static/js/withFullScreenWrapper.C-gXt0Rl.js",
1021
1021
  "name": "withFullScreenWrapper",
1022
1022
  "imports": [
1023
1023
  "index.html"
1024
1024
  ]
1025
1025
  },
1026
1026
  "index.html": {
1027
- "file": "static/js/index.CbQtRkVt.js",
1027
+ "file": "static/js/index.DKN5MVff.js",
1028
1028
  "name": "index",
1029
1029
  "src": "index.html",
1030
1030
  "isEntry": true,
@@ -1032,7 +1032,7 @@
1032
1032
  "../lib/src/components/elements/Audio/index.ts",
1033
1033
  "../lib/src/components/elements/Balloons/index.ts",
1034
1034
  "../lib/src/components/elements/Snow/index.ts",
1035
- "_index.BzJeMpQ-.js",
1035
+ "_index.LU8juINp.js",
1036
1036
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1037
1037
  "../lib/src/components/elements/Toast/index.ts",
1038
1038
  "../lib/src/components/elements/BokehChart/index.ts",
@@ -1065,7 +1065,7 @@
1065
1065
  "../lib/src/components/widgets/TextInput/index.ts",
1066
1066
  "../lib/src/components/widgets/TimeInput/index.ts",
1067
1067
  "../lib/src/components/widgets/NumberInput/index.ts",
1068
- "_iframeResizer.contentWindow.gZ8zjT0K.js"
1068
+ "_iframeResizer.contentWindow.C33BryyP.js"
1069
1069
  ],
1070
1070
  "css": [
1071
1071
  "static/css/index.CJVRHjQZ.css"