streamlit-nightly 1.41.2.dev20250106__py2.py3-none-any.whl → 1.41.2.dev20250108__py2.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 (413) hide show
  1. streamlit/__init__.py +11 -2
  2. streamlit/__main__.py +1 -1
  3. streamlit/auth_util.py +209 -0
  4. streamlit/cli_util.py +1 -1
  5. streamlit/column_config.py +1 -1
  6. streamlit/commands/__init__.py +1 -1
  7. streamlit/commands/echo.py +1 -1
  8. streamlit/commands/execution_control.py +1 -1
  9. streamlit/commands/experimental_query_params.py +1 -1
  10. streamlit/commands/logo.py +1 -1
  11. streamlit/commands/navigation.py +1 -1
  12. streamlit/commands/page_config.py +1 -1
  13. streamlit/components/__init__.py +1 -1
  14. streamlit/components/lib/__init__.py +1 -1
  15. streamlit/components/lib/local_component_registry.py +1 -1
  16. streamlit/components/types/__init__.py +1 -1
  17. streamlit/components/types/base_component_registry.py +1 -1
  18. streamlit/components/types/base_custom_component.py +1 -1
  19. streamlit/components/v1/__init__.py +1 -1
  20. streamlit/components/v1/component_arrow.py +1 -1
  21. streamlit/components/v1/component_registry.py +1 -1
  22. streamlit/components/v1/components.py +1 -1
  23. streamlit/components/v1/custom_component.py +1 -1
  24. streamlit/config.py +1 -1
  25. streamlit/config_option.py +1 -1
  26. streamlit/config_util.py +1 -1
  27. streamlit/connections/__init__.py +1 -1
  28. streamlit/connections/base_connection.py +1 -1
  29. streamlit/connections/snowflake_connection.py +1 -1
  30. streamlit/connections/snowpark_connection.py +1 -1
  31. streamlit/connections/sql_connection.py +1 -1
  32. streamlit/connections/util.py +1 -1
  33. streamlit/cursor.py +1 -1
  34. streamlit/dataframe_util.py +1 -1
  35. streamlit/delta_generator.py +1 -1
  36. streamlit/delta_generator_singletons.py +1 -1
  37. streamlit/deprecation_util.py +1 -1
  38. streamlit/development.py +1 -1
  39. streamlit/elements/__init__.py +1 -1
  40. streamlit/elements/alert.py +1 -1
  41. streamlit/elements/arrow.py +1 -1
  42. streamlit/elements/balloons.py +1 -1
  43. streamlit/elements/bokeh_chart.py +1 -1
  44. streamlit/elements/code.py +1 -1
  45. streamlit/elements/deck_gl_json_chart.py +1 -1
  46. streamlit/elements/dialog_decorator.py +1 -1
  47. streamlit/elements/doc_string.py +1 -1
  48. streamlit/elements/empty.py +1 -1
  49. streamlit/elements/exception.py +1 -1
  50. streamlit/elements/form.py +1 -1
  51. streamlit/elements/graphviz_chart.py +1 -1
  52. streamlit/elements/heading.py +1 -1
  53. streamlit/elements/html.py +1 -1
  54. streamlit/elements/iframe.py +1 -1
  55. streamlit/elements/image.py +1 -1
  56. streamlit/elements/json.py +1 -1
  57. streamlit/elements/layouts.py +1 -1
  58. streamlit/elements/lib/__init__.py +1 -1
  59. streamlit/elements/lib/built_in_chart_utils.py +1 -1
  60. streamlit/elements/lib/color_util.py +1 -1
  61. streamlit/elements/lib/column_config_utils.py +1 -1
  62. streamlit/elements/lib/column_types.py +1 -1
  63. streamlit/elements/lib/dialog.py +1 -1
  64. streamlit/elements/lib/dicttools.py +1 -1
  65. streamlit/elements/lib/event_utils.py +1 -1
  66. streamlit/elements/lib/file_uploader_utils.py +1 -1
  67. streamlit/elements/lib/form_utils.py +1 -1
  68. streamlit/elements/lib/image_utils.py +1 -1
  69. streamlit/elements/lib/js_number.py +1 -1
  70. streamlit/elements/lib/mutable_status_container.py +1 -1
  71. streamlit/elements/lib/options_selector_utils.py +1 -1
  72. streamlit/elements/lib/pandas_styler_utils.py +1 -1
  73. streamlit/elements/lib/policies.py +1 -1
  74. streamlit/elements/lib/streamlit_plotly_theme.py +1 -1
  75. streamlit/elements/lib/subtitle_utils.py +1 -1
  76. streamlit/elements/lib/utils.py +1 -1
  77. streamlit/elements/map.py +1 -1
  78. streamlit/elements/markdown.py +3 -3
  79. streamlit/elements/media.py +1 -1
  80. streamlit/elements/metric.py +1 -1
  81. streamlit/elements/plotly_chart.py +1 -1
  82. streamlit/elements/progress.py +1 -1
  83. streamlit/elements/pyplot.py +1 -1
  84. streamlit/elements/snow.py +1 -1
  85. streamlit/elements/spinner.py +14 -7
  86. streamlit/elements/text.py +1 -1
  87. streamlit/elements/toast.py +1 -1
  88. streamlit/elements/vega_charts.py +1 -1
  89. streamlit/elements/widgets/__init__.py +1 -1
  90. streamlit/elements/widgets/audio_input.py +1 -1
  91. streamlit/elements/widgets/button.py +1 -1
  92. streamlit/elements/widgets/button_group.py +1 -1
  93. streamlit/elements/widgets/camera_input.py +1 -1
  94. streamlit/elements/widgets/chat.py +1 -1
  95. streamlit/elements/widgets/checkbox.py +1 -1
  96. streamlit/elements/widgets/color_picker.py +1 -1
  97. streamlit/elements/widgets/data_editor.py +1 -1
  98. streamlit/elements/widgets/file_uploader.py +1 -1
  99. streamlit/elements/widgets/multiselect.py +1 -1
  100. streamlit/elements/widgets/number_input.py +1 -1
  101. streamlit/elements/widgets/radio.py +1 -1
  102. streamlit/elements/widgets/select_slider.py +1 -1
  103. streamlit/elements/widgets/selectbox.py +1 -1
  104. streamlit/elements/widgets/slider.py +1 -1
  105. streamlit/elements/widgets/text_widgets.py +1 -1
  106. streamlit/elements/widgets/time_widgets.py +1 -1
  107. streamlit/elements/write.py +2 -2
  108. streamlit/emojis.py +1 -1
  109. streamlit/env_util.py +1 -1
  110. streamlit/error_util.py +1 -1
  111. streamlit/errors.py +5 -1
  112. streamlit/external/__init__.py +1 -1
  113. streamlit/external/langchain/__init__.py +1 -1
  114. streamlit/external/langchain/streamlit_callback_handler.py +1 -1
  115. streamlit/file_util.py +1 -1
  116. streamlit/git_util.py +1 -1
  117. streamlit/hello/__init__.py +1 -1
  118. streamlit/hello/animation_demo.py +1 -1
  119. streamlit/hello/dataframe_demo.py +1 -1
  120. streamlit/hello/hello.py +1 -1
  121. streamlit/hello/mapping_demo.py +1 -1
  122. streamlit/hello/plotting_demo.py +1 -1
  123. streamlit/hello/streamlit_app.py +1 -1
  124. streamlit/hello/utils.py +1 -1
  125. streamlit/logger.py +1 -1
  126. streamlit/material_icon_names.py +1 -1
  127. streamlit/navigation/__init__.py +1 -1
  128. streamlit/navigation/page.py +1 -1
  129. streamlit/net_util.py +1 -1
  130. streamlit/platform.py +1 -1
  131. streamlit/proto/Alert_pb2.pyi +1 -1
  132. streamlit/proto/AppPage_pb2.pyi +1 -1
  133. streamlit/proto/ArrowNamedDataSet_pb2.pyi +1 -1
  134. streamlit/proto/ArrowVegaLiteChart_pb2.pyi +1 -1
  135. streamlit/proto/Arrow_pb2.pyi +1 -1
  136. streamlit/proto/AudioInput_pb2.pyi +1 -1
  137. streamlit/proto/Audio_pb2.pyi +1 -1
  138. streamlit/proto/AuthRedirect_pb2.py +27 -0
  139. streamlit/proto/AuthRedirect_pb2.pyi +41 -0
  140. streamlit/proto/AutoRerun_pb2.pyi +1 -1
  141. streamlit/proto/BackMsg_pb2.pyi +1 -1
  142. streamlit/proto/Balloons_pb2.pyi +1 -1
  143. streamlit/proto/Block_pb2.pyi +1 -1
  144. streamlit/proto/BokehChart_pb2.pyi +1 -1
  145. streamlit/proto/ButtonGroup_pb2.pyi +1 -1
  146. streamlit/proto/Button_pb2.pyi +1 -1
  147. streamlit/proto/CameraInput_pb2.pyi +1 -1
  148. streamlit/proto/ChatInput_pb2.pyi +1 -1
  149. streamlit/proto/Checkbox_pb2.pyi +1 -1
  150. streamlit/proto/ClientState_pb2.pyi +1 -1
  151. streamlit/proto/Code_pb2.pyi +1 -1
  152. streamlit/proto/ColorPicker_pb2.pyi +1 -1
  153. streamlit/proto/Common_pb2.pyi +1 -1
  154. streamlit/proto/Components_pb2.pyi +1 -1
  155. streamlit/proto/DataFrame_pb2.pyi +1 -1
  156. streamlit/proto/DateInput_pb2.pyi +1 -1
  157. streamlit/proto/DeckGlJsonChart_pb2.pyi +1 -1
  158. streamlit/proto/Delta_pb2.pyi +1 -1
  159. streamlit/proto/DocString_pb2.pyi +1 -1
  160. streamlit/proto/DownloadButton_pb2.pyi +1 -1
  161. streamlit/proto/Element_pb2.pyi +1 -1
  162. streamlit/proto/Empty_pb2.pyi +1 -1
  163. streamlit/proto/Exception_pb2.pyi +1 -1
  164. streamlit/proto/Favicon_pb2.pyi +1 -1
  165. streamlit/proto/FileUploader_pb2.pyi +1 -1
  166. streamlit/proto/ForwardMsg_pb2.py +10 -9
  167. streamlit/proto/ForwardMsg_pb2.pyi +11 -4
  168. streamlit/proto/GitInfo_pb2.pyi +1 -1
  169. streamlit/proto/GraphVizChart_pb2.pyi +1 -1
  170. streamlit/proto/Heading_pb2.pyi +1 -1
  171. streamlit/proto/Html_pb2.pyi +1 -1
  172. streamlit/proto/IFrame_pb2.pyi +1 -1
  173. streamlit/proto/Image_pb2.pyi +1 -1
  174. streamlit/proto/Json_pb2.pyi +1 -1
  175. streamlit/proto/LabelVisibilityMessage_pb2.pyi +1 -1
  176. streamlit/proto/LinkButton_pb2.pyi +1 -1
  177. streamlit/proto/Logo_pb2.pyi +1 -1
  178. streamlit/proto/Markdown_pb2.pyi +1 -1
  179. streamlit/proto/Metric_pb2.pyi +1 -1
  180. streamlit/proto/MetricsEvent_pb2.pyi +1 -1
  181. streamlit/proto/MultiSelect_pb2.pyi +1 -1
  182. streamlit/proto/NamedDataSet_pb2.pyi +1 -1
  183. streamlit/proto/Navigation_pb2.pyi +1 -1
  184. streamlit/proto/NewSession_pb2.pyi +1 -1
  185. streamlit/proto/NumberInput_pb2.pyi +1 -1
  186. streamlit/proto/PageConfig_pb2.pyi +1 -1
  187. streamlit/proto/PageInfo_pb2.pyi +1 -1
  188. streamlit/proto/PageLink_pb2.pyi +1 -1
  189. streamlit/proto/PageNotFound_pb2.pyi +1 -1
  190. streamlit/proto/PageProfile_pb2.pyi +1 -1
  191. streamlit/proto/PagesChanged_pb2.pyi +1 -1
  192. streamlit/proto/ParentMessage_pb2.pyi +1 -1
  193. streamlit/proto/PlotlyChart_pb2.pyi +1 -1
  194. streamlit/proto/Progress_pb2.pyi +1 -1
  195. streamlit/proto/Radio_pb2.pyi +1 -1
  196. streamlit/proto/RootContainer_pb2.pyi +1 -1
  197. streamlit/proto/Selectbox_pb2.pyi +1 -1
  198. streamlit/proto/SessionEvent_pb2.pyi +1 -1
  199. streamlit/proto/SessionStatus_pb2.pyi +1 -1
  200. streamlit/proto/Skeleton_pb2.pyi +1 -1
  201. streamlit/proto/Slider_pb2.pyi +1 -1
  202. streamlit/proto/Snow_pb2.pyi +1 -1
  203. streamlit/proto/Spinner_pb2.py +2 -2
  204. streamlit/proto/Spinner_pb2.pyi +6 -2
  205. streamlit/proto/TextArea_pb2.pyi +1 -1
  206. streamlit/proto/TextInput_pb2.pyi +1 -1
  207. streamlit/proto/Text_pb2.pyi +1 -1
  208. streamlit/proto/TimeInput_pb2.pyi +1 -1
  209. streamlit/proto/Toast_pb2.pyi +1 -1
  210. streamlit/proto/VegaLiteChart_pb2.pyi +1 -1
  211. streamlit/proto/Video_pb2.pyi +1 -1
  212. streamlit/proto/WidgetStates_pb2.pyi +1 -1
  213. streamlit/proto/__init__.py +1 -1
  214. streamlit/runtime/__init__.py +1 -1
  215. streamlit/runtime/app_session.py +6 -2
  216. streamlit/runtime/caching/__init__.py +1 -1
  217. streamlit/runtime/caching/cache_data_api.py +1 -1
  218. streamlit/runtime/caching/cache_errors.py +1 -1
  219. streamlit/runtime/caching/cache_resource_api.py +1 -1
  220. streamlit/runtime/caching/cache_type.py +1 -1
  221. streamlit/runtime/caching/cache_utils.py +1 -1
  222. streamlit/runtime/caching/cached_message_replay.py +1 -1
  223. streamlit/runtime/caching/hashing.py +1 -1
  224. streamlit/runtime/caching/legacy_cache_api.py +1 -1
  225. streamlit/runtime/caching/storage/__init__.py +1 -1
  226. streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
  227. streamlit/runtime/caching/storage/dummy_cache_storage.py +1 -1
  228. streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +1 -1
  229. streamlit/runtime/caching/storage/local_disk_cache_storage.py +1 -1
  230. streamlit/runtime/connection_factory.py +1 -1
  231. streamlit/runtime/context.py +1 -1
  232. streamlit/runtime/credentials.py +1 -1
  233. streamlit/runtime/forward_msg_cache.py +1 -1
  234. streamlit/runtime/forward_msg_queue.py +1 -1
  235. streamlit/runtime/fragment.py +1 -1
  236. streamlit/runtime/media_file_manager.py +1 -1
  237. streamlit/runtime/media_file_storage.py +1 -1
  238. streamlit/runtime/memory_media_file_storage.py +1 -1
  239. streamlit/runtime/memory_session_storage.py +1 -1
  240. streamlit/runtime/memory_uploaded_file_manager.py +1 -1
  241. streamlit/runtime/metrics_util.py +2 -1
  242. streamlit/runtime/pages_manager.py +1 -1
  243. streamlit/runtime/runtime.py +14 -3
  244. streamlit/runtime/runtime_util.py +1 -1
  245. streamlit/runtime/script_data.py +1 -1
  246. streamlit/runtime/scriptrunner/__init__.py +1 -1
  247. streamlit/runtime/scriptrunner/exec_code.py +1 -1
  248. streamlit/runtime/scriptrunner/magic.py +1 -1
  249. streamlit/runtime/scriptrunner/magic_funcs.py +1 -1
  250. streamlit/runtime/scriptrunner/script_cache.py +1 -1
  251. streamlit/runtime/scriptrunner/script_runner.py +18 -9
  252. streamlit/runtime/scriptrunner_utils/__init__.py +1 -1
  253. streamlit/runtime/scriptrunner_utils/exceptions.py +1 -1
  254. streamlit/runtime/scriptrunner_utils/script_requests.py +1 -1
  255. streamlit/runtime/scriptrunner_utils/script_run_context.py +2 -2
  256. streamlit/runtime/secrets.py +1 -1
  257. streamlit/runtime/session_manager.py +2 -2
  258. streamlit/runtime/state/__init__.py +1 -1
  259. streamlit/runtime/state/common.py +1 -1
  260. streamlit/runtime/state/query_params.py +1 -1
  261. streamlit/runtime/state/query_params_proxy.py +1 -1
  262. streamlit/runtime/state/safe_session_state.py +1 -1
  263. streamlit/runtime/state/session_state.py +1 -1
  264. streamlit/runtime/state/session_state_proxy.py +1 -1
  265. streamlit/runtime/state/widgets.py +1 -1
  266. streamlit/runtime/stats.py +1 -1
  267. streamlit/runtime/uploaded_file_manager.py +1 -1
  268. streamlit/runtime/websocket_session_manager.py +2 -2
  269. streamlit/source_util.py +1 -1
  270. streamlit/static/index.html +2 -2
  271. streamlit/static/static/js/{FileDownload.esm.BfiuyXfu.js → FileDownload.esm.CXWFIN7B.js} +1 -1
  272. streamlit/static/static/js/{FormClearHelper.BIe6FN2Y.js → FormClearHelper.dauERNYc.js} +1 -1
  273. streamlit/static/static/js/{Hooks.CHslqKt4.js → Hooks.CqBCxxzg.js} +1 -1
  274. streamlit/static/static/js/{InputInstructions.BMT8dg5S.js → InputInstructions.Dm8zppD9.js} +1 -1
  275. streamlit/static/static/js/ProgressBar.CQTs8xxT.js +2 -0
  276. streamlit/static/static/js/RenderInPortalIfExists.BIVWPcSk.js +1 -0
  277. streamlit/static/static/js/Toolbar.D_9Mp69H.js +1 -0
  278. streamlit/static/static/js/{base-input.B1a61Ojd.js → base-input.JrivAGt5.js} +4 -4
  279. streamlit/static/static/js/{createSuper.DuLZrute.js → createSuper.BLkfEjg8.js} +1 -1
  280. streamlit/static/static/js/data-grid-overlay-editor.4d_NBoKr.js +1 -0
  281. streamlit/static/static/js/{downloader.BVrmPJui.js → downloader.i394ggfM.js} +1 -1
  282. streamlit/static/static/js/{es6.44cVHEXS.js → es6.BPf5kpFH.js} +2 -2
  283. streamlit/static/static/js/getPrototypeOf.DcAVjrh9.js +1 -0
  284. streamlit/static/static/js/{iframeResizer.contentWindow.Bd3a4rtP.js → iframeResizer.contentWindow.YDN8GVx9.js} +1 -1
  285. streamlit/static/static/js/index.57g5CAPC.js +1 -0
  286. streamlit/static/static/js/{index.C9YRT0fo.js → index.B3dyGG7q.js} +3 -3
  287. streamlit/static/static/js/index.B6GM885g.js +1 -0
  288. streamlit/static/static/js/{index.Q2CKSyfz.js → index.BB2p9KgS.js} +1 -1
  289. streamlit/static/static/js/index.BOBIcAmK.js +1 -0
  290. streamlit/static/static/js/index.B_o9A-oO.js +1 -0
  291. streamlit/static/static/js/index.BfABFd7-.js +3 -0
  292. streamlit/static/static/js/{index.D_cUCQty.js → index.BidgRpd5.js} +1 -1
  293. streamlit/static/static/js/index.Bj7LBigw.js +197 -0
  294. streamlit/static/static/js/{index.CIMJL36S.js → index.C-TBipT2.js} +2 -2
  295. streamlit/static/static/js/{index.0AR3jk4J.js → index.C4muCvfN.js} +1 -1
  296. streamlit/static/static/js/{index.CmHLY_aM.js → index.CAZAG6f3.js} +2 -2
  297. streamlit/static/static/js/index.CJlBME-_.js +1 -0
  298. streamlit/static/static/js/{index.6ZeP-L28.js → index.CMAjN-j5.js} +2 -2
  299. streamlit/static/static/js/index.CSmBE6cg.js +1 -0
  300. streamlit/static/static/js/index.CgkfCbvP.js +1 -0
  301. streamlit/static/static/js/index.D1CJOG3s.js +1 -0
  302. streamlit/static/static/js/index.D1qR2sOA.js +1 -0
  303. streamlit/static/static/js/index.D7EG5vd0.js +2 -0
  304. streamlit/static/static/js/index.DE-FOSSU.js +1 -0
  305. streamlit/static/static/js/{index.lvhOjMEi.js → index.DWU1GWqY.js} +1 -1
  306. streamlit/static/static/js/{index.BRjwQabs.js → index.D_bHPQ8s.js} +1 -1
  307. streamlit/static/static/js/{index.CkxcnfCr.js → index.DalTq5GL.js} +1 -1
  308. streamlit/static/static/js/index.Df7nX4KF.js +1 -0
  309. streamlit/static/static/js/index.DgOwxLz5.js +4 -0
  310. streamlit/static/static/js/{index.BfjxH33Q.js → index.DmHQeMtj.js} +1 -1
  311. streamlit/static/static/js/index.DsKBnIk-.js +201 -0
  312. streamlit/static/static/js/{index.3p3iyxFl.js → index.DxsOgtLc.js} +11 -11
  313. streamlit/static/static/js/index.DyNkf5tM.js +1 -0
  314. streamlit/static/static/js/{index.C-fIpagH.js → index.Dz6VQ3qN.js} +2 -2
  315. streamlit/static/static/js/{index.vp4vsBFK.js → index.HktO7F0v.js} +112 -112
  316. streamlit/static/static/js/{index.CzhhqwJO.js → index.PriAkdhw.js} +1 -1
  317. streamlit/static/static/js/{index.PqkLl1t0.js → index.SKaK1lYU.js} +2 -2
  318. streamlit/static/static/js/index.V5OLP0n7.js +1 -0
  319. streamlit/static/static/js/index.YfuWGKrN.js +1 -0
  320. streamlit/static/static/js/index.g_BxiUns.js +1 -0
  321. streamlit/static/static/js/{index.3qE-vjOX.js → index.kc3Ycvjj.js} +34 -34
  322. streamlit/static/static/js/{input.mrdmFJfU.js → input.CqdNsSbL.js} +2 -2
  323. streamlit/static/static/js/{memory.BjfNr0ig.js → memory.Bkvk-eRa.js} +1 -1
  324. streamlit/static/static/js/mergeWith.DtsbyD6H.js +1 -0
  325. streamlit/static/static/js/number-overlay-editor.CR4D4kK1.js +9 -0
  326. streamlit/static/static/js/{sandbox.oLnJKv78.js → sandbox.C5M8yw5Z.js} +1 -1
  327. streamlit/static/static/js/{slicedToArray.BzQ82qu6.js → slicedToArray.BL5-s74J.js} +1 -1
  328. streamlit/static/static/js/{textarea.Da3YV5aR.js → textarea.DrGlWUDC.js} +2 -2
  329. streamlit/static/static/js/threshold.B8r8f5kt.js +1 -0
  330. streamlit/static/static/js/{timepicker.BAT5exrW.js → timepicker.Bdf2lGHx.js} +1 -1
  331. streamlit/static/static/js/timer.RueuYoQV.js +1 -0
  332. streamlit/static/static/js/{uniqueId.C8z92sBf.js → uniqueId.LGvQ35eR.js} +1 -1
  333. streamlit/static/static/js/{useBasicWidgetState.CH5oDGQl.js → useBasicWidgetState.TTzKcGCs.js} +1 -1
  334. streamlit/static/static/js/{useOnInputChange.Bo325HzD.js → useOnInputChange.ChvkrwHU.js} +1 -1
  335. streamlit/static/static/js/value.iufjd77T.js +1 -0
  336. streamlit/static/static/js/withFullScreenWrapper.ChQqb1TZ.js +1 -0
  337. streamlit/string_util.py +1 -1
  338. streamlit/temporary_directory.py +1 -1
  339. streamlit/testing/__init__.py +1 -1
  340. streamlit/testing/v1/__init__.py +1 -1
  341. streamlit/testing/v1/app_test.py +1 -1
  342. streamlit/testing/v1/element_tree.py +1 -1
  343. streamlit/testing/v1/local_script_runner.py +1 -1
  344. streamlit/testing/v1/util.py +1 -1
  345. streamlit/time_util.py +1 -1
  346. streamlit/type_util.py +2 -2
  347. streamlit/url_util.py +24 -1
  348. streamlit/user_info.py +94 -27
  349. streamlit/util.py +1 -1
  350. streamlit/version.py +1 -1
  351. streamlit/watcher/__init__.py +1 -1
  352. streamlit/watcher/event_based_path_watcher.py +1 -1
  353. streamlit/watcher/folder_black_list.py +1 -1
  354. streamlit/watcher/local_sources_watcher.py +1 -1
  355. streamlit/watcher/path_watcher.py +1 -1
  356. streamlit/watcher/polling_path_watcher.py +1 -1
  357. streamlit/watcher/util.py +1 -1
  358. streamlit/web/__init__.py +1 -1
  359. streamlit/web/bootstrap.py +1 -1
  360. streamlit/web/cache_storage_manager_config.py +1 -1
  361. streamlit/web/cli.py +1 -1
  362. streamlit/web/server/__init__.py +1 -1
  363. streamlit/web/server/app_static_file_handler.py +1 -1
  364. streamlit/web/server/authlib_tornado_integration.py +58 -0
  365. streamlit/web/server/browser_websocket_handler.py +72 -6
  366. streamlit/web/server/component_request_handler.py +1 -1
  367. streamlit/web/server/media_file_handler.py +1 -1
  368. streamlit/web/server/oauth_authlib_routes.py +176 -0
  369. streamlit/web/server/oidc_mixin.py +108 -0
  370. streamlit/web/server/routes.py +6 -4
  371. streamlit/web/server/server.py +41 -4
  372. streamlit/web/server/server_util.py +25 -1
  373. streamlit/web/server/stats_request_handler.py +1 -1
  374. streamlit/web/server/upload_file_request_handler.py +3 -2
  375. streamlit/web/server/websocket_headers.py +1 -1
  376. {streamlit_nightly-1.41.2.dev20250106.data → streamlit_nightly-1.41.2.dev20250108.data}/scripts/streamlit.cmd +1 -1
  377. {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/METADATA +14 -2
  378. streamlit_nightly-1.41.2.dev20250108.dist-info/RECORD +562 -0
  379. {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/WHEEL +1 -1
  380. streamlit/static/static/js/ProgressBar.VmrIzSqo.js +0 -2
  381. streamlit/static/static/js/RenderInPortalIfExists.B2NAzO0r.js +0 -1
  382. streamlit/static/static/js/Toolbar.DbmFapWn.js +0 -1
  383. streamlit/static/static/js/_commonjs-dynamic-modules.TDtrdbi3.js +0 -1
  384. streamlit/static/static/js/data-grid-overlay-editor.BkcxIt6O.js +0 -1
  385. streamlit/static/static/js/getPrototypeOf.bvOEi7fo.js +0 -1
  386. streamlit/static/static/js/index.1fq50cer.js +0 -4
  387. streamlit/static/static/js/index.75EUE6su.js +0 -1
  388. streamlit/static/static/js/index.8Bq56lcM.js +0 -1
  389. streamlit/static/static/js/index.BF04V0db.js +0 -1
  390. streamlit/static/static/js/index.BSgVnwxN.js +0 -1
  391. streamlit/static/static/js/index.B_nF-WE5.js +0 -1
  392. streamlit/static/static/js/index.BdfmpndH.js +0 -1
  393. streamlit/static/static/js/index.C3rcPpxm.js +0 -2
  394. streamlit/static/static/js/index.CgSymxeL.js +0 -201
  395. streamlit/static/static/js/index.D277ro6Y.js +0 -1
  396. streamlit/static/static/js/index.D6WGxtqm.js +0 -1
  397. streamlit/static/static/js/index.DaJKYvsa.js +0 -197
  398. streamlit/static/static/js/index.GNEDK2sZ.js +0 -1
  399. streamlit/static/static/js/index.KOla1gMY.js +0 -1
  400. streamlit/static/static/js/index.KmZ5vhVN.js +0 -32
  401. streamlit/static/static/js/index.KnCHOP8N.js +0 -1
  402. streamlit/static/static/js/index.SOQTU-r_.js +0 -1
  403. streamlit/static/static/js/index.WrhWPW-4.js +0 -1
  404. streamlit/static/static/js/index.dgKFPPrX.js +0 -1
  405. streamlit/static/static/js/index.drbticTq.js +0 -1
  406. streamlit/static/static/js/number-overlay-editor.WosTCRC_.js +0 -9
  407. streamlit/static/static/js/string.Bl9OLDCw.js +0 -1
  408. streamlit/static/static/js/threshold.skajmqVB.js +0 -1
  409. streamlit/static/static/js/timer.DwZfkapc.js +0 -1
  410. streamlit/static/static/js/withFullScreenWrapper.C7zDWu4g.js +0 -1
  411. streamlit_nightly-1.41.2.dev20250106.dist-info/RECORD +0 -556
  412. {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/entry_points.txt +0 -0
  413. {streamlit_nightly-1.41.2.dev20250106.dist-info → streamlit_nightly-1.41.2.dev20250108.dist-info}/top_level.txt +0 -0
@@ -1,2 +1,2 @@
1
- import{b4 as v,r as l,bL as q,bN as p,bP as S}from"./index.3qE-vjOX.js";import{R as C,c as w,d as J,B as M}from"./base-input.B1a61Ojd.js";function _(e){"@babel/helpers - typeof";return _=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_(e)}var U=["Root","StartEnhancer","EndEnhancer"],Z=["startEnhancer","endEnhancer","overrides"];function f(){return f=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},f.apply(this,arguments)}function O(e,t){return V(e)||Q(e,t)||K(e,t)||G()}function G(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function K(e,t){if(e){if(typeof e=="string")return j(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return j(e,t)}}function j(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Q(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],o=!0,a=!1,i,u;try{for(r=r.call(e);!(o=(i=r.next()).done)&&(n.push(i.value),!(t&&n.length===t));o=!0);}catch(b){a=!0,u=b}finally{try{!o&&r.return!=null&&r.return()}finally{if(a)throw u}}return n}}function V(e){if(Array.isArray(e))return e}function I(e,t){if(e==null)return{};var r=X(e,t),n,o;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)n=a[o],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function X(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,a;for(a=0;a<n.length;a++)o=n[a],!(t.indexOf(o)>=0)&&(r[o]=e[o]);return r}function Y(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ee(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function te(e,t,r){return t&&ee(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function re(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&m(e,t)}function m(e,t){return m=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(n,o){return n.__proto__=o,n},m(e,t)}function ne(e){var t=ae();return function(){var n=h(e),o;if(t){var a=h(this).constructor;o=Reflect.construct(n,arguments,a)}else o=n.apply(this,arguments);return oe(this,o)}}function oe(e,t){if(t&&(_(t)==="object"||typeof t=="function"))return t;if(t!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return y(e)}function y(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ae(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},h(e)}function d(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var ie=function(e){re(r,e);var t=ne(r);function r(){var n;Y(this,r);for(var o=arguments.length,a=new Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=t.call.apply(t,[this].concat(a)),d(y(n),"state",{isFocused:n.props.autoFocus||!1}),d(y(n),"onFocus",function(u){n.setState({isFocused:!0}),n.props.onFocus(u)}),d(y(n),"onBlur",function(u){n.setState({isFocused:!1}),n.props.onBlur(u)}),n}return te(r,[{key:"render",value:function(){var o=this.props,a=o.startEnhancer,i=o.endEnhancer,u=o.overrides,b=u.Root,A=u.StartEnhancer,B=u.EndEnhancer,F=I(u,U),T=I(o,Z),x=v(b,C),g=O(x,2),$=g[0],N=g[1],D=v(A,w),E=O(D,2),L=E[0],W=E[1],z=v(B,w),P=O(z,2),H=P[0],k=P[1],c=J(this.props,this.state);return l.createElement($,f({"data-baseweb":"input"},c,N,{$adjoined:R(a,i),$hasIconTrailing:this.props.clearable||this.props.type=="password"}),s(a)&&l.createElement(L,f({},c,W,{$position:S.start}),typeof a=="function"?a(c):a),l.createElement(M,f({},T,{overrides:F,adjoined:R(a,i),onFocus:this.onFocus,onBlur:this.onBlur})),s(i)&&l.createElement(H,f({},c,k,{$position:S.end}),typeof i=="function"?i(c):i))}}]),r}(l.Component);d(ie,"defaultProps",{autoComplete:"on",autoFocus:!1,disabled:!1,name:"",onBlur:function(){},onFocus:function(){},overrides:{},required:!1,size:q.default,startEnhancer:null,endEnhancer:null,clearable:!1,type:"text",readOnly:!1});function R(e,t){return s(e)&&s(t)?p.both:s(e)?p.left:s(t)?p.right:p.none}function s(e){return!!(e||e===0)}export{ie as I};
1
+ import{bh as v,r as l,bY as q,b_ as p,c0 as S}from"./index.kc3Ycvjj.js";import{R as C,c as w,d as J,B as M}from"./base-input.JrivAGt5.js";function _(e){"@babel/helpers - typeof";return _=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_(e)}var U=["Root","StartEnhancer","EndEnhancer"],Y=["startEnhancer","endEnhancer","overrides"];function f(){return f=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},f.apply(this,arguments)}function O(e,t){return Q(e)||K(e,t)||G(e,t)||Z()}function Z(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function G(e,t){if(e){if(typeof e=="string")return j(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return j(e,t)}}function j(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function K(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],o=!0,a=!1,i,u;try{for(r=r.call(e);!(o=(i=r.next()).done)&&(n.push(i.value),!(t&&n.length===t));o=!0);}catch(b){a=!0,u=b}finally{try{!o&&r.return!=null&&r.return()}finally{if(a)throw u}}return n}}function Q(e){if(Array.isArray(e))return e}function I(e,t){if(e==null)return{};var r=V(e,t),n,o;if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)n=a[o],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function V(e,t){if(e==null)return{};var r={},n=Object.keys(e),o,a;for(a=0;a<n.length;a++)o=n[a],!(t.indexOf(o)>=0)&&(r[o]=e[o]);return r}function X(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ee(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function te(e,t,r){return t&&ee(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function re(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&m(e,t)}function m(e,t){return m=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(n,o){return n.__proto__=o,n},m(e,t)}function ne(e){var t=ae();return function(){var n=h(e),o;if(t){var a=h(this).constructor;o=Reflect.construct(n,arguments,a)}else o=n.apply(this,arguments);return oe(this,o)}}function oe(e,t){if(t&&(_(t)==="object"||typeof t=="function"))return t;if(t!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return y(e)}function y(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function ae(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},h(e)}function d(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var ie=function(e){re(r,e);var t=ne(r);function r(){var n;X(this,r);for(var o=arguments.length,a=new Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=t.call.apply(t,[this].concat(a)),d(y(n),"state",{isFocused:n.props.autoFocus||!1}),d(y(n),"onFocus",function(u){n.setState({isFocused:!0}),n.props.onFocus(u)}),d(y(n),"onBlur",function(u){n.setState({isFocused:!1}),n.props.onBlur(u)}),n}return te(r,[{key:"render",value:function(){var o=this.props,a=o.startEnhancer,i=o.endEnhancer,u=o.overrides,b=u.Root,A=u.StartEnhancer,B=u.EndEnhancer,F=I(u,U),T=I(o,Y),x=v(b,C),g=O(x,2),$=g[0],N=g[1],D=v(A,w),E=O(D,2),W=E[0],z=E[1],H=v(B,w),P=O(H,2),L=P[0],k=P[1],c=J(this.props,this.state);return l.createElement($,f({"data-baseweb":"input"},c,N,{$adjoined:R(a,i),$hasIconTrailing:this.props.clearable||this.props.type=="password"}),s(a)&&l.createElement(W,f({},c,z,{$position:S.start}),typeof a=="function"?a(c):a),l.createElement(M,f({},T,{overrides:F,adjoined:R(a,i),onFocus:this.onFocus,onBlur:this.onBlur})),s(i)&&l.createElement(L,f({},c,k,{$position:S.end}),typeof i=="function"?i(c):i))}}]),r}(l.Component);d(ie,"defaultProps",{autoComplete:"on",autoFocus:!1,disabled:!1,name:"",onBlur:function(){},onFocus:function(){},overrides:{},required:!1,size:q.default,startEnhancer:null,endEnhancer:null,clearable:!1,type:"text",readOnly:!1});function R(e,t){return s(e)&&s(t)?p.both:s(e)?p.left:s(t)?p.right:p.none}function s(e){return!!(e||e===0)}export{ie as I};
@@ -1 +1 @@
1
- import{c as p,e as c}from"./es6.44cVHEXS.js";import"./index.3qE-vjOX.js";const{File:n,Blob:_,DOMException:s}=p,{INVALID:z,GONE:r,MISMATCH:w,MOD_ERR:b,SYNTAX:a,SECURITY:I,DISALLOWED:m}=c;class g{constructor(e,i){this.fileHandle=e,this.file=i,this.size=i.size,this.position=0}write(e){let i=this.file;if(typeof e=="object"){if(e.type==="write"){if(Number.isInteger(e.position)&&e.position>=0&&(this.position=e.position,this.size<e.position&&(this.file=new n([this.file,new ArrayBuffer(e.position-this.size)],this.file.name,this.file))),!("data"in e))throw new s(...a("write requires a data argument"));e=e.data}else if(e.type==="seek")if(Number.isInteger(e.position)&&e.position>=0){if(this.size<e.position)throw new s(...z);this.position=e.position;return}else throw new s(...a("seek requires a position argument"));else if(e.type==="truncate")if(Number.isInteger(e.size)&&e.size>=0){i=e.size<this.size?new n([i.slice(0,e.size)],i.name,i):new n([i,new Uint8Array(e.size-this.size)],i.name),this.size=i.size,this.position>i.size&&(this.position=i.size),this.file=i;return}else throw new s(...a("truncate requires a size argument"))}e=new _([e]);let t=this.file;const o=t.slice(0,this.position),y=t.slice(this.position+e.size);let l=this.position-o.size;l<0&&(l=0),t=new n([o,new Uint8Array(l),e,y],t.name),this.size=t.size,this.position+=e.size,this.file=t}close(){if(this.fileHandle._deleted)throw new s(...r);this.fileHandle._file=this.file,this.file=this.position=this.size=null,this.fileHandle.onclose&&this.fileHandle.onclose(this.fileHandle)}}class f{constructor(e="",i=new n([],e),t=!0){this._file=i,this.name=e,this.kind="file",this._deleted=!1,this.writable=t,this.readable=!0}async getFile(){if(this._deleted)throw new s(...r);return this._file}async createWritable(e){if(!this.writable)throw new s(...m);if(this._deleted)throw new s(...r);const i=e.keepExistingData?await this.getFile():new n([],this.name);return new g(this,i)}async isSameEntry(e){return this===e}async _destroy(){this._deleted=!0,this._file=null}}class h{constructor(e,i=!0){this.name=e,this.kind="directory",this._deleted=!1,this._entries={},this.writable=i,this.readable=!0}async*entries(){if(this._deleted)throw new s(...r);yield*Object.entries(this._entries)}async isSameEntry(e){return this===e}async getDirectoryHandle(e,i){if(this._deleted)throw new s(...r);const t=this._entries[e];if(t){if(t instanceof f)throw new s(...w);return t}else{if(i.create)return this._entries[e]=new h(e);throw new s(...r)}}async getFileHandle(e,i){const t=this._entries[e],o=t instanceof f;if(t&&o)return t;if(t&&!o)throw new s(...w);if(!t&&!i.create)throw new s(...r);if(!t&&i.create)return this._entries[e]=new f(e)}async removeEntry(e,i){const t=this._entries[e];if(!t)throw new s(...r);await t._destroy(i.recursive),delete this._entries[e]}async _destroy(e){for(let i of Object.values(this._entries)){if(!e)throw new s(...b);await i._destroy(e)}this._entries={},this._deleted=!0}}const u=new h(""),A=()=>u;export{f as FileHandle,h as FolderHandle,g as Sink,A as default};
1
+ import{c as p,e as c}from"./es6.BPf5kpFH.js";import"./index.kc3Ycvjj.js";const{File:n,Blob:_,DOMException:s}=p,{INVALID:z,GONE:r,MISMATCH:w,MOD_ERR:b,SYNTAX:a,SECURITY:I,DISALLOWED:m}=c;class g{constructor(e,i){this.fileHandle=e,this.file=i,this.size=i.size,this.position=0}write(e){let i=this.file;if(typeof e=="object"){if(e.type==="write"){if(Number.isInteger(e.position)&&e.position>=0&&(this.position=e.position,this.size<e.position&&(this.file=new n([this.file,new ArrayBuffer(e.position-this.size)],this.file.name,this.file))),!("data"in e))throw new s(...a("write requires a data argument"));e=e.data}else if(e.type==="seek")if(Number.isInteger(e.position)&&e.position>=0){if(this.size<e.position)throw new s(...z);this.position=e.position;return}else throw new s(...a("seek requires a position argument"));else if(e.type==="truncate")if(Number.isInteger(e.size)&&e.size>=0){i=e.size<this.size?new n([i.slice(0,e.size)],i.name,i):new n([i,new Uint8Array(e.size-this.size)],i.name),this.size=i.size,this.position>i.size&&(this.position=i.size),this.file=i;return}else throw new s(...a("truncate requires a size argument"))}e=new _([e]);let t=this.file;const o=t.slice(0,this.position),y=t.slice(this.position+e.size);let l=this.position-o.size;l<0&&(l=0),t=new n([o,new Uint8Array(l),e,y],t.name),this.size=t.size,this.position+=e.size,this.file=t}close(){if(this.fileHandle._deleted)throw new s(...r);this.fileHandle._file=this.file,this.file=this.position=this.size=null,this.fileHandle.onclose&&this.fileHandle.onclose(this.fileHandle)}}class f{constructor(e="",i=new n([],e),t=!0){this._file=i,this.name=e,this.kind="file",this._deleted=!1,this.writable=t,this.readable=!0}async getFile(){if(this._deleted)throw new s(...r);return this._file}async createWritable(e){if(!this.writable)throw new s(...m);if(this._deleted)throw new s(...r);const i=e.keepExistingData?await this.getFile():new n([],this.name);return new g(this,i)}async isSameEntry(e){return this===e}async _destroy(){this._deleted=!0,this._file=null}}class h{constructor(e,i=!0){this.name=e,this.kind="directory",this._deleted=!1,this._entries={},this.writable=i,this.readable=!0}async*entries(){if(this._deleted)throw new s(...r);yield*Object.entries(this._entries)}async isSameEntry(e){return this===e}async getDirectoryHandle(e,i){if(this._deleted)throw new s(...r);const t=this._entries[e];if(t){if(t instanceof f)throw new s(...w);return t}else{if(i.create)return this._entries[e]=new h(e);throw new s(...r)}}async getFileHandle(e,i){const t=this._entries[e],o=t instanceof f;if(t&&o)return t;if(t&&!o)throw new s(...w);if(!t&&!i.create)throw new s(...r);if(!t&&i.create)return this._entries[e]=new f(e)}async removeEntry(e,i){const t=this._entries[e];if(!t)throw new s(...r);await t._destroy(i.recursive),delete this._entries[e]}async _destroy(e){for(let i of Object.values(this._entries)){if(!e)throw new s(...b);await i._destroy(e)}this._entries={},this._deleted=!0}}const u=new h(""),A=()=>u;export{f as FileHandle,h as FolderHandle,g as Sink,A as default};
@@ -0,0 +1 @@
1
+ import{ax as t,ay as g,g as i}from"./index.kc3Ycvjj.js";var m=t,o=g,n=o(function(e,r,a,s){m(e,r,a,s)}),c=n;const h=i(c);export{h as m};
@@ -0,0 +1,9 @@
1
+ import{R as X,r as T}from"./index.kc3Ycvjj.js";import{s as Te}from"./index.Bj7LBigw.js";import"./FormClearHelper.dauERNYc.js";import"./withFullScreenWrapper.ChQqb1TZ.js";import"./Toolbar.D_9Mp69H.js";import"./mergeWith.DtsbyD6H.js";import"./sprintf.C-r3gIuM.js";import"./createDownloadLinkElement.DZMwyjvU.js";import"./slicedToArray.BL5-s74J.js";import"./getPrototypeOf.DcAVjrh9.js";import"./createSuper.BLkfEjg8.js";import"./FileDownload.esm.CXWFIN7B.js";const Be=Te("div")({name:"NumberOverlayEditorStyle",class:"gdg-n15fjm3e",propsAsIs:!1});function Se(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]]);return r}var re;(function(e){e.event="event",e.props="prop"})(re||(re={}));function q(){}function Fe(e){var t,r=void 0;return function(){for(var n=[],a=arguments.length;a--;)n[a]=arguments[a];return t&&n.length===t.length&&n.every(function(i,l){return i===t[l]})||(t=n,r=e.apply(void 0,n)),r}}function ae(e){return!!(e||"").match(/\d/)}function Y(e){return e==null}function _e(e){return typeof e=="number"&&isNaN(e)}function pe(e){return Y(e)||_e(e)||typeof e=="number"&&!isFinite(e)}function xe(e){return e.replace(/[-[\]/{}()*+?.\\^$|]/g,"\\$&")}function je(e){switch(e){case"lakh":return/(\d+?)(?=(\d\d)+(\d)(?!\d))(\.\d+)?/g;case"wan":return/(\d)(?=(\d{4})+(?!\d))/g;case"thousand":default:return/(\d)(?=(\d{3})+(?!\d))/g}}function Le(e,t,r){var n=je(r),a=e.search(/[1-9]/);return a=a===-1?e.length:a,e.substring(0,a)+e.substring(a,e.length).replace(n,"$1"+t)}function Me(e){var t=T.useRef(e);t.current=e;var r=T.useRef(function(){for(var n=[],a=arguments.length;a--;)n[a]=arguments[a];return t.current.apply(t,n)});return r.current}function se(e,t){t===void 0&&(t=!0);var r=e[0]==="-",n=r&&t;e=e.replace("-","");var a=e.split("."),i=a[0],l=a[1]||"";return{beforeDecimal:i,afterDecimal:l,hasNegation:r,addNegation:n}}function ke(e){if(!e)return e;var t=e[0]==="-";t&&(e=e.substring(1,e.length));var r=e.split("."),n=r[0].replace(/^0+/,"")||"0",a=r[1]||"";return(t?"-":"")+n+(a?"."+a:"")}function ye(e,t,r){for(var n="",a=r?"0":"",i=0;i<=t-1;i++)n+=e[i]||a;return n}function de(e,t){return Array(t+1).join(e)}function be(e){var t=e+"",r=t[0]==="-"?"-":"";r&&(t=t.substring(1));var n=t.split(/[eE]/g),a=n[0],i=n[1];if(i=Number(i),!i)return r+a;a=a.replace(".","");var l=1+i,h=a.length;return l<0?a="0."+de("0",Math.abs(l))+a:l>=h?a=a+de("0",l-h):a=(a.substring(0,l)||"0")+"."+a.substring(l),r+a}function ge(e,t,r){if(["","-"].indexOf(e)!==-1)return e;var n=(e.indexOf(".")!==-1||r)&&t,a=se(e),i=a.beforeDecimal,l=a.afterDecimal,h=a.hasNegation,p=parseFloat("0."+(l||"0")),x=l.length<=t?"0."+l:p.toFixed(t),S=x.split("."),c=i;i&&Number(S[0])&&(c=i.split("").reverse().reduce(function(I,C,g){return I.length>g?(Number(I[0])+Number(C)).toString()+I.substring(1,I.length):C+I},S[0]));var m=ye(S[1]||"",t,r),y=h?"-":"",s=n?".":"";return""+y+c+s+m}function H(e,t){if(e.value=e.value,e!==null){if(e.createTextRange){var r=e.createTextRange();return r.move("character",t),r.select(),!0}return e.selectionStart||e.selectionStart===0?(e.focus(),e.setSelectionRange(t,t),!0):(e.focus(),!1)}}var Ve=Fe(function(e,t){for(var r=0,n=0,a=e.length,i=t.length;e[r]===t[r]&&r<a;)r++;for(;e[a-1-n]===t[i-1-n]&&i-n>r&&a-n>r;)n++;return{from:{start:r,end:a-n},to:{start:r,end:i-n}}}),Pe=function(e,t){var r=Math.min(e.selectionStart,t);return{from:{start:r,end:e.selectionEnd},to:{start:r,end:t}}};function Ke(e,t,r){return Math.min(Math.max(e,t),r)}function ce(e){return Math.max(e.selectionStart,e.selectionEnd)}function We(){return typeof navigator<"u"&&!(navigator.platform&&/iPhone|iPod/.test(navigator.platform))}function Ue(e){return{from:{start:0,end:0},to:{start:0,end:e.length},lastValue:""}}function $e(e){var t=e.currentValue,r=e.formattedValue,n=e.currentValueIndex,a=e.formattedValueIndex;return t[n]===r[a]}function Ge(e,t,r,n,a,i,l){l===void 0&&(l=$e);var h=a.findIndex(function(k){return k}),p=e.slice(0,h);!t&&!r.startsWith(p)&&(t=p,r=p+r,n=n+p.length);for(var x=r.length,S=e.length,c={},m=new Array(x),y=0;y<x;y++){m[y]=-1;for(var s=0,I=S;s<I;s++){var C=l({currentValue:r,lastValue:t,formattedValue:e,currentValueIndex:y,formattedValueIndex:s});if(C&&c[s]!==!0){m[y]=s,c[s]=!0;break}}}for(var g=n;g<x&&(m[g]===-1||!i(r[g]));)g++;var B=g===x||m[g]===-1?S:m[g];for(g=n-1;g>0&&m[g]===-1;)g--;var F=g===-1||m[g]===-1?0:m[g]+1;return F>B?B:n-F<B-n?F:B}function me(e,t,r,n){var a=e.length;if(t=Ke(t,0,a),n==="left"){for(;t>=0&&!r[t];)t--;t===-1&&(t=r.indexOf(!0))}else{for(;t<=a&&!r[t];)t++;t>a&&(t=r.lastIndexOf(!0))}return t===-1&&(t=a),t}function Ze(e){for(var t=Array.from({length:e.length+1}).map(function(){return!0}),r=0,n=t.length;r<n;r++)t[r]=!!(ae(e[r])||ae(e[r-1]));return t}function Ne(e,t,r,n,a,i){i===void 0&&(i=q);var l=Me(function(s,I){var C,g;return pe(s)?(g="",C=""):typeof s=="number"||I?(g=typeof s=="number"?be(s):s,C=n(g)):(g=a(s,void 0),C=n(g)),{formattedValue:C,numAsString:g}}),h=T.useState(function(){return l(Y(e)?t:e,r)}),p=h[0],x=h[1],S=function(s,I){s.formattedValue!==p.formattedValue&&x({formattedValue:s.formattedValue,numAsString:s.value}),i(s,I)},c=e,m=r;Y(e)&&(c=p.numAsString,m=!0);var y=l(c,m);return T.useMemo(function(){x(y)},[y.formattedValue]),[p,S]}function qe(e){return e.replace(/[^0-9]/g,"")}function ze(e){return e}function He(e){var t=e.type;t===void 0&&(t="text");var r=e.displayType;r===void 0&&(r="input");var n=e.customInput,a=e.renderText,i=e.getInputRef,l=e.format;l===void 0&&(l=ze);var h=e.removeFormatting;h===void 0&&(h=qe);var p=e.defaultValue,x=e.valueIsNumericString,S=e.onValueChange,c=e.isAllowed,m=e.onChange;m===void 0&&(m=q);var y=e.onKeyDown;y===void 0&&(y=q);var s=e.onMouseUp;s===void 0&&(s=q);var I=e.onFocus;I===void 0&&(I=q);var C=e.onBlur;C===void 0&&(C=q);var g=e.value,B=e.getCaretBoundary;B===void 0&&(B=Ze);var F=e.isValidInputCharacter;F===void 0&&(F=ae);var k=e.isCharacterSame,j=Se(e,["type","displayType","customInput","renderText","getInputRef","format","removeFormatting","defaultValue","valueIsNumericString","onValueChange","isAllowed","onChange","onKeyDown","onMouseUp","onFocus","onBlur","value","getCaretBoundary","isValidInputCharacter","isCharacterSame"]),z=Ne(g,p,!!x,l,h,S),P=z[0],V=P.formattedValue,L=P.numAsString,W=z[1],M=T.useRef(),U=T.useRef({formattedValue:V,numAsString:L}),$=function(o,u){U.current={formattedValue:o.formattedValue,numAsString:o.value},W(o,u)},J=T.useState(!1),ee=J[0],d=J[1],f=T.useRef(null),N=T.useRef({setCaretTimeout:null,focusTimeout:null});T.useEffect(function(){return d(!0),function(){clearTimeout(N.current.setCaretTimeout),clearTimeout(N.current.focusTimeout)}},[]);var R=l,A=function(o,u){var v=parseFloat(u);return{formattedValue:o,value:u,floatValue:isNaN(v)?void 0:v}},E=function(o,u,v){o.selectionStart===0&&o.selectionEnd===o.value.length||(H(o,u),N.current.setCaretTimeout=setTimeout(function(){o.value===v&&o.selectionStart!==u&&H(o,u)},0))},O=function(o,u,v){return me(o,u,B(o),v)},Q=function(o,u,v){var w=B(u),_=Ge(u,V,o,v,w,F,k);return _=me(u,_,w),_},oe=function(o){var u=o.formattedValue;u===void 0&&(u="");var v=o.input,w=o.source,_=o.event,D=o.numAsString,b;if(v){var K=o.inputValue||v.value,G=ce(v);v.value=u,b=Q(K,u,G),b!==void 0&&E(v,b,u)}u!==V&&$(A(u,D),{event:_,source:w})};T.useEffect(function(){var o=U.current,u=o.formattedValue,v=o.numAsString;(V!==u||L!==v)&&$(A(V,L),{event:void 0,source:re.props})},[V,L]);var te=f.current?ce(f.current):void 0,ne=typeof window<"u"?T.useLayoutEffect:T.useEffect;ne(function(){var o=f.current;if(V!==U.current.formattedValue&&o){var u=Q(U.current.formattedValue,V,te);o.value=V,E(o,u,V)}},[V]);var ue=function(o,u,v){var w=u.target,_=M.current?Pe(M.current,w.selectionEnd):Ve(V,o),D=Object.assign(Object.assign({},_),{lastValue:V}),b=h(o,D),K=R(b);if(b=h(K,void 0),c&&!c(A(K,b))){var G=u.target,Z=ce(G),fe=Q(o,V,Z);return G.value=V,E(G,fe,V),!1}return oe({formattedValue:K,numAsString:b,inputValue:o,event:u,source:v,input:u.target}),!0},le=function(o,u){u===void 0&&(u=0);var v=o.selectionStart,w=o.selectionEnd;M.current={selectionStart:v,selectionEnd:w+u}},De=function(o){var u=o.target,v=u.value,w=ue(v,o,re.event);w&&m(o),M.current=void 0},Ie=function(o){var u=o.target,v=o.key,w=u.selectionStart,_=u.selectionEnd,D=u.value;D===void 0&&(D="");var b;v==="ArrowLeft"||v==="Backspace"?b=Math.max(w-1,0):v==="ArrowRight"?b=Math.min(w+1,D.length):v==="Delete"&&(b=w);var K=0;v==="Delete"&&w===_&&(K=1);var G=v==="ArrowLeft"||v==="ArrowRight";if(b===void 0||w!==_&&!G){y(o),le(u,K);return}var Z=b;if(G){var fe=v==="ArrowLeft"?"left":"right";Z=O(D,b,fe),Z!==b&&o.preventDefault()}else v==="Delete"&&!F(D[b])?Z=O(D,b,"right"):v==="Backspace"&&!F(D[b])&&(Z=O(D,b,"left"));Z!==b&&E(u,Z,D),y(o),le(u,K)},Ce=function(o){var u=o.target,v=function(){var w=u.selectionStart,_=u.selectionEnd,D=u.value;if(D===void 0&&(D=""),w===_){var b=O(D,w);b!==w&&E(u,b,D)}};v(),requestAnimationFrame(function(){v()}),s(o),le(u)},Ee=function(o){o.persist&&o.persist();var u=o.target,v=o.currentTarget;f.current=u,N.current.focusTimeout=setTimeout(function(){var w=u.selectionStart,_=u.selectionEnd,D=u.value;D===void 0&&(D="");var b=O(D,w);b!==w&&!(w===0&&_===D.length)&&E(u,b,D),I(Object.assign(Object.assign({},o),{currentTarget:v}))},0)},Re=function(o){f.current=null,clearTimeout(N.current.focusTimeout),clearTimeout(N.current.setCaretTimeout),C(o)},Ae=ee&&We()?"numeric":void 0,ve=Object.assign({inputMode:Ae},j,{type:t,value:V,onChange:De,onKeyDown:Ie,onMouseUp:Ce,onFocus:Ee,onBlur:Re});if(r==="text")return a?X.createElement(X.Fragment,null,a(V,j)||null):X.createElement("span",Object.assign({},j,{ref:i}),V);if(n){var Oe=n;return X.createElement(Oe,Object.assign({},ve,{ref:i}))}return X.createElement("input",Object.assign({},ve,{ref:i}))}function he(e,t){var r=t.decimalScale,n=t.fixedDecimalScale,a=t.prefix;a===void 0&&(a="");var i=t.suffix;i===void 0&&(i="");var l=t.allowNegative,h=t.thousandsGroupStyle;if(h===void 0&&(h="thousand"),e===""||e==="-")return e;var p=ie(t),x=p.thousandSeparator,S=p.decimalSeparator,c=r!==0&&e.indexOf(".")!==-1||r&&n,m=se(e,l),y=m.beforeDecimal,s=m.afterDecimal,I=m.addNegation;return r!==void 0&&(s=ye(s,r,!!n)),x&&(y=Le(y,x,h)),a&&(y=a+y),i&&(s=s+i),I&&(y="-"+y),e=y+(c&&S||"")+s,e}function ie(e){var t=e.decimalSeparator;t===void 0&&(t=".");var r=e.thousandSeparator,n=e.allowedDecimalSeparators;return r===!0&&(r=","),n||(n=[t,"."]),{decimalSeparator:t,thousandSeparator:r,allowedDecimalSeparators:n}}function Je(e,t){e===void 0&&(e="");var r=new RegExp("(-)"),n=new RegExp("(-)(.)*(-)"),a=r.test(e),i=n.test(e);return e=e.replace(/-/g,""),a&&!i&&t&&(e="-"+e),e}function Qe(e,t){return new RegExp("(^-)|[0-9]|"+xe(e),"g")}function Xe(e,t,r){return e===""?!0:!(t!=null&&t.match(/\d/))&&!(r!=null&&r.match(/\d/))&&typeof e=="string"&&!isNaN(Number(e))}function Ye(e,t,r){var n;t===void 0&&(t=Ue(e));var a=r.allowNegative,i=r.prefix;i===void 0&&(i="");var l=r.suffix;l===void 0&&(l="");var h=r.decimalScale,p=t.from,x=t.to,S=x.start,c=x.end,m=ie(r),y=m.allowedDecimalSeparators,s=m.decimalSeparator,I=e[c]===s;if(ae(e)&&(e===i||e===l)&&t.lastValue==="")return e;if(c-S===1&&y.indexOf(e[S])!==-1){var C=h===0?"":s;e=e.substring(0,S)+C+e.substring(S+1,e.length)}var g=function(f,N,R){var A=!1,E=!1;i.startsWith("-")?A=!1:f.startsWith("--")?(A=!1,E=!0):l.startsWith("-")&&f.length===l.length?A=!1:f[0]==="-"&&(A=!0);var O=A?1:0;return E&&(O=2),O&&(f=f.substring(O),N-=O,R-=O),{value:f,start:N,end:R,hasNegation:A}},B=g(e,S,c),F=B.hasNegation;n=B,e=n.value,S=n.start,c=n.end;var k=g(t.lastValue,p.start,p.end),j=k.start,z=k.end,P=k.value,V=e.substring(S,c);e.length&&P.length&&(j>P.length-l.length||z<i.length)&&!(V&&l.startsWith(V))&&(e=P);var L=0;e.startsWith(i)?L+=i.length:S<i.length&&(L=S),e=e.substring(L),c-=L;var W=e.length,M=e.length-l.length;e.endsWith(l)?W=M:(c>M||c>e.length-l.length)&&(W=c),e=e.substring(0,W),e=Je(F?"-"+e:e,a),e=(e.match(Qe(s))||[]).join("");var U=e.indexOf(s);e=e.replace(new RegExp(xe(s),"g"),function(f,N){return N===U?".":""});var $=se(e,a),J=$.beforeDecimal,ee=$.afterDecimal,d=$.addNegation;return x.end-x.start<p.end-p.start&&J===""&&I&&!parseFloat(ee)&&(e=d?"-":""),e}function et(e,t){var r=t.prefix;r===void 0&&(r="");var n=t.suffix;n===void 0&&(n="");var a=Array.from({length:e.length+1}).map(function(){return!0}),i=e[0]==="-";a.fill(!1,0,r.length+(i?1:0));var l=e.length;return a.fill(!1,l-n.length+1,l+1),a}function tt(e){var t=ie(e),r=t.thousandSeparator,n=t.decimalSeparator,a=e.prefix;a===void 0&&(a="");var i=e.allowNegative;if(i===void 0&&(i=!0),r===n)throw new Error(`
2
+ Decimal separator can't be same as thousand separator.
3
+ thousandSeparator: `+r+` (thousandSeparator = {true} is same as thousandSeparator = ",")
4
+ decimalSeparator: `+n+` (default value for decimalSeparator is .)
5
+ `);return a.startsWith("-")&&i&&(console.error(`
6
+ Prefix can't start with '-' when allowNegative is true.
7
+ prefix: `+a+`
8
+ allowNegative: `+i+`
9
+ `),i=!1),Object.assign(Object.assign({},e),{allowNegative:i})}function rt(e){e=tt(e),e.decimalSeparator,e.allowedDecimalSeparators,e.thousandsGroupStyle;var t=e.suffix,r=e.allowNegative,n=e.allowLeadingZeros,a=e.onKeyDown;a===void 0&&(a=q);var i=e.onBlur;i===void 0&&(i=q);var l=e.thousandSeparator,h=e.decimalScale,p=e.fixedDecimalScale,x=e.prefix;x===void 0&&(x="");var S=e.defaultValue,c=e.value,m=e.valueIsNumericString,y=e.onValueChange,s=Se(e,["decimalSeparator","allowedDecimalSeparators","thousandsGroupStyle","suffix","allowNegative","allowLeadingZeros","onKeyDown","onBlur","thousandSeparator","decimalScale","fixedDecimalScale","prefix","defaultValue","value","valueIsNumericString","onValueChange"]),I=ie(e),C=I.decimalSeparator,g=I.allowedDecimalSeparators,B=function(d){return he(d,e)},F=function(d,f){return Ye(d,f,e)},k=Y(c)?S:c,j=m??Xe(k,x,t);Y(c)?Y(S)||(j=j||typeof S=="number"):j=j||typeof c=="number";var z=function(d){return pe(d)?d:(typeof d=="number"&&(d=be(d)),j&&typeof h=="number"?ge(d,h,!!p):d)},P=Ne(z(c),z(S),!!j,B,F,y),V=P[0],L=V.numAsString,W=V.formattedValue,M=P[1],U=function(d){var f=d.target,N=d.key,R=f.selectionStart,A=f.selectionEnd,E=f.value;if(E===void 0&&(E=""),(N==="Backspace"||N==="Delete")&&A<x.length){d.preventDefault();return}if(R!==A){a(d);return}N==="Backspace"&&E[0]==="-"&&R===x.length+1&&r&&H(f,1),h&&p&&(N==="Backspace"&&E[R-1]===C?(H(f,R-1),d.preventDefault()):N==="Delete"&&E[R]===C&&d.preventDefault()),g!=null&&g.includes(N)&&E[R]===C&&H(f,R+1);var O=l===!0?",":l;N==="Backspace"&&E[R-1]===O&&H(f,R-1),N==="Delete"&&E[R]===O&&H(f,R+1),a(d)},$=function(d){var f=L;if(f.match(/\d/g)||(f=""),n||(f=ke(f)),p&&h&&(f=ge(f,h,p)),f!==L){var N=he(f,e);M({formattedValue:N,value:f,floatValue:parseFloat(f)},{event:d,source:re.event})}i(d)},J=function(d){return d===C?!0:ae(d)},ee=function(d){var f=d.currentValue,N=d.lastValue,R=d.formattedValue,A=d.currentValueIndex,E=d.formattedValueIndex,O=f[A],Q=R[E],oe=Ve(N,f),te=oe.to,ne=function(ue){return F(ue).indexOf(".")+x.length};return c===0&&p&&h&&f[te.start]===C&&ne(f)<A&&ne(R)>E?!1:A>=te.start&&A<te.end&&g&&g.includes(O)&&Q===C?!0:O===Q};return Object.assign(Object.assign({},s),{value:W,valueIsNumericString:!1,isValidInputCharacter:J,isCharacterSame:ee,onValueChange:M,format:B,removeFormatting:F,getCaretBoundary:function(d){return et(d,e)},onKeyDown:U,onBlur:$})}function at(e){var t=rt(e);return X.createElement(He,Object.assign({},t))}function we(){var r,n,a;return((a=(n=(r=Intl.NumberFormat())==null?void 0:r.formatToParts(1.1))==null?void 0:n.find(i=>i.type==="decimal"))==null?void 0:a.value)??"."}function nt(){return we()==="."?",":"."}const St=e=>{const{value:t,onChange:r,disabled:n,highlight:a,validatedSelection:i,fixedDecimals:l,allowNegative:h,thousandSeparator:p,decimalSeparator:x}=e,S=T.useRef();return T.useLayoutEffect(()=>{var c;if(i!==void 0){const m=typeof i=="number"?[i,null]:i;(c=S.current)==null||c.setSelectionRange(m[0],m[1])}},[i]),T.createElement(Be,null,T.createElement(at,{autoFocus:!0,getInputRef:S,className:"gdg-input",onFocus:c=>c.target.setSelectionRange(a?0:c.target.value.length,c.target.value.length),disabled:n===!0,decimalScale:l,allowNegative:h,thousandSeparator:p??nt(),decimalSeparator:x??we(),value:Object.is(t,-0)?"-":t??"",onValueChange:r}))};export{St as default};
@@ -1 +1 @@
1
- import{e as l}from"./es6.44cVHEXS.js";import"./index.3qE-vjOX.js";const{DISALLOWED:d}=l;class a{constructor(e,t){this.writer=e,this.fileEntry=t}async write(e){if(typeof e=="object"){if(e.type==="write"){if(Number.isInteger(e.position)&&e.position>=0&&(this.writer.seek(e.position),this.writer.position!==e.position&&(await new Promise((t,i)=>{this.writer.onwriteend=t,this.writer.onerror=i,this.writer.truncate(e.position)}),this.writer.seek(e.position))),!("data"in e))throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. write requires a data argument","SyntaxError");e=e.data}else if(e.type==="seek")if(Number.isInteger(e.position)&&e.position>=0){if(this.writer.seek(e.position),this.writer.position!==e.position)throw new DOMException("seeking position failed","InvalidStateError");return}else throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. seek requires a position argument","SyntaxError");else if(e.type==="truncate")return new Promise(t=>{if(Number.isInteger(e.size)&&e.size>=0)this.writer.onwriteend=i=>t(),this.writer.truncate(e.size);else throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. truncate requires a size argument","SyntaxError")})}await new Promise((t,i)=>{this.writer.onwriteend=t,this.writer.onerror=i,this.writer.write(new Blob([e]))})}close(){return new Promise(this.fileEntry.file.bind(this.fileEntry))}}class w{constructor(e,t=!0){this.file=e,this.kind="file",this.writable=t,this.readable=!0}get name(){return this.file.name}isSameEntry(e){return this.file.toURL()===e.file.toURL()}getFile(){return new Promise(this.file.file.bind(this.file))}createWritable(e){if(!this.writable)throw new DOMException(...d);return new Promise((t,i)=>this.file.createWriter(r=>{e.keepExistingData===!1?(r.onwriteend=s=>t(new a(r,this.file)),r.truncate(0)):t(new a(r,this.file))},i))}}class n{constructor(e,t=!0){this.dir=e,this.writable=t,this.readable=!0,this.kind="directory",this.name=e.name}isSameEntry(e){return this.dir.fullPath===e.dir.fullPath}async*entries(){const e=this.dir.createReader(),t=await new Promise(e.readEntries.bind(e));for(const i of t)yield[i.name,i.isFile?new w(i,this.writable):new n(i,this.writable)]}getDirectoryHandle(e,t){return new Promise((i,r)=>{this.dir.getDirectory(e,t,s=>{i(new n(s))},r)})}getFileHandle(e,t){return new Promise((i,r)=>this.dir.getFile(e,t,s=>i(new w(s)),r))}async removeEntry(e,t){const i=await this.getDirectoryHandle(e,{create:!1}).catch(r=>r.name==="TypeMismatchError"?this.getFileHandle(e,{create:!1}):r);if(i instanceof Error)throw i;return new Promise((r,s)=>{i instanceof n?t.recursive?i.dir.removeRecursively(()=>r(),s):i.dir.remove(()=>r(),s):i.file&&i.file.remove(()=>r(),s)})}}const p=(o={})=>new Promise((e,t)=>window.webkitRequestFileSystem(o._persistent,0,i=>e(new n(i.root)),t));export{w as FileHandle,n as FolderHandle,p as default};
1
+ import{e as l}from"./es6.BPf5kpFH.js";import"./index.kc3Ycvjj.js";const{DISALLOWED:d}=l;class a{constructor(e,t){this.writer=e,this.fileEntry=t}async write(e){if(typeof e=="object"){if(e.type==="write"){if(Number.isInteger(e.position)&&e.position>=0&&(this.writer.seek(e.position),this.writer.position!==e.position&&(await new Promise((t,i)=>{this.writer.onwriteend=t,this.writer.onerror=i,this.writer.truncate(e.position)}),this.writer.seek(e.position))),!("data"in e))throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. write requires a data argument","SyntaxError");e=e.data}else if(e.type==="seek")if(Number.isInteger(e.position)&&e.position>=0){if(this.writer.seek(e.position),this.writer.position!==e.position)throw new DOMException("seeking position failed","InvalidStateError");return}else throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. seek requires a position argument","SyntaxError");else if(e.type==="truncate")return new Promise(t=>{if(Number.isInteger(e.size)&&e.size>=0)this.writer.onwriteend=i=>t(),this.writer.truncate(e.size);else throw new DOMException("Failed to execute 'write' on 'UnderlyingSinkBase': Invalid params passed. truncate requires a size argument","SyntaxError")})}await new Promise((t,i)=>{this.writer.onwriteend=t,this.writer.onerror=i,this.writer.write(new Blob([e]))})}close(){return new Promise(this.fileEntry.file.bind(this.fileEntry))}}class w{constructor(e,t=!0){this.file=e,this.kind="file",this.writable=t,this.readable=!0}get name(){return this.file.name}isSameEntry(e){return this.file.toURL()===e.file.toURL()}getFile(){return new Promise(this.file.file.bind(this.file))}createWritable(e){if(!this.writable)throw new DOMException(...d);return new Promise((t,i)=>this.file.createWriter(r=>{e.keepExistingData===!1?(r.onwriteend=s=>t(new a(r,this.file)),r.truncate(0)):t(new a(r,this.file))},i))}}class n{constructor(e,t=!0){this.dir=e,this.writable=t,this.readable=!0,this.kind="directory",this.name=e.name}isSameEntry(e){return this.dir.fullPath===e.dir.fullPath}async*entries(){const e=this.dir.createReader(),t=await new Promise(e.readEntries.bind(e));for(const i of t)yield[i.name,i.isFile?new w(i,this.writable):new n(i,this.writable)]}getDirectoryHandle(e,t){return new Promise((i,r)=>{this.dir.getDirectory(e,t,s=>{i(new n(s))},r)})}getFileHandle(e,t){return new Promise((i,r)=>this.dir.getFile(e,t,s=>i(new w(s)),r))}async removeEntry(e,t){const i=await this.getDirectoryHandle(e,{create:!1}).catch(r=>r.name==="TypeMismatchError"?this.getFileHandle(e,{create:!1}):r);if(i instanceof Error)throw i;return new Promise((r,s)=>{i instanceof n?t.recursive?i.dir.removeRecursively(()=>r(),s):i.dir.remove(()=>r(),s):i.file&&i.file.remove(()=>r(),s)})}}const p=(o={})=>new Promise((e,t)=>window.webkitRequestFileSystem(o._persistent,0,i=>e(new n(i.root)),t));export{w as FileHandle,n as FolderHandle,p as default};
@@ -1,2 +1,2 @@
1
- import{r as a,E as y,_ as d,aB as m}from"./index.3qE-vjOX.js";var p=a.forwardRef(function(e,t){var r={fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"};return a.createElement(y,d({iconAttrs:r,iconVerticalAlign:"middle",iconViewBox:"0 0 24 24"},e,{ref:t}),a.createElement("path",{fill:"none",d:"M0 0h24v24H0V0z"}),a.createElement("path",{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}))});p.displayName="Close";function b(e){if(Array.isArray(e))return e}function h(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var i,s,c,o,l=[],n=!0,u=!1;try{if(c=(r=r.call(e)).next,t===0){if(Object(r)!==r)return;n=!1}else for(;!(n=(i=c.call(r)).done)&&(l.push(i.value),l.length!==t);n=!0);}catch(f){u=!0,s=f}finally{try{if(!n&&r.return!=null&&(o=r.return(),Object(o)!==o))return}finally{if(u)throw s}}return l}}function v(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
1
+ import{r as a,E as y,_ as d,aP as m}from"./index.kc3Ycvjj.js";var p=a.forwardRef(function(e,t){var r={fill:"currentColor",xmlns:"http://www.w3.org/2000/svg"};return a.createElement(y,d({iconAttrs:r,iconVerticalAlign:"middle",iconViewBox:"0 0 24 24"},e,{ref:t}),a.createElement("path",{fill:"none",d:"M0 0h24v24H0V0z"}),a.createElement("path",{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}))});p.displayName="Close";function b(e){if(Array.isArray(e))return e}function h(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var i,s,c,o,l=[],n=!0,u=!1;try{if(c=(r=r.call(e)).next,t===0){if(Object(r)!==r)return;n=!1}else for(;!(n=(i=c.call(r)).done)&&(l.push(i.value),l.length!==t);n=!0);}catch(f){u=!0,s=f}finally{try{if(!n&&r.return!=null&&(o=r.return(),Object(o)!==o))return}finally{if(u)throw s}}return l}}function v(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
2
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function _(e,t){return b(e)||h(e,t)||m(e,t)||v()}export{p as C,_};
@@ -1,2 +1,2 @@
1
- import{b3 as v,b4 as T,bq as j,r as d,bK as x,bL as R}from"./index.3qE-vjOX.js";import{g as $,a as I,b as A,B as F}from"./base-input.B1a61Ojd.js";function _(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?_(Object(r),!0).forEach(function(n){E(e,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):_(Object(r)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))})}return e}function E(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var O=v("div",function(e){return s(s({},$(s(s({$positive:!1},e),{},{$hasIconTrailing:!1}))),{},{width:e.$resize?"fit-content":"100%"})});O.displayName="StyledTextAreaRoot";O.displayName="StyledTextAreaRoot";var m=v("div",function(e){return I(s({$positive:!1},e))});m.displayName="StyledTextareaContainer";m.displayName="StyledTextareaContainer";var g=v("textarea",function(e){return s(s({},A(e)),{},{resize:e.$resize||"none"})});g.displayName="StyledTextarea";g.displayName="StyledTextarea";function b(e){"@babel/helpers - typeof";return b=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},b(e)}function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function B(e,t){return C(e)||K(e,t)||N(e,t)||z()}function z(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function N(e,t){if(e){if(typeof e=="string")return P(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return P(e,t)}}function P(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function K(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],o=!0,i=!1,a,u;try{for(r=r.call(e);!(o=(a=r.next()).done)&&(n.push(a.value),!(t&&n.length===t));o=!0);}catch(y){i=!0,u=y}finally{try{!o&&r.return!=null&&r.return()}finally{if(i)throw u}}return n}}function C(e){if(Array.isArray(e))return e}function D(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function U(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function q(e,t,r){return t&&U(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function L(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&h(e,t)}function h(e,t){return h=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(n,o){return n.__proto__=o,n},h(e,t)}function M(e){var t=W();return function(){var n=p(e),o;if(t){var i=p(this).constructor;o=Reflect.construct(n,arguments,i)}else o=n.apply(this,arguments);return H(this,o)}}function H(e,t){if(t&&(b(t)==="object"||typeof t=="function"))return t;if(t!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return f(e)}function f(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function W(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},p(e)}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Y=function(e){L(r,e);var t=M(r);function r(){var n;D(this,r);for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];return n=t.call.apply(t,[this].concat(i)),c(f(n),"state",{isFocused:n.props.autoFocus||!1}),c(f(n),"onFocus",function(u){n.setState({isFocused:!0}),n.props.onFocus(u)}),c(f(n),"onBlur",function(u){n.setState({isFocused:!1}),n.props.onBlur(u)}),n}return q(r,[{key:"render",value:function(){var o=this.props.overrides,i=o===void 0?{}:o,a=T(i.Root,O),u=B(a,2),y=u[0],S=u[1],w=j({Input:{component:g},InputContainer:{component:m}},i);return d.createElement(y,l({"data-baseweb":"textarea",$isFocused:this.state.isFocused,$isReadOnly:this.props.readOnly,$disabled:this.props.disabled,$error:this.props.error,$positive:this.props.positive,$required:this.props.required,$resize:this.props.resize},S),d.createElement(F,l({},this.props,{type:x.textarea,overrides:w,onFocus:this.onFocus,onBlur:this.onBlur,resize:this.props.resize})))}}]),r}(d.Component);c(Y,"defaultProps",{autoFocus:!1,disabled:!1,readOnly:!1,error:!1,name:"",onBlur:function(){},onChange:function(){},onKeyDown:function(){},onKeyPress:function(){},onKeyUp:function(){},onFocus:function(){},overrides:{},placeholder:"",required:!1,rows:3,size:R.default});export{Y as T};
1
+ import{bg as v,bh as T,bD as j,r as d,bX as x,bY as R}from"./index.kc3Ycvjj.js";import{g as $,a as I,b as A,B as F}from"./base-input.JrivAGt5.js";function _(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=arguments[t]!=null?arguments[t]:{};t%2?_(Object(r),!0).forEach(function(n){E(e,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):_(Object(r)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))})}return e}function E(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var O=v("div",function(e){return s(s({},$(s(s({$positive:!1},e),{},{$hasIconTrailing:!1}))),{},{width:e.$resize?"fit-content":"100%"})});O.displayName="StyledTextAreaRoot";O.displayName="StyledTextAreaRoot";var m=v("div",function(e){return I(s({$positive:!1},e))});m.displayName="StyledTextareaContainer";m.displayName="StyledTextareaContainer";var g=v("textarea",function(e){return s(s({},A(e)),{},{resize:e.$resize||"none"})});g.displayName="StyledTextarea";g.displayName="StyledTextarea";function b(e){"@babel/helpers - typeof";return b=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},b(e)}function l(){return l=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function B(e,t){return C(e)||D(e,t)||N(e,t)||z()}function z(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
2
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function N(e,t){if(e){if(typeof e=="string")return P(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return P(e,t)}}function P(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function D(e,t){var r=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r!=null){var n=[],o=!0,i=!1,a,u;try{for(r=r.call(e);!(o=(a=r.next()).done)&&(n.push(a.value),!(t&&n.length===t));o=!0);}catch(y){i=!0,u=y}finally{try{!o&&r.return!=null&&r.return()}finally{if(i)throw u}}return n}}function C(e){if(Array.isArray(e))return e}function K(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function U(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function q(e,t,r){return t&&U(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function M(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&h(e,t)}function h(e,t){return h=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(n,o){return n.__proto__=o,n},h(e,t)}function Y(e){var t=L();return function(){var n=p(e),o;if(t){var i=p(this).constructor;o=Reflect.construct(n,arguments,i)}else o=n.apply(this,arguments);return H(this,o)}}function H(e,t){if(t&&(b(t)==="object"||typeof t=="function"))return t;if(t!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return f(e)}function f(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function L(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},p(e)}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var W=function(e){M(r,e);var t=Y(r);function r(){var n;K(this,r);for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];return n=t.call.apply(t,[this].concat(i)),c(f(n),"state",{isFocused:n.props.autoFocus||!1}),c(f(n),"onFocus",function(u){n.setState({isFocused:!0}),n.props.onFocus(u)}),c(f(n),"onBlur",function(u){n.setState({isFocused:!1}),n.props.onBlur(u)}),n}return q(r,[{key:"render",value:function(){var o=this.props.overrides,i=o===void 0?{}:o,a=T(i.Root,O),u=B(a,2),y=u[0],S=u[1],w=j({Input:{component:g},InputContainer:{component:m}},i);return d.createElement(y,l({"data-baseweb":"textarea",$isFocused:this.state.isFocused,$isReadOnly:this.props.readOnly,$disabled:this.props.disabled,$error:this.props.error,$positive:this.props.positive,$required:this.props.required,$resize:this.props.resize},S),d.createElement(F,l({},this.props,{type:x.textarea,overrides:w,onFocus:this.onFocus,onBlur:this.onBlur,resize:this.props.resize})))}}]),r}(d.Component);c(W,"defaultProps",{autoFocus:!1,disabled:!1,readOnly:!1,error:!1,name:"",onBlur:function(){},onChange:function(){},onKeyDown:function(){},onKeyPress:function(){},onKeyUp:function(){},onFocus:function(){},overrides:{},placeholder:"",required:!1,rows:3,size:R.default});export{W as T};
@@ -0,0 +1 @@
1
+ import{z as g,q,k as R,a as z,c as F,b as I}from"./value.iufjd77T.js";function M(n,r){return n==null||r==null?NaN:n<r?-1:n>r?1:n>=r?0:NaN}function S(n,r){return n==null||r==null?NaN:r<n?-1:r>n?1:r>=n?0:NaN}function w(n){let r,i,e;n.length!==2?(r=M,i=(f,l)=>M(n(f),l),e=(f,l)=>n(f)-l):(r=n===M||n===S?n:j,i=n,e=n);function a(f,l,t=0,h=f.length){if(t<h){if(r(l,l)!==0)return h;do{const c=t+h>>>1;i(f[c],l)<0?t=c+1:h=c}while(t<h)}return t}function u(f,l,t=0,h=f.length){if(t<h){if(r(l,l)!==0)return h;do{const c=t+h>>>1;i(f[c],l)<=0?t=c+1:h=c}while(t<h)}return t}function o(f,l,t=0,h=f.length){const c=a(f,l,t,h-1);return c>t&&e(f[c-1],l)>-e(f[c],l)?c-1:c}return{left:a,center:o,right:u}}function j(){return 0}function P(n){return n===null?NaN:+n}function*rn(n,r){if(r===void 0)for(let i of n)i!=null&&(i=+i)>=i&&(yield i);else{let i=-1;for(let e of n)(e=r(e,++i,n))!=null&&(e=+e)>=e&&(yield e)}}const N=w(M),y=N.right,en=N.left;w(P).center;const $=Math.sqrt(50),x=Math.sqrt(10),B=Math.sqrt(2);function d(n,r,i){const e=(r-n)/Math.max(0,i),a=Math.floor(Math.log10(e)),u=e/Math.pow(10,a),o=u>=$?10:u>=x?5:u>=B?2:1;let f,l,t;return a<0?(t=Math.pow(10,-a)/o,f=Math.round(n*t),l=Math.round(r*t),f/t<n&&++f,l/t>r&&--l,t=-t):(t=Math.pow(10,a)*o,f=Math.round(n/t),l=Math.round(r/t),f*t<n&&++f,l*t>r&&--l),l<f&&.5<=i&&i<2?d(n,r,i*2):[f,l,t]}function E(n,r,i){if(r=+r,n=+n,i=+i,!(i>0))return[];if(n===r)return[n];const e=r<n,[a,u,o]=e?d(r,n,i):d(n,r,i);if(!(u>=a))return[];const f=u-a+1,l=new Array(f);if(e)if(o<0)for(let t=0;t<f;++t)l[t]=(u-t)/-o;else for(let t=0;t<f;++t)l[t]=(u-t)*o;else if(o<0)for(let t=0;t<f;++t)l[t]=(a+t)/-o;else for(let t=0;t<f;++t)l[t]=(a+t)*o;return l}function p(n,r,i){return r=+r,n=+n,i=+i,d(n,r,i)[2]}function L(n,r,i){r=+r,n=+n,i=+i;const e=r<n,a=e?p(r,n,i):p(n,r,i);return(e?-1:1)*(a<0?1/-a:a)}function O(n){return Math.max(0,-g(Math.abs(n)))}function C(n,r){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(g(r)/3)))*3-g(Math.abs(n)))}function D(n,r){return n=Math.abs(n),r=Math.abs(r)-n,Math.max(0,g(r)-g(n))+1}function b(n,r){switch(arguments.length){case 0:break;case 1:this.range(n);break;default:this.range(r).domain(n);break}return this}function tn(n,r){switch(arguments.length){case 0:break;case 1:{typeof n=="function"?this.interpolator(n):this.range(n);break}default:{this.domain(n),typeof r=="function"?this.interpolator(r):this.range(r);break}}return this}function G(n,r){return n=+n,r=+r,function(i){return Math.round(n*(1-i)+r*i)}}function H(n){return function(){return n}}function J(n){return+n}var k=[0,1];function m(n){return n}function v(n,r){return(r-=n=+n)?function(i){return(i-n)/r}:H(isNaN(r)?NaN:.5)}function K(n,r){var i;return n>r&&(i=n,n=r,r=i),function(e){return Math.max(n,Math.min(r,e))}}function Q(n,r,i){var e=n[0],a=n[1],u=r[0],o=r[1];return a<e?(e=v(a,e),u=i(o,u)):(e=v(e,a),u=i(u,o)),function(f){return u(e(f))}}function T(n,r,i){var e=Math.min(n.length,r.length)-1,a=new Array(e),u=new Array(e),o=-1;for(n[e]<n[0]&&(n=n.slice().reverse(),r=r.slice().reverse());++o<e;)a[o]=v(n[o],n[o+1]),u[o]=i(r[o],r[o+1]);return function(f){var l=y(n,f,1,e)-1;return u[l](a[l](f))}}function U(n,r){return r.domain(n.domain()).range(n.range()).interpolate(n.interpolate()).clamp(n.clamp()).unknown(n.unknown())}function V(){var n=k,r=k,i=R,e,a,u,o=m,f,l,t;function h(){var s=Math.min(n.length,r.length);return o!==m&&(o=K(n[0],n[s-1])),f=s>2?T:Q,l=t=null,c}function c(s){return s==null||isNaN(s=+s)?u:(l||(l=f(n.map(e),r,i)))(e(o(s)))}return c.invert=function(s){return o(a((t||(t=f(r,n.map(e),q)))(s)))},c.domain=function(s){return arguments.length?(n=Array.from(s,J),h()):n.slice()},c.range=function(s){return arguments.length?(r=Array.from(s),h()):r.slice()},c.rangeRound=function(s){return r=Array.from(s),i=G,h()},c.clamp=function(s){return arguments.length?(o=s?!0:m,h()):o!==m},c.interpolate=function(s){return arguments.length?(i=s,h()):i},c.unknown=function(s){return arguments.length?(u=s,c):u},function(s,A){return e=s,a=A,h()}}function W(){return V()(m,m)}function X(n,r,i,e){var a=L(n,r,i),u;switch(e=z(e??",f"),e.type){case"s":{var o=Math.max(Math.abs(n),Math.abs(r));return e.precision==null&&!isNaN(u=C(a,o))&&(e.precision=u),F(e,o)}case"":case"e":case"g":case"p":case"r":{e.precision==null&&!isNaN(u=D(a,Math.max(Math.abs(n),Math.abs(r))))&&(e.precision=u-(e.type==="e"));break}case"f":case"%":{e.precision==null&&!isNaN(u=O(a))&&(e.precision=u-(e.type==="%")*2);break}}return I(e)}function Y(n){var r=n.domain;return n.ticks=function(i){var e=r();return E(e[0],e[e.length-1],i??10)},n.tickFormat=function(i,e){var a=r();return X(a[0],a[a.length-1],i??10,e)},n.nice=function(i){i==null&&(i=10);var e=r(),a=0,u=e.length-1,o=e[a],f=e[u],l,t,h=10;for(f<o&&(t=o,o=f,f=t,t=a,a=u,u=t);h-- >0;){if(t=p(o,f,i),t===l)return e[a]=o,e[u]=f,r(e);if(t>0)o=Math.floor(o/t)*t,f=Math.ceil(f/t)*t;else if(t<0)o=Math.ceil(o*t)/t,f=Math.floor(f*t)/t;else break;l=t}return n},n}function Z(){var n=W();return n.copy=function(){return U(n,Z())},b.apply(n,arguments),Y(n)}function _(){var n=[.5],r=[0,1],i,e=1;function a(u){return u!=null&&u<=u?r[y(n,u,0,e)]:i}return a.domain=function(u){return arguments.length?(n=Array.from(u),e=Math.min(n.length,r.length-1),a):n.slice()},a.range=function(u){return arguments.length?(r=Array.from(u),e=Math.min(n.length,r.length-1),a):r.slice()},a.invertExtent=function(u){var o=r.indexOf(u);return[n[o-1],n[o]]},a.unknown=function(u){return arguments.length?(i=u,a):i},a.copy=function(){return _().domain(n).range(r).unknown(i)},b.apply(a,arguments)}export{M as a,P as b,w as c,D as d,C as e,G as f,J as g,V as h,b as i,U as j,E as k,Y as l,m,rn as n,y as o,O as p,W as q,tn as r,Z as s,L as t,_ as u,X as v,en as w};
@@ -1,4 +1,4 @@
1
- import{T as Ve,aB as Ft,Q as h,ar as p,g as Rt,bO as qt,b4 as Qt,bv as Bt,bq as jt,r as He,b5 as Gt}from"./index.3qE-vjOX.js";import{_ as M,a as T,b as D}from"./getPrototypeOf.bvOEi7fo.js";import{_ as O}from"./createSuper.DuLZrute.js";function C(o){if(o===null||o===!0||o===!1)return NaN;var a=Number(o);return isNaN(a)?a:a<0?Math.ceil(a):Math.floor(a)}function d(o,a){if(a.length<o)throw new TypeError(o+" argument"+(o>1?"s":"")+" required, but only "+a.length+" present")}function f(o){d(1,arguments);var a=Object.prototype.toString.call(o);return o instanceof Date||Ve(o)==="object"&&a==="[object Date]"?new Date(o.getTime()):typeof o=="number"||a==="[object Number]"?new Date(o):((typeof o=="string"||a==="[object String]")&&typeof console<"u"&&(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn(new Error().stack)),new Date(NaN))}function Re(o,a){d(2,arguments);var r=f(o),t=C(a);return isNaN(t)?new Date(NaN):(t&&r.setDate(r.getDate()+t),r)}function ke(o,a){d(2,arguments);var r=f(o).getTime(),t=C(a);return new Date(r+t)}function Xt(o,a){d(2,arguments);var r=C(a);return ke(o,r*1e3)}var zt=6e4;function Vt(o,a){d(2,arguments);var r=C(a);return ke(o,r*zt)}var Zt=36e5;function Jt(o,a){d(2,arguments);var r=C(a);return ke(o,r*Zt)}function Kt(o,a){d(2,arguments);var r=C(a),t=r*7;return Re(o,t)}function Me(o,a){d(2,arguments);var r=f(o),t=C(a);if(isNaN(t))return new Date(NaN);if(!t)return r;var e=r.getDate(),n=new Date(r.getTime());n.setMonth(r.getMonth()+t+1,0);var i=n.getDate();return e>=i?n:(r.setFullYear(n.getFullYear(),n.getMonth(),e),r)}function st(o,a){d(2,arguments);var r=C(a);return Me(o,r*12)}function er(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()-t.getFullYear()}function he(o,a){d(2,arguments);var r=f(o),t=f(a),e=r.getTime()-t.getTime();return e<0?-1:e>0?1:e}function tr(o,a){d(2,arguments);var r=f(o),t=f(a),e=he(r,t),n=Math.abs(er(r,t));r.setFullYear(1584),t.setFullYear(1584);var i=he(r,t)===-e,u=e*(n-Number(i));return u===0?0:u}function rr(o,a){d(2,arguments);var r=f(o),t=f(a),e=r.getFullYear()-t.getFullYear(),n=r.getMonth()-t.getMonth();return e*12+n}function qe(o){d(1,arguments);var a=f(o);return a.setHours(23,59,59,999),a}function Qe(o){d(1,arguments);var a=f(o),r=a.getMonth();return a.setFullYear(a.getFullYear(),r+1,0),a.setHours(23,59,59,999),a}function ar(o){d(1,arguments);var a=f(o);return qe(a).getTime()===Qe(a).getTime()}function Dt(o,a){d(2,arguments);var r=f(o),t=f(a),e=he(r,t),n=Math.abs(rr(r,t)),i;if(n<1)i=0;else{r.getMonth()===1&&r.getDate()>27&&r.setDate(30),r.setMonth(r.getMonth()-e*n);var u=he(r,t)===-e;ar(f(o))&&n===1&&he(o,t)===1&&(u=!1),i=e*(n-Number(u))}return i===0?0:i}var lt={ceil:Math.ceil,round:Math.round,floor:Math.floor,trunc:function(a){return a<0?Math.ceil(a):Math.floor(a)}},nr="trunc";function me(o){return o?lt[o]:lt[nr]}function ir(o,a,r){d(2,arguments);var t=Dt(o,a)/3;return me(void 0)(t)}function Oe(o){var a=new Date(Date.UTC(o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()));return a.setUTCFullYear(o.getFullYear()),o.getTime()-a.getTime()}function ie(o){d(1,arguments);var a=f(o);return a.setHours(0,0,0,0),a}var or=864e5;function ur(o,a){d(2,arguments);var r=ie(o),t=ie(a),e=r.getTime()-Oe(r),n=t.getTime()-Oe(t);return Math.round((e-n)/or)}function ct(o,a){var r=o.getFullYear()-a.getFullYear()||o.getMonth()-a.getMonth()||o.getDate()-a.getDate()||o.getHours()-a.getHours()||o.getMinutes()-a.getMinutes()||o.getSeconds()-a.getSeconds()||o.getMilliseconds()-a.getMilliseconds();return r<0?-1:r>0?1:r}function Mt(o,a){d(2,arguments);var r=f(o),t=f(a),e=ct(r,t),n=Math.abs(ur(r,t));r.setDate(r.getDate()-e*n);var i=+(ct(r,t)===-e),u=e*(n-i);return u===0?0:u}function sr(o,a,r){d(2,arguments);var t=Mt(o,a)/7;return me(void 0)(t)}var _e=6e4,Ye=36e5,lr=1e3;function Ee(o,a){return d(2,arguments),f(o).getTime()-f(a).getTime()}function cr(o,a,r){d(2,arguments);var t=Ee(o,a)/Ye;return me(void 0)(t)}function dr(o,a,r){d(2,arguments);var t=Ee(o,a)/_e;return me(void 0)(t)}function fr(o,a,r){d(2,arguments);var t=Ee(o,a)/1e3;return me(void 0)(t)}function vr(o,a){var r;d(1,arguments);var t=o||{},e=f(t.start),n=f(t.end),i=n.getTime();if(!(e.getTime()<=i))throw new RangeError("Invalid interval");var u=[],s=e;s.setHours(0,0,0,0);var l=Number((r=void 0)!==null&&r!==void 0?r:1);if(l<1||isNaN(l))throw new RangeError("`options.step` must be a number greater than 1");for(;s.getTime()<=i;)u.push(f(s)),s.setDate(s.getDate()+l),s.setHours(0,0,0,0);return u}var hr={};function J(){return hr}function We(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.weekStartsOn)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.weekStartsOn)!==null&&e!==void 0?e:c.weekStartsOn)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.weekStartsOn)!==null&&r!==void 0?r:0);if(!(v>=0&&v<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=f(o),w=g.getDay(),y=(w<v?-7:0)+6-(w-v);return g.setDate(g.getDate()+y),g.setHours(23,59,59,999),g}function Ie(o){d(1,arguments);var a=f(o),r=a.getFullYear();return a.setFullYear(r+1,0,0),a.setHours(23,59,59,999),a}function mr(o){return d(1,arguments),o instanceof Date||Ve(o)==="object"&&Object.prototype.toString.call(o)==="[object Date]"}function Ot(o){if(d(1,arguments),!mr(o)&&typeof o!="number")return!1;var a=f(o);return!isNaN(Number(a))}function Pt(o,a){d(2,arguments);var r=C(a);return ke(o,-r)}var pr=864e5;function gr(o){d(1,arguments);var a=f(o),r=a.getTime();a.setUTCMonth(0,1),a.setUTCHours(0,0,0,0);var t=a.getTime(),e=r-t;return Math.floor(e/pr)+1}function oe(o){d(1,arguments);var a=1,r=f(o),t=r.getUTCDay(),e=(t<a?7:0)+t-a;return r.setUTCDate(r.getUTCDate()-e),r.setUTCHours(0,0,0,0),r}function Ct(o){d(1,arguments);var a=f(o),r=a.getUTCFullYear(),t=new Date(0);t.setUTCFullYear(r+1,0,4),t.setUTCHours(0,0,0,0);var e=oe(t),n=new Date(0);n.setUTCFullYear(r,0,4),n.setUTCHours(0,0,0,0);var i=oe(n);return a.getTime()>=e.getTime()?r+1:a.getTime()>=i.getTime()?r:r-1}function wr(o){d(1,arguments);var a=Ct(o),r=new Date(0);r.setUTCFullYear(a,0,4),r.setUTCHours(0,0,0,0);var t=oe(r);return t}var yr=6048e5;function xt(o){d(1,arguments);var a=f(o),r=oe(a).getTime()-wr(a).getTime();return Math.round(r/yr)+1}function re(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.weekStartsOn)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.weekStartsOn)!==null&&e!==void 0?e:c.weekStartsOn)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.weekStartsOn)!==null&&r!==void 0?r:0);if(!(v>=0&&v<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=f(o),w=g.getUTCDay(),y=(w<v?7:0)+w-v;return g.setUTCDate(g.getUTCDate()-y),g.setUTCHours(0,0,0,0),g}function Ze(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=f(o),v=c.getUTCFullYear(),g=J(),w=C((r=(t=(e=(n=a==null?void 0:a.firstWeekContainsDate)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.firstWeekContainsDate)!==null&&e!==void 0?e:g.firstWeekContainsDate)!==null&&t!==void 0?t:(s=g.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.firstWeekContainsDate)!==null&&r!==void 0?r:1);if(!(w>=1&&w<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var y=new Date(0);y.setUTCFullYear(v+1,0,w),y.setUTCHours(0,0,0,0);var E=re(y,a),_=new Date(0);_.setUTCFullYear(v,0,w),_.setUTCHours(0,0,0,0);var S=re(_,a);return c.getTime()>=E.getTime()?v+1:c.getTime()>=S.getTime()?v:v-1}function br(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.firstWeekContainsDate)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.firstWeekContainsDate)!==null&&e!==void 0?e:c.firstWeekContainsDate)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.firstWeekContainsDate)!==null&&r!==void 0?r:1),g=Ze(o,a),w=new Date(0);w.setUTCFullYear(g,0,v),w.setUTCHours(0,0,0,0);var y=re(w,a);return y}var Tr=6048e5;function kt(o,a){d(1,arguments);var r=f(o),t=re(r,a).getTime()-br(r,a).getTime();return Math.round(t/Tr)+1}function b(o,a){for(var r=o<0?"-":"",t=Math.abs(o).toString();t.length<a;)t="0"+t;return r+t}var Z={y:function(a,r){var t=a.getUTCFullYear(),e=t>0?t:1-t;return b(r==="yy"?e%100:e,r.length)},M:function(a,r){var t=a.getUTCMonth();return r==="M"?String(t+1):b(t+1,2)},d:function(a,r){return b(a.getUTCDate(),r.length)},a:function(a,r){var t=a.getUTCHours()/12>=1?"pm":"am";switch(r){case"a":case"aa":return t.toUpperCase();case"aaa":return t;case"aaaaa":return t[0];case"aaaa":default:return t==="am"?"a.m.":"p.m."}},h:function(a,r){return b(a.getUTCHours()%12||12,r.length)},H:function(a,r){return b(a.getUTCHours(),r.length)},m:function(a,r){return b(a.getUTCMinutes(),r.length)},s:function(a,r){return b(a.getUTCSeconds(),r.length)},S:function(a,r){var t=r.length,e=a.getUTCMilliseconds(),n=Math.floor(e*Math.pow(10,t-3));return b(n,r.length)}},ae={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Dr={G:function(a,r,t){var e=a.getUTCFullYear()>0?1:0;switch(r){case"G":case"GG":case"GGG":return t.era(e,{width:"abbreviated"});case"GGGGG":return t.era(e,{width:"narrow"});case"GGGG":default:return t.era(e,{width:"wide"})}},y:function(a,r,t){if(r==="yo"){var e=a.getUTCFullYear(),n=e>0?e:1-e;return t.ordinalNumber(n,{unit:"year"})}return Z.y(a,r)},Y:function(a,r,t,e){var n=Ze(a,e),i=n>0?n:1-n;if(r==="YY"){var u=i%100;return b(u,2)}return r==="Yo"?t.ordinalNumber(i,{unit:"year"}):b(i,r.length)},R:function(a,r){var t=Ct(a);return b(t,r.length)},u:function(a,r){var t=a.getUTCFullYear();return b(t,r.length)},Q:function(a,r,t){var e=Math.ceil((a.getUTCMonth()+1)/3);switch(r){case"Q":return String(e);case"QQ":return b(e,2);case"Qo":return t.ordinalNumber(e,{unit:"quarter"});case"QQQ":return t.quarter(e,{width:"abbreviated",context:"formatting"});case"QQQQQ":return t.quarter(e,{width:"narrow",context:"formatting"});case"QQQQ":default:return t.quarter(e,{width:"wide",context:"formatting"})}},q:function(a,r,t){var e=Math.ceil((a.getUTCMonth()+1)/3);switch(r){case"q":return String(e);case"qq":return b(e,2);case"qo":return t.ordinalNumber(e,{unit:"quarter"});case"qqq":return t.quarter(e,{width:"abbreviated",context:"standalone"});case"qqqqq":return t.quarter(e,{width:"narrow",context:"standalone"});case"qqqq":default:return t.quarter(e,{width:"wide",context:"standalone"})}},M:function(a,r,t){var e=a.getUTCMonth();switch(r){case"M":case"MM":return Z.M(a,r);case"Mo":return t.ordinalNumber(e+1,{unit:"month"});case"MMM":return t.month(e,{width:"abbreviated",context:"formatting"});case"MMMMM":return t.month(e,{width:"narrow",context:"formatting"});case"MMMM":default:return t.month(e,{width:"wide",context:"formatting"})}},L:function(a,r,t){var e=a.getUTCMonth();switch(r){case"L":return String(e+1);case"LL":return b(e+1,2);case"Lo":return t.ordinalNumber(e+1,{unit:"month"});case"LLL":return t.month(e,{width:"abbreviated",context:"standalone"});case"LLLLL":return t.month(e,{width:"narrow",context:"standalone"});case"LLLL":default:return t.month(e,{width:"wide",context:"standalone"})}},w:function(a,r,t,e){var n=kt(a,e);return r==="wo"?t.ordinalNumber(n,{unit:"week"}):b(n,r.length)},I:function(a,r,t){var e=xt(a);return r==="Io"?t.ordinalNumber(e,{unit:"week"}):b(e,r.length)},d:function(a,r,t){return r==="do"?t.ordinalNumber(a.getUTCDate(),{unit:"date"}):Z.d(a,r)},D:function(a,r,t){var e=gr(a);return r==="Do"?t.ordinalNumber(e,{unit:"dayOfYear"}):b(e,r.length)},E:function(a,r,t){var e=a.getUTCDay();switch(r){case"E":case"EE":case"EEE":return t.day(e,{width:"abbreviated",context:"formatting"});case"EEEEE":return t.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return t.day(e,{width:"short",context:"formatting"});case"EEEE":default:return t.day(e,{width:"wide",context:"formatting"})}},e:function(a,r,t,e){var n=a.getUTCDay(),i=(n-e.weekStartsOn+8)%7||7;switch(r){case"e":return String(i);case"ee":return b(i,2);case"eo":return t.ordinalNumber(i,{unit:"day"});case"eee":return t.day(n,{width:"abbreviated",context:"formatting"});case"eeeee":return t.day(n,{width:"narrow",context:"formatting"});case"eeeeee":return t.day(n,{width:"short",context:"formatting"});case"eeee":default:return t.day(n,{width:"wide",context:"formatting"})}},c:function(a,r,t,e){var n=a.getUTCDay(),i=(n-e.weekStartsOn+8)%7||7;switch(r){case"c":return String(i);case"cc":return b(i,r.length);case"co":return t.ordinalNumber(i,{unit:"day"});case"ccc":return t.day(n,{width:"abbreviated",context:"standalone"});case"ccccc":return t.day(n,{width:"narrow",context:"standalone"});case"cccccc":return t.day(n,{width:"short",context:"standalone"});case"cccc":default:return t.day(n,{width:"wide",context:"standalone"})}},i:function(a,r,t){var e=a.getUTCDay(),n=e===0?7:e;switch(r){case"i":return String(n);case"ii":return b(n,r.length);case"io":return t.ordinalNumber(n,{unit:"day"});case"iii":return t.day(e,{width:"abbreviated",context:"formatting"});case"iiiii":return t.day(e,{width:"narrow",context:"formatting"});case"iiiiii":return t.day(e,{width:"short",context:"formatting"});case"iiii":default:return t.day(e,{width:"wide",context:"formatting"})}},a:function(a,r,t){var e=a.getUTCHours(),n=e/12>=1?"pm":"am";switch(r){case"a":case"aa":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"aaa":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"aaaa":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},b:function(a,r,t){var e=a.getUTCHours(),n;switch(e===12?n=ae.noon:e===0?n=ae.midnight:n=e/12>=1?"pm":"am",r){case"b":case"bb":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"bbb":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"bbbb":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},B:function(a,r,t){var e=a.getUTCHours(),n;switch(e>=17?n=ae.evening:e>=12?n=ae.afternoon:e>=4?n=ae.morning:n=ae.night,r){case"B":case"BB":case"BBB":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"BBBBB":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"BBBB":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},h:function(a,r,t){if(r==="ho"){var e=a.getUTCHours()%12;return e===0&&(e=12),t.ordinalNumber(e,{unit:"hour"})}return Z.h(a,r)},H:function(a,r,t){return r==="Ho"?t.ordinalNumber(a.getUTCHours(),{unit:"hour"}):Z.H(a,r)},K:function(a,r,t){var e=a.getUTCHours()%12;return r==="Ko"?t.ordinalNumber(e,{unit:"hour"}):b(e,r.length)},k:function(a,r,t){var e=a.getUTCHours();return e===0&&(e=24),r==="ko"?t.ordinalNumber(e,{unit:"hour"}):b(e,r.length)},m:function(a,r,t){return r==="mo"?t.ordinalNumber(a.getUTCMinutes(),{unit:"minute"}):Z.m(a,r)},s:function(a,r,t){return r==="so"?t.ordinalNumber(a.getUTCSeconds(),{unit:"second"}):Z.s(a,r)},S:function(a,r){return Z.S(a,r)},X:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();if(i===0)return"Z";switch(r){case"X":return ft(i);case"XXXX":case"XX":return te(i);case"XXXXX":case"XXX":default:return te(i,":")}},x:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"x":return ft(i);case"xxxx":case"xx":return te(i);case"xxxxx":case"xxx":default:return te(i,":")}},O:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"O":case"OO":case"OOO":return"GMT"+dt(i,":");case"OOOO":default:return"GMT"+te(i,":")}},z:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"z":case"zz":case"zzz":return"GMT"+dt(i,":");case"zzzz":default:return"GMT"+te(i,":")}},t:function(a,r,t,e){var n=e._originalDate||a,i=Math.floor(n.getTime()/1e3);return b(i,r.length)},T:function(a,r,t,e){var n=e._originalDate||a,i=n.getTime();return b(i,r.length)}};function dt(o,a){var r=o>0?"-":"+",t=Math.abs(o),e=Math.floor(t/60),n=t%60;if(n===0)return r+String(e);var i=a;return r+String(e)+i+b(n,2)}function ft(o,a){if(o%60===0){var r=o>0?"-":"+";return r+b(Math.abs(o)/60,2)}return te(o,a)}function te(o,a){var r=a||"",t=o>0?"-":"+",e=Math.abs(o),n=b(Math.floor(e/60),2),i=b(e%60,2);return t+n+r+i}var vt=function(a,r){switch(a){case"P":return r.date({width:"short"});case"PP":return r.date({width:"medium"});case"PPP":return r.date({width:"long"});case"PPPP":default:return r.date({width:"full"})}},_t=function(a,r){switch(a){case"p":return r.time({width:"short"});case"pp":return r.time({width:"medium"});case"ppp":return r.time({width:"long"});case"pppp":default:return r.time({width:"full"})}},Mr=function(a,r){var t=a.match(/(P+)(p+)?/)||[],e=t[1],n=t[2];if(!n)return vt(a,r);var i;switch(e){case"P":i=r.dateTime({width:"short"});break;case"PP":i=r.dateTime({width:"medium"});break;case"PPP":i=r.dateTime({width:"long"});break;case"PPPP":default:i=r.dateTime({width:"full"});break}return i.replace("{{date}}",vt(e,r)).replace("{{time}}",_t(n,r))},Be={p:_t,P:Mr},Or=["D","DD"],Pr=["YY","YYYY"];function Yt(o){return Or.indexOf(o)!==-1}function Et(o){return Pr.indexOf(o)!==-1}function Pe(o,a,r){if(o==="YYYY")throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(a,"`) for formatting years to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="YY")throw new RangeError("Use `yy` instead of `YY` (in `".concat(a,"`) for formatting years to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="D")throw new RangeError("Use `d` instead of `D` (in `".concat(a,"`) for formatting days of the month to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="DD")throw new RangeError("Use `dd` instead of `DD` (in `".concat(a,"`) for formatting days of the month to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var Cr={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},xr=function(a,r,t){var e,n=Cr[a];return typeof n=="string"?e=n:r===1?e=n.one:e=n.other.replace("{{count}}",r.toString()),t!=null&&t.addSuffix?t.comparison&&t.comparison>0?"in "+e:e+" ago":e};function Ae(o){return function(){var a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=a.width?String(a.width):o.defaultWidth,t=o.formats[r]||o.formats[o.defaultWidth];return t}}var kr={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},_r={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},Yr={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Er={date:Ae({formats:kr,defaultWidth:"full"}),time:Ae({formats:_r,defaultWidth:"full"}),dateTime:Ae({formats:Yr,defaultWidth:"full"})},Nr={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Ur=function(a,r,t,e){return Nr[a]};function de(o){return function(a,r){var t=r!=null&&r.context?String(r.context):"standalone",e;if(t==="formatting"&&o.formattingValues){var n=o.defaultFormattingWidth||o.defaultWidth,i=r!=null&&r.width?String(r.width):n;e=o.formattingValues[i]||o.formattingValues[n]}else{var u=o.defaultWidth,s=r!=null&&r.width?String(r.width):o.defaultWidth;e=o.values[s]||o.values[u]}var l=o.argumentCallback?o.argumentCallback(a):a;return e[l]}}var Sr={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},Hr={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},Wr={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},Ir={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},Ar={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},$r={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},Lr=function(a,r){var t=Number(a),e=t%100;if(e>20||e<10)switch(e%10){case 1:return t+"st";case 2:return t+"nd";case 3:return t+"rd"}return t+"th"},Fr={ordinalNumber:Lr,era:de({values:Sr,defaultWidth:"wide"}),quarter:de({values:Hr,defaultWidth:"wide",argumentCallback:function(a){return a-1}}),month:de({values:Wr,defaultWidth:"wide"}),day:de({values:Ir,defaultWidth:"wide"}),dayPeriod:de({values:Ar,defaultWidth:"wide",formattingValues:$r,defaultFormattingWidth:"wide"})};function fe(o){return function(a){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=r.width,e=t&&o.matchPatterns[t]||o.matchPatterns[o.defaultMatchWidth],n=a.match(e);if(!n)return null;var i=n[0],u=t&&o.parsePatterns[t]||o.parsePatterns[o.defaultParseWidth],s=Array.isArray(u)?qr(u,function(v){return v.test(i)}):Rr(u,function(v){return v.test(i)}),l;l=o.valueCallback?o.valueCallback(s):s,l=r.valueCallback?r.valueCallback(l):l;var c=a.slice(i.length);return{value:l,rest:c}}}function Rr(o,a){for(var r in o)if(o.hasOwnProperty(r)&&a(o[r]))return r}function qr(o,a){for(var r=0;r<o.length;r++)if(a(o[r]))return r}function Qr(o){return function(a){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=a.match(o.matchPattern);if(!t)return null;var e=t[0],n=a.match(o.parsePattern);if(!n)return null;var i=o.valueCallback?o.valueCallback(n[0]):n[0];i=r.valueCallback?r.valueCallback(i):i;var u=a.slice(e.length);return{value:i,rest:u}}}var Br=/^(\d+)(th|st|nd|rd)?/i,jr=/\d+/i,Gr={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},Xr={any:[/^b/i,/^(a|c)/i]},zr={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},Vr={any:[/1/i,/2/i,/3/i,/4/i]},Zr={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Jr={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},Kr={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},ea={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},ta={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},ra={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},aa={ordinalNumber:Qr({matchPattern:Br,parsePattern:jr,valueCallback:function(a){return parseInt(a,10)}}),era:fe({matchPatterns:Gr,defaultMatchWidth:"wide",parsePatterns:Xr,defaultParseWidth:"any"}),quarter:fe({matchPatterns:zr,defaultMatchWidth:"wide",parsePatterns:Vr,defaultParseWidth:"any",valueCallback:function(a){return a+1}}),month:fe({matchPatterns:Zr,defaultMatchWidth:"wide",parsePatterns:Jr,defaultParseWidth:"any"}),day:fe({matchPatterns:Kr,defaultMatchWidth:"wide",parsePatterns:ea,defaultParseWidth:"any"}),dayPeriod:fe({matchPatterns:ta,defaultMatchWidth:"any",parsePatterns:ra,defaultParseWidth:"any"})},Je={code:"en-US",formatDistance:xr,formatLong:Er,formatRelative:Ur,localize:Fr,match:aa,options:{weekStartsOn:0,firstWeekContainsDate:1}},na=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,ia=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,oa=/^'([^]*?)'?$/,ua=/''/g,sa=/[a-zA-Z]/;function la(o,a,r){var t,e,n,i,u,s,l,c,v,g,w,y,E,_,S,A,B,L;d(2,arguments);var K=String(a),I=J(),F=(t=(e=r==null?void 0:r.locale)!==null&&e!==void 0?e:I.locale)!==null&&t!==void 0?t:Je,X=C((n=(i=(u=(s=r==null?void 0:r.firstWeekContainsDate)!==null&&s!==void 0?s:r==null||(l=r.locale)===null||l===void 0||(c=l.options)===null||c===void 0?void 0:c.firstWeekContainsDate)!==null&&u!==void 0?u:I.firstWeekContainsDate)!==null&&i!==void 0?i:(v=I.locale)===null||v===void 0||(g=v.options)===null||g===void 0?void 0:g.firstWeekContainsDate)!==null&&n!==void 0?n:1);if(!(X>=1&&X<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var z=C((w=(y=(E=(_=r==null?void 0:r.weekStartsOn)!==null&&_!==void 0?_:r==null||(S=r.locale)===null||S===void 0||(A=S.options)===null||A===void 0?void 0:A.weekStartsOn)!==null&&E!==void 0?E:I.weekStartsOn)!==null&&y!==void 0?y:(B=I.locale)===null||B===void 0||(L=B.options)===null||L===void 0?void 0:L.weekStartsOn)!==null&&w!==void 0?w:0);if(!(z>=0&&z<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!F.localize)throw new RangeError("locale must contain localize property");if(!F.formatLong)throw new RangeError("locale must contain formatLong property");var V=f(o);if(!Ot(V))throw new RangeError("Invalid time value");var ue=Oe(V),se=Pt(V,ue),le={firstWeekContainsDate:X,weekStartsOn:z,locale:F,_originalDate:V},Ne=K.match(ia).map(function(W){var $=W[0];if($==="p"||$==="P"){var ee=Be[$];return ee(W,F.formatLong)}return W}).join("").match(na).map(function(W){if(W==="''")return"'";var $=W[0];if($==="'")return ca(W);var ee=Dr[$];if(ee)return!(r!=null&&r.useAdditionalWeekYearTokens)&&Et(W)&&Pe(W,a,String(o)),!(r!=null&&r.useAdditionalDayOfYearTokens)&&Yt(W)&&Pe(W,a,String(o)),ee(se,W,F.localize,le);if($.match(sa))throw new RangeError("Format string contains an unescaped latin alphabet character `"+$+"`");return W}).join("");return Ne}function ca(o){var a=o.match(oa);return a?a[1].replace(ua,"'"):o}function da(o){d(1,arguments);var a=f(o),r=a.getDate();return r}function fa(o){d(1,arguments);var a=f(o),r=a.getDay();return r}function Nt(o){d(1,arguments);var a=f(o),r=a.getFullYear(),t=a.getMonth(),e=new Date(0);return e.setFullYear(r,t+1,0),e.setHours(0,0,0,0),e.getDate()}function va(o){d(1,arguments);var a=f(o),r=a.getHours();return r}function ha(o){d(1,arguments);var a=f(o),r=a.getMinutes();return r}function ma(o){d(1,arguments);var a=f(o),r=a.getMonth();return r}function pa(o){d(1,arguments);var a=f(o),r=a.getSeconds();return r}function ga(o){return d(1,arguments),f(o).getFullYear()}function ye(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()>t.getTime()}function ne(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()<t.getTime()}function wa(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()===t.getTime()}function ya(o,a){d(2,arguments);var r=ie(o),t=ie(a);return r.getTime()===t.getTime()}function ba(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()===t.getFullYear()}function Ta(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()===t.getFullYear()&&r.getMonth()===t.getMonth()}function ht(o){d(1,arguments);var a=f(o);return a.setMinutes(0,0,0),a}function Da(o,a){d(2,arguments);var r=ht(o),t=ht(a);return r.getTime()===t.getTime()}function mt(o,a){var r=typeof Symbol<"u"&&o[Symbol.iterator]||o["@@iterator"];if(!r){if(Array.isArray(o)||(r=Ft(o))||a){r&&(o=r);var t=0,e=function(){};return{s:e,n:function(){return t>=o.length?{done:!0}:{done:!1,value:o[t++]}},e:function(l){throw l},f:e}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
1
+ import{a6 as Ve,aP as Ft,a4 as h,aE as p,g as Rt,b$ as qt,bh as Qt,bI as Bt,bD as jt,r as He,bi as Gt}from"./index.kc3Ycvjj.js";import{_ as M,a as T,b as D}from"./getPrototypeOf.DcAVjrh9.js";import{_ as O}from"./createSuper.BLkfEjg8.js";function C(o){if(o===null||o===!0||o===!1)return NaN;var a=Number(o);return isNaN(a)?a:a<0?Math.ceil(a):Math.floor(a)}function d(o,a){if(a.length<o)throw new TypeError(o+" argument"+(o>1?"s":"")+" required, but only "+a.length+" present")}function f(o){d(1,arguments);var a=Object.prototype.toString.call(o);return o instanceof Date||Ve(o)==="object"&&a==="[object Date]"?new Date(o.getTime()):typeof o=="number"||a==="[object Number]"?new Date(o):((typeof o=="string"||a==="[object String]")&&typeof console<"u"&&(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments"),console.warn(new Error().stack)),new Date(NaN))}function Re(o,a){d(2,arguments);var r=f(o),t=C(a);return isNaN(t)?new Date(NaN):(t&&r.setDate(r.getDate()+t),r)}function ke(o,a){d(2,arguments);var r=f(o).getTime(),t=C(a);return new Date(r+t)}function Xt(o,a){d(2,arguments);var r=C(a);return ke(o,r*1e3)}var zt=6e4;function Vt(o,a){d(2,arguments);var r=C(a);return ke(o,r*zt)}var Zt=36e5;function Jt(o,a){d(2,arguments);var r=C(a);return ke(o,r*Zt)}function Kt(o,a){d(2,arguments);var r=C(a),t=r*7;return Re(o,t)}function Me(o,a){d(2,arguments);var r=f(o),t=C(a);if(isNaN(t))return new Date(NaN);if(!t)return r;var e=r.getDate(),n=new Date(r.getTime());n.setMonth(r.getMonth()+t+1,0);var i=n.getDate();return e>=i?n:(r.setFullYear(n.getFullYear(),n.getMonth(),e),r)}function st(o,a){d(2,arguments);var r=C(a);return Me(o,r*12)}function er(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()-t.getFullYear()}function he(o,a){d(2,arguments);var r=f(o),t=f(a),e=r.getTime()-t.getTime();return e<0?-1:e>0?1:e}function tr(o,a){d(2,arguments);var r=f(o),t=f(a),e=he(r,t),n=Math.abs(er(r,t));r.setFullYear(1584),t.setFullYear(1584);var i=he(r,t)===-e,u=e*(n-Number(i));return u===0?0:u}function rr(o,a){d(2,arguments);var r=f(o),t=f(a),e=r.getFullYear()-t.getFullYear(),n=r.getMonth()-t.getMonth();return e*12+n}function qe(o){d(1,arguments);var a=f(o);return a.setHours(23,59,59,999),a}function Qe(o){d(1,arguments);var a=f(o),r=a.getMonth();return a.setFullYear(a.getFullYear(),r+1,0),a.setHours(23,59,59,999),a}function ar(o){d(1,arguments);var a=f(o);return qe(a).getTime()===Qe(a).getTime()}function Dt(o,a){d(2,arguments);var r=f(o),t=f(a),e=he(r,t),n=Math.abs(rr(r,t)),i;if(n<1)i=0;else{r.getMonth()===1&&r.getDate()>27&&r.setDate(30),r.setMonth(r.getMonth()-e*n);var u=he(r,t)===-e;ar(f(o))&&n===1&&he(o,t)===1&&(u=!1),i=e*(n-Number(u))}return i===0?0:i}var lt={ceil:Math.ceil,round:Math.round,floor:Math.floor,trunc:function(a){return a<0?Math.ceil(a):Math.floor(a)}},nr="trunc";function me(o){return o?lt[o]:lt[nr]}function ir(o,a,r){d(2,arguments);var t=Dt(o,a)/3;return me(void 0)(t)}function Oe(o){var a=new Date(Date.UTC(o.getFullYear(),o.getMonth(),o.getDate(),o.getHours(),o.getMinutes(),o.getSeconds(),o.getMilliseconds()));return a.setUTCFullYear(o.getFullYear()),o.getTime()-a.getTime()}function ie(o){d(1,arguments);var a=f(o);return a.setHours(0,0,0,0),a}var or=864e5;function ur(o,a){d(2,arguments);var r=ie(o),t=ie(a),e=r.getTime()-Oe(r),n=t.getTime()-Oe(t);return Math.round((e-n)/or)}function ct(o,a){var r=o.getFullYear()-a.getFullYear()||o.getMonth()-a.getMonth()||o.getDate()-a.getDate()||o.getHours()-a.getHours()||o.getMinutes()-a.getMinutes()||o.getSeconds()-a.getSeconds()||o.getMilliseconds()-a.getMilliseconds();return r<0?-1:r>0?1:r}function Mt(o,a){d(2,arguments);var r=f(o),t=f(a),e=ct(r,t),n=Math.abs(ur(r,t));r.setDate(r.getDate()-e*n);var i=+(ct(r,t)===-e),u=e*(n-i);return u===0?0:u}function sr(o,a,r){d(2,arguments);var t=Mt(o,a)/7;return me(void 0)(t)}var _e=6e4,Ye=36e5,lr=1e3;function Ee(o,a){return d(2,arguments),f(o).getTime()-f(a).getTime()}function cr(o,a,r){d(2,arguments);var t=Ee(o,a)/Ye;return me(void 0)(t)}function dr(o,a,r){d(2,arguments);var t=Ee(o,a)/_e;return me(void 0)(t)}function fr(o,a,r){d(2,arguments);var t=Ee(o,a)/1e3;return me(void 0)(t)}function vr(o,a){var r;d(1,arguments);var t=o||{},e=f(t.start),n=f(t.end),i=n.getTime();if(!(e.getTime()<=i))throw new RangeError("Invalid interval");var u=[],s=e;s.setHours(0,0,0,0);var l=Number((r=void 0)!==null&&r!==void 0?r:1);if(l<1||isNaN(l))throw new RangeError("`options.step` must be a number greater than 1");for(;s.getTime()<=i;)u.push(f(s)),s.setDate(s.getDate()+l),s.setHours(0,0,0,0);return u}var hr={};function J(){return hr}function We(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.weekStartsOn)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.weekStartsOn)!==null&&e!==void 0?e:c.weekStartsOn)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.weekStartsOn)!==null&&r!==void 0?r:0);if(!(v>=0&&v<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=f(o),w=g.getDay(),y=(w<v?-7:0)+6-(w-v);return g.setDate(g.getDate()+y),g.setHours(23,59,59,999),g}function Ie(o){d(1,arguments);var a=f(o),r=a.getFullYear();return a.setFullYear(r+1,0,0),a.setHours(23,59,59,999),a}function mr(o){return d(1,arguments),o instanceof Date||Ve(o)==="object"&&Object.prototype.toString.call(o)==="[object Date]"}function Ot(o){if(d(1,arguments),!mr(o)&&typeof o!="number")return!1;var a=f(o);return!isNaN(Number(a))}function Pt(o,a){d(2,arguments);var r=C(a);return ke(o,-r)}var pr=864e5;function gr(o){d(1,arguments);var a=f(o),r=a.getTime();a.setUTCMonth(0,1),a.setUTCHours(0,0,0,0);var t=a.getTime(),e=r-t;return Math.floor(e/pr)+1}function oe(o){d(1,arguments);var a=1,r=f(o),t=r.getUTCDay(),e=(t<a?7:0)+t-a;return r.setUTCDate(r.getUTCDate()-e),r.setUTCHours(0,0,0,0),r}function Ct(o){d(1,arguments);var a=f(o),r=a.getUTCFullYear(),t=new Date(0);t.setUTCFullYear(r+1,0,4),t.setUTCHours(0,0,0,0);var e=oe(t),n=new Date(0);n.setUTCFullYear(r,0,4),n.setUTCHours(0,0,0,0);var i=oe(n);return a.getTime()>=e.getTime()?r+1:a.getTime()>=i.getTime()?r:r-1}function wr(o){d(1,arguments);var a=Ct(o),r=new Date(0);r.setUTCFullYear(a,0,4),r.setUTCHours(0,0,0,0);var t=oe(r);return t}var yr=6048e5;function xt(o){d(1,arguments);var a=f(o),r=oe(a).getTime()-wr(a).getTime();return Math.round(r/yr)+1}function re(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.weekStartsOn)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.weekStartsOn)!==null&&e!==void 0?e:c.weekStartsOn)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.weekStartsOn)!==null&&r!==void 0?r:0);if(!(v>=0&&v<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=f(o),w=g.getUTCDay(),y=(w<v?7:0)+w-v;return g.setUTCDate(g.getUTCDate()-y),g.setUTCHours(0,0,0,0),g}function Ze(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=f(o),v=c.getUTCFullYear(),g=J(),w=C((r=(t=(e=(n=a==null?void 0:a.firstWeekContainsDate)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.firstWeekContainsDate)!==null&&e!==void 0?e:g.firstWeekContainsDate)!==null&&t!==void 0?t:(s=g.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.firstWeekContainsDate)!==null&&r!==void 0?r:1);if(!(w>=1&&w<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var y=new Date(0);y.setUTCFullYear(v+1,0,w),y.setUTCHours(0,0,0,0);var E=re(y,a),_=new Date(0);_.setUTCFullYear(v,0,w),_.setUTCHours(0,0,0,0);var S=re(_,a);return c.getTime()>=E.getTime()?v+1:c.getTime()>=S.getTime()?v:v-1}function br(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.firstWeekContainsDate)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.firstWeekContainsDate)!==null&&e!==void 0?e:c.firstWeekContainsDate)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.firstWeekContainsDate)!==null&&r!==void 0?r:1),g=Ze(o,a),w=new Date(0);w.setUTCFullYear(g,0,v),w.setUTCHours(0,0,0,0);var y=re(w,a);return y}var Tr=6048e5;function kt(o,a){d(1,arguments);var r=f(o),t=re(r,a).getTime()-br(r,a).getTime();return Math.round(t/Tr)+1}function b(o,a){for(var r=o<0?"-":"",t=Math.abs(o).toString();t.length<a;)t="0"+t;return r+t}var Z={y:function(a,r){var t=a.getUTCFullYear(),e=t>0?t:1-t;return b(r==="yy"?e%100:e,r.length)},M:function(a,r){var t=a.getUTCMonth();return r==="M"?String(t+1):b(t+1,2)},d:function(a,r){return b(a.getUTCDate(),r.length)},a:function(a,r){var t=a.getUTCHours()/12>=1?"pm":"am";switch(r){case"a":case"aa":return t.toUpperCase();case"aaa":return t;case"aaaaa":return t[0];case"aaaa":default:return t==="am"?"a.m.":"p.m."}},h:function(a,r){return b(a.getUTCHours()%12||12,r.length)},H:function(a,r){return b(a.getUTCHours(),r.length)},m:function(a,r){return b(a.getUTCMinutes(),r.length)},s:function(a,r){return b(a.getUTCSeconds(),r.length)},S:function(a,r){var t=r.length,e=a.getUTCMilliseconds(),n=Math.floor(e*Math.pow(10,t-3));return b(n,r.length)}},ae={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Dr={G:function(a,r,t){var e=a.getUTCFullYear()>0?1:0;switch(r){case"G":case"GG":case"GGG":return t.era(e,{width:"abbreviated"});case"GGGGG":return t.era(e,{width:"narrow"});case"GGGG":default:return t.era(e,{width:"wide"})}},y:function(a,r,t){if(r==="yo"){var e=a.getUTCFullYear(),n=e>0?e:1-e;return t.ordinalNumber(n,{unit:"year"})}return Z.y(a,r)},Y:function(a,r,t,e){var n=Ze(a,e),i=n>0?n:1-n;if(r==="YY"){var u=i%100;return b(u,2)}return r==="Yo"?t.ordinalNumber(i,{unit:"year"}):b(i,r.length)},R:function(a,r){var t=Ct(a);return b(t,r.length)},u:function(a,r){var t=a.getUTCFullYear();return b(t,r.length)},Q:function(a,r,t){var e=Math.ceil((a.getUTCMonth()+1)/3);switch(r){case"Q":return String(e);case"QQ":return b(e,2);case"Qo":return t.ordinalNumber(e,{unit:"quarter"});case"QQQ":return t.quarter(e,{width:"abbreviated",context:"formatting"});case"QQQQQ":return t.quarter(e,{width:"narrow",context:"formatting"});case"QQQQ":default:return t.quarter(e,{width:"wide",context:"formatting"})}},q:function(a,r,t){var e=Math.ceil((a.getUTCMonth()+1)/3);switch(r){case"q":return String(e);case"qq":return b(e,2);case"qo":return t.ordinalNumber(e,{unit:"quarter"});case"qqq":return t.quarter(e,{width:"abbreviated",context:"standalone"});case"qqqqq":return t.quarter(e,{width:"narrow",context:"standalone"});case"qqqq":default:return t.quarter(e,{width:"wide",context:"standalone"})}},M:function(a,r,t){var e=a.getUTCMonth();switch(r){case"M":case"MM":return Z.M(a,r);case"Mo":return t.ordinalNumber(e+1,{unit:"month"});case"MMM":return t.month(e,{width:"abbreviated",context:"formatting"});case"MMMMM":return t.month(e,{width:"narrow",context:"formatting"});case"MMMM":default:return t.month(e,{width:"wide",context:"formatting"})}},L:function(a,r,t){var e=a.getUTCMonth();switch(r){case"L":return String(e+1);case"LL":return b(e+1,2);case"Lo":return t.ordinalNumber(e+1,{unit:"month"});case"LLL":return t.month(e,{width:"abbreviated",context:"standalone"});case"LLLLL":return t.month(e,{width:"narrow",context:"standalone"});case"LLLL":default:return t.month(e,{width:"wide",context:"standalone"})}},w:function(a,r,t,e){var n=kt(a,e);return r==="wo"?t.ordinalNumber(n,{unit:"week"}):b(n,r.length)},I:function(a,r,t){var e=xt(a);return r==="Io"?t.ordinalNumber(e,{unit:"week"}):b(e,r.length)},d:function(a,r,t){return r==="do"?t.ordinalNumber(a.getUTCDate(),{unit:"date"}):Z.d(a,r)},D:function(a,r,t){var e=gr(a);return r==="Do"?t.ordinalNumber(e,{unit:"dayOfYear"}):b(e,r.length)},E:function(a,r,t){var e=a.getUTCDay();switch(r){case"E":case"EE":case"EEE":return t.day(e,{width:"abbreviated",context:"formatting"});case"EEEEE":return t.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return t.day(e,{width:"short",context:"formatting"});case"EEEE":default:return t.day(e,{width:"wide",context:"formatting"})}},e:function(a,r,t,e){var n=a.getUTCDay(),i=(n-e.weekStartsOn+8)%7||7;switch(r){case"e":return String(i);case"ee":return b(i,2);case"eo":return t.ordinalNumber(i,{unit:"day"});case"eee":return t.day(n,{width:"abbreviated",context:"formatting"});case"eeeee":return t.day(n,{width:"narrow",context:"formatting"});case"eeeeee":return t.day(n,{width:"short",context:"formatting"});case"eeee":default:return t.day(n,{width:"wide",context:"formatting"})}},c:function(a,r,t,e){var n=a.getUTCDay(),i=(n-e.weekStartsOn+8)%7||7;switch(r){case"c":return String(i);case"cc":return b(i,r.length);case"co":return t.ordinalNumber(i,{unit:"day"});case"ccc":return t.day(n,{width:"abbreviated",context:"standalone"});case"ccccc":return t.day(n,{width:"narrow",context:"standalone"});case"cccccc":return t.day(n,{width:"short",context:"standalone"});case"cccc":default:return t.day(n,{width:"wide",context:"standalone"})}},i:function(a,r,t){var e=a.getUTCDay(),n=e===0?7:e;switch(r){case"i":return String(n);case"ii":return b(n,r.length);case"io":return t.ordinalNumber(n,{unit:"day"});case"iii":return t.day(e,{width:"abbreviated",context:"formatting"});case"iiiii":return t.day(e,{width:"narrow",context:"formatting"});case"iiiiii":return t.day(e,{width:"short",context:"formatting"});case"iiii":default:return t.day(e,{width:"wide",context:"formatting"})}},a:function(a,r,t){var e=a.getUTCHours(),n=e/12>=1?"pm":"am";switch(r){case"a":case"aa":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"aaa":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"aaaa":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},b:function(a,r,t){var e=a.getUTCHours(),n;switch(e===12?n=ae.noon:e===0?n=ae.midnight:n=e/12>=1?"pm":"am",r){case"b":case"bb":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"bbb":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"bbbb":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},B:function(a,r,t){var e=a.getUTCHours(),n;switch(e>=17?n=ae.evening:e>=12?n=ae.afternoon:e>=4?n=ae.morning:n=ae.night,r){case"B":case"BB":case"BBB":return t.dayPeriod(n,{width:"abbreviated",context:"formatting"});case"BBBBB":return t.dayPeriod(n,{width:"narrow",context:"formatting"});case"BBBB":default:return t.dayPeriod(n,{width:"wide",context:"formatting"})}},h:function(a,r,t){if(r==="ho"){var e=a.getUTCHours()%12;return e===0&&(e=12),t.ordinalNumber(e,{unit:"hour"})}return Z.h(a,r)},H:function(a,r,t){return r==="Ho"?t.ordinalNumber(a.getUTCHours(),{unit:"hour"}):Z.H(a,r)},K:function(a,r,t){var e=a.getUTCHours()%12;return r==="Ko"?t.ordinalNumber(e,{unit:"hour"}):b(e,r.length)},k:function(a,r,t){var e=a.getUTCHours();return e===0&&(e=24),r==="ko"?t.ordinalNumber(e,{unit:"hour"}):b(e,r.length)},m:function(a,r,t){return r==="mo"?t.ordinalNumber(a.getUTCMinutes(),{unit:"minute"}):Z.m(a,r)},s:function(a,r,t){return r==="so"?t.ordinalNumber(a.getUTCSeconds(),{unit:"second"}):Z.s(a,r)},S:function(a,r){return Z.S(a,r)},X:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();if(i===0)return"Z";switch(r){case"X":return ft(i);case"XXXX":case"XX":return te(i);case"XXXXX":case"XXX":default:return te(i,":")}},x:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"x":return ft(i);case"xxxx":case"xx":return te(i);case"xxxxx":case"xxx":default:return te(i,":")}},O:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"O":case"OO":case"OOO":return"GMT"+dt(i,":");case"OOOO":default:return"GMT"+te(i,":")}},z:function(a,r,t,e){var n=e._originalDate||a,i=n.getTimezoneOffset();switch(r){case"z":case"zz":case"zzz":return"GMT"+dt(i,":");case"zzzz":default:return"GMT"+te(i,":")}},t:function(a,r,t,e){var n=e._originalDate||a,i=Math.floor(n.getTime()/1e3);return b(i,r.length)},T:function(a,r,t,e){var n=e._originalDate||a,i=n.getTime();return b(i,r.length)}};function dt(o,a){var r=o>0?"-":"+",t=Math.abs(o),e=Math.floor(t/60),n=t%60;if(n===0)return r+String(e);var i=a;return r+String(e)+i+b(n,2)}function ft(o,a){if(o%60===0){var r=o>0?"-":"+";return r+b(Math.abs(o)/60,2)}return te(o,a)}function te(o,a){var r=a||"",t=o>0?"-":"+",e=Math.abs(o),n=b(Math.floor(e/60),2),i=b(e%60,2);return t+n+r+i}var vt=function(a,r){switch(a){case"P":return r.date({width:"short"});case"PP":return r.date({width:"medium"});case"PPP":return r.date({width:"long"});case"PPPP":default:return r.date({width:"full"})}},_t=function(a,r){switch(a){case"p":return r.time({width:"short"});case"pp":return r.time({width:"medium"});case"ppp":return r.time({width:"long"});case"pppp":default:return r.time({width:"full"})}},Mr=function(a,r){var t=a.match(/(P+)(p+)?/)||[],e=t[1],n=t[2];if(!n)return vt(a,r);var i;switch(e){case"P":i=r.dateTime({width:"short"});break;case"PP":i=r.dateTime({width:"medium"});break;case"PPP":i=r.dateTime({width:"long"});break;case"PPPP":default:i=r.dateTime({width:"full"});break}return i.replace("{{date}}",vt(e,r)).replace("{{time}}",_t(n,r))},Be={p:_t,P:Mr},Or=["D","DD"],Pr=["YY","YYYY"];function Yt(o){return Or.indexOf(o)!==-1}function Et(o){return Pr.indexOf(o)!==-1}function Pe(o,a,r){if(o==="YYYY")throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(a,"`) for formatting years to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="YY")throw new RangeError("Use `yy` instead of `YY` (in `".concat(a,"`) for formatting years to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="D")throw new RangeError("Use `d` instead of `D` (in `".concat(a,"`) for formatting days of the month to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"));if(o==="DD")throw new RangeError("Use `dd` instead of `DD` (in `".concat(a,"`) for formatting days of the month to the input `").concat(r,"`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md"))}var Cr={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},xr=function(a,r,t){var e,n=Cr[a];return typeof n=="string"?e=n:r===1?e=n.one:e=n.other.replace("{{count}}",r.toString()),t!=null&&t.addSuffix?t.comparison&&t.comparison>0?"in "+e:e+" ago":e};function Ae(o){return function(){var a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},r=a.width?String(a.width):o.defaultWidth,t=o.formats[r]||o.formats[o.defaultWidth];return t}}var kr={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},_r={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},Yr={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Er={date:Ae({formats:kr,defaultWidth:"full"}),time:Ae({formats:_r,defaultWidth:"full"}),dateTime:Ae({formats:Yr,defaultWidth:"full"})},Nr={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Ur=function(a,r,t,e){return Nr[a]};function de(o){return function(a,r){var t=r!=null&&r.context?String(r.context):"standalone",e;if(t==="formatting"&&o.formattingValues){var n=o.defaultFormattingWidth||o.defaultWidth,i=r!=null&&r.width?String(r.width):n;e=o.formattingValues[i]||o.formattingValues[n]}else{var u=o.defaultWidth,s=r!=null&&r.width?String(r.width):o.defaultWidth;e=o.values[s]||o.values[u]}var l=o.argumentCallback?o.argumentCallback(a):a;return e[l]}}var Sr={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},Hr={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},Wr={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},Ir={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},Ar={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},$r={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},Lr=function(a,r){var t=Number(a),e=t%100;if(e>20||e<10)switch(e%10){case 1:return t+"st";case 2:return t+"nd";case 3:return t+"rd"}return t+"th"},Fr={ordinalNumber:Lr,era:de({values:Sr,defaultWidth:"wide"}),quarter:de({values:Hr,defaultWidth:"wide",argumentCallback:function(a){return a-1}}),month:de({values:Wr,defaultWidth:"wide"}),day:de({values:Ir,defaultWidth:"wide"}),dayPeriod:de({values:Ar,defaultWidth:"wide",formattingValues:$r,defaultFormattingWidth:"wide"})};function fe(o){return function(a){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=r.width,e=t&&o.matchPatterns[t]||o.matchPatterns[o.defaultMatchWidth],n=a.match(e);if(!n)return null;var i=n[0],u=t&&o.parsePatterns[t]||o.parsePatterns[o.defaultParseWidth],s=Array.isArray(u)?qr(u,function(v){return v.test(i)}):Rr(u,function(v){return v.test(i)}),l;l=o.valueCallback?o.valueCallback(s):s,l=r.valueCallback?r.valueCallback(l):l;var c=a.slice(i.length);return{value:l,rest:c}}}function Rr(o,a){for(var r in o)if(o.hasOwnProperty(r)&&a(o[r]))return r}function qr(o,a){for(var r=0;r<o.length;r++)if(a(o[r]))return r}function Qr(o){return function(a){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=a.match(o.matchPattern);if(!t)return null;var e=t[0],n=a.match(o.parsePattern);if(!n)return null;var i=o.valueCallback?o.valueCallback(n[0]):n[0];i=r.valueCallback?r.valueCallback(i):i;var u=a.slice(e.length);return{value:i,rest:u}}}var Br=/^(\d+)(th|st|nd|rd)?/i,jr=/\d+/i,Gr={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},Xr={any:[/^b/i,/^(a|c)/i]},zr={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},Vr={any:[/1/i,/2/i,/3/i,/4/i]},Zr={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Jr={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},Kr={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},ea={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},ta={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},ra={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},aa={ordinalNumber:Qr({matchPattern:Br,parsePattern:jr,valueCallback:function(a){return parseInt(a,10)}}),era:fe({matchPatterns:Gr,defaultMatchWidth:"wide",parsePatterns:Xr,defaultParseWidth:"any"}),quarter:fe({matchPatterns:zr,defaultMatchWidth:"wide",parsePatterns:Vr,defaultParseWidth:"any",valueCallback:function(a){return a+1}}),month:fe({matchPatterns:Zr,defaultMatchWidth:"wide",parsePatterns:Jr,defaultParseWidth:"any"}),day:fe({matchPatterns:Kr,defaultMatchWidth:"wide",parsePatterns:ea,defaultParseWidth:"any"}),dayPeriod:fe({matchPatterns:ta,defaultMatchWidth:"any",parsePatterns:ra,defaultParseWidth:"any"})},Je={code:"en-US",formatDistance:xr,formatLong:Er,formatRelative:Ur,localize:Fr,match:aa,options:{weekStartsOn:0,firstWeekContainsDate:1}},na=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,ia=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,oa=/^'([^]*?)'?$/,ua=/''/g,sa=/[a-zA-Z]/;function la(o,a,r){var t,e,n,i,u,s,l,c,v,g,w,y,E,_,S,A,B,L;d(2,arguments);var K=String(a),I=J(),F=(t=(e=r==null?void 0:r.locale)!==null&&e!==void 0?e:I.locale)!==null&&t!==void 0?t:Je,X=C((n=(i=(u=(s=r==null?void 0:r.firstWeekContainsDate)!==null&&s!==void 0?s:r==null||(l=r.locale)===null||l===void 0||(c=l.options)===null||c===void 0?void 0:c.firstWeekContainsDate)!==null&&u!==void 0?u:I.firstWeekContainsDate)!==null&&i!==void 0?i:(v=I.locale)===null||v===void 0||(g=v.options)===null||g===void 0?void 0:g.firstWeekContainsDate)!==null&&n!==void 0?n:1);if(!(X>=1&&X<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var z=C((w=(y=(E=(_=r==null?void 0:r.weekStartsOn)!==null&&_!==void 0?_:r==null||(S=r.locale)===null||S===void 0||(A=S.options)===null||A===void 0?void 0:A.weekStartsOn)!==null&&E!==void 0?E:I.weekStartsOn)!==null&&y!==void 0?y:(B=I.locale)===null||B===void 0||(L=B.options)===null||L===void 0?void 0:L.weekStartsOn)!==null&&w!==void 0?w:0);if(!(z>=0&&z<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!F.localize)throw new RangeError("locale must contain localize property");if(!F.formatLong)throw new RangeError("locale must contain formatLong property");var V=f(o);if(!Ot(V))throw new RangeError("Invalid time value");var ue=Oe(V),se=Pt(V,ue),le={firstWeekContainsDate:X,weekStartsOn:z,locale:F,_originalDate:V},Ne=K.match(ia).map(function(W){var $=W[0];if($==="p"||$==="P"){var ee=Be[$];return ee(W,F.formatLong)}return W}).join("").match(na).map(function(W){if(W==="''")return"'";var $=W[0];if($==="'")return ca(W);var ee=Dr[$];if(ee)return!(r!=null&&r.useAdditionalWeekYearTokens)&&Et(W)&&Pe(W,a,String(o)),!(r!=null&&r.useAdditionalDayOfYearTokens)&&Yt(W)&&Pe(W,a,String(o)),ee(se,W,F.localize,le);if($.match(sa))throw new RangeError("Format string contains an unescaped latin alphabet character `"+$+"`");return W}).join("");return Ne}function ca(o){var a=o.match(oa);return a?a[1].replace(ua,"'"):o}function da(o){d(1,arguments);var a=f(o),r=a.getDate();return r}function fa(o){d(1,arguments);var a=f(o),r=a.getDay();return r}function Nt(o){d(1,arguments);var a=f(o),r=a.getFullYear(),t=a.getMonth(),e=new Date(0);return e.setFullYear(r,t+1,0),e.setHours(0,0,0,0),e.getDate()}function va(o){d(1,arguments);var a=f(o),r=a.getHours();return r}function ha(o){d(1,arguments);var a=f(o),r=a.getMinutes();return r}function ma(o){d(1,arguments);var a=f(o),r=a.getMonth();return r}function pa(o){d(1,arguments);var a=f(o),r=a.getSeconds();return r}function ga(o){return d(1,arguments),f(o).getFullYear()}function ye(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()>t.getTime()}function ne(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()<t.getTime()}function wa(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getTime()===t.getTime()}function ya(o,a){d(2,arguments);var r=ie(o),t=ie(a);return r.getTime()===t.getTime()}function ba(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()===t.getFullYear()}function Ta(o,a){d(2,arguments);var r=f(o),t=f(a);return r.getFullYear()===t.getFullYear()&&r.getMonth()===t.getMonth()}function ht(o){d(1,arguments);var a=f(o);return a.setMinutes(0,0,0),a}function Da(o,a){d(2,arguments);var r=ht(o),t=ht(a);return r.getTime()===t.getTime()}function mt(o,a){var r=typeof Symbol<"u"&&o[Symbol.iterator]||o["@@iterator"];if(!r){if(Array.isArray(o)||(r=Ft(o))||a){r&&(o=r);var t=0,e=function(){};return{s:e,n:function(){return t>=o.length?{done:!0}:{done:!1,value:o[t++]}},e:function(l){throw l},f:e}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
2
2
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var n,i=!0,u=!1;return{s:function(){r=r.call(o)},n:function(){var l=r.next();return i=l.done,l},e:function(l){u=!0,n=l},f:function(){try{i||r.return==null||r.return()}finally{if(u)throw n}}}}function Ma(o,a){if(o==null)throw new TypeError("assign requires that input parameter not be null or undefined");for(var r in a)Object.prototype.hasOwnProperty.call(a,r)&&(o[r]=a[r]);return o}var Oa=10,Ut=function(){function o(){T(this,o),h(this,"priority",void 0),h(this,"subPriority",0)}return D(o,[{key:"validate",value:function(r,t){return!0}}]),o}(),Pa=function(o){M(r,o);var a=O(r);function r(t,e,n,i,u){var s;return T(this,r),s=a.call(this),s.value=t,s.validateValue=e,s.setValue=n,s.priority=i,u&&(s.subPriority=u),s}return D(r,[{key:"validate",value:function(e,n){return this.validateValue(e,this.value,n)}},{key:"set",value:function(e,n,i){return this.setValue(e,n,this.value,i)}}]),r}(Ut),Ca=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",Oa),h(p(t),"subPriority",-1),t}return D(r,[{key:"set",value:function(e,n){if(n.timestampIsSet)return e;var i=new Date(0);return i.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),i.setHours(e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()),i}}]),r}(Ut),P=function(){function o(){T(this,o),h(this,"incompatibleTokens",void 0),h(this,"priority",void 0),h(this,"subPriority",void 0)}return D(o,[{key:"run",value:function(r,t,e,n){var i=this.parse(r,t,e,n);return i?{setter:new Pa(i.value,this.validate,this.set,this.priority,this.subPriority),rest:i.rest}:null}},{key:"validate",value:function(r,t,e){return!0}}]),o}(),xa=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",140),h(p(t),"incompatibleTokens",["R","u","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"G":case"GG":case"GGG":return i.era(e,{width:"abbreviated"})||i.era(e,{width:"narrow"});case"GGGGG":return i.era(e,{width:"narrow"});case"GGGG":default:return i.era(e,{width:"wide"})||i.era(e,{width:"abbreviated"})||i.era(e,{width:"narrow"})}}},{key:"set",value:function(e,n,i){return n.era=i,e.setUTCFullYear(i,0,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),N={month:/^(1[0-2]|0?\d)/,date:/^(3[0-1]|[0-2]?\d)/,dayOfYear:/^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/,week:/^(5[0-3]|[0-4]?\d)/,hour23h:/^(2[0-3]|[0-1]?\d)/,hour24h:/^(2[0-4]|[0-1]?\d)/,hour11h:/^(1[0-1]|0?\d)/,hour12h:/^(1[0-2]|0?\d)/,minute:/^[0-5]?\d/,second:/^[0-5]?\d/,singleDigit:/^\d/,twoDigits:/^\d{1,2}/,threeDigits:/^\d{1,3}/,fourDigits:/^\d{1,4}/,anyDigitsSigned:/^-?\d+/,singleDigitSigned:/^-?\d/,twoDigitsSigned:/^-?\d{1,2}/,threeDigitsSigned:/^-?\d{1,3}/,fourDigitsSigned:/^-?\d{1,4}/},j={basicOptionalMinutes:/^([+-])(\d{2})(\d{2})?|Z/,basic:/^([+-])(\d{2})(\d{2})|Z/,basicOptionalSeconds:/^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,extended:/^([+-])(\d{2}):(\d{2})|Z/,extendedOptionalSeconds:/^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/};function U(o,a){return o&&{value:a(o.value),rest:o.rest}}function k(o,a){var r=a.match(o);return r?{value:parseInt(r[0],10),rest:a.slice(r[0].length)}:null}function G(o,a){var r=a.match(o);if(!r)return null;if(r[0]==="Z")return{value:0,rest:a.slice(1)};var t=r[1]==="+"?1:-1,e=r[2]?parseInt(r[2],10):0,n=r[3]?parseInt(r[3],10):0,i=r[5]?parseInt(r[5],10):0;return{value:t*(e*Ye+n*_e+i*lr),rest:a.slice(r[0].length)}}function St(o){return k(N.anyDigitsSigned,o)}function Y(o,a){switch(o){case 1:return k(N.singleDigit,a);case 2:return k(N.twoDigits,a);case 3:return k(N.threeDigits,a);case 4:return k(N.fourDigits,a);default:return k(new RegExp("^\\d{1,"+o+"}"),a)}}function Ce(o,a){switch(o){case 1:return k(N.singleDigitSigned,a);case 2:return k(N.twoDigitsSigned,a);case 3:return k(N.threeDigitsSigned,a);case 4:return k(N.fourDigitsSigned,a);default:return k(new RegExp("^-?\\d{1,"+o+"}"),a)}}function Ke(o){switch(o){case"morning":return 4;case"evening":return 17;case"pm":case"noon":case"afternoon":return 12;case"am":case"midnight":case"night":default:return 0}}function Ht(o,a){var r=a>0,t=r?a:1-a,e;if(t<=50)e=o||100;else{var n=t+50,i=Math.floor(n/100)*100,u=o>=n%100;e=o+i-(u?100:0)}return r?e:1-e}function Wt(o){return o%400===0||o%4===0&&o%100!==0}var ka=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",130),h(p(t),"incompatibleTokens",["Y","R","u","w","I","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){var u=function(l){return{year:l,isTwoDigitYear:n==="yy"}};switch(n){case"y":return U(Y(4,e),u);case"yo":return U(i.ordinalNumber(e,{unit:"year"}),u);default:return U(Y(n.length,e),u)}}},{key:"validate",value:function(e,n){return n.isTwoDigitYear||n.year>0}},{key:"set",value:function(e,n,i){var u=e.getUTCFullYear();if(i.isTwoDigitYear){var s=Ht(i.year,u);return e.setUTCFullYear(s,0,1),e.setUTCHours(0,0,0,0),e}var l=!("era"in n)||n.era===1?i.year:1-i.year;return e.setUTCFullYear(l,0,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),_a=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",130),h(p(t),"incompatibleTokens",["y","R","u","Q","q","M","L","I","d","D","i","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){var u=function(l){return{year:l,isTwoDigitYear:n==="YY"}};switch(n){case"Y":return U(Y(4,e),u);case"Yo":return U(i.ordinalNumber(e,{unit:"year"}),u);default:return U(Y(n.length,e),u)}}},{key:"validate",value:function(e,n){return n.isTwoDigitYear||n.year>0}},{key:"set",value:function(e,n,i,u){var s=Ze(e,u);if(i.isTwoDigitYear){var l=Ht(i.year,s);return e.setUTCFullYear(l,0,u.firstWeekContainsDate),e.setUTCHours(0,0,0,0),re(e,u)}var c=!("era"in n)||n.era===1?i.year:1-i.year;return e.setUTCFullYear(c,0,u.firstWeekContainsDate),e.setUTCHours(0,0,0,0),re(e,u)}}]),r}(P),Ya=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",130),h(p(t),"incompatibleTokens",["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n){return Ce(n==="R"?4:n.length,e)}},{key:"set",value:function(e,n,i){var u=new Date(0);return u.setUTCFullYear(i,0,4),u.setUTCHours(0,0,0,0),oe(u)}}]),r}(P),Ea=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",130),h(p(t),"incompatibleTokens",["G","y","Y","R","w","I","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n){return Ce(n==="u"?4:n.length,e)}},{key:"set",value:function(e,n,i){return e.setUTCFullYear(i,0,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),Na=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",120),h(p(t),"incompatibleTokens",["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"Q":case"QQ":return Y(n.length,e);case"Qo":return i.ordinalNumber(e,{unit:"quarter"});case"QQQ":return i.quarter(e,{width:"abbreviated",context:"formatting"})||i.quarter(e,{width:"narrow",context:"formatting"});case"QQQQQ":return i.quarter(e,{width:"narrow",context:"formatting"});case"QQQQ":default:return i.quarter(e,{width:"wide",context:"formatting"})||i.quarter(e,{width:"abbreviated",context:"formatting"})||i.quarter(e,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(e,n){return n>=1&&n<=4}},{key:"set",value:function(e,n,i){return e.setUTCMonth((i-1)*3,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),Ua=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",120),h(p(t),"incompatibleTokens",["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"q":case"qq":return Y(n.length,e);case"qo":return i.ordinalNumber(e,{unit:"quarter"});case"qqq":return i.quarter(e,{width:"abbreviated",context:"standalone"})||i.quarter(e,{width:"narrow",context:"standalone"});case"qqqqq":return i.quarter(e,{width:"narrow",context:"standalone"});case"qqqq":default:return i.quarter(e,{width:"wide",context:"standalone"})||i.quarter(e,{width:"abbreviated",context:"standalone"})||i.quarter(e,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(e,n){return n>=1&&n<=4}},{key:"set",value:function(e,n,i){return e.setUTCMonth((i-1)*3,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),Sa=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"incompatibleTokens",["Y","R","q","Q","L","w","I","D","i","e","c","t","T"]),h(p(t),"priority",110),t}return D(r,[{key:"parse",value:function(e,n,i){var u=function(l){return l-1};switch(n){case"M":return U(k(N.month,e),u);case"MM":return U(Y(2,e),u);case"Mo":return U(i.ordinalNumber(e,{unit:"month"}),u);case"MMM":return i.month(e,{width:"abbreviated",context:"formatting"})||i.month(e,{width:"narrow",context:"formatting"});case"MMMMM":return i.month(e,{width:"narrow",context:"formatting"});case"MMMM":default:return i.month(e,{width:"wide",context:"formatting"})||i.month(e,{width:"abbreviated",context:"formatting"})||i.month(e,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(e,n){return n>=0&&n<=11}},{key:"set",value:function(e,n,i){return e.setUTCMonth(i,1),e.setUTCHours(0,0,0,0),e}}]),r}(P),Ha=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",110),h(p(t),"incompatibleTokens",["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){var u=function(l){return l-1};switch(n){case"L":return U(k(N.month,e),u);case"LL":return U(Y(2,e),u);case"Lo":return U(i.ordinalNumber(e,{unit:"month"}),u);case"LLL":return i.month(e,{width:"abbreviated",context:"standalone"})||i.month(e,{width:"narrow",context:"standalone"});case"LLLLL":return i.month(e,{width:"narrow",context:"standalone"});case"LLLL":default:return i.month(e,{width:"wide",context:"standalone"})||i.month(e,{width:"abbreviated",context:"standalone"})||i.month(e,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(e,n){return n>=0&&n<=11}},{key:"set",value:function(e,n,i){return e.setUTCMonth(i,1),e.setUTCHours(0,0,0,0),e}}]),r}(P);function Wa(o,a,r){d(2,arguments);var t=f(o),e=C(a),n=kt(t,r)-e;return t.setUTCDate(t.getUTCDate()-n*7),t}var Ia=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",100),h(p(t),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","i","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"w":return k(N.week,e);case"wo":return i.ordinalNumber(e,{unit:"week"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=1&&n<=53}},{key:"set",value:function(e,n,i,u){return re(Wa(e,i,u),u)}}]),r}(P);function Aa(o,a){d(2,arguments);var r=f(o),t=C(a),e=xt(r)-t;return r.setUTCDate(r.getUTCDate()-e*7),r}var $a=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",100),h(p(t),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"I":return k(N.week,e);case"Io":return i.ordinalNumber(e,{unit:"week"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=1&&n<=53}},{key:"set",value:function(e,n,i){return oe(Aa(e,i))}}]),r}(P),La=[31,28,31,30,31,30,31,31,30,31,30,31],Fa=[31,29,31,30,31,30,31,31,30,31,30,31],Ra=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"subPriority",1),h(p(t),"incompatibleTokens",["Y","R","q","Q","w","I","D","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"d":return k(N.date,e);case"do":return i.ordinalNumber(e,{unit:"date"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){var i=e.getUTCFullYear(),u=Wt(i),s=e.getUTCMonth();return u?n>=1&&n<=Fa[s]:n>=1&&n<=La[s]}},{key:"set",value:function(e,n,i){return e.setUTCDate(i),e.setUTCHours(0,0,0,0),e}}]),r}(P),qa=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"subpriority",1),h(p(t),"incompatibleTokens",["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"D":case"DD":return k(N.dayOfYear,e);case"Do":return i.ordinalNumber(e,{unit:"date"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){var i=e.getUTCFullYear(),u=Wt(i);return u?n>=1&&n<=366:n>=1&&n<=365}},{key:"set",value:function(e,n,i){return e.setUTCMonth(0,i),e.setUTCHours(0,0,0,0),e}}]),r}(P);function et(o,a,r){var t,e,n,i,u,s,l,c;d(2,arguments);var v=J(),g=C((t=(e=(n=(i=r==null?void 0:r.weekStartsOn)!==null&&i!==void 0?i:r==null||(u=r.locale)===null||u===void 0||(s=u.options)===null||s===void 0?void 0:s.weekStartsOn)!==null&&n!==void 0?n:v.weekStartsOn)!==null&&e!==void 0?e:(l=v.locale)===null||l===void 0||(c=l.options)===null||c===void 0?void 0:c.weekStartsOn)!==null&&t!==void 0?t:0);if(!(g>=0&&g<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var w=f(o),y=C(a),E=w.getUTCDay(),_=y%7,S=(_+7)%7,A=(S<g?7:0)+y-E;return w.setUTCDate(w.getUTCDate()+A),w}var Qa=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"incompatibleTokens",["D","i","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"E":case"EE":case"EEE":return i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"});case"EEEEE":return i.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"});case"EEEE":default:return i.day(e,{width:"wide",context:"formatting"})||i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(e,n){return n>=0&&n<=6}},{key:"set",value:function(e,n,i,u){return e=et(e,i,u),e.setUTCHours(0,0,0,0),e}}]),r}(P),Ba=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i,u){var s=function(c){var v=Math.floor((c-1)/7)*7;return(c+u.weekStartsOn+6)%7+v};switch(n){case"e":case"ee":return U(Y(n.length,e),s);case"eo":return U(i.ordinalNumber(e,{unit:"day"}),s);case"eee":return i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"});case"eeeee":return i.day(e,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"});case"eeee":default:return i.day(e,{width:"wide",context:"formatting"})||i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"})}}},{key:"validate",value:function(e,n){return n>=0&&n<=6}},{key:"set",value:function(e,n,i,u){return e=et(e,i,u),e.setUTCHours(0,0,0,0),e}}]),r}(P),ja=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"incompatibleTokens",["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i,u){var s=function(c){var v=Math.floor((c-1)/7)*7;return(c+u.weekStartsOn+6)%7+v};switch(n){case"c":case"cc":return U(Y(n.length,e),s);case"co":return U(i.ordinalNumber(e,{unit:"day"}),s);case"ccc":return i.day(e,{width:"abbreviated",context:"standalone"})||i.day(e,{width:"short",context:"standalone"})||i.day(e,{width:"narrow",context:"standalone"});case"ccccc":return i.day(e,{width:"narrow",context:"standalone"});case"cccccc":return i.day(e,{width:"short",context:"standalone"})||i.day(e,{width:"narrow",context:"standalone"});case"cccc":default:return i.day(e,{width:"wide",context:"standalone"})||i.day(e,{width:"abbreviated",context:"standalone"})||i.day(e,{width:"short",context:"standalone"})||i.day(e,{width:"narrow",context:"standalone"})}}},{key:"validate",value:function(e,n){return n>=0&&n<=6}},{key:"set",value:function(e,n,i,u){return e=et(e,i,u),e.setUTCHours(0,0,0,0),e}}]),r}(P);function Ga(o,a){d(2,arguments);var r=C(a);r%7===0&&(r=r-7);var t=1,e=f(o),n=e.getUTCDay(),i=r%7,u=(i+7)%7,s=(u<t?7:0)+r-n;return e.setUTCDate(e.getUTCDate()+s),e}var Xa=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",90),h(p(t),"incompatibleTokens",["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){var u=function(l){return l===0?7:l};switch(n){case"i":case"ii":return Y(n.length,e);case"io":return i.ordinalNumber(e,{unit:"day"});case"iii":return U(i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"}),u);case"iiiii":return U(i.day(e,{width:"narrow",context:"formatting"}),u);case"iiiiii":return U(i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"}),u);case"iiii":default:return U(i.day(e,{width:"wide",context:"formatting"})||i.day(e,{width:"abbreviated",context:"formatting"})||i.day(e,{width:"short",context:"formatting"})||i.day(e,{width:"narrow",context:"formatting"}),u)}}},{key:"validate",value:function(e,n){return n>=1&&n<=7}},{key:"set",value:function(e,n,i){return e=Ga(e,i),e.setUTCHours(0,0,0,0),e}}]),r}(P),za=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",80),h(p(t),"incompatibleTokens",["b","B","H","k","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"a":case"aa":case"aaa":return i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaaa":return i.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaa":default:return i.dayPeriod(e,{width:"wide",context:"formatting"})||i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(e,n,i){return e.setUTCHours(Ke(i),0,0,0),e}}]),r}(P),Va=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",80),h(p(t),"incompatibleTokens",["a","B","H","k","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"b":case"bb":case"bbb":return i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbbb":return i.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbb":default:return i.dayPeriod(e,{width:"wide",context:"formatting"})||i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(e,n,i){return e.setUTCHours(Ke(i),0,0,0),e}}]),r}(P),Za=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",80),h(p(t),"incompatibleTokens",["a","b","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"B":case"BB":case"BBB":return i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBBB":return i.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBB":default:return i.dayPeriod(e,{width:"wide",context:"formatting"})||i.dayPeriod(e,{width:"abbreviated",context:"formatting"})||i.dayPeriod(e,{width:"narrow",context:"formatting"})}}},{key:"set",value:function(e,n,i){return e.setUTCHours(Ke(i),0,0,0),e}}]),r}(P),Ja=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",70),h(p(t),"incompatibleTokens",["H","K","k","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"h":return k(N.hour12h,e);case"ho":return i.ordinalNumber(e,{unit:"hour"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=1&&n<=12}},{key:"set",value:function(e,n,i){var u=e.getUTCHours()>=12;return u&&i<12?e.setUTCHours(i+12,0,0,0):!u&&i===12?e.setUTCHours(0,0,0,0):e.setUTCHours(i,0,0,0),e}}]),r}(P),Ka=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",70),h(p(t),"incompatibleTokens",["a","b","h","K","k","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"H":return k(N.hour23h,e);case"Ho":return i.ordinalNumber(e,{unit:"hour"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=0&&n<=23}},{key:"set",value:function(e,n,i){return e.setUTCHours(i,0,0,0),e}}]),r}(P),en=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",70),h(p(t),"incompatibleTokens",["h","H","k","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"K":return k(N.hour11h,e);case"Ko":return i.ordinalNumber(e,{unit:"hour"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=0&&n<=11}},{key:"set",value:function(e,n,i){var u=e.getUTCHours()>=12;return u&&i<12?e.setUTCHours(i+12,0,0,0):e.setUTCHours(i,0,0,0),e}}]),r}(P),tn=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",70),h(p(t),"incompatibleTokens",["a","b","h","H","K","t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"k":return k(N.hour24h,e);case"ko":return i.ordinalNumber(e,{unit:"hour"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=1&&n<=24}},{key:"set",value:function(e,n,i){var u=i<=24?i%24:i;return e.setUTCHours(u,0,0,0),e}}]),r}(P),rn=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",60),h(p(t),"incompatibleTokens",["t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"m":return k(N.minute,e);case"mo":return i.ordinalNumber(e,{unit:"minute"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=0&&n<=59}},{key:"set",value:function(e,n,i){return e.setUTCMinutes(i,0,0),e}}]),r}(P),an=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",50),h(p(t),"incompatibleTokens",["t","T"]),t}return D(r,[{key:"parse",value:function(e,n,i){switch(n){case"s":return k(N.second,e);case"so":return i.ordinalNumber(e,{unit:"second"});default:return Y(n.length,e)}}},{key:"validate",value:function(e,n){return n>=0&&n<=59}},{key:"set",value:function(e,n,i){return e.setUTCSeconds(i,0),e}}]),r}(P),nn=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",30),h(p(t),"incompatibleTokens",["t","T"]),t}return D(r,[{key:"parse",value:function(e,n){var i=function(s){return Math.floor(s*Math.pow(10,-n.length+3))};return U(Y(n.length,e),i)}},{key:"set",value:function(e,n,i){return e.setUTCMilliseconds(i),e}}]),r}(P),on=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",10),h(p(t),"incompatibleTokens",["t","T","x"]),t}return D(r,[{key:"parse",value:function(e,n){switch(n){case"X":return G(j.basicOptionalMinutes,e);case"XX":return G(j.basic,e);case"XXXX":return G(j.basicOptionalSeconds,e);case"XXXXX":return G(j.extendedOptionalSeconds,e);case"XXX":default:return G(j.extended,e)}}},{key:"set",value:function(e,n,i){return n.timestampIsSet?e:new Date(e.getTime()-i)}}]),r}(P),un=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",10),h(p(t),"incompatibleTokens",["t","T","X"]),t}return D(r,[{key:"parse",value:function(e,n){switch(n){case"x":return G(j.basicOptionalMinutes,e);case"xx":return G(j.basic,e);case"xxxx":return G(j.basicOptionalSeconds,e);case"xxxxx":return G(j.extendedOptionalSeconds,e);case"xxx":default:return G(j.extended,e)}}},{key:"set",value:function(e,n,i){return n.timestampIsSet?e:new Date(e.getTime()-i)}}]),r}(P),sn=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",40),h(p(t),"incompatibleTokens","*"),t}return D(r,[{key:"parse",value:function(e){return St(e)}},{key:"set",value:function(e,n,i){return[new Date(i*1e3),{timestampIsSet:!0}]}}]),r}(P),ln=function(o){M(r,o);var a=O(r);function r(){var t;T(this,r);for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return t=a.call.apply(a,[this].concat(n)),h(p(t),"priority",20),h(p(t),"incompatibleTokens","*"),t}return D(r,[{key:"parse",value:function(e){return St(e)}},{key:"set",value:function(e,n,i){return[new Date(i),{timestampIsSet:!0}]}}]),r}(P),cn={G:new xa,y:new ka,Y:new _a,R:new Ya,u:new Ea,Q:new Na,q:new Ua,M:new Sa,L:new Ha,w:new Ia,I:new $a,d:new Ra,D:new qa,E:new Qa,e:new Ba,c:new ja,i:new Xa,a:new za,b:new Va,B:new Za,h:new Ja,H:new Ka,K:new en,k:new tn,m:new rn,s:new an,S:new nn,X:new on,x:new un,t:new sn,T:new ln},dn=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,fn=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,vn=/^'([^]*?)'?$/,hn=/''/g,mn=/\S/,pn=/[a-zA-Z]/;function gn(o,a,r,t){var e,n,i,u,s,l,c,v,g,w,y,E,_,S,A,B,L,K;d(3,arguments);var I=String(o),F=String(a),X=J(),z=(e=(n=t==null?void 0:t.locale)!==null&&n!==void 0?n:X.locale)!==null&&e!==void 0?e:Je;if(!z.match)throw new RangeError("locale must contain match property");var V=C((i=(u=(s=(l=t==null?void 0:t.firstWeekContainsDate)!==null&&l!==void 0?l:t==null||(c=t.locale)===null||c===void 0||(v=c.options)===null||v===void 0?void 0:v.firstWeekContainsDate)!==null&&s!==void 0?s:X.firstWeekContainsDate)!==null&&u!==void 0?u:(g=X.locale)===null||g===void 0||(w=g.options)===null||w===void 0?void 0:w.firstWeekContainsDate)!==null&&i!==void 0?i:1);if(!(V>=1&&V<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var ue=C((y=(E=(_=(S=t==null?void 0:t.weekStartsOn)!==null&&S!==void 0?S:t==null||(A=t.locale)===null||A===void 0||(B=A.options)===null||B===void 0?void 0:B.weekStartsOn)!==null&&_!==void 0?_:X.weekStartsOn)!==null&&E!==void 0?E:(L=X.locale)===null||L===void 0||(K=L.options)===null||K===void 0?void 0:K.weekStartsOn)!==null&&y!==void 0?y:0);if(!(ue>=0&&ue<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(F==="")return I===""?f(r):new Date(NaN);var se={firstWeekContainsDate:V,weekStartsOn:ue,locale:z},le=[new Ca],Ne=F.match(fn).map(function(H){var x=H[0];if(x in Be){var R=Be[x];return R(H,z.formatLong)}return H}).join("").match(dn),W=[],$=mt(Ne),ee;try{var $t=function(){var x=ee.value;!(t!=null&&t.useAdditionalWeekYearTokens)&&Et(x)&&Pe(x,F,o),!(t!=null&&t.useAdditionalDayOfYearTokens)&&Yt(x)&&Pe(x,F,o);var R=x[0],we=cn[R];if(we){var it=we.incompatibleTokens;if(Array.isArray(it)){var ot=W.find(function(ut){return it.includes(ut.token)||ut.token===R});if(ot)throw new RangeError("The format string mustn't contain `".concat(ot.fullToken,"` and `").concat(x,"` at the same time"))}else if(we.incompatibleTokens==="*"&&W.length>0)throw new RangeError("The format string mustn't contain `".concat(x,"` and any other token at the same time"));W.push({token:R,fullToken:x});var Se=we.run(I,x,z.match,se);if(!Se)return{v:new Date(NaN)};le.push(Se.setter),I=Se.rest}else{if(R.match(pn))throw new RangeError("Format string contains an unescaped latin alphabet character `"+R+"`");if(x==="''"?x="'":R==="'"&&(x=wn(x)),I.indexOf(x)===0)I=I.slice(x.length);else return{v:new Date(NaN)}}};for($.s();!(ee=$.n()).done;){var tt=$t();if(Ve(tt)==="object")return tt.v}}catch(H){$.e(H)}finally{$.f()}if(I.length>0&&mn.test(I))return new Date(NaN);var Lt=le.map(function(H){return H.priority}).sort(function(H,x){return x-H}).filter(function(H,x,R){return R.indexOf(H)===x}).map(function(H){return le.filter(function(x){return x.priority===H}).sort(function(x,R){return R.subPriority-x.subPriority})}).map(function(H){return H[0]}),Ue=f(r);if(isNaN(Ue.getTime()))return new Date(NaN);var ce=Pt(Ue,Oe(Ue)),rt={},pe=mt(Lt),at;try{for(pe.s();!(at=pe.n()).done;){var nt=at.value;if(!nt.validate(ce,se))return new Date(NaN);var ge=nt.set(ce,rt,se);Array.isArray(ge)?(ce=ge[0],Ma(rt,ge[1])):ce=ge}}catch(H){pe.e(H)}finally{pe.f()}return ce}function wn(o){return o.match(vn)[1].replace(hn,"'")}function yn(o,a){d(2,arguments);var r=f(o),t=C(a);return r.setDate(t),r}function bn(o,a){d(2,arguments);var r=f(o),t=C(a);return r.setHours(t),r}function Tn(o,a){d(2,arguments);var r=f(o),t=C(a);return r.setMinutes(t),r}function Dn(o,a){d(2,arguments);var r=f(o),t=C(a),e=r.getFullYear(),n=r.getDate(),i=new Date(0);i.setFullYear(e,t,15),i.setHours(0,0,0,0);var u=Nt(i);return r.setMonth(t,Math.min(n,u)),r}function Mn(o,a){d(2,arguments);var r=f(o),t=C(a);return r.setSeconds(t),r}function On(o,a){d(2,arguments);var r=f(o),t=C(a);return isNaN(r.getTime())?new Date(NaN):(r.setFullYear(t),r)}function be(o){d(1,arguments);var a=f(o);return a.setDate(1),a.setHours(0,0,0,0),a}function $e(o,a){var r,t,e,n,i,u,s,l;d(1,arguments);var c=J(),v=C((r=(t=(e=(n=a==null?void 0:a.weekStartsOn)!==null&&n!==void 0?n:a==null||(i=a.locale)===null||i===void 0||(u=i.options)===null||u===void 0?void 0:u.weekStartsOn)!==null&&e!==void 0?e:c.weekStartsOn)!==null&&t!==void 0?t:(s=c.locale)===null||s===void 0||(l=s.options)===null||l===void 0?void 0:l.weekStartsOn)!==null&&r!==void 0?r:0);if(!(v>=0&&v<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var g=f(o),w=g.getDay(),y=(w<v?7:0)+w-v;return g.setDate(g.getDate()-y),g.setHours(0,0,0,0),g}function Te(o){d(1,arguments);var a=f(o),r=new Date(0);return r.setFullYear(a.getFullYear(),0,1),r.setHours(0,0,0,0),r}function Pn(o,a){var r;d(1,arguments);var t=C((r=void 0)!==null&&r!==void 0?r:2);if(t!==2&&t!==1&&t!==0)throw new RangeError("additionalDigits must be 0, 1 or 2");if(!(typeof o=="string"||Object.prototype.toString.call(o)==="[object String]"))return new Date(NaN);var e=_n(o),n;if(e.date){var i=Yn(e.date,t);n=En(i.restDateString,i.year)}if(!n||isNaN(n.getTime()))return new Date(NaN);var u=n.getTime(),s=0,l;if(e.time&&(s=Nn(e.time),isNaN(s)))return new Date(NaN);if(e.timezone){if(l=Un(e.timezone),isNaN(l))return new Date(NaN)}else{var c=new Date(u+s),v=new Date(0);return v.setFullYear(c.getUTCFullYear(),c.getUTCMonth(),c.getUTCDate()),v.setHours(c.getUTCHours(),c.getUTCMinutes(),c.getUTCSeconds(),c.getUTCMilliseconds()),v}return new Date(u+s+l)}var De={dateTimeDelimiter:/[T ]/,timeZoneDelimiter:/[Z ]/i,timezone:/([Z+-].*)$/},Cn=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,xn=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,kn=/^([+-])(\d{2})(?::?(\d{2}))?$/;function _n(o){var a={},r=o.split(De.dateTimeDelimiter),t;if(r.length>2)return a;if(/:/.test(r[0])?t=r[0]:(a.date=r[0],t=r[1],De.timeZoneDelimiter.test(a.date)&&(a.date=o.split(De.timeZoneDelimiter)[0],t=o.substr(a.date.length,o.length))),t){var e=De.timezone.exec(t);e?(a.time=t.replace(e[1],""),a.timezone=e[1]):a.time=t}return a}function Yn(o,a){var r=new RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+a)+"})|(\\d{2}|[+-]\\d{"+(2+a)+"})$)"),t=o.match(r);if(!t)return{year:NaN,restDateString:""};var e=t[1]?parseInt(t[1]):null,n=t[2]?parseInt(t[2]):null;return{year:n===null?e:n*100,restDateString:o.slice((t[1]||t[2]).length)}}function En(o,a){if(a===null)return new Date(NaN);var r=o.match(Cn);if(!r)return new Date(NaN);var t=!!r[4],e=ve(r[1]),n=ve(r[2])-1,i=ve(r[3]),u=ve(r[4]),s=ve(r[5])-1;if(t)return An(a,u,s)?Sn(a,u,s):new Date(NaN);var l=new Date(0);return!Wn(a,n,i)||!In(a,e)?new Date(NaN):(l.setUTCFullYear(a,n,Math.max(e,i)),l)}function ve(o){return o?parseInt(o):1}function Nn(o){var a=o.match(xn);if(!a)return NaN;var r=Le(a[1]),t=Le(a[2]),e=Le(a[3]);return $n(r,t,e)?r*Ye+t*_e+e*1e3:NaN}function Le(o){return o&&parseFloat(o.replace(",","."))||0}function Un(o){if(o==="Z")return 0;var a=o.match(kn);if(!a)return 0;var r=a[1]==="+"?-1:1,t=parseInt(a[2]),e=a[3]&&parseInt(a[3])||0;return Ln(t,e)?r*(t*Ye+e*_e):NaN}function Sn(o,a,r){var t=new Date(0);t.setUTCFullYear(o,0,4);var e=t.getUTCDay()||7,n=(a-1)*7+r+1-e;return t.setUTCDate(t.getUTCDate()+n),t}var Hn=[31,null,31,30,31,30,31,31,30,31,30,31];function It(o){return o%400===0||o%4===0&&o%100!==0}function Wn(o,a,r){return a>=0&&a<=11&&r>=1&&r<=(Hn[a]||(It(o)?29:28))}function In(o,a){return a>=1&&a<=(It(o)?366:365)}function An(o,a,r){return a>=1&&a<=53&&r>=0&&r<=6}function $n(o,a,r){return o===24?a===0&&r===0:r>=0&&r<60&&a>=0&&a<60&&o>=0&&o<25}function Ln(o,a){return a>=0&&a<=59}function Fn(o,a){var r,t;d(1,arguments);var e=f(o);if(isNaN(e.getTime()))throw new RangeError("Invalid time value");var n=String((r=a==null?void 0:a.format)!==null&&r!==void 0?r:"extended"),i=String((t=a==null?void 0:a.representation)!==null&&t!==void 0?t:"complete");if(n!=="extended"&&n!=="basic")throw new RangeError("format must be 'extended' or 'basic'");if(i!=="date"&&i!=="time"&&i!=="complete")throw new RangeError("representation must be 'date', 'time', or 'complete'");var u="",s="",l=n==="extended"?"-":"",c=n==="extended"?":":"";if(i!=="time"){var v=b(e.getDate(),2),g=b(e.getMonth()+1,2),w=b(e.getFullYear(),4);u="".concat(w).concat(l).concat(g).concat(l).concat(v)}if(i!=="date"){var y=e.getTimezoneOffset();if(y!==0){var E=Math.abs(y),_=b(Math.floor(E/60),2),S=b(E%60,2),A=y<0?"+":"-";s="".concat(A).concat(_,":").concat(S)}else s="Z";var B=b(e.getHours(),2),L=b(e.getMinutes(),2),K=b(e.getSeconds(),2),I=u===""?"":"T",F=[B,L,K].join(c);u="".concat(u).concat(I).concat(F).concat(s)}return u}function Rn(o,a){d(2,arguments);var r=f(o).getTime(),t=f(a.start).getTime(),e=f(a.end).getTime();if(!(t<=e))throw new RangeError("Invalid interval");return r>=t&&r<=e}var je={exports:{}};(function(o,a){Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var r=function(s,l){switch(s){case"P":return l.date({width:"short"});case"PP":return l.date({width:"medium"});case"PPP":return l.date({width:"long"});case"PPPP":default:return l.date({width:"full"})}},t=function(s,l){switch(s){case"p":return l.time({width:"short"});case"pp":return l.time({width:"medium"});case"ppp":return l.time({width:"long"});case"pppp":default:return l.time({width:"full"})}},e=function(s,l){var c=s.match(/(P+)(p+)?/)||[],v=c[1],g=c[2];if(!g)return r(s,l);var w;switch(v){case"P":w=l.dateTime({width:"short"});break;case"PP":w=l.dateTime({width:"medium"});break;case"PPP":w=l.dateTime({width:"long"});break;case"PPPP":default:w=l.dateTime({width:"full"});break}return w.replace("{{date}}",r(v,l)).replace("{{time}}",t(g,l))},n={p:t,P:e},i=n;a.default=i,o.exports=a.default})(je,je.exports);var qn=je.exports;const Qn=Rt(qn),Bn={dayOfMonth:"d",fullDate:"PP",fullDateWithWeekday:"PPPP",fullDateTime:"PP p",fullDateTime12h:"PP hh:mm aaa",fullDateTime24h:"PP HH:mm",fullTime:"p",fullTime12h:"hh:mm aaa",fullTime24h:"HH:mm",hours12h:"hh",hours24h:"HH",keyboardDate:"P",keyboardDateTime:"P p",keyboardDateTime12h:"P hh:mm aaa",keyboardDateTime24h:"P HH:mm",minutes:"mm",month:"LLLL",monthAndDate:"MMMM d",monthAndYear:"LLLL yyyy",monthShort:"MMM",weekday:"EEEE",weekdayShort:"EEE",normalDate:"d MMMM",normalDateWithWeekday:"EEE, MMM d",seconds:"ss",shortDate:"MMM d",year:"yyyy"};class jn{constructor({locale:a,formats:r}={}){this.lib="date-fns",this.is12HourCycleInCurrentLocale=()=>{var t;return this.locale?/a/.test((t=this.locale.formatLong)===null||t===void 0?void 0:t.time()):!0},this.getFormatHelperText=t=>{var e,n;const i=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,u=this.locale||Je;return(n=(e=t.match(i))===null||e===void 0?void 0:e.map(s=>{const l=s[0];if(l==="p"||l==="P"){const c=Qn[l];return c(s,u.formatLong,{})}return s}).join("").replace(/(aaa|aa|a)/g,"(a|p)m").toLocaleLowerCase())!==null&&n!==void 0?n:t},this.parseISO=t=>Pn(t),this.toISO=t=>Fn(t,{format:"extended"}),this.getCurrentLocaleCode=()=>{var t;return((t=this.locale)===null||t===void 0?void 0:t.code)||"en-US"},this.addSeconds=(t,e)=>Xt(t,e),this.addMinutes=(t,e)=>Vt(t,e),this.addHours=(t,e)=>Jt(t,e),this.addDays=(t,e)=>Re(t,e),this.addWeeks=(t,e)=>Kt(t,e),this.addMonths=(t,e)=>Me(t,e),this.addYears=(t,e)=>st(t,e),this.isValid=t=>Ot(this.date(t)),this.getDiff=(t,e,n)=>{var i;const u=(i=this.date(e))!==null&&i!==void 0?i:t;if(!this.isValid(u))return 0;switch(n){case"years":return tr(t,u);case"quarters":return ir(t,u);case"months":return Dt(t,u);case"weeks":return sr(t,u);case"days":return Mt(t,u);case"hours":return cr(t,u);case"minutes":return dr(t,u);case"seconds":return fr(t,u);default:return Ee(t,u)}},this.isAfter=(t,e)=>ye(t,e),this.isBefore=(t,e)=>ne(t,e),this.startOfDay=t=>ie(t),this.endOfDay=t=>qe(t),this.getHours=t=>va(t),this.setHours=(t,e)=>bn(t,e),this.setMinutes=(t,e)=>Tn(t,e),this.getSeconds=t=>pa(t),this.setSeconds=(t,e)=>Mn(t,e),this.isSameDay=(t,e)=>ya(t,e),this.isSameMonth=(t,e)=>Ta(t,e),this.isSameYear=(t,e)=>ba(t,e),this.isSameHour=(t,e)=>Da(t,e),this.startOfYear=t=>Te(t),this.endOfYear=t=>Ie(t),this.startOfMonth=t=>be(t),this.endOfMonth=t=>Qe(t),this.startOfWeek=t=>$e(t,{locale:this.locale}),this.endOfWeek=t=>We(t,{locale:this.locale}),this.getYear=t=>ga(t),this.setYear=(t,e)=>On(t,e),this.date=t=>typeof t>"u"?new Date:t===null?null:new Date(t),this.toJsDate=t=>t,this.parse=(t,e)=>t===""?null:gn(t,e,new Date,{locale:this.locale}),this.format=(t,e)=>this.formatByString(t,this.formats[e]),this.formatByString=(t,e)=>la(t,e,{locale:this.locale}),this.isEqual=(t,e)=>t===null&&e===null?!0:wa(t,e),this.isNull=t=>t===null,this.isAfterDay=(t,e)=>ye(t,qe(e)),this.isBeforeDay=(t,e)=>ne(t,ie(e)),this.isBeforeYear=(t,e)=>ne(t,Te(e)),this.isAfterYear=(t,e)=>ye(t,Ie(e)),this.isWithinRange=(t,[e,n])=>Rn(t,{start:e,end:n}),this.formatNumber=t=>t,this.getMinutes=t=>ha(t),this.getDate=t=>da(t),this.setDate=(t,e)=>yn(t,e),this.getMonth=t=>ma(t),this.getDaysInMonth=t=>Nt(t),this.setMonth=(t,e)=>Dn(t,e),this.getMeridiemText=t=>t==="am"?"AM":"PM",this.getNextMonth=t=>Me(t,1),this.getPreviousMonth=t=>Me(t,-1),this.getMonthArray=t=>{const n=[Te(t)];for(;n.length<12;){const i=n[n.length-1];n.push(this.getNextMonth(i))}return n},this.mergeDateAndTime=(t,e)=>this.setSeconds(this.setMinutes(this.setHours(t,this.getHours(e)),this.getMinutes(e)),this.getSeconds(e)),this.getWeekdays=()=>{const t=new Date;return vr({start:$e(t,{locale:this.locale}),end:We(t,{locale:this.locale})}).map(e=>this.formatByString(e,"EEEEEE"))},this.getWeekArray=t=>{const e=$e(be(t),{locale:this.locale}),n=We(Qe(t),{locale:this.locale});let i=0,u=e;const s=[];let l=null;for(;ne(u,n);){const c=Math.floor(i/7);s[c]=s[c]||[];const v=fa(u);l!==v&&(l=v,s[c].push(u),i+=1),u=Re(u,1)}return s},this.getYearRange=(t,e)=>{const n=Te(t),i=Ie(e),u=[];let s=n;for(;ne(s,i);)u.push(s),s=st(s,1);return u},this.locale=a,this.formats=Object.assign({},Bn,r)}isBeforeMonth(a,r){return ne(a,be(r))}isAfterMonth(a,r){return ye(a,be(r))}}var Gn=new jn({});function Xn(o,a){return Jn(o)||Zn(o,a)||Vn(o,a)||zn()}function zn(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
3
3
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Vn(o,a){if(o){if(typeof o=="string")return pt(o,a);var r=Object.prototype.toString.call(o).slice(8,-1);if(r==="Object"&&o.constructor&&(r=o.constructor.name),r==="Map"||r==="Set")return Array.from(o);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return pt(o,a)}}function pt(o,a){(a==null||a>o.length)&&(a=o.length);for(var r=0,t=new Array(a);r<a;r++)t[r]=o[r];return t}function Zn(o,a){var r=o==null?null:typeof Symbol<"u"&&o[Symbol.iterator]||o["@@iterator"];if(r!=null){var t=[],e=!0,n=!1,i,u;try{for(r=r.call(o);!(e=(i=r.next()).done)&&(t.push(i.value),!(a&&t.length===a));e=!0);}catch(s){n=!0,u=s}finally{try{!e&&r.return!=null&&r.return()}finally{if(n)throw u}}return t}}function Jn(o){if(Array.isArray(o))return o}function gt(o,a){var r=Object.keys(o);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(o);a&&(t=t.filter(function(e){return Object.getOwnPropertyDescriptor(o,e).enumerable})),r.push.apply(r,t)}return r}function wt(o){for(var a=1;a<arguments.length;a++){var r=arguments[a]!=null?arguments[a]:{};a%2?gt(Object(r),!0).forEach(function(t){m(o,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(o,Object.getOwnPropertyDescriptors(r)):gt(Object(r)).forEach(function(t){Object.defineProperty(o,t,Object.getOwnPropertyDescriptor(r,t))})}return o}function Kn(o,a,r){return Object.defineProperty(o,"prototype",{writable:!1}),o}function ei(o,a){if(!(o instanceof a))throw new TypeError("Cannot call a class as a function")}function m(o,a,r){return a in o?Object.defineProperty(o,a,{value:r,enumerable:!0,configurable:!0,writable:!0}):o[a]=r,o}var At=60,ti=At*60,yt=Kn(function o(a){var r=this;ei(this,o),m(this,"adapter",void 0),m(this,"cloneAdapter",function(t,e){var n={MomentUtils:{formats:{monthNumber:"M",dayOfMonthNumber:"D",fullOrdinalWeek:"dddd, MMMM Do YYYY",slashDate:"YYYY/MM/DD",weekday:"dddd",weekdaymin:"dd",quarter:"[Q]Q"}},DateFnsUtils:{formats:{monthNumber:"M",dayOfMonthNumber:"d",weekday:"EEEE",weekdaymin:"EEEEEE",slashDate:"yyyy/MM/dd",fullOrdinalWeek:"EEEE, MMMM do yyyy",quarter:"QQQ"}},LuxonUtils:{formats:{monthNumber:"M",dayOfMonthNumber:"d",weekday:"EEEE",weekdaymin:"EEEEE",slashDate:"yyyy/MM/dd",fullOrdinalWeek:"EEEE, MMMM dd yyyy",quarter:"Qq"}}},i=function(_){return{formats:_.formats,locale:_.locale}},u=e||i,s=t.constructor,l=t.constructor.name,c=n[l]||n.DateFnsUtils,v=c.getOptions,g=v===void 0?i:v,w=c.formats,y=g(t);return new s(Object.assign({},u(Object.assign({},y,{formats:Object.assign({},y.formats,w)}))))}),m(this,"format",function(t,e,n){var i=n?r.getAdapterWithNewLocale(n):r.adapter;return i.format(t,e)}),m(this,"getAdapterWithNewLocale",function(t){return r.cloneAdapter(r.adapter,function(e){return wt(wt({},e),{},{locale:t})})}),m(this,"date",function(t){return r.adapter.date(t)}),m(this,"dateToSeconds",function(t){var e=r.adapter.getSeconds(t),n=r.adapter.getMinutes(t)*At,i=r.adapter.getHours(t)*ti;return e+n+i}),m(this,"secondsToHourMinute",function(t){var e=r.adapter.toJsDate(r.adapter.date(t*1e3));return[e.getUTCHours(),e.getUTCMinutes()]}),m(this,"differenceInCalendarMonths",function(t,e){var n=r.adapter.getYear(t)-r.adapter.getYear(e),i=r.adapter.getMonth(t)-r.adapter.getMonth(e);return n*12+i}),m(this,"getStartOfWeek",function(t,e){var n=e?r.getAdapterWithNewLocale(e):r.adapter;return n.startOfWeek(n.date(t))}),m(this,"formatDate",function(t,e,n){var i=n?r.getAdapterWithNewLocale(n):r.adapter;return i.formatByString(t,e)}),m(this,"getWeekdayMinInLocale",function(t,e){return r.getAdapterWithNewLocale(e).format(t,"weekdaymin")}),m(this,"getMonthInLocale",function(t,e){var n=r.getAdapterWithNewLocale(e);return n.format(n.setMonth(n.date(),t),"month")}),m(this,"getWeekdayInLocale",function(t,e){return r.getAdapterWithNewLocale(e).format(t,"weekday")}),m(this,"getQuarterInLocale",function(t,e){var n=r.getAdapterWithNewLocale(e);return n.format(n.setMonth(n.date(),t*3),"quarter")}),m(this,"getEndOfWeek",function(t){return r.adapter.endOfWeek(t)}),m(this,"getDay",function(t){return Number(r.adapter.formatByString(t,"e"))-1}),m(this,"addWeeks",function(t,e){return r.adapter.addDays(t,e*7)}),m(this,"subWeeks",function(t,e){return r.addWeeks(t,e*-1)}),m(this,"addYears",function(t,e){return r.adapter.addMonths(t,e*12)}),m(this,"subYears",function(t,e){return r.addYears(t,e*-1)}),m(this,"isSameYear",function(t,e){return t&&e?r.adapter.isSameYear(t,e):!1}),m(this,"isStartOfMonth",function(t){return r.adapter.isSameDay(t,r.adapter.startOfMonth(t))}),m(this,"isEndOfMonth",function(t){return r.adapter.isSameDay(t,r.adapter.endOfMonth(t))}),m(this,"isDayInRange",function(t,e,n){return r.adapter.isWithinRange(t,[e,n])}),m(this,"isSameDay",function(t,e){return t&&e?r.adapter.isSameDay(t,e):!1}),m(this,"isSameMonth",function(t,e){return t&&e?r.adapter.isSameMonth(t,e):!1}),m(this,"dateRangeIncludesDates",function(t,e){var n=Xn(t,2),i=n[0],u=n[1];if(i&&u&&Array.isArray(e)&&e.length)for(var s=0;s<e.length;s++){var l=e[s];if(r.isDayInRange(l,i,u))return!0}return!1}),m(this,"subDays",function(t,e){return r.adapter.addDays(t,e*-1)}),m(this,"subMonths",function(t,e){return r.adapter.addMonths(t,e*-1)}),m(this,"min",function(t){return t.reduce(function(e,n){return r.adapter.isBefore(n,e)?n:e})}),m(this,"max",function(t){return t.reduce(function(e,n){return r.adapter.isAfter(n,e)?n:e})}),m(this,"getEffectiveMinDate",function(t){var e=t.minDate,n=t.includeDates;if(n&&e){var i=n.filter(function(u){return r.isOnOrAfterDay(u,e)});return r.min(i)}else{if(n&&n.length)return r.min(n);if(!(n&&n.length)&&e)return e}return r.adapter.date()}),m(this,"getEffectiveMaxDate",function(t){var e=t.maxDate,n=t.includeDates;if(n&&e){var i=n.filter(function(u){return r.isOnOrBeforeDay(u,e)});return r.max(i)}else{if(n)return r.max(n);if(!n&&e)return e}return r.adapter.date()}),m(this,"monthDisabledBefore",function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.minDate,i=e.includeDates,u=r.subMonths(t,1);return!!n&&r.differenceInCalendarMonths(n,u)>0||!!i&&i.every(function(s){return r.differenceInCalendarMonths(s,u)>0})||!1}),m(this,"monthDisabledAfter",function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.maxDate,i=e.includeDates,u=r.adapter.addMonths(t,1);return!!n&&r.differenceInCalendarMonths(u,n)>0||!!i&&i.every(function(s){return r.differenceInCalendarMonths(u,s)>0})||!1}),m(this,"setDate",function(t,e){var n=r.adapter.startOfMonth(t),i=r.adapter.mergeDateAndTime(n,t),u=r.adapter.setSeconds(i,r.adapter.getSeconds(t));return r.adapter.addDays(u,e-1)}),m(this,"getDate",function(t){return Number(r.adapter.format(t,"dayOfMonthNumber"))}),m(this,"applyDateToTime",function(t,e){if(!t)return e;var n=r.adapter.getYear(e),i=r.adapter.getMonth(e),u=r.getDate(e),s=r.adapter.setYear(t,n),l=r.adapter.setMonth(s,i);return r.setDate(l,u)}),m(this,"applyTimeToDate",function(t,e){return t?r.adapter.setSeconds(r.adapter.mergeDateAndTime(t,e),0):e}),m(this,"isDayDisabled",function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.minDate,i=e.maxDate,u=e.excludeDates,s=e.includeDates,l=e.filterDate;return r.isOutOfBounds(t,{minDate:n,maxDate:i})||u&&u.some(function(c){return r.adapter.isSameDay(t,c)})||s&&!s.some(function(c){return r.adapter.isSameDay(t,c)})||l&&!l(t)||!1}),m(this,"isOnOrAfterDay",function(t,e){return r.adapter.isSameDay(t,e)?!0:r.adapter.isAfter(t,e)}),m(this,"isOnOrBeforeDay",function(t,e){return r.adapter.isSameDay(t,e)?!0:r.adapter.isBefore(t,e)}),m(this,"isOutOfBounds",function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.minDate,i=e.maxDate;return!!n&&!r.isOnOrAfterDay(t,n)||!!i&&!r.isOnOrBeforeDay(t,i)}),m(this,"parseString",function(t,e,n){var i=n?r.getAdapterWithNewLocale(n):r.adapter;return i.parse(t,e)}),m(this,"parse",function(t,e,n){var i=n?r.getAdapterWithNewLocale(n):r.adapter;return i.parse(t,i.formats[e])}),m(this,"setMilliseconds",function(t,e){return r.adapter.date(r.adapter.getSeconds(r.adapter.startOfDay(t))*1e3+e)}),m(this,"set",function(t,e){var n=t;return e.year!=null&&(n=r.setYear(n,e.year)),e.month!=null&&(n=r.setMonth(n,e.month)),e.date!=null&&(n=r.setDate(n,Number(e.date))),e.hours!=null&&(n=r.setHours(n,Number(e.hours))),e.minutes!=null&&(n=r.setMinutes(n,Number(e.minutes))),e.seconds!=null&&(n=r.setSeconds(n,Number(e.seconds))),n}),m(this,"getQuarter",function(t){return Math.floor(r.getMonth(t)/3)+1}),m(this,"setSeconds",function(t,e){return r.adapter.setSeconds(t,e)}),m(this,"setMinutes",function(t,e){return r.adapter.setMinutes(t,e)}),m(this,"setHours",function(t,e){return r.adapter.setHours(t,e)}),m(this,"setMonth",function(t,e){return r.adapter.setMonth(t,e)}),m(this,"setYear",function(t,e){return r.adapter.setYear(t,e)}),m(this,"getMinutes",function(t){return r.adapter.getMinutes(t)}),m(this,"getHours",function(t){return r.adapter.getHours(t)}),m(this,"getMonth",function(t){return r.adapter.getMonth(t)}),m(this,"getYear",function(t){return r.adapter.getYear(t)}),m(this,"getStartOfMonth",function(t){return r.adapter.startOfMonth(t)}),m(this,"getEndOfMonth",function(t){return r.adapter.endOfMonth(t)}),m(this,"addDays",function(t,e){return r.adapter.addDays(t,e)}),m(this,"addMonths",function(t,e){return r.adapter.addMonths(t,e)}),m(this,"isBefore",function(t,e){return r.adapter.isBefore(t,e)}),m(this,"isAfter",function(t,e){return r.adapter.isAfter(t,e)}),m(this,"isEqual",function(t,e){return r.adapter.isEqual(t,e)}),m(this,"isValid",function(t){return r.adapter.isValid(t)}),this.adapter=this.cloneAdapter(a)});function Ge(o){"@babel/helpers - typeof";return Ge=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(a){return typeof a}:function(a){return a&&typeof Symbol=="function"&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},Ge(o)}function Xe(){return Xe=Object.assign?Object.assign.bind():function(o){for(var a=1;a<arguments.length;a++){var r=arguments[a];for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(o[t]=r[t])}return o},Xe.apply(this,arguments)}function Fe(o,a){return ii(o)||ni(o,a)||ai(o,a)||ri()}function ri(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
4
4
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function ai(o,a){if(o){if(typeof o=="string")return bt(o,a);var r=Object.prototype.toString.call(o).slice(8,-1);if(r==="Object"&&o.constructor&&(r=o.constructor.name),r==="Map"||r==="Set")return Array.from(o);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return bt(o,a)}}function bt(o,a){(a==null||a>o.length)&&(a=o.length);for(var r=0,t=new Array(a);r<a;r++)t[r]=o[r];return t}function ni(o,a){var r=o==null?null:typeof Symbol<"u"&&o[Symbol.iterator]||o["@@iterator"];if(r!=null){var t=[],e=!0,n=!1,i,u;try{for(r=r.call(o);!(e=(i=r.next()).done)&&(t.push(i.value),!(a&&t.length===a));e=!0);}catch(s){n=!0,u=s}finally{try{!e&&r.return!=null&&r.return()}finally{if(n)throw u}}return t}}function ii(o){if(Array.isArray(o))return o}function oi(o,a){if(!(o instanceof a))throw new TypeError("Cannot call a class as a function")}function ui(o,a){for(var r=0;r<a.length;r++){var t=a[r];t.enumerable=t.enumerable||!1,t.configurable=!0,"value"in t&&(t.writable=!0),Object.defineProperty(o,t.key,t)}}function si(o,a,r){return a&&ui(o.prototype,a),Object.defineProperty(o,"prototype",{writable:!1}),o}function li(o,a){if(typeof a!="function"&&a!==null)throw new TypeError("Super expression must either be null or a function");o.prototype=Object.create(a&&a.prototype,{constructor:{value:o,writable:!0,configurable:!0}}),Object.defineProperty(o,"prototype",{writable:!1}),a&&ze(o,a)}function ze(o,a){return ze=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ze(o,a)}function ci(o){var a=fi();return function(){var t=xe(o),e;if(a){var n=xe(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return di(this,e)}}function di(o,a){if(a&&(Ge(a)==="object"||typeof a=="function"))return a;if(a!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return q(o)}function q(o){if(o===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return o}function fi(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function xe(o){return xe=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(r){return r.__proto__||Object.getPrototypeOf(r)},xe(o)}function Q(o,a,r){return a in o?Object.defineProperty(o,a,{value:r,enumerable:!0,configurable:!0,writable:!0}):o[a]=r,o}var vi=60,hi=vi*60,mi=hi*24,Tt=mi/2,pi=function(o){li(r,o);var a=ci(r);function r(t){var e;return oi(this,r),e=a.call(this,t),Q(q(e),"dateHelpers",void 0),Q(q(e),"state",{steps:[],value:null}),Q(q(e),"onChange",function(n){if(e.setState({value:n.value[0]}),n.value.length===0){e.props.nullable&&e.props.onChange&&e.props.onChange(null);return}var i=typeof n.value[0].id=="string"?parseInt(n.value[0].id,10):n.value[0].id||0;e.handleChange(i)}),Q(q(e),"secondsToLabel",function(n,i){var u=e.dateHelpers.secondsToHourMinute(n),s=Fe(u,2),l=s[0],c=s[1],v=function(y){return y<10?"0".concat(y):y};if(i==="12"){var g=n>=Tt;return g&&(l-=12),l===0&&(l=12),"".concat(l,":").concat(v(c)," ").concat(g?"PM":"AM")}return"".concat(v(l),":").concat(v(c))}),Q(q(e),"stringToOptions",function(n){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"12",u=/^(1[0-2]|0?[1-9]):([0-5][0-9]) ?([AaPp][Mm]?)?$/,s=/^([0-9]|0[0-9]|1[0-9]|2[0-3]):([0-5][0-9])$/,l=i==="12"?u:s,c=n.match(l);if(!c)return[];var v=Number(c[1]),g=Number(c[2]),w=[];switch(i){case"24":{w=[{hours:v,minutes:g}];break}case"12":default:{var y=v%12,E=c[3];if(!E)w=[{hours:y,minutes:g},{hours:y+12,minutes:g}];else{var _=E.toLowerCase()[0]==="a"?y:y+12;w=[{hours:_,minutes:g}]}break}}return w.map(function(S){var A=S.hours,B=S.minutes,L=A*3600+B*60;return{id:L,label:e.secondsToLabel(L,i)}})}),Q(q(e),"handleChange",function(n){var i=e.dateHelpers.secondsToHourMinute(n),u=Fe(i,2),s=u[0],l=u[1],c=e.setTime(e.props.value,s,l,0);e.props.onChange&&e.props.onChange(c)}),Q(q(e),"setTime",function(n,i,u,s){var l=e.dateHelpers,c=l.setSeconds,v=l.setMinutes,g=l.setHours,w=e.props.adapter.startOfDay(e.props.adapter.date(n||void 0));return c(v(g(w,i),u),s)}),Q(q(e),"getTimeWindowInSeconds",function(n){var i=e.props,u=i.minTime,s=i.maxTime,l=i.ignoreMinMaxDateComponent,c=e.setTime(e.props.value,0,0,0),v=e.setTime(e.props.value,24,0,0);!u||e.props.adapter.isBefore(u,c)&&!l?u=c:u=e.setTime(e.props.value,e.props.adapter.getHours(u),e.props.adapter.getMinutes(u),e.props.adapter.getSeconds(u)),!s||e.props.adapter.isAfter(s,v)&&!l?s=v:s=e.setTime(e.props.value,e.props.adapter.getHours(s),e.props.adapter.getMinutes(s),e.props.adapter.getSeconds(s)+1);var g=e.props.adapter.toJsDate(u),w=e.props.adapter.toJsDate(s),y=e.props.adapter.toJsDate(c);return{start:(g-y)/1e3,end:(w-y)/1e3}}),Q(q(e),"buildSteps",function(){var n=e.props.step,i=n===void 0?900:n,u=e.getTimeWindowInSeconds(i);(u.end-u.start)/i;for(var s=[],l=u.start;l<u.end;l+=i)s.push(l);return s}),Q(q(e),"creatableFilterOptions",function(n,i,u,s){var l=e.stringToOptions(i,e.props.format);return l.length?l:qt(n,i,u,s)}),Q(q(e),"buildSelectedOption",function(n){var i=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"12",u=e.dateHelpers.dateToSeconds(n);return{id:u,label:e.secondsToLabel(u,i||"12")}}),e.dateHelpers=new yt(t.adapter),e}return si(r,[{key:"componentDidMount",value:function(){var e=this.buildSteps();if(this.props.value&&this.props.adapter.isValid(this.props.value))this.setState({steps:e,value:this.buildSelectedOption(this.props.value,this.props.format)});else{var n=this.dateHelpers.dateToSeconds(this.props.adapter.date()),i=Tt;e.forEach(function(u){Math.abs(u-n)<Math.abs(i-n)&&(i=u)}),this.setState({steps:e,value:this.props.nullable?void 0:{id:i,label:this.secondsToLabel(i,this.props.format)}}),(this.props.value||!this.props.nullable&&!this.props.value)&&this.handleChange(i)}}},{key:"componentDidUpdate",value:function(e){var n=e.format!==this.props.format,i=e.step!==this.props.step,u=e.adapter!==this.props.adapter,s=e.minTime!==this.props.minTime,l=e.maxTime!==this.props.maxTime;if(u&&(this.dateHelpers=new yt(this.props.adapter)),n||i||s||l){var c=this.buildSteps();this.setState({steps:c})}e.value&&!this.props.value&&this.setState({value:null})}},{key:"render",value:function(){var e=this,n=this.props,i=n.format,u=n.overrides,s=u===void 0?{}:u,l=n.adapter,c=Qt(s.Select,Bt),v=Fe(c,2),g=v[0],w=v[1];w.overrides=jt({Dropdown:{style:{maxHeight:"126px"}}},w.overrides);var y=this.props.value&&l.isValid(this.props.value)?this.buildSelectedOption(this.props.value,this.props.format):this.state.value;return He.createElement(Gt.Consumer,null,function(E){var _=i==="12"?E.datepicker.timePickerAriaLabel12Hour:E.datepicker.timePickerAriaLabel24Hour;return He.createElement(g,Xe({"aria-label":_,disabled:e.props.disabled,error:e.props.error,positive:e.props.positive,size:e.props.size,placeholder:e.props.placeholder||"HH:mm",options:e.state.steps.map(function(S){return{id:S,label:e.secondsToLabel(S,e.props.format)}}),filterOptions:e.props.creatable?e.creatableFilterOptions:void 0,onChange:e.onChange,value:y&&[y],clearable:!1,backspaceRemoves:!1,valueKey:"label"},w))})}}]),r}(He.Component);Q(pi,"defaultProps",{format:"12",step:900,creatable:!1,adapter:Gn,ignoreMinMaxDateComponent:!1});export{yt as D,pi as T,Gn as a,Je as l};
@@ -0,0 +1 @@
1
+ import{q as k}from"./value.iufjd77T.js";const L=Math.PI,N=2*L,v=1e-6,et=N-v;function W(t){this._+=t[0];for(let n=1,e=t.length;n<e;++n)this._+=arguments[n]+t[n]}function it(t){let n=Math.floor(t);if(!(n>=0))throw new Error(`invalid digits: ${t}`);if(n>15)return W;const e=10**n;return function(i){this._+=i[0];for(let r=1,a=i.length;r<a;++r)this._+=Math.round(arguments[r]*e)/e+i[r]}}class B{constructor(n){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=n==null?W:it(n)}moveTo(n,e){this._append`M${this._x0=this._x1=+n},${this._y0=this._y1=+e}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(n,e){this._append`L${this._x1=+n},${this._y1=+e}`}quadraticCurveTo(n,e,i,r){this._append`Q${+n},${+e},${this._x1=+i},${this._y1=+r}`}bezierCurveTo(n,e,i,r,a,u){this._append`C${+n},${+e},${+i},${+r},${this._x1=+a},${this._y1=+u}`}arcTo(n,e,i,r,a){if(n=+n,e=+e,i=+i,r=+r,a=+a,a<0)throw new Error(`negative radius: ${a}`);let u=this._x1,c=this._y1,f=i-n,s=r-e,o=u-n,l=c-e,h=o*o+l*l;if(this._x1===null)this._append`M${this._x1=n},${this._y1=e}`;else if(h>v)if(!(Math.abs(l*f-s*o)>v)||!a)this._append`L${this._x1=n},${this._y1=e}`;else{let p=i-u,_=r-c,w=f*f+s*s,$=p*p+_*_,m=Math.sqrt(w),g=Math.sqrt(h),y=a*Math.tan((L-Math.acos((w+h-$)/(2*m*g)))/2),M=y/g,d=y/m;Math.abs(M-1)>v&&this._append`L${n+M*o},${e+M*l}`,this._append`A${a},${a},0,0,${+(l*p>o*_)},${this._x1=n+d*f},${this._y1=e+d*s}`}}arc(n,e,i,r,a,u){if(n=+n,e=+e,i=+i,u=!!u,i<0)throw new Error(`negative radius: ${i}`);let c=i*Math.cos(r),f=i*Math.sin(r),s=n+c,o=e+f,l=1^u,h=u?r-a:a-r;this._x1===null?this._append`M${s},${o}`:(Math.abs(this._x1-s)>v||Math.abs(this._y1-o)>v)&&this._append`L${s},${o}`,i&&(h<0&&(h=h%N+N),h>et?this._append`A${i},${i},0,1,${l},${n-c},${e-f}A${i},${i},0,1,${l},${this._x1=s},${this._y1=o}`:h>v&&this._append`A${i},${i},0,${+(h>=L)},${l},${this._x1=n+i*Math.cos(a)},${this._y1=e+i*Math.sin(a)}`)}rect(n,e,i,r){this._append`M${this._x0=this._x1=+n},${this._y0=this._y1=+e}h${i=+i}v${+r}h${-i}Z`}toString(){return this._}}function rt(){return new B}rt.prototype=B.prototype;var Z=180/Math.PI,F={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function G(t,n,e,i,r,a){var u,c,f;return(u=Math.sqrt(t*t+n*n))&&(t/=u,n/=u),(f=t*e+n*i)&&(e-=t*f,i-=n*f),(c=Math.sqrt(e*e+i*i))&&(e/=c,i/=c,f/=c),t*i<n*e&&(t=-t,n=-n,f=-f,u=-u),{translateX:r,translateY:a,rotate:Math.atan2(n,t)*Z,skewX:Math.atan(f)*Z,scaleX:u,scaleY:c}}var A;function st(t){const n=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return n.isIdentity?F:G(n.a,n.b,n.c,n.d,n.e,n.f)}function ot(t){return t==null||(A||(A=document.createElementNS("http://www.w3.org/2000/svg","g")),A.setAttribute("transform",t),!(t=A.transform.baseVal.consolidate()))?F:(t=t.matrix,G(t.a,t.b,t.c,t.d,t.e,t.f))}function J(t,n,e,i){function r(s){return s.length?s.pop()+" ":""}function a(s,o,l,h,p,_){if(s!==l||o!==h){var w=p.push("translate(",null,n,null,e);_.push({i:w-4,x:k(s,l)},{i:w-2,x:k(o,h)})}else(l||h)&&p.push("translate("+l+n+h+e)}function u(s,o,l,h){s!==o?(s-o>180?o+=360:o-s>180&&(s+=360),h.push({i:l.push(r(l)+"rotate(",null,i)-2,x:k(s,o)})):o&&l.push(r(l)+"rotate("+o+i)}function c(s,o,l,h){s!==o?h.push({i:l.push(r(l)+"skewX(",null,i)-2,x:k(s,o)}):o&&l.push(r(l)+"skewX("+o+i)}function f(s,o,l,h,p,_){if(s!==l||o!==h){var w=p.push(r(p)+"scale(",null,",",null,")");_.push({i:w-4,x:k(s,l)},{i:w-2,x:k(o,h)})}else(l!==1||h!==1)&&p.push(r(p)+"scale("+l+","+h+")")}return function(s,o){var l=[],h=[];return s=t(s),o=t(o),a(s.translateX,s.translateY,o.translateX,o.translateY,l,h),u(s.rotate,o.rotate,l,h),c(s.skewX,o.skewX,l,h),f(s.scaleX,s.scaleY,o.scaleX,o.scaleY,l,h),s=o=null,function(p){for(var _=-1,w=h.length,$;++_<w;)l[($=h[_]).i]=$.x(p);return l.join("")}}}var vt=J(st,"px, ","px)","deg)"),xt=J(ot,", ",")",")"),at=1e-12;function H(t){return((t=Math.exp(t))+1/t)/2}function lt(t){return((t=Math.exp(t))-1/t)/2}function ht(t){return((t=Math.exp(2*t))-1)/(t+1)}const gt=function t(n,e,i){function r(a,u){var c=a[0],f=a[1],s=a[2],o=u[0],l=u[1],h=u[2],p=o-c,_=l-f,w=p*p+_*_,$,m;if(w<at)m=Math.log(h/s)/n,$=function(X){return[c+X*p,f+X*_,s*Math.exp(n*X*m)]};else{var g=Math.sqrt(w),y=(h*h-s*s+i*w)/(2*s*e*g),M=(h*h-s*s-i*w)/(2*h*e*g),d=Math.log(Math.sqrt(y*y+1)-y),nt=Math.log(Math.sqrt(M*M+1)-M);m=(nt-d)/n,$=function(X){var j=X*m,z=H(d),Q=s/(e*g)*(z*ht(n*j+d)-lt(d));return[c+Q*p,f+Q*_,s*z/H(n*j+d)]}}return $.duration=m*1e3*n/Math.SQRT2,$}return r.rho=function(a){var u=Math.max(.001,+a),c=u*u,f=c*c;return t(u,c,f)},r}(Math.SQRT2,2,4);var ut={value:()=>{}};function ft(){for(var t=0,n=arguments.length,e={},i;t<n;++t){if(!(i=arguments[t]+"")||i in e||/[\s.]/.test(i))throw new Error("illegal type: "+i);e[i]=[]}return new I(e)}function I(t){this._=t}function ct(t,n){return t.trim().split(/^|\s+/).map(function(e){var i="",r=e.indexOf(".");if(r>=0&&(i=e.slice(r+1),e=e.slice(0,r)),e&&!n.hasOwnProperty(e))throw new Error("unknown type: "+e);return{type:e,name:i}})}I.prototype=ft.prototype={constructor:I,on:function(t,n){var e=this._,i=ct(t+"",e),r,a=-1,u=i.length;if(arguments.length<2){for(;++a<u;)if((r=(t=i[a]).type)&&(r=pt(e[r],t.name)))return r;return}if(n!=null&&typeof n!="function")throw new Error("invalid callback: "+n);for(;++a<u;)if(r=(t=i[a]).type)e[r]=K(e[r],t.name,n);else if(n==null)for(r in e)e[r]=K(e[r],t.name,null);return this},copy:function(){var t={},n=this._;for(var e in n)t[e]=n[e].slice();return new I(t)},call:function(t,n){if((r=arguments.length-2)>0)for(var e=new Array(r),i=0,r,a;i<r;++i)e[i]=arguments[i+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(a=this._[t],i=0,r=a.length;i<r;++i)a[i].value.apply(n,e)},apply:function(t,n,e){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var i=this._[t],r=0,a=i.length;r<a;++r)i[r].value.apply(n,e)}};function pt(t,n){for(var e=0,i=t.length,r;e<i;++e)if((r=t[e]).name===n)return r.value}function K(t,n,e){for(var i=0,r=t.length;i<r;++i)if(t[i].name===n){t[i]=ut,t=t.slice(0,i).concat(t.slice(i+1));break}return e!=null&&t.push({name:n,value:e}),t}var T=0,E=0,q=0,U=1e3,O,S,C=0,x=0,D=0,Y=typeof performance=="object"&&performance.now?performance:Date,b=typeof window=="object"&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function tt(){return x||(b(_t),x=Y.now()+D)}function _t(){x=0}function P(){this._call=this._time=this._next=null}P.prototype=wt.prototype={constructor:P,restart:function(t,n,e){if(typeof t!="function")throw new TypeError("callback is not a function");e=(e==null?tt():+e)+(n==null?0:+n),!this._next&&S!==this&&(S?S._next=this:O=this,S=this),this._call=t,this._time=e,R()},stop:function(){this._call&&(this._call=null,this._time=1/0,R())}};function wt(t,n,e){var i=new P;return i.restart(t,n,e),i}function $t(){tt(),++T;for(var t=O,n;t;)(n=x-t._time)>=0&&t._call.call(void 0,n),t=t._next;--T}function V(){x=(C=Y.now())+D,T=E=0;try{$t()}finally{T=0,dt(),x=0}}function mt(){var t=Y.now(),n=t-C;n>U&&(D-=n,C=t)}function dt(){for(var t,n=O,e,i=1/0;n;)n._call?(i>n._time&&(i=n._time),t=n,n=n._next):(e=n._next,n._next=null,n=t?t._next=e:O=e);S=t,R(i)}function R(t){if(!T){E&&(E=clearTimeout(E));var n=t-x;n>24?(t<1/0&&(E=setTimeout(V,t-Y.now()-D)),q&&(q=clearInterval(q))):(q||(C=Y.now(),q=setInterval(mt,U)),T=1,b(V))}}export{B as P,P as T,xt as a,gt as b,ft as d,vt as i,tt as n,rt as p,wt as t};
@@ -1 +1 @@
1
- import{g as u,b_ as n}from"./index.3qE-vjOX.js";var o=n,i=0;function a(r){var t=++i;return o(r)+t}var e=a;const s=u(e);export{s as u};
1
+ import{g as u,cb as n}from"./index.kc3Ycvjj.js";var o=n,i=0;function a(r){var t=++i;return o(r)+t}var e=a;const s=u(e);export{s as u};
@@ -1 +1 @@
1
- import{r as i,A as h}from"./index.3qE-vjOX.js";import{u as p}from"./FormClearHelper.BIe6FN2Y.js";function v({getStateFromWidgetMgr:e,getDefaultState:c,updateWidgetMgrState:l,element:s,widgetMgr:u,fragmentId:t,onFormCleared:r}){const[n,V]=i.useState(()=>e(u,s)??c(u,s)),[f,a]=i.useState({value:n,fromUi:!1});i.useEffect(()=>{h(f)||(a(null),V(f.value),l(s,u,f,t))},[f,l,s,u,t]);const o=i.useCallback(()=>{a({value:c(u,s),fromUi:!0}),r==null||r()},[a,s,c,u,r]);return p({widgetMgr:u,element:s,onFormCleared:o}),[n,a]}function E({getStateFromWidgetMgr:e,getDefaultStateFromProto:c,getCurrStateFromProto:l,updateWidgetMgrState:s,element:u,widgetMgr:t,fragmentId:r,onFormCleared:n}){const V=i.useCallback((o,x)=>c(x),[c]),[f,a]=v({getStateFromWidgetMgr:e,getDefaultState:V,updateWidgetMgrState:s,element:u,widgetMgr:t,fragmentId:r,onFormCleared:n});return i.useEffect(()=>{u.setValue&&(u.setValue=!1,a({value:l(u),fromUi:!1}))},[u,l,a]),[f,a]}export{E as a,v as u};
1
+ import{r as i,A as h}from"./index.kc3Ycvjj.js";import{u as p}from"./FormClearHelper.dauERNYc.js";function v({getStateFromWidgetMgr:e,getDefaultState:c,updateWidgetMgrState:l,element:s,widgetMgr:u,fragmentId:t,onFormCleared:r}){const[n,V]=i.useState(()=>e(u,s)??c(u,s)),[f,a]=i.useState({value:n,fromUi:!1});i.useEffect(()=>{h(f)||(a(null),V(f.value),l(s,u,f,t))},[f,l,s,u,t]);const o=i.useCallback(()=>{a({value:c(u,s),fromUi:!0}),r==null||r()},[a,s,c,u,r]);return p({widgetMgr:u,element:s,onFormCleared:o}),[n,a]}function E({getStateFromWidgetMgr:e,getDefaultStateFromProto:c,getCurrStateFromProto:l,updateWidgetMgrState:s,element:u,widgetMgr:t,fragmentId:r,onFormCleared:n}){const V=i.useCallback((o,x)=>c(x),[c]),[f,a]=v({getStateFromWidgetMgr:e,getDefaultState:V,updateWidgetMgrState:s,element:u,widgetMgr:t,fragmentId:r,onFormCleared:n});return i.useEffect(()=>{u.setValue&&(u.setValue=!1,a({value:l(u),fromUi:!1}))},[u,l,a]),[f,a]}export{E as a,v as u};
@@ -1 +1 @@
1
- import{r as o,bZ as i}from"./index.3qE-vjOX.js";import{i as b}from"./inputUtils.CQWz5UKz.js";function E(r,n,s,t){o.useEffect(()=>{t||r!==n&&s(r)},[r,n,t,s])}function l(r,n,s,t,u,f=!1){return o.useCallback(e=>{const a=f?e.metaKey||e.ctrlKey:!0;!b(e)||!a||(e.preventDefault(),s&&n(),t.allowFormEnterToSubmit(r)&&t.submitForm(r,u))},[r,u,s,n,t,f])}function F({formId:r,maxChars:n,setDirty:s,setUiValue:t,setValueWithSource:u}){return o.useCallback(f=>{const{value:e}=f.target;n!==0&&e.length>n||(s(!0),t(e),i({formId:r})&&u({value:e,fromUi:!0}))},[r,n,s,t,u])}export{F as a,l as b,E as u};
1
+ import{r as o,ca as i}from"./index.kc3Ycvjj.js";import{i as c}from"./inputUtils.CQWz5UKz.js";function E(r,n,s,t){o.useEffect(()=>{t||r!==n&&s(r)},[r,n,t,s])}function l(r,n,s,t,u,f=!1){return o.useCallback(e=>{const a=f?e.metaKey||e.ctrlKey:!0;!c(e)||!a||(e.preventDefault(),s&&n(),t.allowFormEnterToSubmit(r)&&t.submitForm(r,u))},[r,u,s,n,t,f])}function F({formId:r,maxChars:n,setDirty:s,setUiValue:t,setValueWithSource:u}){return o.useCallback(f=>{const{value:e}=f.target;n!==0&&e.length>n||(s(!0),t(e),i({formId:r})&&u({value:e,fromUi:!0}))},[r,n,s,t,u])}export{F as a,l as b,E as u};