streamlit 1.48.0__py3-none-any.whl → 1.49.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 (208) hide show
  1. streamlit/__init__.py +3 -10
  2. streamlit/commands/logo.py +4 -3
  3. streamlit/commands/navigation.py +1 -1
  4. streamlit/commands/page_config.py +4 -1
  5. streamlit/components/v1/custom_component.py +2 -2
  6. streamlit/config.py +82 -1
  7. streamlit/connections/snowflake_connection.py +3 -1
  8. streamlit/delta_generator.py +3 -0
  9. streamlit/elements/arrow.py +155 -70
  10. streamlit/elements/bokeh_chart.py +13 -3
  11. streamlit/elements/deck_gl_json_chart.py +0 -1
  12. streamlit/elements/dialog_decorator.py +7 -59
  13. streamlit/elements/form.py +10 -1
  14. streamlit/elements/graphviz_chart.py +57 -6
  15. streamlit/elements/heading.py +17 -16
  16. streamlit/elements/iframe.py +13 -22
  17. streamlit/elements/image.py +64 -37
  18. streamlit/elements/layouts.py +2 -2
  19. streamlit/elements/lib/built_in_chart_utils.py +2 -5
  20. streamlit/elements/lib/column_config_utils.py +18 -4
  21. streamlit/elements/lib/column_types.py +75 -30
  22. streamlit/elements/lib/dialog.py +3 -3
  23. streamlit/elements/lib/image_utils.py +19 -11
  24. streamlit/elements/lib/layout_utils.py +15 -2
  25. streamlit/elements/lib/utils.py +20 -41
  26. streamlit/elements/markdown.py +7 -6
  27. streamlit/elements/media.py +6 -13
  28. streamlit/elements/metric.py +78 -1
  29. streamlit/elements/pdf.py +192 -0
  30. streamlit/elements/plotly_chart.py +3 -2
  31. streamlit/elements/pyplot.py +53 -11
  32. streamlit/elements/toast.py +81 -5
  33. streamlit/elements/vega_charts.py +3 -8
  34. streamlit/elements/widgets/audio_input.py +0 -1
  35. streamlit/elements/widgets/button.py +0 -4
  36. streamlit/elements/widgets/button_group.py +5 -4
  37. streamlit/elements/widgets/camera_input.py +0 -1
  38. streamlit/elements/widgets/chat.py +11 -13
  39. streamlit/elements/widgets/checkbox.py +0 -1
  40. streamlit/elements/widgets/color_picker.py +0 -1
  41. streamlit/elements/widgets/data_editor.py +142 -62
  42. streamlit/elements/widgets/file_uploader.py +74 -37
  43. streamlit/elements/widgets/multiselect.py +0 -1
  44. streamlit/elements/widgets/number_input.py +0 -1
  45. streamlit/elements/widgets/radio.py +0 -1
  46. streamlit/elements/widgets/select_slider.py +0 -1
  47. streamlit/elements/widgets/selectbox.py +0 -1
  48. streamlit/elements/widgets/slider.py +0 -1
  49. streamlit/elements/widgets/text_widgets.py +0 -2
  50. streamlit/elements/widgets/time_widgets.py +0 -2
  51. streamlit/errors.py +11 -0
  52. streamlit/material_icon_names.py +1 -1
  53. streamlit/proto/Arrow_pb2.py +14 -8
  54. streamlit/proto/Arrow_pb2.pyi +11 -3
  55. streamlit/proto/Block_pb2.py +16 -16
  56. streamlit/proto/Block_pb2.pyi +2 -0
  57. streamlit/proto/ChatInput_pb2.py +3 -3
  58. streamlit/proto/ChatInput_pb2.pyi +2 -0
  59. streamlit/proto/FileUploader_pb2.py +2 -2
  60. streamlit/proto/FileUploader_pb2.pyi +5 -1
  61. streamlit/proto/GraphVizChart_pb2.py +4 -2
  62. streamlit/proto/GraphVizChart_pb2.pyi +1 -1
  63. streamlit/proto/IFrame_pb2.py +8 -2
  64. streamlit/proto/IFrame_pb2.pyi +3 -0
  65. streamlit/proto/Image_pb2.py +4 -2
  66. streamlit/proto/Image_pb2.pyi +1 -10
  67. streamlit/proto/Metric_pb2.py +8 -6
  68. streamlit/proto/Metric_pb2.pyi +34 -10
  69. streamlit/proto/Toast_pb2.py +2 -2
  70. streamlit/proto/Toast_pb2.pyi +10 -1
  71. streamlit/runtime/caching/__init__.py +14 -2
  72. streamlit/runtime/caching/cache_data_api.py +0 -17
  73. streamlit/runtime/caching/cache_resource_api.py +0 -16
  74. streamlit/runtime/caching/cached_message_replay.py +8 -20
  75. streamlit/runtime/caching/hashing.py +31 -1
  76. streamlit/runtime/credentials.py +4 -4
  77. streamlit/runtime/fragment.py +0 -42
  78. streamlit/runtime/websocket_session_manager.py +1 -1
  79. streamlit/static/index.html +2 -2
  80. streamlit/static/manifest.json +224 -252
  81. streamlit/static/static/css/{index.CJVRHjQZ.css → index.C8X8rNzw.css} +1 -1
  82. streamlit/static/static/css/index.COe1010n.css +1 -0
  83. streamlit/static/static/js/{ErrorOutline.esm.D_4oFNKB.js → ErrorOutline.esm.u9XvzxL8.js} +1 -1
  84. streamlit/static/static/js/{FileDownload.esm.NPgaLlUE.js → FileDownload.esm.CaRyZ-b2.js} +1 -1
  85. streamlit/static/static/js/FileHelper.Dk2SwIi3.js +5 -0
  86. streamlit/static/static/js/FormClearHelper.l_UPPvkg.js +1 -0
  87. streamlit/static/static/js/{Hooks.BGm9sd4U.js → Hooks.BxrVEftw.js} +1 -1
  88. streamlit/static/static/js/InputInstructions.C254RU9X.js +1 -0
  89. streamlit/static/static/js/Particles.DkY6FDnc.js +1 -0
  90. streamlit/static/static/js/ProgressBar.BPtSM82n.js +2 -0
  91. streamlit/static/static/js/Toolbar.BO_3WBaS.js +1 -0
  92. streamlit/static/static/js/{base-input.DeBqm5mN.js → base-input.egUI4LjJ.js} +4 -4
  93. streamlit/static/static/js/{checkbox.C0odQfKb.js → checkbox.ButpszcE.js} +2 -2
  94. streamlit/static/static/js/createSuper.DYJA5xa6.js +1 -0
  95. streamlit/static/static/js/data-grid-overlay-editor.C9gQLEnU.js +1 -0
  96. streamlit/static/static/js/{downloader.Bx1D0jhz.js → downloader.B3TjsSPZ.js} +1 -1
  97. streamlit/static/static/js/es6.BYSNuG4D.js +2 -0
  98. streamlit/static/static/js/iframeResizer.contentWindow.CNPHJsF2.js +1 -0
  99. streamlit/static/static/js/index.0tDq1WXk.js +1 -0
  100. streamlit/static/static/js/index.BBnWuh07.js +976 -0
  101. streamlit/static/static/js/index.BDZorv41.js +1 -0
  102. streamlit/static/static/js/{index.DwaoC4Zp.js → index.BH79B25f.js} +3 -3
  103. streamlit/static/static/js/index.BeTC4Yl-.js +197 -0
  104. streamlit/static/static/js/index.BnOd05Ko.js +2 -0
  105. streamlit/static/static/js/index.BoJaJReB.js +1 -0
  106. streamlit/static/static/js/index.Bp1Of6L8.js +1 -0
  107. streamlit/static/static/js/index.Bpe4-O2W.js +1 -0
  108. streamlit/static/static/js/index.BrD9sbpx.js +1 -0
  109. streamlit/static/static/js/index.C1qCS-sd.js +1 -0
  110. streamlit/static/static/js/index.C3EXAI-u.js +1 -0
  111. streamlit/static/static/js/index.C77g9sAQ.js +3 -0
  112. streamlit/static/static/js/{index.PyIqRRSR.js → index.CFePF7s4.js} +1 -1
  113. streamlit/static/static/js/index.CFjU0x00.js +1 -0
  114. streamlit/static/static/js/index.Ca3y4ztK.js +1 -0
  115. streamlit/static/static/js/{index.ClRTsv8m.js → index.Cb9gN2T2.js} +2 -2
  116. streamlit/static/static/js/{index.wDYef4mQ.js → index.CbwuUwu4.js} +9 -9
  117. streamlit/static/static/js/index.CeXLlclc.js +1 -0
  118. streamlit/static/static/js/index.CfiZGqj3.js +3 -0
  119. streamlit/static/static/js/index.CjQnYKID.js +1 -0
  120. streamlit/static/static/js/index.Cl_966eE.js +3858 -0
  121. streamlit/static/static/js/{index.DCpyIFTV.js → index.CqSRo6zQ.js} +1 -1
  122. streamlit/static/static/js/index.CuEFSQ-o.js +1 -0
  123. streamlit/static/static/js/index.D4jR1m1z.js +1 -0
  124. streamlit/static/static/js/index.DGcW849X.js +1 -0
  125. streamlit/static/static/js/index.DKb-BAE2.js +1 -0
  126. streamlit/static/static/js/index.DP1rDFP0.js +1 -0
  127. streamlit/static/static/js/{index.HeVbRh9H.js → index.DStzYLqM.js} +2 -2
  128. streamlit/static/static/js/index.DVKQKDLu.js +1 -0
  129. streamlit/static/static/js/index.DWedOrkQ.js +1 -0
  130. streamlit/static/static/js/index.DYbRPmVF.js +1 -0
  131. streamlit/static/static/js/index.DgpIMUsr.js +1 -0
  132. streamlit/static/static/js/index.DtwkPJs5.js +5367 -0
  133. streamlit/static/static/js/{index.CnfWsQzS.js → index.MQLQLR5Z.js} +1 -1
  134. streamlit/static/static/js/index.uInpwWAP.js +1 -0
  135. streamlit/static/static/js/index.z992t-BQ.js +7 -0
  136. streamlit/static/static/js/{input.BL2buuce.js → input.CbP5ZuQ7.js} +2 -2
  137. streamlit/static/static/js/{memory.CUxjUWS7.js → memory.BuacVo2L.js} +1 -1
  138. streamlit/static/static/js/number-overlay-editor.BZb9zRl_.js +9 -0
  139. streamlit/static/static/js/{possibleConstructorReturn.DbvQboK3.js → possibleConstructorReturn.DSM84rOS.js} +1 -1
  140. streamlit/static/static/js/{sandbox.6lnFVWhX.js → sandbox.C480llMG.js} +1 -1
  141. streamlit/static/static/js/{timepicker.Bg4xAK95.js → timepicker.BunxCVp7.js} +4 -4
  142. streamlit/static/static/js/{toConsumableArray.D9x7Ktv4.js → toConsumableArray.B4o8rEx1.js} +3 -3
  143. streamlit/static/static/js/uniqueId.tii0yosY.js +1 -0
  144. streamlit/static/static/js/{useBasicWidgetState.CUSYQZpm.js → useBasicWidgetState.Bnm4FD6K.js} +1 -1
  145. streamlit/static/static/js/useTextInputAutoExpand.Dgtwc1m0.js +2 -0
  146. streamlit/static/static/js/useUpdateUiValue.DjXdMFGw.js +1 -0
  147. streamlit/static/static/js/withFullScreenWrapper.0cy2pVf5.js +1 -0
  148. streamlit/static/static/media/MaterialSymbols-Rounded.CBxVaFdk.woff2 +0 -0
  149. streamlit/user_info.py +16 -13
  150. streamlit/web/server/browser_websocket_handler.py +15 -0
  151. streamlit/web/server/oauth_authlib_routes.py +3 -59
  152. {streamlit-1.48.0.dist-info → streamlit-1.49.0.dist-info}/METADATA +4 -2
  153. {streamlit-1.48.0.dist-info → streamlit-1.49.0.dist-info}/RECORD +157 -160
  154. streamlit/static/static/css/index.CQt5TjGB.css +0 -1
  155. streamlit/static/static/js/FileHelper.B2t9ikoS.js +0 -5
  156. streamlit/static/static/js/FormClearHelper.BLEIUk6L.js +0 -1
  157. streamlit/static/static/js/InputInstructions.DtUxCBS8.js +0 -1
  158. streamlit/static/static/js/Particles.BDRPO7r3.js +0 -1
  159. streamlit/static/static/js/ProgressBar.B64DUUqp.js +0 -2
  160. streamlit/static/static/js/Toolbar.B3FquPk5.js +0 -1
  161. streamlit/static/static/js/createSuper.DqQ5L3XG.js +0 -1
  162. streamlit/static/static/js/data-grid-overlay-editor.DbNsQa8Y.js +0 -1
  163. streamlit/static/static/js/es6.CbPK4m0H.js +0 -2
  164. streamlit/static/static/js/iframeResizer.contentWindow.CfLKrptA.js +0 -1
  165. streamlit/static/static/js/index.0XDwe9RV.js +0 -203
  166. streamlit/static/static/js/index.4lI9TuZm.js +0 -3
  167. streamlit/static/static/js/index.6s0nVIis.js +0 -3855
  168. streamlit/static/static/js/index.9E7bRUBU.js +0 -1
  169. streamlit/static/static/js/index.B9PgeLrZ.js +0 -1
  170. streamlit/static/static/js/index.B9vzGbOt.js +0 -1
  171. streamlit/static/static/js/index.BDrQKMCm.js +0 -1
  172. streamlit/static/static/js/index.BPsoiGgP.js +0 -1
  173. streamlit/static/static/js/index.CJzdLAun.js +0 -1
  174. streamlit/static/static/js/index.CNNlC1NL.js +0 -1
  175. streamlit/static/static/js/index.CO1sClzJ.js +0 -2
  176. streamlit/static/static/js/index.CZnagxXD.js +0 -1
  177. streamlit/static/static/js/index.Cb0xSF7V.js +0 -5366
  178. streamlit/static/static/js/index.CgUt3tz_.js +0 -1
  179. streamlit/static/static/js/index.CjImmcsV.js +0 -1
  180. streamlit/static/static/js/index.CrJ1XD_V.js +0 -1
  181. streamlit/static/static/js/index.CtiKsjSC.js +0 -1
  182. streamlit/static/static/js/index.CwAuytgV.js +0 -1
  183. streamlit/static/static/js/index.D7GB-kly.js +0 -1
  184. streamlit/static/static/js/index.DA5wU0mQ.js +0 -1
  185. streamlit/static/static/js/index.DE9wNOje.js +0 -1
  186. streamlit/static/static/js/index.DHnB-C8A.js +0 -1
  187. streamlit/static/static/js/index.DRTn9zvD.js +0 -1
  188. streamlit/static/static/js/index.DjMjyJl9.js +0 -7
  189. streamlit/static/static/js/index.DvRPFfw6.js +0 -781
  190. streamlit/static/static/js/index.F9tSej94.js +0 -1
  191. streamlit/static/static/js/index.J2D_m7LY.js +0 -197
  192. streamlit/static/static/js/index.dfivzJNz.js +0 -1
  193. streamlit/static/static/js/index.mRztGO69.js +0 -3
  194. streamlit/static/static/js/index.tB1kn_7z.js +0 -1
  195. streamlit/static/static/js/mergeWith.C1kp1zIi.js +0 -1
  196. streamlit/static/static/js/number-overlay-editor.WpheGpmR.js +0 -9
  197. streamlit/static/static/js/threshold.DjX0wlsa.js +0 -1
  198. streamlit/static/static/js/timer.CAwTRJ_g.js +0 -1
  199. streamlit/static/static/js/uniqueId.Bm8FHN92.js +0 -1
  200. streamlit/static/static/js/useTextInputAutoExpand.Bf2egQOG.js +0 -2
  201. streamlit/static/static/js/useUpdateUiValue.lE5xnYWF.js +0 -1
  202. streamlit/static/static/js/value.CgPGBV_l.js +0 -1
  203. streamlit/static/static/js/withFullScreenWrapper.CCOXR7N6.js +0 -1
  204. streamlit/static/static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2 +0 -0
  205. {streamlit-1.48.0.data → streamlit-1.49.0.data}/scripts/streamlit.cmd +0 -0
  206. {streamlit-1.48.0.dist-info → streamlit-1.49.0.dist-info}/WHEEL +0 -0
  207. {streamlit-1.48.0.dist-info → streamlit-1.49.0.dist-info}/entry_points.txt +0 -0
  208. {streamlit-1.48.0.dist-info → streamlit-1.49.0.dist-info}/top_level.txt +0 -0
@@ -36,23 +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.0XDwe9RV.js",
39
+ "file": "static/js/index.Ca3y4ztK.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.CCOXR7N6.js",
46
- "_Toolbar.B3FquPk5.js",
47
- "_mergeWith.C1kp1zIi.js",
48
- "_threshold.DjX0wlsa.js",
49
- "_value.CgPGBV_l.js",
50
- "_timer.CAwTRJ_g.js",
51
- "_FormClearHelper.BLEIUk6L.js"
45
+ "_withFullScreenWrapper.0cy2pVf5.js",
46
+ "_Toolbar.BO_3WBaS.js",
47
+ "_index.BeTC4Yl-.js",
48
+ "_FormClearHelper.l_UPPvkg.js",
49
+ "_sprintf.D7DtBTRn.js",
50
+ "_checkbox.ButpszcE.js",
51
+ "_createDownloadLinkElement.ZaXNnPK4.js",
52
+ "_toConsumableArray.B4o8rEx1.js",
53
+ "_possibleConstructorReturn.DSM84rOS.js",
54
+ "_createSuper.DYJA5xa6.js",
55
+ "_FileDownload.esm.CaRyZ-b2.js"
52
56
  ]
53
57
  },
54
58
  "../lib/src/components/elements/Audio/index.ts": {
55
- "file": "static/js/index.PyIqRRSR.js",
59
+ "file": "static/js/index.CFePF7s4.js",
56
60
  "name": "index",
57
61
  "src": "../lib/src/components/elements/Audio/index.ts",
58
62
  "isDynamicEntry": true,
@@ -61,13 +65,13 @@
61
65
  ]
62
66
  },
63
67
  "../lib/src/components/elements/Balloons/index.ts": {
64
- "file": "static/js/index.B9PgeLrZ.js",
68
+ "file": "static/js/index.DKb-BAE2.js",
65
69
  "name": "index",
66
70
  "src": "../lib/src/components/elements/Balloons/index.ts",
67
71
  "isDynamicEntry": true,
68
72
  "imports": [
69
73
  "index.html",
70
- "_Particles.BDRPO7r3.js"
74
+ "_Particles.DkY6FDnc.js"
71
75
  ],
72
76
  "assets": [
73
77
  "static/media/balloon-0.Czj7AKwE.png",
@@ -79,7 +83,7 @@
79
83
  ]
80
84
  },
81
85
  "../lib/src/components/elements/BokehChart/index.ts": {
82
- "file": "static/js/index.DCpyIFTV.js",
86
+ "file": "static/js/index.CqSRo6zQ.js",
83
87
  "name": "index",
84
88
  "src": "../lib/src/components/elements/BokehChart/index.ts",
85
89
  "isDynamicEntry": true,
@@ -88,40 +92,36 @@
88
92
  ]
89
93
  },
90
94
  "../lib/src/components/elements/DeckGlJsonChart/index.ts": {
91
- "file": "static/js/index.Cb0xSF7V.js",
95
+ "file": "static/js/index.DtwkPJs5.js",
92
96
  "name": "index",
93
97
  "src": "../lib/src/components/elements/DeckGlJsonChart/index.ts",
94
98
  "isDynamicEntry": true,
95
99
  "imports": [
96
100
  "index.html",
97
- "_toConsumableArray.D9x7Ktv4.js",
98
- "_possibleConstructorReturn.DbvQboK3.js",
99
- "_withFullScreenWrapper.CCOXR7N6.js",
100
- "_Toolbar.B3FquPk5.js",
101
- "_useBasicWidgetState.CUSYQZpm.js",
102
- "_threshold.DjX0wlsa.js",
103
- "_FormClearHelper.BLEIUk6L.js",
104
- "_value.CgPGBV_l.js"
101
+ "_toConsumableArray.B4o8rEx1.js",
102
+ "_possibleConstructorReturn.DSM84rOS.js",
103
+ "_withFullScreenWrapper.0cy2pVf5.js",
104
+ "_Toolbar.BO_3WBaS.js",
105
+ "_useBasicWidgetState.Bnm4FD6K.js",
106
+ "_FormClearHelper.l_UPPvkg.js"
105
107
  ],
106
108
  "css": [
107
109
  "static/css/index.DzuxGC_t.css"
108
110
  ]
109
111
  },
110
112
  "../lib/src/components/elements/GraphVizChart/index.ts": {
111
- "file": "static/js/index.mRztGO69.js",
113
+ "file": "static/js/index.C77g9sAQ.js",
112
114
  "name": "index",
113
115
  "src": "../lib/src/components/elements/GraphVizChart/index.ts",
114
116
  "isDynamicEntry": true,
115
117
  "imports": [
116
118
  "index.html",
117
- "_timer.CAwTRJ_g.js",
118
- "_value.CgPGBV_l.js",
119
- "_withFullScreenWrapper.CCOXR7N6.js",
120
- "_Toolbar.B3FquPk5.js"
119
+ "_withFullScreenWrapper.0cy2pVf5.js",
120
+ "_Toolbar.BO_3WBaS.js"
121
121
  ]
122
122
  },
123
123
  "../lib/src/components/elements/Html/index.ts": {
124
- "file": "static/js/index.CnfWsQzS.js",
124
+ "file": "static/js/index.MQLQLR5Z.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.DHnB-C8A.js",
133
+ "file": "static/js/index.DWedOrkQ.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.B9vzGbOt.js",
142
+ "file": "static/js/index.Bpe4-O2W.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.CCOXR7N6.js",
149
- "_Toolbar.B3FquPk5.js"
148
+ "_withFullScreenWrapper.0cy2pVf5.js",
149
+ "_Toolbar.BO_3WBaS.js"
150
150
  ]
151
151
  },
152
152
  "../lib/src/components/elements/LinkButton/index.ts": {
153
- "file": "static/js/index.CjImmcsV.js",
153
+ "file": "static/js/index.0tDq1WXk.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.dfivzJNz.js",
162
+ "file": "static/js/index.CuEFSQ-o.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.6s0nVIis.js",
171
+ "file": "static/js/index.Cl_966eE.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.CCOXR7N6.js",
178
- "_FormClearHelper.BLEIUk6L.js"
177
+ "_withFullScreenWrapper.0cy2pVf5.js",
178
+ "_FormClearHelper.l_UPPvkg.js"
179
179
  ]
180
180
  },
181
181
  "../lib/src/components/elements/Progress/index.ts": {
182
- "file": "static/js/index.tB1kn_7z.js",
182
+ "file": "static/js/index.D4jR1m1z.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.B64DUUqp.js"
188
+ "_ProgressBar.BPtSM82n.js"
189
189
  ]
190
190
  },
191
191
  "../lib/src/components/elements/Snow/index.ts": {
192
- "file": "static/js/index.DjMjyJl9.js",
192
+ "file": "static/js/index.z992t-BQ.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.BDRPO7r3.js"
198
+ "_Particles.DkY6FDnc.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.CJzdLAun.js",
207
+ "file": "static/js/index.BoJaJReB.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.CgUt3tz_.js",
216
+ "file": "static/js/index.Bp1Of6L8.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.9E7bRUBU.js",
225
+ "file": "static/js/index.BrD9sbpx.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.HeVbRh9H.js",
234
+ "file": "static/js/index.DStzYLqM.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.B3FquPk5.js",
241
- "_FormClearHelper.BLEIUk6L.js",
240
+ "_Toolbar.BO_3WBaS.js",
241
+ "_FormClearHelper.l_UPPvkg.js",
242
242
  "_createDownloadLinkElement.ZaXNnPK4.js",
243
- "_Hooks.BGm9sd4U.js",
244
- "_FileDownload.esm.NPgaLlUE.js"
243
+ "_Hooks.BxrVEftw.js",
244
+ "_FileDownload.esm.CaRyZ-b2.js"
245
245
  ]
246
246
  },
247
247
  "../lib/src/components/widgets/Button/index.ts": {
248
- "file": "static/js/index.CwAuytgV.js",
248
+ "file": "static/js/index.DP1rDFP0.js",
249
249
  "name": "index",
250
250
  "src": "../lib/src/components/widgets/Button/index.ts",
251
251
  "isDynamicEntry": true,
@@ -254,86 +254,86 @@
254
254
  ]
255
255
  },
256
256
  "../lib/src/components/widgets/ButtonGroup/index.ts": {
257
- "file": "static/js/index.ClRTsv8m.js",
257
+ "file": "static/js/index.Cb9gN2T2.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.CUSYQZpm.js",
264
- "_FormClearHelper.BLEIUk6L.js"
263
+ "_useBasicWidgetState.Bnm4FD6K.js",
264
+ "_FormClearHelper.l_UPPvkg.js"
265
265
  ]
266
266
  },
267
267
  "../lib/src/components/widgets/CameraInput/index.ts": {
268
- "file": "static/js/index.DA5wU0mQ.js",
268
+ "file": "static/js/index.CeXLlclc.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
274
  "_UploadFileInfo.C-jY39rj.js",
275
- "_FormClearHelper.BLEIUk6L.js",
276
- "_ProgressBar.B64DUUqp.js"
275
+ "_FormClearHelper.l_UPPvkg.js",
276
+ "_ProgressBar.BPtSM82n.js"
277
277
  ]
278
278
  },
279
279
  "../lib/src/components/widgets/ChatInput/index.ts": {
280
- "file": "static/js/index.CrJ1XD_V.js",
280
+ "file": "static/js/index.BDZorv41.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.B2t9ikoS.js",
287
- "_InputInstructions.DtUxCBS8.js",
288
- "_useTextInputAutoExpand.Bf2egQOG.js",
286
+ "_FileHelper.Dk2SwIi3.js",
287
+ "_InputInstructions.C254RU9X.js",
288
+ "_useTextInputAutoExpand.Dgtwc1m0.js",
289
289
  "_inputUtils.CptNuJwn.js",
290
- "_ErrorOutline.esm.D_4oFNKB.js",
290
+ "_ErrorOutline.esm.u9XvzxL8.js",
291
291
  "_UploadFileInfo.C-jY39rj.js",
292
- "_base-input.DeBqm5mN.js"
292
+ "_base-input.egUI4LjJ.js"
293
293
  ]
294
294
  },
295
295
  "../lib/src/components/widgets/Checkbox/index.ts": {
296
- "file": "static/js/index.CZnagxXD.js",
296
+ "file": "static/js/index.CFjU0x00.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.CUSYQZpm.js",
303
- "_checkbox.C0odQfKb.js",
304
- "_FormClearHelper.BLEIUk6L.js"
302
+ "_useBasicWidgetState.Bnm4FD6K.js",
303
+ "_checkbox.ButpszcE.js",
304
+ "_FormClearHelper.l_UPPvkg.js"
305
305
  ]
306
306
  },
307
307
  "../lib/src/components/widgets/ColorPicker/index.ts": {
308
- "file": "static/js/index.DRTn9zvD.js",
308
+ "file": "static/js/index.C3EXAI-u.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.CUSYQZpm.js",
315
- "_FormClearHelper.BLEIUk6L.js"
314
+ "_useBasicWidgetState.Bnm4FD6K.js",
315
+ "_FormClearHelper.l_UPPvkg.js"
316
316
  ]
317
317
  },
318
318
  "../lib/src/components/widgets/DateInput/index.ts": {
319
- "file": "static/js/index.wDYef4mQ.js",
319
+ "file": "static/js/index.CbwuUwu4.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.CUSYQZpm.js",
326
- "_ErrorOutline.esm.D_4oFNKB.js",
327
- "_timepicker.Bg4xAK95.js",
328
- "_input.BL2buuce.js",
329
- "_base-input.DeBqm5mN.js",
330
- "_FormClearHelper.BLEIUk6L.js",
331
- "_possibleConstructorReturn.DbvQboK3.js",
332
- "_createSuper.DqQ5L3XG.js"
325
+ "_useBasicWidgetState.Bnm4FD6K.js",
326
+ "_ErrorOutline.esm.u9XvzxL8.js",
327
+ "_timepicker.BunxCVp7.js",
328
+ "_input.CbP5ZuQ7.js",
329
+ "_base-input.egUI4LjJ.js",
330
+ "_FormClearHelper.l_UPPvkg.js",
331
+ "_possibleConstructorReturn.DSM84rOS.js",
332
+ "_createSuper.DYJA5xa6.js"
333
333
  ]
334
334
  },
335
335
  "../lib/src/components/widgets/DownloadButton/index.ts": {
336
- "file": "static/js/index.BPsoiGgP.js",
336
+ "file": "static/js/index.uInpwWAP.js",
337
337
  "name": "index",
338
338
  "src": "../lib/src/components/widgets/DownloadButton/index.ts",
339
339
  "isDynamicEntry": true,
@@ -343,167 +343,165 @@
343
343
  ]
344
344
  },
345
345
  "../lib/src/components/widgets/FileUploader/index.ts": {
346
- "file": "static/js/index.CtiKsjSC.js",
346
+ "file": "static/js/index.DVKQKDLu.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.BLEIUk6L.js",
353
- "_FileHelper.B2t9ikoS.js",
354
- "_ProgressBar.B64DUUqp.js",
355
- "_Hooks.BGm9sd4U.js",
352
+ "_FormClearHelper.l_UPPvkg.js",
353
+ "_FileHelper.Dk2SwIi3.js",
354
+ "_ProgressBar.BPtSM82n.js",
355
+ "_Hooks.BxrVEftw.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.CNNlC1NL.js",
360
+ "file": "static/js/index.C1qCS-sd.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.CUSYQZpm.js",
367
- "_FormClearHelper.BLEIUk6L.js"
366
+ "_useBasicWidgetState.Bnm4FD6K.js",
367
+ "_FormClearHelper.l_UPPvkg.js"
368
368
  ]
369
369
  },
370
370
  "../lib/src/components/widgets/NumberInput/index.ts": {
371
- "file": "static/js/index.BDrQKMCm.js",
371
+ "file": "static/js/index.DYbRPmVF.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.Bm8FHN92.js",
378
- "_InputInstructions.DtUxCBS8.js",
379
- "_FormClearHelper.BLEIUk6L.js",
377
+ "_uniqueId.tii0yosY.js",
378
+ "_InputInstructions.C254RU9X.js",
379
+ "_FormClearHelper.l_UPPvkg.js",
380
380
  "_sprintf.D7DtBTRn.js",
381
- "_input.BL2buuce.js",
382
- "_base-input.DeBqm5mN.js"
381
+ "_input.CbP5ZuQ7.js",
382
+ "_base-input.egUI4LjJ.js"
383
383
  ]
384
384
  },
385
385
  "../lib/src/components/widgets/Radio/index.ts": {
386
- "file": "static/js/index.DwaoC4Zp.js",
386
+ "file": "static/js/index.BH79B25f.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.CUSYQZpm.js",
393
- "_FormClearHelper.BLEIUk6L.js"
392
+ "_useBasicWidgetState.Bnm4FD6K.js",
393
+ "_FormClearHelper.l_UPPvkg.js"
394
394
  ]
395
395
  },
396
396
  "../lib/src/components/widgets/Selectbox/index.ts": {
397
- "file": "static/js/index.DE9wNOje.js",
397
+ "file": "static/js/index.DgpIMUsr.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.CUSYQZpm.js",
404
- "_FormClearHelper.BLEIUk6L.js"
403
+ "_useBasicWidgetState.Bnm4FD6K.js",
404
+ "_FormClearHelper.l_UPPvkg.js"
405
405
  ]
406
406
  },
407
407
  "../lib/src/components/widgets/Slider/index.ts": {
408
- "file": "static/js/index.CO1sClzJ.js",
408
+ "file": "static/js/index.BnOd05Ko.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.CUSYQZpm.js",
416
- "_FormClearHelper.BLEIUk6L.js"
415
+ "_useBasicWidgetState.Bnm4FD6K.js",
416
+ "_FormClearHelper.l_UPPvkg.js"
417
417
  ]
418
418
  },
419
419
  "../lib/src/components/widgets/TextArea/index.ts": {
420
- "file": "static/js/index.F9tSej94.js",
420
+ "file": "static/js/index.DGcW849X.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.Bm8FHN92.js",
427
- "_InputInstructions.DtUxCBS8.js",
428
- "_useBasicWidgetState.CUSYQZpm.js",
429
- "_useUpdateUiValue.lE5xnYWF.js",
430
- "_useTextInputAutoExpand.Bf2egQOG.js",
431
- "_FormClearHelper.BLEIUk6L.js",
426
+ "_uniqueId.tii0yosY.js",
427
+ "_InputInstructions.C254RU9X.js",
428
+ "_useBasicWidgetState.Bnm4FD6K.js",
429
+ "_useUpdateUiValue.DjXdMFGw.js",
430
+ "_useTextInputAutoExpand.Dgtwc1m0.js",
431
+ "_FormClearHelper.l_UPPvkg.js",
432
432
  "_inputUtils.CptNuJwn.js",
433
- "_base-input.DeBqm5mN.js"
433
+ "_base-input.egUI4LjJ.js"
434
434
  ]
435
435
  },
436
436
  "../lib/src/components/widgets/TextInput/index.ts": {
437
- "file": "static/js/index.D7GB-kly.js",
437
+ "file": "static/js/index.CjQnYKID.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.Bm8FHN92.js",
444
- "_InputInstructions.DtUxCBS8.js",
445
- "_useBasicWidgetState.CUSYQZpm.js",
446
- "_useUpdateUiValue.lE5xnYWF.js",
447
- "_input.BL2buuce.js",
448
- "_FormClearHelper.BLEIUk6L.js",
443
+ "_uniqueId.tii0yosY.js",
444
+ "_InputInstructions.C254RU9X.js",
445
+ "_useBasicWidgetState.Bnm4FD6K.js",
446
+ "_useUpdateUiValue.DjXdMFGw.js",
447
+ "_input.CbP5ZuQ7.js",
448
+ "_FormClearHelper.l_UPPvkg.js",
449
449
  "_inputUtils.CptNuJwn.js",
450
- "_base-input.DeBqm5mN.js"
450
+ "_base-input.egUI4LjJ.js"
451
451
  ]
452
452
  },
453
453
  "../lib/src/components/widgets/TimeInput/index.ts": {
454
- "file": "static/js/index.4lI9TuZm.js",
454
+ "file": "static/js/index.CfiZGqj3.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.CUSYQZpm.js",
461
- "_timepicker.Bg4xAK95.js",
462
- "_FormClearHelper.BLEIUk6L.js",
463
- "_possibleConstructorReturn.DbvQboK3.js",
464
- "_createSuper.DqQ5L3XG.js"
460
+ "_useBasicWidgetState.Bnm4FD6K.js",
461
+ "_timepicker.BunxCVp7.js",
462
+ "_FormClearHelper.l_UPPvkg.js",
463
+ "_possibleConstructorReturn.DSM84rOS.js",
464
+ "_createSuper.DYJA5xa6.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.DbNsQa8Y.js",
468
+ "file": "static/js/data-grid-overlay-editor.C9gQLEnU.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.J2D_m7LY.js",
475
- "_withFullScreenWrapper.CCOXR7N6.js",
476
- "_Toolbar.B3FquPk5.js",
477
- "_FormClearHelper.BLEIUk6L.js",
478
- "_mergeWith.C1kp1zIi.js",
474
+ "_index.BeTC4Yl-.js",
475
+ "_withFullScreenWrapper.0cy2pVf5.js",
476
+ "_Toolbar.BO_3WBaS.js",
477
+ "_FormClearHelper.l_UPPvkg.js",
479
478
  "_sprintf.D7DtBTRn.js",
480
- "_checkbox.C0odQfKb.js",
479
+ "_checkbox.ButpszcE.js",
481
480
  "_createDownloadLinkElement.ZaXNnPK4.js",
482
- "_toConsumableArray.D9x7Ktv4.js",
483
- "_possibleConstructorReturn.DbvQboK3.js",
484
- "_createSuper.DqQ5L3XG.js",
485
- "_FileDownload.esm.NPgaLlUE.js"
481
+ "_toConsumableArray.B4o8rEx1.js",
482
+ "_possibleConstructorReturn.DSM84rOS.js",
483
+ "_createSuper.DYJA5xa6.js",
484
+ "_FileDownload.esm.CaRyZ-b2.js"
486
485
  ]
487
486
  },
488
487
  "../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.WpheGpmR.js",
488
+ "file": "static/js/number-overlay-editor.BZb9zRl_.js",
490
489
  "name": "number-overlay-editor",
491
490
  "src": "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
492
491
  "isDynamicEntry": true,
493
492
  "imports": [
494
493
  "index.html",
495
- "_index.J2D_m7LY.js",
496
- "_withFullScreenWrapper.CCOXR7N6.js",
497
- "_Toolbar.B3FquPk5.js",
498
- "_FormClearHelper.BLEIUk6L.js",
499
- "_mergeWith.C1kp1zIi.js",
494
+ "_index.BeTC4Yl-.js",
495
+ "_withFullScreenWrapper.0cy2pVf5.js",
496
+ "_Toolbar.BO_3WBaS.js",
497
+ "_FormClearHelper.l_UPPvkg.js",
500
498
  "_sprintf.D7DtBTRn.js",
501
- "_checkbox.C0odQfKb.js",
499
+ "_checkbox.ButpszcE.js",
502
500
  "_createDownloadLinkElement.ZaXNnPK4.js",
503
- "_toConsumableArray.D9x7Ktv4.js",
504
- "_possibleConstructorReturn.DbvQboK3.js",
505
- "_createSuper.DqQ5L3XG.js",
506
- "_FileDownload.esm.NPgaLlUE.js"
501
+ "_toConsumableArray.B4o8rEx1.js",
502
+ "_possibleConstructorReturn.DSM84rOS.js",
503
+ "_createSuper.DYJA5xa6.js",
504
+ "_FileDownload.esm.CaRyZ-b2.js"
507
505
  ]
508
506
  },
509
507
  "../node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf": {
@@ -743,94 +741,94 @@
743
741
  "src": "../node_modules/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2"
744
742
  },
745
743
  "../node_modules/native-file-system-adapter/src/adapters/downloader.js": {
746
- "file": "static/js/downloader.Bx1D0jhz.js",
744
+ "file": "static/js/downloader.B3TjsSPZ.js",
747
745
  "name": "downloader",
748
746
  "src": "../node_modules/native-file-system-adapter/src/adapters/downloader.js",
749
747
  "isDynamicEntry": true,
750
748
  "imports": [
751
- "_es6.CbPK4m0H.js",
749
+ "_es6.BYSNuG4D.js",
752
750
  "index.html"
753
751
  ]
754
752
  },
755
753
  "../node_modules/native-file-system-adapter/src/adapters/memory.js": {
756
- "file": "static/js/memory.CUxjUWS7.js",
754
+ "file": "static/js/memory.BuacVo2L.js",
757
755
  "name": "memory",
758
756
  "src": "../node_modules/native-file-system-adapter/src/adapters/memory.js",
759
757
  "isDynamicEntry": true,
760
758
  "imports": [
761
- "_es6.CbPK4m0H.js",
759
+ "_es6.BYSNuG4D.js",
762
760
  "index.html"
763
761
  ]
764
762
  },
765
763
  "../node_modules/native-file-system-adapter/src/adapters/sandbox.js": {
766
- "file": "static/js/sandbox.6lnFVWhX.js",
764
+ "file": "static/js/sandbox.C480llMG.js",
767
765
  "name": "sandbox",
768
766
  "src": "../node_modules/native-file-system-adapter/src/adapters/sandbox.js",
769
767
  "isDynamicEntry": true,
770
768
  "imports": [
771
- "_es6.CbPK4m0H.js",
769
+ "_es6.BYSNuG4D.js",
772
770
  "index.html"
773
771
  ]
774
772
  },
775
- "_ErrorOutline.esm.D_4oFNKB.js": {
776
- "file": "static/js/ErrorOutline.esm.D_4oFNKB.js",
773
+ "_ErrorOutline.esm.u9XvzxL8.js": {
774
+ "file": "static/js/ErrorOutline.esm.u9XvzxL8.js",
777
775
  "name": "ErrorOutline.esm",
778
776
  "imports": [
779
777
  "index.html"
780
778
  ]
781
779
  },
782
- "_FileDownload.esm.NPgaLlUE.js": {
783
- "file": "static/js/FileDownload.esm.NPgaLlUE.js",
780
+ "_FileDownload.esm.CaRyZ-b2.js": {
781
+ "file": "static/js/FileDownload.esm.CaRyZ-b2.js",
784
782
  "name": "FileDownload.esm",
785
783
  "imports": [
786
784
  "index.html"
787
785
  ]
788
786
  },
789
- "_FileHelper.B2t9ikoS.js": {
790
- "file": "static/js/FileHelper.B2t9ikoS.js",
787
+ "_FileHelper.Dk2SwIi3.js": {
788
+ "file": "static/js/FileHelper.Dk2SwIi3.js",
791
789
  "name": "FileHelper",
792
790
  "imports": [
793
791
  "index.html",
794
792
  "_UploadFileInfo.C-jY39rj.js"
795
793
  ]
796
794
  },
797
- "_FormClearHelper.BLEIUk6L.js": {
798
- "file": "static/js/FormClearHelper.BLEIUk6L.js",
795
+ "_FormClearHelper.l_UPPvkg.js": {
796
+ "file": "static/js/FormClearHelper.l_UPPvkg.js",
799
797
  "name": "FormClearHelper",
800
798
  "imports": [
801
799
  "index.html"
802
800
  ]
803
801
  },
804
- "_Hooks.BGm9sd4U.js": {
805
- "file": "static/js/Hooks.BGm9sd4U.js",
802
+ "_Hooks.BxrVEftw.js": {
803
+ "file": "static/js/Hooks.BxrVEftw.js",
806
804
  "name": "Hooks",
807
805
  "imports": [
808
806
  "index.html"
809
807
  ]
810
808
  },
811
- "_InputInstructions.DtUxCBS8.js": {
812
- "file": "static/js/InputInstructions.DtUxCBS8.js",
809
+ "_InputInstructions.C254RU9X.js": {
810
+ "file": "static/js/InputInstructions.C254RU9X.js",
813
811
  "name": "InputInstructions",
814
812
  "imports": [
815
813
  "index.html"
816
814
  ]
817
815
  },
818
- "_Particles.BDRPO7r3.js": {
819
- "file": "static/js/Particles.BDRPO7r3.js",
816
+ "_Particles.DkY6FDnc.js": {
817
+ "file": "static/js/Particles.DkY6FDnc.js",
820
818
  "name": "Particles",
821
819
  "imports": [
822
820
  "index.html"
823
821
  ]
824
822
  },
825
- "_ProgressBar.B64DUUqp.js": {
826
- "file": "static/js/ProgressBar.B64DUUqp.js",
823
+ "_ProgressBar.BPtSM82n.js": {
824
+ "file": "static/js/ProgressBar.BPtSM82n.js",
827
825
  "name": "ProgressBar",
828
826
  "imports": [
829
827
  "index.html"
830
828
  ]
831
829
  },
832
- "_Toolbar.B3FquPk5.js": {
833
- "file": "static/js/Toolbar.B3FquPk5.js",
830
+ "_Toolbar.BO_3WBaS.js": {
831
+ "file": "static/js/Toolbar.BO_3WBaS.js",
834
832
  "name": "Toolbar",
835
833
  "imports": [
836
834
  "index.html"
@@ -840,15 +838,15 @@
840
838
  "file": "static/js/UploadFileInfo.C-jY39rj.js",
841
839
  "name": "UploadFileInfo"
842
840
  },
843
- "_base-input.DeBqm5mN.js": {
844
- "file": "static/js/base-input.DeBqm5mN.js",
841
+ "_base-input.egUI4LjJ.js": {
842
+ "file": "static/js/base-input.egUI4LjJ.js",
845
843
  "name": "base-input",
846
844
  "imports": [
847
845
  "index.html"
848
846
  ]
849
847
  },
850
- "_checkbox.C0odQfKb.js": {
851
- "file": "static/js/checkbox.C0odQfKb.js",
848
+ "_checkbox.ButpszcE.js": {
849
+ "file": "static/js/checkbox.ButpszcE.js",
852
850
  "name": "checkbox",
853
851
  "imports": [
854
852
  "index.html"
@@ -858,15 +856,15 @@
858
856
  "file": "static/js/createDownloadLinkElement.ZaXNnPK4.js",
859
857
  "name": "createDownloadLinkElement"
860
858
  },
861
- "_createSuper.DqQ5L3XG.js": {
862
- "file": "static/js/createSuper.DqQ5L3XG.js",
859
+ "_createSuper.DYJA5xa6.js": {
860
+ "file": "static/js/createSuper.DYJA5xa6.js",
863
861
  "name": "createSuper",
864
862
  "imports": [
865
- "_possibleConstructorReturn.DbvQboK3.js"
863
+ "_possibleConstructorReturn.DSM84rOS.js"
866
864
  ]
867
865
  },
868
- "_es6.CbPK4m0H.js": {
869
- "file": "static/js/es6.CbPK4m0H.js",
866
+ "_es6.BYSNuG4D.js": {
867
+ "file": "static/js/es6.BYSNuG4D.js",
870
868
  "name": "es6",
871
869
  "isDynamicEntry": true,
872
870
  "imports": [
@@ -881,66 +879,58 @@
881
879
  "../node_modules/native-file-system-adapter/src/adapters/memory.js"
882
880
  ]
883
881
  },
884
- "_iframeResizer.contentWindow.CfLKrptA.js": {
885
- "file": "static/js/iframeResizer.contentWindow.CfLKrptA.js",
882
+ "_iframeResizer.contentWindow.CNPHJsF2.js": {
883
+ "file": "static/js/iframeResizer.contentWindow.CNPHJsF2.js",
886
884
  "name": "iframeResizer.contentWindow",
887
885
  "isDynamicEntry": true,
888
886
  "imports": [
889
887
  "index.html"
890
888
  ]
891
889
  },
892
- "_index.CQt5TjGB.css": {
893
- "file": "static/css/index.CQt5TjGB.css",
894
- "src": "_index.CQt5TjGB.css"
895
- },
896
- "_index.J2D_m7LY.js": {
897
- "file": "static/js/index.J2D_m7LY.js",
890
+ "_index.BeTC4Yl-.js": {
891
+ "file": "static/js/index.BeTC4Yl-.js",
898
892
  "name": "index",
899
893
  "isDynamicEntry": true,
900
894
  "imports": [
901
895
  "index.html",
902
- "_withFullScreenWrapper.CCOXR7N6.js",
903
- "_Toolbar.B3FquPk5.js",
904
- "_FormClearHelper.BLEIUk6L.js",
905
- "_mergeWith.C1kp1zIi.js",
896
+ "_withFullScreenWrapper.0cy2pVf5.js",
897
+ "_Toolbar.BO_3WBaS.js",
898
+ "_FormClearHelper.l_UPPvkg.js",
906
899
  "_sprintf.D7DtBTRn.js",
907
- "_checkbox.C0odQfKb.js",
900
+ "_checkbox.ButpszcE.js",
908
901
  "_createDownloadLinkElement.ZaXNnPK4.js",
909
- "_toConsumableArray.D9x7Ktv4.js",
910
- "_possibleConstructorReturn.DbvQboK3.js",
911
- "_createSuper.DqQ5L3XG.js",
912
- "_FileDownload.esm.NPgaLlUE.js"
902
+ "_toConsumableArray.B4o8rEx1.js",
903
+ "_possibleConstructorReturn.DSM84rOS.js",
904
+ "_createSuper.DYJA5xa6.js",
905
+ "_FileDownload.esm.CaRyZ-b2.js"
913
906
  ],
914
907
  "dynamicImports": [
915
908
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/data-grid-overlay-editor.js",
916
909
  "../node_modules/@glideapps/glide-data-grid/dist/esm/internal/data-grid-overlay-editor/private/number-overlay-editor.js",
917
- "_es6.CbPK4m0H.js"
910
+ "_es6.BYSNuG4D.js"
918
911
  ],
919
912
  "css": [
920
- "static/css/index.CQt5TjGB.css"
913
+ "static/css/index.COe1010n.css"
921
914
  ]
922
915
  },
923
- "_input.BL2buuce.js": {
924
- "file": "static/js/input.BL2buuce.js",
916
+ "_index.COe1010n.css": {
917
+ "file": "static/css/index.COe1010n.css",
918
+ "src": "_index.COe1010n.css"
919
+ },
920
+ "_input.CbP5ZuQ7.js": {
921
+ "file": "static/js/input.CbP5ZuQ7.js",
925
922
  "name": "input",
926
923
  "imports": [
927
924
  "index.html",
928
- "_base-input.DeBqm5mN.js"
925
+ "_base-input.egUI4LjJ.js"
929
926
  ]
930
927
  },
931
928
  "_inputUtils.CptNuJwn.js": {
932
929
  "file": "static/js/inputUtils.CptNuJwn.js",
933
930
  "name": "inputUtils"
934
931
  },
935
- "_mergeWith.C1kp1zIi.js": {
936
- "file": "static/js/mergeWith.C1kp1zIi.js",
937
- "name": "mergeWith",
938
- "imports": [
939
- "index.html"
940
- ]
941
- },
942
- "_possibleConstructorReturn.DbvQboK3.js": {
943
- "file": "static/js/possibleConstructorReturn.DbvQboK3.js",
932
+ "_possibleConstructorReturn.DSM84rOS.js": {
933
+ "file": "static/js/possibleConstructorReturn.DSM84rOS.js",
944
934
  "name": "possibleConstructorReturn",
945
935
  "imports": [
946
936
  "index.html"
@@ -950,81 +940,63 @@
950
940
  "file": "static/js/sprintf.D7DtBTRn.js",
951
941
  "name": "sprintf"
952
942
  },
953
- "_threshold.DjX0wlsa.js": {
954
- "file": "static/js/threshold.DjX0wlsa.js",
955
- "name": "threshold",
956
- "imports": [
957
- "_value.CgPGBV_l.js"
958
- ]
959
- },
960
- "_timepicker.Bg4xAK95.js": {
961
- "file": "static/js/timepicker.Bg4xAK95.js",
943
+ "_timepicker.BunxCVp7.js": {
944
+ "file": "static/js/timepicker.BunxCVp7.js",
962
945
  "name": "timepicker",
963
946
  "imports": [
964
947
  "index.html",
965
- "_possibleConstructorReturn.DbvQboK3.js",
966
- "_createSuper.DqQ5L3XG.js"
948
+ "_possibleConstructorReturn.DSM84rOS.js",
949
+ "_createSuper.DYJA5xa6.js"
967
950
  ]
968
951
  },
969
- "_timer.CAwTRJ_g.js": {
970
- "file": "static/js/timer.CAwTRJ_g.js",
971
- "name": "timer",
972
- "imports": [
973
- "_value.CgPGBV_l.js"
974
- ]
975
- },
976
- "_toConsumableArray.D9x7Ktv4.js": {
977
- "file": "static/js/toConsumableArray.D9x7Ktv4.js",
952
+ "_toConsumableArray.B4o8rEx1.js": {
953
+ "file": "static/js/toConsumableArray.B4o8rEx1.js",
978
954
  "name": "toConsumableArray",
979
955
  "imports": [
980
956
  "index.html",
981
- "_possibleConstructorReturn.DbvQboK3.js"
957
+ "_possibleConstructorReturn.DSM84rOS.js"
982
958
  ]
983
959
  },
984
- "_uniqueId.Bm8FHN92.js": {
985
- "file": "static/js/uniqueId.Bm8FHN92.js",
960
+ "_uniqueId.tii0yosY.js": {
961
+ "file": "static/js/uniqueId.tii0yosY.js",
986
962
  "name": "uniqueId",
987
963
  "imports": [
988
964
  "index.html"
989
965
  ]
990
966
  },
991
- "_useBasicWidgetState.CUSYQZpm.js": {
992
- "file": "static/js/useBasicWidgetState.CUSYQZpm.js",
967
+ "_useBasicWidgetState.Bnm4FD6K.js": {
968
+ "file": "static/js/useBasicWidgetState.Bnm4FD6K.js",
993
969
  "name": "useBasicWidgetState",
994
970
  "imports": [
995
971
  "index.html",
996
- "_FormClearHelper.BLEIUk6L.js"
972
+ "_FormClearHelper.l_UPPvkg.js"
997
973
  ]
998
974
  },
999
- "_useTextInputAutoExpand.Bf2egQOG.js": {
1000
- "file": "static/js/useTextInputAutoExpand.Bf2egQOG.js",
975
+ "_useTextInputAutoExpand.Dgtwc1m0.js": {
976
+ "file": "static/js/useTextInputAutoExpand.Dgtwc1m0.js",
1001
977
  "name": "useTextInputAutoExpand",
1002
978
  "imports": [
1003
979
  "index.html",
1004
- "_base-input.DeBqm5mN.js"
980
+ "_base-input.egUI4LjJ.js"
1005
981
  ]
1006
982
  },
1007
- "_useUpdateUiValue.lE5xnYWF.js": {
1008
- "file": "static/js/useUpdateUiValue.lE5xnYWF.js",
983
+ "_useUpdateUiValue.DjXdMFGw.js": {
984
+ "file": "static/js/useUpdateUiValue.DjXdMFGw.js",
1009
985
  "name": "useUpdateUiValue",
1010
986
  "imports": [
1011
987
  "index.html",
1012
988
  "_inputUtils.CptNuJwn.js"
1013
989
  ]
1014
990
  },
1015
- "_value.CgPGBV_l.js": {
1016
- "file": "static/js/value.CgPGBV_l.js",
1017
- "name": "value"
1018
- },
1019
- "_withFullScreenWrapper.CCOXR7N6.js": {
1020
- "file": "static/js/withFullScreenWrapper.CCOXR7N6.js",
991
+ "_withFullScreenWrapper.0cy2pVf5.js": {
992
+ "file": "static/js/withFullScreenWrapper.0cy2pVf5.js",
1021
993
  "name": "withFullScreenWrapper",
1022
994
  "imports": [
1023
995
  "index.html"
1024
996
  ]
1025
997
  },
1026
998
  "index.html": {
1027
- "file": "static/js/index.DvRPFfw6.js",
999
+ "file": "static/js/index.BBnWuh07.js",
1028
1000
  "name": "index",
1029
1001
  "src": "index.html",
1030
1002
  "isEntry": true,
@@ -1032,7 +1004,7 @@
1032
1004
  "../lib/src/components/elements/Audio/index.ts",
1033
1005
  "../lib/src/components/elements/Balloons/index.ts",
1034
1006
  "../lib/src/components/elements/Snow/index.ts",
1035
- "_index.J2D_m7LY.js",
1007
+ "_index.BeTC4Yl-.js",
1036
1008
  "../lib/src/components/elements/ArrowVegaLiteChart/index.ts",
1037
1009
  "../lib/src/components/elements/Toast/index.ts",
1038
1010
  "../lib/src/components/elements/BokehChart/index.ts",
@@ -1065,10 +1037,10 @@
1065
1037
  "../lib/src/components/widgets/TextInput/index.ts",
1066
1038
  "../lib/src/components/widgets/TimeInput/index.ts",
1067
1039
  "../lib/src/components/widgets/NumberInput/index.ts",
1068
- "_iframeResizer.contentWindow.CfLKrptA.js"
1040
+ "_iframeResizer.contentWindow.CNPHJsF2.js"
1069
1041
  ],
1070
1042
  "css": [
1071
- "static/css/index.CJVRHjQZ.css"
1043
+ "static/css/index.C8X8rNzw.css"
1072
1044
  ],
1073
1045
  "assets": [
1074
1046
  "static/media/fireworks.B4d-_KUe.gif",
@@ -1138,11 +1110,11 @@
1138
1110
  "static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2",
1139
1111
  "static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2",
1140
1112
  "static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2",
1141
- "static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2"
1113
+ "static/media/MaterialSymbols-Rounded.CBxVaFdk.woff2"
1142
1114
  ]
1143
1115
  },
1144
1116
  "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2": {
1145
- "file": "static/media/MaterialSymbols-Rounded.DsbC8sYI.woff2",
1117
+ "file": "static/media/MaterialSymbols-Rounded.CBxVaFdk.woff2",
1146
1118
  "src": "src/assets/fonts/MaterialSymbols/MaterialSymbols-Rounded.woff2"
1147
1119
  },
1148
1120
  "src/assets/fonts/Source_Code/SourceCodeVF-Italic.ttf.woff2": {