voyager-ionic-core 8.5.7 → 8.7.1

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 (2204) hide show
  1. package/components/action-sheet.js +46 -33
  2. package/components/alert.js +50 -35
  3. package/components/animation.js +2 -2
  4. package/components/backdrop.js +12 -5
  5. package/components/button-active.js +1 -1
  6. package/components/button.js +54 -30
  7. package/components/buttons.js +15 -5
  8. package/components/capacitor.js +1 -1
  9. package/components/checkbox.js +41 -17
  10. package/components/config.js +1 -1
  11. package/components/content.js +25 -6
  12. package/components/data.js +31 -6
  13. package/components/gesture-controller.js +1 -1
  14. package/components/haptic.js +1 -1
  15. package/components/hardware-back-button.js +2 -2
  16. package/components/header.js +13 -8
  17. package/components/helpers.js +3 -6
  18. package/components/icon.js +269 -201
  19. package/components/index.js +1 -1
  20. package/components/index2.js +1 -1
  21. package/components/index3.js +3 -5
  22. package/components/index4.js +1 -1
  23. package/components/index5.js +2 -2
  24. package/components/index6.js +28 -3
  25. package/components/index7.js +163 -27
  26. package/components/index8.js +1 -1
  27. package/components/index9.js +3 -163
  28. package/components/input-shims.js +25 -2
  29. package/components/input.utils.js +2 -2
  30. package/components/ion-accordion-group.js +21 -8
  31. package/components/ion-accordion.js +33 -15
  32. package/components/ion-app.js +8 -7
  33. package/components/ion-avatar.js +3 -5
  34. package/components/ion-back-button.js +13 -14
  35. package/components/ion-badge.js +3 -6
  36. package/components/ion-breadcrumb.js +23 -21
  37. package/components/ion-breadcrumbs.js +15 -11
  38. package/components/ion-card-content.js +3 -5
  39. package/components/ion-card-header.js +8 -6
  40. package/components/ion-card-subtitle.js +3 -6
  41. package/components/ion-card-title.js +3 -6
  42. package/components/ion-card.js +17 -12
  43. package/components/ion-chip.js +9 -6
  44. package/components/ion-col.js +2 -27
  45. package/components/ion-datetime-button.js +17 -15
  46. package/components/ion-datetime.js +231 -132
  47. package/components/ion-fab-button.js +38 -21
  48. package/components/ion-fab-list.js +8 -3
  49. package/components/ion-fab.js +11 -5
  50. package/components/ion-footer.js +14 -9
  51. package/components/ion-grid.js +5 -3
  52. package/components/ion-img.js +2 -7
  53. package/components/ion-infinite-scroll-content.js +3 -7
  54. package/components/ion-infinite-scroll.js +28 -7
  55. package/components/ion-input-otp.d.ts +11 -0
  56. package/components/ion-input-otp.js +684 -0
  57. package/components/ion-input-password-toggle.js +12 -14
  58. package/components/ion-input.js +82 -54
  59. package/components/ion-item-divider.js +12 -8
  60. package/components/ion-item-group.js +4 -6
  61. package/components/ion-item-option.js +17 -15
  62. package/components/ion-item-options.js +8 -6
  63. package/components/ion-item-sliding.js +9 -6
  64. package/components/ion-loading.js +44 -28
  65. package/components/ion-menu-button.js +18 -13
  66. package/components/ion-menu-toggle.js +12 -8
  67. package/components/ion-menu.js +54 -16
  68. package/components/ion-nav-link.js +8 -8
  69. package/components/ion-nav.js +10 -13
  70. package/components/ion-note.js +5 -8
  71. package/components/ion-picker-legacy.js +48 -28
  72. package/components/ion-progress-bar.js +22 -8
  73. package/components/ion-range.js +115 -32
  74. package/components/ion-refresher-content.js +3 -7
  75. package/components/ion-refresher.js +57 -9
  76. package/components/ion-reorder-group.js +27 -10
  77. package/components/ion-reorder.js +5 -7
  78. package/components/ion-route-redirect.js +0 -2
  79. package/components/ion-route.js +9 -7
  80. package/components/ion-router-link.js +10 -12
  81. package/components/ion-router-outlet.js +13 -11
  82. package/components/ion-router.js +20 -1
  83. package/components/ion-row.js +3 -4
  84. package/components/ion-searchbar.js +83 -36
  85. package/components/ion-segment-button.js +23 -14
  86. package/components/ion-segment-content.js +4 -5
  87. package/components/ion-segment-view.js +8 -8
  88. package/components/ion-segment.js +25 -14
  89. package/components/ion-select-option.js +6 -5
  90. package/components/ion-select.js +70 -36
  91. package/components/ion-skeleton-text.js +7 -5
  92. package/components/ion-split-pane.js +14 -9
  93. package/components/ion-tab-bar.js +10 -9
  94. package/components/ion-tab-button.js +13 -15
  95. package/components/ion-tab.js +6 -9
  96. package/components/ion-tabs.js +6 -7
  97. package/components/ion-text.js +4 -6
  98. package/components/ion-textarea.js +73 -37
  99. package/components/ion-thumbnail.js +3 -4
  100. package/components/ion-toast.js +63 -41
  101. package/components/ion-toggle.js +56 -25
  102. package/components/ionic-global.js +1 -1
  103. package/components/item.js +49 -22
  104. package/components/keyboard-controller.js +2 -2
  105. package/components/keyboard.js +134 -69
  106. package/components/keyboard2.js +69 -134
  107. package/components/label.js +5 -9
  108. package/components/list-header.js +5 -9
  109. package/components/list.js +7 -7
  110. package/components/modal.js +630 -217
  111. package/components/notch-controller.js +1 -1
  112. package/components/overlays.js +3 -3
  113. package/components/picker-column-option.js +21 -8
  114. package/components/picker-column.js +48 -15
  115. package/components/picker-column2.js +9 -12
  116. package/components/picker.js +3 -5
  117. package/components/popover.js +139 -46
  118. package/components/radio-group.js +12 -12
  119. package/components/radio.js +31 -17
  120. package/components/refresher.utils.js +2 -2
  121. package/components/ripple-effect.js +12 -4
  122. package/components/select-modal.js +7 -12
  123. package/components/select-popover.js +8 -11
  124. package/components/spinner.js +6 -7
  125. package/components/swipe-back.js +1 -1
  126. package/components/title.js +5 -9
  127. package/components/toolbar.js +5 -8
  128. package/css/core.css +1 -1
  129. package/css/core.css.map +1 -1
  130. package/css/display.css +1 -1
  131. package/css/display.css.map +1 -1
  132. package/css/flex-utils.css +1 -1
  133. package/css/flex-utils.css.map +1 -1
  134. package/css/global.bundle.css +1 -1
  135. package/css/global.bundle.css.map +1 -1
  136. package/css/ionic.bundle.css +1 -1
  137. package/css/ionic.bundle.css.map +1 -1
  138. package/css/structure.css +1 -1
  139. package/css/structure.css.map +1 -1
  140. package/css/utils.bundle.css +1 -1
  141. package/css/utils.bundle.css.map +1 -1
  142. package/dist/cjs/{animation-ab2d3449.js → animation-ZJ1lAkZD.js} +2 -2
  143. package/dist/cjs/{app-globals-ddceb1f4.js → app-globals-77ZfuXXk.js} +1 -1
  144. package/dist/cjs/{button-active-43e2b419.js → button-active-BzZenWWH.js} +3 -3
  145. package/dist/cjs/{capacitor-c04564bf.js → capacitor-DmA66EwP.js} +1 -1
  146. package/dist/cjs/{config-f6225ae7.js → config-CKhELRRu.js} +1 -1
  147. package/dist/cjs/{data-94e8d392.js → data-DW6ofvJ8.js} +30 -5
  148. package/dist/cjs/{framework-delegate-862d9d00.js → framework-delegate-WkyjrnCx.js} +1 -1
  149. package/dist/cjs/{gesture-controller-9436f482.js → gesture-controller-dtqlP_q4.js} +1 -1
  150. package/dist/cjs/{haptic-f6b37aa3.js → haptic-ClPPQ_PS.js} +1 -1
  151. package/dist/cjs/{hardware-back-button-3d2b1004.js → hardware-back-button-BxdNu76F.js} +2 -2
  152. package/dist/cjs/{helpers-8a48fdea.js → helpers-DgwmcYAu.js} +2 -5
  153. package/dist/cjs/{index-1eff7149.js → index-BzEyuIww.js} +6 -7
  154. package/dist/cjs/{index-ee07ed59.js → index-CAvQ7Tka.js} +3 -4
  155. package/dist/cjs/{index-31b07b9c.js → index-Cc5PNMyz.js} +3 -3
  156. package/dist/cjs/{index-a96d31ae.js → index-D24wggHR.js} +9 -9
  157. package/dist/cjs/{index-2e236a04.js → index-DNh170BW.js} +1710 -754
  158. package/dist/cjs/index-DqmRDbxg.js +58 -0
  159. package/dist/cjs/{index-dbe01e08.js → index-bGpoPC4u.js} +3 -3
  160. package/dist/cjs/index.cjs.js +19 -24
  161. package/dist/cjs/{input-shims-415be7ee.js → input-shims-CLI_OrmU.js} +29 -6
  162. package/dist/cjs/{input.utils-a7957fd6.js → input.utils-B2hZ5tX6.js} +3 -3
  163. package/dist/cjs/ion-accordion_2.cjs.entry.js +55 -27
  164. package/dist/cjs/ion-action-sheet.cjs.entry.js +57 -47
  165. package/dist/cjs/ion-alert.cjs.entry.js +63 -51
  166. package/dist/cjs/ion-app_8.cjs.entry.js +122 -90
  167. package/dist/cjs/ion-avatar_3.cjs.entry.js +9 -18
  168. package/dist/cjs/ion-back-button.cjs.entry.js +19 -23
  169. package/dist/cjs/ion-backdrop.cjs.entry.js +13 -9
  170. package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +38 -35
  171. package/dist/cjs/ion-button_2.cjs.entry.js +367 -280
  172. package/dist/cjs/ion-card_5.cjs.entry.js +32 -36
  173. package/dist/cjs/ion-checkbox.cjs.entry.js +44 -23
  174. package/dist/cjs/ion-chip.cjs.entry.js +11 -11
  175. package/dist/cjs/ion-col_3.cjs.entry.js +9 -36
  176. package/dist/cjs/ion-datetime-button.cjs.entry.js +23 -24
  177. package/dist/cjs/ion-datetime_3.cjs.entry.js +348 -236
  178. package/dist/cjs/ion-fab_3.cjs.entry.js +57 -32
  179. package/dist/cjs/ion-img.cjs.entry.js +4 -12
  180. package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +36 -22
  181. package/dist/cjs/ion-input-otp.cjs.entry.js +646 -0
  182. package/dist/cjs/ion-input-password-toggle.cjs.entry.js +17 -22
  183. package/dist/cjs/ion-input.cjs.entry.js +87 -62
  184. package/dist/cjs/ion-item-option_3.cjs.entry.js +38 -34
  185. package/dist/cjs/ion-item_8.cjs.entry.js +88 -72
  186. package/dist/cjs/ion-loading.cjs.entry.js +54 -41
  187. package/dist/cjs/ion-menu_3.cjs.entry.js +104 -60
  188. package/dist/cjs/ion-modal.cjs.entry.js +644 -234
  189. package/dist/cjs/ion-nav_2.cjs.entry.js +29 -35
  190. package/dist/cjs/ion-picker-column-option.cjs.entry.js +24 -14
  191. package/dist/cjs/ion-picker-column.cjs.entry.js +52 -22
  192. package/dist/cjs/ion-picker.cjs.entry.js +4 -9
  193. package/dist/cjs/ion-popover.cjs.entry.js +147 -57
  194. package/dist/cjs/ion-progress-bar.cjs.entry.js +25 -14
  195. package/dist/cjs/ion-radio_2.cjs.entry.js +46 -35
  196. package/dist/cjs/ion-range.cjs.entry.js +123 -43
  197. package/dist/cjs/ion-refresher_2.cjs.entry.js +74 -33
  198. package/dist/cjs/ion-reorder_2.cjs.entry.js +37 -25
  199. package/dist/cjs/ion-ripple-effect.cjs.entry.js +13 -8
  200. package/dist/cjs/ion-route_4.cjs.entry.js +53 -39
  201. package/dist/cjs/ion-searchbar.cjs.entry.js +90 -46
  202. package/dist/cjs/ion-segment-content.cjs.entry.js +4 -7
  203. package/dist/cjs/ion-segment-view.cjs.entry.js +8 -10
  204. package/dist/cjs/ion-segment_2.cjs.entry.js +54 -37
  205. package/dist/cjs/ion-select-modal.cjs.entry.js +15 -23
  206. package/dist/cjs/ion-select_3.cjs.entry.js +94 -65
  207. package/dist/cjs/ion-spinner.cjs.entry.js +11 -15
  208. package/dist/cjs/ion-split-pane.cjs.entry.js +16 -14
  209. package/dist/cjs/ion-tab-bar_2.cjs.entry.js +30 -34
  210. package/dist/cjs/ion-tab_2.cjs.entry.js +13 -20
  211. package/dist/cjs/ion-text.cjs.entry.js +6 -11
  212. package/dist/cjs/ion-textarea.cjs.entry.js +78 -45
  213. package/dist/cjs/ion-toast.cjs.entry.js +84 -65
  214. package/dist/cjs/ion-toggle.cjs.entry.js +63 -35
  215. package/dist/cjs/{ionic-global-6dea5a96.js → ionic-global-UI5YPSi-.js} +3 -4
  216. package/dist/cjs/ionic.cjs.js +8 -9
  217. package/dist/cjs/{ios.transition-a131cd4d.js → ios.transition-DEitrLlG.js} +5 -6
  218. package/dist/cjs/{keyboard-0272231f.js → keyboard-UuAS4D_9.js} +1 -1
  219. package/dist/cjs/{keyboard-controller-c05e747a.js → keyboard-controller-GXBiBRKS.js} +2 -2
  220. package/dist/cjs/{keyboard-af1bb365.js → keyboard-hHzlEQpk.js} +3 -3
  221. package/dist/cjs/loader.cjs.js +4 -7
  222. package/dist/cjs/{md.transition-e018ebe5.js → md.transition-BHtGC-Wg.js} +5 -6
  223. package/dist/cjs/{notch-controller-09b7f358.js → notch-controller-Bf5Rr4R5.js} +2 -2
  224. package/dist/cjs/{overlays-4c291a05.js → overlays-CglR7j-u.js} +7 -7
  225. package/dist/cjs/{status-tap-f1acefac.js → status-tap-D9YPr62n.js} +3 -4
  226. package/dist/cjs/{swipe-back-442ca3d7.js → swipe-back-Ck8mDs0g.js} +5 -5
  227. package/dist/collection/collection-manifest.json +3 -2
  228. package/dist/collection/components/accordion/accordion.js +43 -13
  229. package/dist/collection/components/accordion-group/accordion-group.js +35 -8
  230. package/dist/collection/components/action-sheet/action-sheet.js +95 -43
  231. package/dist/collection/components/alert/alert.js +104 -45
  232. package/dist/collection/components/app/app.js +8 -3
  233. package/dist/collection/components/back-button/back-button.js +30 -14
  234. package/dist/collection/components/backdrop/backdrop.js +18 -3
  235. package/dist/collection/components/badge/badge.js +3 -4
  236. package/dist/collection/components/breadcrumb/breadcrumb.js +57 -26
  237. package/dist/collection/components/breadcrumbs/breadcrumbs.js +24 -10
  238. package/dist/collection/components/button/button.js +97 -36
  239. package/dist/collection/components/buttons/buttons.js +15 -1
  240. package/dist/collection/components/card/card.js +44 -16
  241. package/dist/collection/components/card-header/card-header.js +11 -3
  242. package/dist/collection/components/card-subtitle/card-subtitle.js +3 -4
  243. package/dist/collection/components/card-title/card-title.js +3 -4
  244. package/dist/collection/components/checkbox/checkbox.js +74 -24
  245. package/dist/collection/components/chip/chip.js +15 -4
  246. package/dist/collection/components/col/col.js +72 -50
  247. package/dist/collection/components/content/content.js +43 -9
  248. package/dist/collection/components/datetime/datetime.ios.css +7 -2
  249. package/dist/collection/components/datetime/datetime.js +345 -153
  250. package/dist/collection/components/datetime/datetime.md.css +9 -3
  251. package/dist/collection/components/datetime/utils/data.js +29 -4
  252. package/dist/collection/components/datetime/utils/state.js +1 -0
  253. package/dist/collection/components/datetime-button/datetime-button.js +21 -11
  254. package/dist/collection/components/fab/fab.js +21 -6
  255. package/dist/collection/components/fab-button/fab-button.js +76 -28
  256. package/dist/collection/components/fab-list/fab-list.js +12 -2
  257. package/dist/collection/components/footer/footer.js +16 -5
  258. package/dist/collection/components/grid/grid.js +6 -1
  259. package/dist/collection/components/header/header.js +15 -4
  260. package/dist/collection/components/img/img.js +6 -6
  261. package/dist/collection/components/infinite-scroll/infinite-scroll.js +35 -7
  262. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +6 -4
  263. package/dist/collection/components/input/input.ios.css +1 -1
  264. package/dist/collection/components/input/input.js +178 -79
  265. package/dist/collection/components/input/input.md.css +1 -1
  266. package/dist/collection/components/input-otp/input-otp-interface.js +1 -0
  267. package/dist/collection/components/input-otp/input-otp.ios.css +381 -0
  268. package/dist/collection/components/input-otp/input-otp.js +1056 -0
  269. package/dist/collection/components/input-otp/input-otp.md.css +381 -0
  270. package/dist/collection/components/input-password-toggle/input-password-toggle.js +19 -11
  271. package/dist/collection/components/item/item.js +84 -28
  272. package/dist/collection/components/item-divider/item-divider.js +15 -5
  273. package/dist/collection/components/item-group/item-group.js +1 -1
  274. package/dist/collection/components/item-option/item-option.js +38 -18
  275. package/dist/collection/components/item-options/item-options.js +8 -2
  276. package/dist/collection/components/item-sliding/item-sliding.js +9 -3
  277. package/dist/collection/components/label/label.js +8 -6
  278. package/dist/collection/components/list/list.js +10 -4
  279. package/dist/collection/components/list-header/list-header.js +8 -8
  280. package/dist/collection/components/loading/loading.js +96 -40
  281. package/dist/collection/components/menu/menu.js +104 -29
  282. package/dist/collection/components/menu-button/menu-button.js +29 -12
  283. package/dist/collection/components/menu-toggle/menu-toggle.js +16 -7
  284. package/dist/collection/components/modal/animations/ios.enter.js +3 -43
  285. package/dist/collection/components/modal/animations/ios.leave.js +4 -26
  286. package/dist/collection/components/modal/animations/ios.transition.js +152 -0
  287. package/dist/collection/components/modal/animations/md.enter.js +2 -42
  288. package/dist/collection/components/modal/animations/md.leave.js +2 -24
  289. package/dist/collection/components/modal/gestures/sheet.js +122 -29
  290. package/dist/collection/components/modal/modal.ios.css +0 -10
  291. package/dist/collection/components/modal/modal.js +446 -69
  292. package/dist/collection/components/nav/nav.js +25 -12
  293. package/dist/collection/components/nav-link/nav-link.js +19 -9
  294. package/dist/collection/components/note/note.js +5 -6
  295. package/dist/collection/components/picker-column/picker-column.js +56 -14
  296. package/dist/collection/components/picker-column-option/picker-column-option.js +27 -6
  297. package/dist/collection/components/picker-legacy/picker.js +93 -33
  298. package/dist/collection/components/picker-legacy-column/picker-column.js +7 -5
  299. package/dist/collection/components/popover/popover.js +227 -70
  300. package/dist/collection/components/progress-bar/progress-bar.js +33 -7
  301. package/dist/collection/components/radio/radio.js +49 -19
  302. package/dist/collection/components/radio-group/radio-group.js +27 -13
  303. package/dist/collection/components/range/range.js +157 -39
  304. package/dist/collection/components/refresher/refresher.js +69 -7
  305. package/dist/collection/components/refresher-content/refresher-content.js +13 -9
  306. package/dist/collection/components/reorder/reorder.js +1 -1
  307. package/dist/collection/components/reorder-group/reorder-group.js +86 -9
  308. package/dist/collection/components/ripple-effect/ripple-effect.js +13 -2
  309. package/dist/collection/components/route/route.js +24 -9
  310. package/dist/collection/components/route-redirect/route-redirect.js +6 -6
  311. package/dist/collection/components/router/router.js +29 -3
  312. package/dist/collection/components/router-link/router-link.js +26 -14
  313. package/dist/collection/components/router-outlet/router-outlet.js +25 -9
  314. package/dist/collection/components/row/row.js +1 -1
  315. package/dist/collection/components/searchbar/searchbar.js +147 -54
  316. package/dist/collection/components/segment/segment.js +40 -15
  317. package/dist/collection/components/segment-button/segment-button.js +34 -13
  318. package/dist/collection/components/segment-content/segment-content.css +1 -0
  319. package/dist/collection/components/segment-content/segment-content.js +1 -1
  320. package/dist/collection/components/segment-view/segment-view.js +8 -4
  321. package/dist/collection/components/select/select.js +129 -49
  322. package/dist/collection/components/select-modal/select-modal.js +10 -5
  323. package/dist/collection/components/select-option/select-option.js +10 -4
  324. package/dist/collection/components/select-popover/select-popover.js +19 -9
  325. package/dist/collection/components/skeleton-text/skeleton-text.js +8 -3
  326. package/dist/collection/components/spinner/spinner.js +16 -8
  327. package/dist/collection/components/split-pane/split-pane.js +19 -6
  328. package/dist/collection/components/tab/tab.js +16 -9
  329. package/dist/collection/components/tab-bar/tab-bar.js +16 -7
  330. package/dist/collection/components/tab-button/tab-button.js +34 -18
  331. package/dist/collection/components/tabs/tabs.js +6 -4
  332. package/dist/collection/components/text/text.js +5 -6
  333. package/dist/collection/components/textarea/textarea.js +154 -59
  334. package/dist/collection/components/thumbnail/thumbnail.js +1 -1
  335. package/dist/collection/components/title/title.js +8 -8
  336. package/dist/collection/components/toast/toast.js +128 -55
  337. package/dist/collection/components/toggle/toggle.js +86 -28
  338. package/dist/collection/components/toolbar/toolbar.js +5 -4
  339. package/dist/collection/utils/input-shims/hacks/scroll-assist.js +23 -0
  340. package/dist/collection/utils/test/playwright/page/utils/set-content.js +20 -2
  341. package/dist/docs.d.ts +8 -0
  342. package/dist/docs.json +5522 -1831
  343. package/dist/esm/{animation-8b25e105.js → animation-BvhAtgca.js} +2 -2
  344. package/dist/esm/{app-globals-dbdbb3df.js → app-globals-CvLYUxE9.js} +1 -1
  345. package/dist/esm/{button-active-90f1dbc4.js → button-active-DBUPuLNw.js} +3 -3
  346. package/dist/esm/{capacitor-59395cbd.js → capacitor-CFERIeaU.js} +1 -1
  347. package/dist/esm/{config-9898ed97.js → config-Dx_6wPIJ.js} +1 -1
  348. package/dist/esm/{data-0d7ea6eb.js → data-CKHMWxfe.js} +31 -6
  349. package/dist/esm/{framework-delegate-56b467ad.js → framework-delegate-BLEBgH06.js} +1 -1
  350. package/dist/esm/{gesture-controller-314a54f6.js → gesture-controller-BTEOs1at.js} +1 -1
  351. package/dist/esm/{haptic-ac164e4c.js → haptic-DzAMWJuk.js} +2 -2
  352. package/dist/esm/{hardware-back-button-a7eb8233.js → hardware-back-button-Dhbd-23H.js} +2 -2
  353. package/dist/esm/{helpers-d94bc8ad.js → helpers-8KSQQGQy.js} +3 -6
  354. package/dist/esm/{index-527b9e34.js → index-4DxY6_gG.js} +1703 -735
  355. package/dist/esm/{index-9a17db3d.js → index-7UbSlv7N.js} +3 -3
  356. package/dist/esm/{index-be190feb.js → index-C6WeRr09.js} +3 -3
  357. package/dist/esm/{index-18f31305.js → index-CXSTcaAW.js} +6 -6
  358. package/dist/esm/{index-39782642.js → index-CfgBF1SE.js} +4 -6
  359. package/dist/esm/index-DV3sJJW8.js +32 -0
  360. package/dist/esm/{index-68c0d151.js → index-Dp7GXH1z.js} +4 -5
  361. package/dist/esm/index.js +17 -18
  362. package/dist/esm/{input-shims-279903e2.js → input-shims-C4KDnhxb.js} +29 -6
  363. package/dist/esm/{input.utils-40504d6d.js → input.utils-be4gBvVY.js} +3 -3
  364. package/dist/esm/ion-accordion_2.entry.js +53 -23
  365. package/dist/esm/ion-action-sheet.entry.js +57 -45
  366. package/dist/esm/ion-alert.entry.js +61 -47
  367. package/dist/esm/ion-app_8.entry.js +103 -69
  368. package/dist/esm/ion-avatar_3.entry.js +9 -16
  369. package/dist/esm/ion-back-button.entry.js +15 -17
  370. package/dist/esm/ion-backdrop.entry.js +13 -7
  371. package/dist/esm/ion-breadcrumb_2.entry.js +38 -33
  372. package/dist/esm/ion-button_2.entry.js +364 -275
  373. package/dist/esm/ion-card_5.entry.js +32 -34
  374. package/dist/esm/ion-checkbox.entry.js +44 -21
  375. package/dist/esm/ion-chip.entry.js +11 -9
  376. package/dist/esm/ion-col_3.entry.js +9 -34
  377. package/dist/esm/ion-datetime-button.entry.js +19 -18
  378. package/dist/esm/ion-datetime_3.entry.js +288 -174
  379. package/dist/esm/ion-fab_3.entry.js +57 -30
  380. package/dist/esm/ion-img.entry.js +4 -10
  381. package/dist/esm/ion-infinite-scroll_2.entry.js +34 -18
  382. package/dist/esm/ion-input-otp.entry.js +644 -0
  383. package/dist/esm/ion-input-password-toggle.entry.js +13 -16
  384. package/dist/esm/ion-input.entry.js +87 -60
  385. package/dist/esm/ion-item-option_3.entry.js +37 -31
  386. package/dist/esm/ion-item_8.entry.js +87 -69
  387. package/dist/esm/ion-loading.entry.js +52 -37
  388. package/dist/esm/ion-menu_3.entry.js +92 -46
  389. package/dist/esm/ion-modal.entry.js +637 -225
  390. package/dist/esm/ion-nav_2.entry.js +18 -22
  391. package/dist/esm/ion-picker-column-option.entry.js +24 -12
  392. package/dist/esm/ion-picker-column.entry.js +52 -20
  393. package/dist/esm/ion-picker.entry.js +4 -7
  394. package/dist/esm/ion-popover.entry.js +144 -52
  395. package/dist/esm/ion-progress-bar.entry.js +24 -11
  396. package/dist/esm/ion-radio_2.entry.js +46 -33
  397. package/dist/esm/ion-range.entry.js +118 -36
  398. package/dist/esm/ion-refresher_2.entry.js +69 -26
  399. package/dist/esm/ion-reorder_2.entry.js +37 -23
  400. package/dist/esm/ion-ripple-effect.entry.js +13 -6
  401. package/dist/esm/ion-route_4.entry.js +37 -21
  402. package/dist/esm/ion-searchbar.entry.js +87 -41
  403. package/dist/esm/ion-segment-content.entry.js +4 -5
  404. package/dist/esm/ion-segment-view.entry.js +8 -8
  405. package/dist/esm/ion-segment_2.entry.js +51 -32
  406. package/dist/esm/ion-select-modal.entry.js +15 -21
  407. package/dist/esm/ion-select_3.entry.js +91 -60
  408. package/dist/esm/ion-spinner.entry.js +9 -11
  409. package/dist/esm/ion-split-pane.entry.js +14 -10
  410. package/dist/esm/ion-tab-bar_2.entry.js +29 -31
  411. package/dist/esm/ion-tab_2.entry.js +11 -16
  412. package/dist/esm/ion-text.entry.js +6 -9
  413. package/dist/esm/ion-textarea.entry.js +78 -43
  414. package/dist/esm/ion-toast.entry.js +70 -49
  415. package/dist/esm/ion-toggle.entry.js +63 -33
  416. package/dist/esm/{ionic-global-b26f573e.js → ionic-global-CTSyufhF.js} +1 -2
  417. package/dist/esm/ionic.js +7 -7
  418. package/dist/esm/{ios.transition-4047cb68.js → ios.transition-eAEkgVAv.js} +5 -6
  419. package/dist/esm/{keyboard-73175e24.js → keyboard-CUw4ekVy.js} +1 -1
  420. package/dist/esm/{keyboard-controller-ec5c2bfa.js → keyboard-controller-BaaVITYt.js} +2 -2
  421. package/dist/esm/{keyboard-52278bd7.js → keyboard-ywgs5efA.js} +3 -3
  422. package/dist/esm/loader.js +5 -6
  423. package/dist/esm/{md.transition-30ce8d1b.js → md.transition-D8TeJ_Pz.js} +5 -6
  424. package/dist/esm/{notch-controller-1a1f7183.js → notch-controller-lb417-kU.js} +2 -2
  425. package/dist/esm/{overlays-d99dcb0a.js → overlays-ZX_4-t_r.js} +7 -7
  426. package/dist/esm/{status-tap-42a8af65.js → status-tap-pATNXEtr.js} +3 -4
  427. package/dist/esm/{swipe-back-04123e7c.js → swipe-back-tV63j0BI.js} +5 -5
  428. package/dist/html.html-data.json +377 -1
  429. package/dist/index.js +1 -1
  430. package/dist/ionic/index.esm.js +1 -1
  431. package/dist/ionic/ionic.esm.js +1 -1
  432. package/dist/ionic/p-0f396661.entry.js +4 -0
  433. package/dist/ionic/p-1191a2d9.entry.js +4 -0
  434. package/dist/ionic/p-1488b7cc.entry.js +4 -0
  435. package/dist/ionic/p-148bdf18.entry.js +4 -0
  436. package/dist/ionic/p-16116947.entry.js +4 -0
  437. package/dist/ionic/p-19f80390.entry.js +4 -0
  438. package/dist/ionic/p-1bbd0a23.entry.js +4 -0
  439. package/dist/ionic/p-1d5b934a.entry.js +4 -0
  440. package/dist/ionic/p-29032e49.entry.js +4 -0
  441. package/dist/ionic/p-2cb0f39f.entry.js +4 -0
  442. package/dist/ionic/p-349fc921.entry.js +4 -0
  443. package/dist/ionic/p-3624b640.entry.js +4 -0
  444. package/dist/ionic/p-36a54836.entry.js +4 -0
  445. package/dist/ionic/p-39ed3212.entry.js +4 -0
  446. package/dist/ionic/p-3e426ddc.entry.js +4 -0
  447. package/dist/ionic/p-4DxY6_gG.js +5 -0
  448. package/dist/ionic/p-504e4c9c.entry.js +4 -0
  449. package/dist/ionic/p-528af4e6.entry.js +4 -0
  450. package/dist/ionic/p-54dec9b1.entry.js +4 -0
  451. package/dist/ionic/p-5c976c00.entry.js +4 -0
  452. package/dist/ionic/p-6383afc2.entry.js +4 -0
  453. package/dist/ionic/p-6701ab96.entry.js +4 -0
  454. package/dist/ionic/p-6d26651e.entry.js +4 -0
  455. package/dist/ionic/p-7a53f04c.entry.js +4 -0
  456. package/dist/ionic/p-7bac2c5f.entry.js +4 -0
  457. package/dist/ionic/p-7da05504.entry.js +4 -0
  458. package/dist/ionic/p-7fa27903.entry.js +4 -0
  459. package/dist/ionic/p-8d96a0cd.entry.js +4 -0
  460. package/dist/ionic/p-91d6ccb0.entry.js +4 -0
  461. package/dist/ionic/p-982fe1c4.entry.js +4 -0
  462. package/dist/ionic/p-9ddf2620.entry.js +4 -0
  463. package/dist/ionic/p-9eeaBrnk.js +4 -0
  464. package/dist/ionic/{p-8d2d39d0.js → p-B1xocg0A.js} +1 -1
  465. package/dist/ionic/{p-2bb55ebc.js → p-B5MDSrGg.js} +1 -1
  466. package/dist/ionic/p-BB-JoKGB.js +4 -0
  467. package/dist/ionic/{p-0f5e6225.js → p-BHGXdud8.js} +1 -1
  468. package/dist/ionic/p-BhNEp2QP.js +4 -0
  469. package/dist/ionic/p-Br3vSlYh.js +4 -0
  470. package/dist/ionic/p-C-Cct-6D.js +4 -0
  471. package/dist/ionic/p-C87oPMMF.js +4 -0
  472. package/dist/ionic/{p-aded71ec.js → p-C8d2ebIg.js} +1 -1
  473. package/dist/ionic/p-CIGNaXM1.js +4 -0
  474. package/dist/ionic/{p-89b61afc.js → p-CKvCXMs9.js} +1 -1
  475. package/dist/ionic/{p-95001a19.js → p-CSwZyt05.js} +1 -1
  476. package/dist/ionic/p-CWvl4RPO.js +4 -0
  477. package/dist/ionic/p-Cl0B-RWe.js +4 -0
  478. package/dist/ionic/p-CtWGkNnJ.js +4 -0
  479. package/dist/ionic/p-CvaZMP6T.js +4 -0
  480. package/dist/ionic/{p-27281edd.js → p-D13Eaw-8.js} +1 -1
  481. package/dist/ionic/p-D2fQU_qK.js +4 -0
  482. package/dist/ionic/p-D2re3d9B.js +4 -0
  483. package/dist/ionic/p-DAfH9Iif.js +4 -0
  484. package/dist/ionic/p-DCuOL88l.js +4 -0
  485. package/dist/ionic/p-DJKvq7vb.js +4 -0
  486. package/dist/ionic/p-DV3sJJW8.js +4 -0
  487. package/dist/ionic/{p-ed005d9c.js → p-DiZPU8BH.js} +1 -1
  488. package/dist/ionic/p-Dm_oBkW1.js +4 -0
  489. package/dist/ionic/{p-10a1bddc.js → p-EnaLTYYj.js} +1 -1
  490. package/dist/ionic/p-LaGjiAVo.js +4 -0
  491. package/dist/ionic/p-a81be128.entry.js +4 -0
  492. package/dist/ionic/p-ab33ef20.entry.js +4 -0
  493. package/dist/ionic/p-ac2be9d6.entry.js +4 -0
  494. package/dist/ionic/p-ac434970.entry.js +4 -0
  495. package/dist/ionic/p-afeb9df6.entry.js +4 -0
  496. package/dist/ionic/p-bc9f9032.entry.js +4 -0
  497. package/dist/ionic/p-bf81a468.entry.js +4 -0
  498. package/dist/ionic/p-c0d58c8e.entry.js +4 -0
  499. package/dist/ionic/p-c5210d3e.entry.js +4 -0
  500. package/dist/ionic/p-c575e7ce.entry.js +4 -0
  501. package/dist/ionic/p-c836e1a2.entry.js +4 -0
  502. package/dist/ionic/p-cb335dbc.entry.js +4 -0
  503. package/dist/ionic/p-d04d66fc.entry.js +4 -0
  504. package/dist/ionic/p-d3df6032.entry.js +4 -0
  505. package/dist/ionic/p-dbba38cf.entry.js +4 -0
  506. package/dist/ionic/p-e6c465ff.entry.js +4 -0
  507. package/dist/ionic/p-ec76fec4.entry.js +4 -0
  508. package/dist/ionic/p-ee2e35a6.entry.js +4 -0
  509. package/dist/ionic/p-f2884bc2.entry.js +4 -0
  510. package/dist/ionic/p-f456d176.entry.js +4 -0
  511. package/dist/ionic/p-f7db572a.entry.js +4 -0
  512. package/dist/ionic/p-f9eb54ee.entry.js +4 -0
  513. package/dist/ionic/svg/accessibility-outline.svg +1 -1
  514. package/dist/ionic/svg/accessibility-sharp.svg +1 -1
  515. package/dist/ionic/svg/accessibility.svg +1 -1
  516. package/dist/ionic/svg/add-circle-outline.svg +1 -1
  517. package/dist/ionic/svg/add-circle-sharp.svg +1 -1
  518. package/dist/ionic/svg/add-circle.svg +1 -1
  519. package/dist/ionic/svg/add-outline.svg +1 -1
  520. package/dist/ionic/svg/add-sharp.svg +1 -1
  521. package/dist/ionic/svg/add.svg +1 -1
  522. package/dist/ionic/svg/airplane-outline.svg +1 -1
  523. package/dist/ionic/svg/airplane-sharp.svg +1 -1
  524. package/dist/ionic/svg/airplane.svg +1 -1
  525. package/dist/ionic/svg/alarm-outline.svg +1 -1
  526. package/dist/ionic/svg/alarm-sharp.svg +1 -1
  527. package/dist/ionic/svg/alarm.svg +1 -1
  528. package/dist/ionic/svg/albums-outline.svg +1 -1
  529. package/dist/ionic/svg/albums-sharp.svg +1 -1
  530. package/dist/ionic/svg/albums.svg +1 -1
  531. package/dist/ionic/svg/alert-circle-outline.svg +1 -1
  532. package/dist/ionic/svg/alert-circle-sharp.svg +1 -1
  533. package/dist/ionic/svg/alert-circle.svg +1 -1
  534. package/dist/ionic/svg/alert-outline.svg +1 -1
  535. package/dist/ionic/svg/alert-sharp.svg +1 -1
  536. package/dist/ionic/svg/alert.svg +1 -1
  537. package/dist/ionic/svg/american-football-outline.svg +1 -1
  538. package/dist/ionic/svg/american-football-sharp.svg +1 -1
  539. package/dist/ionic/svg/american-football.svg +1 -1
  540. package/dist/ionic/svg/analytics-outline.svg +1 -1
  541. package/dist/ionic/svg/analytics-sharp.svg +1 -1
  542. package/dist/ionic/svg/analytics.svg +1 -1
  543. package/dist/ionic/svg/aperture-outline.svg +1 -1
  544. package/dist/ionic/svg/aperture-sharp.svg +1 -1
  545. package/dist/ionic/svg/aperture.svg +1 -1
  546. package/dist/ionic/svg/apps-outline.svg +1 -1
  547. package/dist/ionic/svg/apps-sharp.svg +1 -1
  548. package/dist/ionic/svg/apps.svg +1 -1
  549. package/dist/ionic/svg/archive-outline.svg +1 -1
  550. package/dist/ionic/svg/archive-sharp.svg +1 -1
  551. package/dist/ionic/svg/archive.svg +1 -1
  552. package/dist/ionic/svg/arrow-back-circle-outline.svg +1 -1
  553. package/dist/ionic/svg/arrow-back-circle-sharp.svg +1 -1
  554. package/dist/ionic/svg/arrow-back-circle.svg +1 -1
  555. package/dist/ionic/svg/arrow-back-outline.svg +1 -1
  556. package/dist/ionic/svg/arrow-back-sharp.svg +1 -1
  557. package/dist/ionic/svg/arrow-back.svg +1 -1
  558. package/dist/ionic/svg/arrow-down-circle-outline.svg +1 -1
  559. package/dist/ionic/svg/arrow-down-circle-sharp.svg +1 -1
  560. package/dist/ionic/svg/arrow-down-circle.svg +1 -1
  561. package/dist/ionic/svg/arrow-down-left-box-outline.svg +1 -0
  562. package/dist/ionic/svg/arrow-down-left-box-sharp.svg +1 -0
  563. package/dist/ionic/svg/arrow-down-left-box.svg +1 -0
  564. package/dist/ionic/svg/arrow-down-outline.svg +1 -1
  565. package/dist/ionic/svg/arrow-down-right-box-outline.svg +1 -0
  566. package/dist/ionic/svg/arrow-down-right-box-sharp.svg +1 -0
  567. package/dist/ionic/svg/arrow-down-right-box.svg +1 -0
  568. package/dist/ionic/svg/arrow-down-sharp.svg +1 -1
  569. package/dist/ionic/svg/arrow-down.svg +1 -1
  570. package/dist/ionic/svg/arrow-forward-circle-outline.svg +1 -1
  571. package/dist/ionic/svg/arrow-forward-circle-sharp.svg +1 -1
  572. package/dist/ionic/svg/arrow-forward-circle.svg +1 -1
  573. package/dist/ionic/svg/arrow-forward-outline.svg +1 -1
  574. package/dist/ionic/svg/arrow-forward-sharp.svg +1 -1
  575. package/dist/ionic/svg/arrow-forward.svg +1 -1
  576. package/dist/ionic/svg/arrow-redo-circle-outline.svg +1 -1
  577. package/dist/ionic/svg/arrow-redo-circle-sharp.svg +1 -1
  578. package/dist/ionic/svg/arrow-redo-circle.svg +1 -1
  579. package/dist/ionic/svg/arrow-redo-outline.svg +1 -1
  580. package/dist/ionic/svg/arrow-redo-sharp.svg +1 -1
  581. package/dist/ionic/svg/arrow-redo.svg +1 -1
  582. package/dist/ionic/svg/arrow-undo-circle-outline.svg +1 -1
  583. package/dist/ionic/svg/arrow-undo-circle-sharp.svg +1 -1
  584. package/dist/ionic/svg/arrow-undo-circle.svg +1 -1
  585. package/dist/ionic/svg/arrow-undo-outline.svg +1 -1
  586. package/dist/ionic/svg/arrow-undo-sharp.svg +1 -1
  587. package/dist/ionic/svg/arrow-undo.svg +1 -1
  588. package/dist/ionic/svg/arrow-up-circle-outline.svg +1 -1
  589. package/dist/ionic/svg/arrow-up-circle-sharp.svg +1 -1
  590. package/dist/ionic/svg/arrow-up-circle.svg +1 -1
  591. package/dist/ionic/svg/arrow-up-left-box-outline.svg +1 -0
  592. package/dist/ionic/svg/arrow-up-left-box-sharp.svg +1 -0
  593. package/dist/ionic/svg/arrow-up-left-box.svg +1 -0
  594. package/dist/ionic/svg/arrow-up-outline.svg +1 -1
  595. package/dist/ionic/svg/arrow-up-right-box-outline.svg +1 -0
  596. package/dist/ionic/svg/arrow-up-right-box-sharp.svg +1 -0
  597. package/dist/ionic/svg/arrow-up-right-box.svg +1 -0
  598. package/dist/ionic/svg/arrow-up-sharp.svg +1 -1
  599. package/dist/ionic/svg/arrow-up.svg +1 -1
  600. package/dist/ionic/svg/at-circle-outline.svg +1 -1
  601. package/dist/ionic/svg/at-circle-sharp.svg +1 -1
  602. package/dist/ionic/svg/at-circle.svg +1 -1
  603. package/dist/ionic/svg/at-outline.svg +1 -1
  604. package/dist/ionic/svg/at-sharp.svg +1 -1
  605. package/dist/ionic/svg/at.svg +1 -1
  606. package/dist/ionic/svg/attach-outline.svg +1 -1
  607. package/dist/ionic/svg/attach-sharp.svg +1 -1
  608. package/dist/ionic/svg/attach.svg +1 -1
  609. package/dist/ionic/svg/backspace-outline.svg +1 -1
  610. package/dist/ionic/svg/backspace-sharp.svg +1 -1
  611. package/dist/ionic/svg/backspace.svg +1 -1
  612. package/dist/ionic/svg/bag-add-outline.svg +1 -1
  613. package/dist/ionic/svg/bag-add-sharp.svg +1 -1
  614. package/dist/ionic/svg/bag-add.svg +1 -1
  615. package/dist/ionic/svg/bag-check-outline.svg +1 -1
  616. package/dist/ionic/svg/bag-check-sharp.svg +1 -1
  617. package/dist/ionic/svg/bag-check.svg +1 -1
  618. package/dist/ionic/svg/bag-handle-outline.svg +1 -1
  619. package/dist/ionic/svg/bag-handle-sharp.svg +1 -1
  620. package/dist/ionic/svg/bag-handle.svg +1 -1
  621. package/dist/ionic/svg/bag-outline.svg +1 -1
  622. package/dist/ionic/svg/bag-remove-outline.svg +1 -1
  623. package/dist/ionic/svg/bag-remove-sharp.svg +1 -1
  624. package/dist/ionic/svg/bag-remove.svg +1 -1
  625. package/dist/ionic/svg/bag-sharp.svg +1 -1
  626. package/dist/ionic/svg/bag.svg +1 -1
  627. package/dist/ionic/svg/balloon-outline.svg +1 -1
  628. package/dist/ionic/svg/balloon-sharp.svg +1 -1
  629. package/dist/ionic/svg/balloon.svg +1 -1
  630. package/dist/ionic/svg/ban-outline.svg +1 -1
  631. package/dist/ionic/svg/ban-sharp.svg +1 -1
  632. package/dist/ionic/svg/ban.svg +1 -1
  633. package/dist/ionic/svg/bandage-outline.svg +1 -1
  634. package/dist/ionic/svg/bandage-sharp.svg +1 -1
  635. package/dist/ionic/svg/bandage.svg +1 -1
  636. package/dist/ionic/svg/bar-chart-outline.svg +1 -1
  637. package/dist/ionic/svg/bar-chart-sharp.svg +1 -1
  638. package/dist/ionic/svg/bar-chart.svg +1 -1
  639. package/dist/ionic/svg/barbell-outline.svg +1 -1
  640. package/dist/ionic/svg/barbell-sharp.svg +1 -1
  641. package/dist/ionic/svg/barbell.svg +1 -1
  642. package/dist/ionic/svg/barcode-outline.svg +1 -1
  643. package/dist/ionic/svg/barcode-sharp.svg +1 -1
  644. package/dist/ionic/svg/barcode.svg +1 -1
  645. package/dist/ionic/svg/baseball-outline.svg +1 -1
  646. package/dist/ionic/svg/baseball-sharp.svg +1 -1
  647. package/dist/ionic/svg/baseball.svg +1 -1
  648. package/dist/ionic/svg/basket-outline.svg +1 -1
  649. package/dist/ionic/svg/basket-sharp.svg +1 -1
  650. package/dist/ionic/svg/basket.svg +1 -1
  651. package/dist/ionic/svg/basketball-outline.svg +1 -1
  652. package/dist/ionic/svg/basketball-sharp.svg +1 -1
  653. package/dist/ionic/svg/basketball.svg +1 -1
  654. package/dist/ionic/svg/battery-charging-outline.svg +1 -1
  655. package/dist/ionic/svg/battery-charging-sharp.svg +1 -1
  656. package/dist/ionic/svg/battery-charging.svg +1 -1
  657. package/dist/ionic/svg/battery-dead-outline.svg +1 -1
  658. package/dist/ionic/svg/battery-dead-sharp.svg +1 -1
  659. package/dist/ionic/svg/battery-dead.svg +1 -1
  660. package/dist/ionic/svg/battery-full-outline.svg +1 -1
  661. package/dist/ionic/svg/battery-full-sharp.svg +1 -1
  662. package/dist/ionic/svg/battery-full.svg +1 -1
  663. package/dist/ionic/svg/battery-half-outline.svg +1 -1
  664. package/dist/ionic/svg/battery-half-sharp.svg +1 -1
  665. package/dist/ionic/svg/battery-half.svg +1 -1
  666. package/dist/ionic/svg/beaker-outline.svg +1 -1
  667. package/dist/ionic/svg/beaker-sharp.svg +1 -1
  668. package/dist/ionic/svg/beaker.svg +1 -1
  669. package/dist/ionic/svg/bed-outline.svg +1 -1
  670. package/dist/ionic/svg/bed-sharp.svg +1 -1
  671. package/dist/ionic/svg/bed.svg +1 -1
  672. package/dist/ionic/svg/beer-outline.svg +1 -1
  673. package/dist/ionic/svg/beer-sharp.svg +1 -1
  674. package/dist/ionic/svg/beer.svg +1 -1
  675. package/dist/ionic/svg/bicycle-outline.svg +1 -1
  676. package/dist/ionic/svg/bicycle-sharp.svg +1 -1
  677. package/dist/ionic/svg/bicycle.svg +1 -1
  678. package/dist/ionic/svg/binoculars-outline.svg +1 -0
  679. package/dist/ionic/svg/binoculars-sharp.svg +1 -0
  680. package/dist/ionic/svg/binoculars.svg +1 -0
  681. package/dist/ionic/svg/bluetooth-outline.svg +1 -1
  682. package/dist/ionic/svg/bluetooth-sharp.svg +1 -1
  683. package/dist/ionic/svg/bluetooth.svg +1 -1
  684. package/dist/ionic/svg/boat-outline.svg +1 -1
  685. package/dist/ionic/svg/boat-sharp.svg +1 -1
  686. package/dist/ionic/svg/boat.svg +1 -1
  687. package/dist/ionic/svg/body-outline.svg +1 -1
  688. package/dist/ionic/svg/body-sharp.svg +1 -1
  689. package/dist/ionic/svg/body.svg +1 -1
  690. package/dist/ionic/svg/bonfire-outline.svg +1 -1
  691. package/dist/ionic/svg/bonfire-sharp.svg +1 -1
  692. package/dist/ionic/svg/bonfire.svg +1 -1
  693. package/dist/ionic/svg/book-outline.svg +1 -1
  694. package/dist/ionic/svg/book-sharp.svg +1 -1
  695. package/dist/ionic/svg/book.svg +1 -1
  696. package/dist/ionic/svg/bookmark-outline.svg +1 -1
  697. package/dist/ionic/svg/bookmark-sharp.svg +1 -1
  698. package/dist/ionic/svg/bookmark.svg +1 -1
  699. package/dist/ionic/svg/bookmarks-outline.svg +1 -1
  700. package/dist/ionic/svg/bookmarks-sharp.svg +1 -1
  701. package/dist/ionic/svg/bookmarks.svg +1 -1
  702. package/dist/ionic/svg/bowling-ball-outline.svg +1 -1
  703. package/dist/ionic/svg/bowling-ball-sharp.svg +1 -1
  704. package/dist/ionic/svg/bowling-ball.svg +1 -1
  705. package/dist/ionic/svg/briefcase-outline.svg +1 -1
  706. package/dist/ionic/svg/briefcase-sharp.svg +1 -1
  707. package/dist/ionic/svg/briefcase.svg +1 -1
  708. package/dist/ionic/svg/browsers-outline.svg +1 -1
  709. package/dist/ionic/svg/browsers-sharp.svg +1 -1
  710. package/dist/ionic/svg/browsers.svg +1 -1
  711. package/dist/ionic/svg/brush-outline.svg +1 -1
  712. package/dist/ionic/svg/brush-sharp.svg +1 -1
  713. package/dist/ionic/svg/brush.svg +1 -1
  714. package/dist/ionic/svg/bug-outline.svg +1 -1
  715. package/dist/ionic/svg/bug-sharp.svg +1 -1
  716. package/dist/ionic/svg/bug.svg +1 -1
  717. package/dist/ionic/svg/build-outline.svg +1 -1
  718. package/dist/ionic/svg/build-sharp.svg +1 -1
  719. package/dist/ionic/svg/build.svg +1 -1
  720. package/dist/ionic/svg/bulb-outline.svg +1 -1
  721. package/dist/ionic/svg/bulb-sharp.svg +1 -1
  722. package/dist/ionic/svg/bulb.svg +1 -1
  723. package/dist/ionic/svg/bus-outline.svg +1 -1
  724. package/dist/ionic/svg/bus-sharp.svg +1 -1
  725. package/dist/ionic/svg/bus.svg +1 -1
  726. package/dist/ionic/svg/business-outline.svg +1 -1
  727. package/dist/ionic/svg/business-sharp.svg +1 -1
  728. package/dist/ionic/svg/business.svg +1 -1
  729. package/dist/ionic/svg/cafe-outline.svg +1 -1
  730. package/dist/ionic/svg/cafe-sharp.svg +1 -1
  731. package/dist/ionic/svg/cafe.svg +1 -1
  732. package/dist/ionic/svg/calculator-outline.svg +1 -1
  733. package/dist/ionic/svg/calculator-sharp.svg +1 -1
  734. package/dist/ionic/svg/calculator.svg +1 -1
  735. package/dist/ionic/svg/calendar-clear-outline.svg +1 -1
  736. package/dist/ionic/svg/calendar-clear-sharp.svg +1 -1
  737. package/dist/ionic/svg/calendar-clear.svg +1 -1
  738. package/dist/ionic/svg/calendar-number-outline.svg +1 -1
  739. package/dist/ionic/svg/calendar-number-sharp.svg +1 -1
  740. package/dist/ionic/svg/calendar-number.svg +1 -1
  741. package/dist/ionic/svg/calendar-outline.svg +1 -1
  742. package/dist/ionic/svg/calendar-sharp.svg +1 -1
  743. package/dist/ionic/svg/calendar.svg +1 -1
  744. package/dist/ionic/svg/call-outline.svg +1 -1
  745. package/dist/ionic/svg/call-sharp.svg +1 -1
  746. package/dist/ionic/svg/call.svg +1 -1
  747. package/dist/ionic/svg/camera-outline.svg +1 -1
  748. package/dist/ionic/svg/camera-reverse-outline.svg +1 -1
  749. package/dist/ionic/svg/camera-reverse-sharp.svg +1 -1
  750. package/dist/ionic/svg/camera-reverse.svg +1 -1
  751. package/dist/ionic/svg/camera-sharp.svg +1 -1
  752. package/dist/ionic/svg/camera.svg +1 -1
  753. package/dist/ionic/svg/car-outline.svg +1 -1
  754. package/dist/ionic/svg/car-sharp.svg +1 -1
  755. package/dist/ionic/svg/car-sport-outline.svg +1 -1
  756. package/dist/ionic/svg/car-sport-sharp.svg +1 -1
  757. package/dist/ionic/svg/car-sport.svg +1 -1
  758. package/dist/ionic/svg/car.svg +1 -1
  759. package/dist/ionic/svg/card-outline.svg +1 -1
  760. package/dist/ionic/svg/card-sharp.svg +1 -1
  761. package/dist/ionic/svg/card.svg +1 -1
  762. package/dist/ionic/svg/caret-back-circle-outline.svg +1 -1
  763. package/dist/ionic/svg/caret-back-circle-sharp.svg +1 -1
  764. package/dist/ionic/svg/caret-back-circle.svg +1 -1
  765. package/dist/ionic/svg/caret-back-outline.svg +1 -1
  766. package/dist/ionic/svg/caret-back-sharp.svg +1 -1
  767. package/dist/ionic/svg/caret-back.svg +1 -1
  768. package/dist/ionic/svg/caret-down-circle-outline.svg +1 -1
  769. package/dist/ionic/svg/caret-down-circle-sharp.svg +1 -1
  770. package/dist/ionic/svg/caret-down-circle.svg +1 -1
  771. package/dist/ionic/svg/caret-down-outline.svg +1 -1
  772. package/dist/ionic/svg/caret-down-sharp.svg +1 -1
  773. package/dist/ionic/svg/caret-down.svg +1 -1
  774. package/dist/ionic/svg/caret-forward-circle-outline.svg +1 -1
  775. package/dist/ionic/svg/caret-forward-circle-sharp.svg +1 -1
  776. package/dist/ionic/svg/caret-forward-circle.svg +1 -1
  777. package/dist/ionic/svg/caret-forward-outline.svg +1 -1
  778. package/dist/ionic/svg/caret-forward-sharp.svg +1 -1
  779. package/dist/ionic/svg/caret-forward.svg +1 -1
  780. package/dist/ionic/svg/caret-up-circle-outline.svg +1 -1
  781. package/dist/ionic/svg/caret-up-circle-sharp.svg +1 -1
  782. package/dist/ionic/svg/caret-up-circle.svg +1 -1
  783. package/dist/ionic/svg/caret-up-outline.svg +1 -1
  784. package/dist/ionic/svg/caret-up-sharp.svg +1 -1
  785. package/dist/ionic/svg/caret-up.svg +1 -1
  786. package/dist/ionic/svg/cart-outline.svg +1 -1
  787. package/dist/ionic/svg/cart-sharp.svg +1 -1
  788. package/dist/ionic/svg/cart.svg +1 -1
  789. package/dist/ionic/svg/cash-outline.svg +1 -1
  790. package/dist/ionic/svg/cash-sharp.svg +1 -1
  791. package/dist/ionic/svg/cash.svg +1 -1
  792. package/dist/ionic/svg/cellular-outline.svg +1 -1
  793. package/dist/ionic/svg/cellular-sharp.svg +1 -1
  794. package/dist/ionic/svg/cellular.svg +1 -1
  795. package/dist/ionic/svg/chatbox-ellipses-outline.svg +1 -1
  796. package/dist/ionic/svg/chatbox-ellipses-sharp.svg +1 -1
  797. package/dist/ionic/svg/chatbox-ellipses.svg +1 -1
  798. package/dist/ionic/svg/chatbox-outline.svg +1 -1
  799. package/dist/ionic/svg/chatbox-sharp.svg +1 -1
  800. package/dist/ionic/svg/chatbox.svg +1 -1
  801. package/dist/ionic/svg/chatbubble-ellipses-outline.svg +1 -1
  802. package/dist/ionic/svg/chatbubble-ellipses-sharp.svg +1 -1
  803. package/dist/ionic/svg/chatbubble-ellipses.svg +1 -1
  804. package/dist/ionic/svg/chatbubble-outline.svg +1 -1
  805. package/dist/ionic/svg/chatbubble-sharp.svg +1 -1
  806. package/dist/ionic/svg/chatbubble.svg +1 -1
  807. package/dist/ionic/svg/chatbubbles-outline.svg +1 -1
  808. package/dist/ionic/svg/chatbubbles-sharp.svg +1 -1
  809. package/dist/ionic/svg/chatbubbles.svg +1 -1
  810. package/dist/ionic/svg/checkbox-outline.svg +1 -1
  811. package/dist/ionic/svg/checkbox-sharp.svg +1 -1
  812. package/dist/ionic/svg/checkbox.svg +1 -1
  813. package/dist/ionic/svg/checkmark-circle-outline.svg +1 -1
  814. package/dist/ionic/svg/checkmark-circle-sharp.svg +1 -1
  815. package/dist/ionic/svg/checkmark-circle.svg +1 -1
  816. package/dist/ionic/svg/checkmark-done-circle-outline.svg +1 -1
  817. package/dist/ionic/svg/checkmark-done-circle-sharp.svg +1 -1
  818. package/dist/ionic/svg/checkmark-done-circle.svg +1 -1
  819. package/dist/ionic/svg/checkmark-done-outline.svg +1 -1
  820. package/dist/ionic/svg/checkmark-done-sharp.svg +1 -1
  821. package/dist/ionic/svg/checkmark-done.svg +1 -1
  822. package/dist/ionic/svg/checkmark-outline.svg +1 -1
  823. package/dist/ionic/svg/checkmark-sharp.svg +1 -1
  824. package/dist/ionic/svg/checkmark.svg +1 -1
  825. package/dist/ionic/svg/chevron-back-circle-outline.svg +1 -1
  826. package/dist/ionic/svg/chevron-back-circle-sharp.svg +1 -1
  827. package/dist/ionic/svg/chevron-back-circle.svg +1 -1
  828. package/dist/ionic/svg/chevron-back-outline.svg +1 -1
  829. package/dist/ionic/svg/chevron-back-sharp.svg +1 -1
  830. package/dist/ionic/svg/chevron-back.svg +1 -1
  831. package/dist/ionic/svg/chevron-collapse-outline.svg +1 -1
  832. package/dist/ionic/svg/chevron-collapse-sharp.svg +1 -1
  833. package/dist/ionic/svg/chevron-collapse.svg +1 -1
  834. package/dist/ionic/svg/chevron-down-circle-outline.svg +1 -1
  835. package/dist/ionic/svg/chevron-down-circle-sharp.svg +1 -1
  836. package/dist/ionic/svg/chevron-down-circle.svg +1 -1
  837. package/dist/ionic/svg/chevron-down-outline.svg +1 -1
  838. package/dist/ionic/svg/chevron-down-sharp.svg +1 -1
  839. package/dist/ionic/svg/chevron-down.svg +1 -1
  840. package/dist/ionic/svg/chevron-expand-outline.svg +1 -1
  841. package/dist/ionic/svg/chevron-expand-sharp.svg +1 -1
  842. package/dist/ionic/svg/chevron-expand.svg +1 -1
  843. package/dist/ionic/svg/chevron-forward-circle-outline.svg +1 -1
  844. package/dist/ionic/svg/chevron-forward-circle-sharp.svg +1 -1
  845. package/dist/ionic/svg/chevron-forward-circle.svg +1 -1
  846. package/dist/ionic/svg/chevron-forward-outline.svg +1 -1
  847. package/dist/ionic/svg/chevron-forward-sharp.svg +1 -1
  848. package/dist/ionic/svg/chevron-forward.svg +1 -1
  849. package/dist/ionic/svg/chevron-up-circle-outline.svg +1 -1
  850. package/dist/ionic/svg/chevron-up-circle-sharp.svg +1 -1
  851. package/dist/ionic/svg/chevron-up-circle.svg +1 -1
  852. package/dist/ionic/svg/chevron-up-outline.svg +1 -1
  853. package/dist/ionic/svg/chevron-up-sharp.svg +1 -1
  854. package/dist/ionic/svg/chevron-up.svg +1 -1
  855. package/dist/ionic/svg/clipboard-outline.svg +1 -1
  856. package/dist/ionic/svg/clipboard-sharp.svg +1 -1
  857. package/dist/ionic/svg/clipboard.svg +1 -1
  858. package/dist/ionic/svg/close-circle-outline.svg +1 -1
  859. package/dist/ionic/svg/close-circle-sharp.svg +1 -1
  860. package/dist/ionic/svg/close-circle.svg +1 -1
  861. package/dist/ionic/svg/close-outline.svg +1 -1
  862. package/dist/ionic/svg/close-sharp.svg +1 -1
  863. package/dist/ionic/svg/close.svg +1 -1
  864. package/dist/ionic/svg/cloud-circle-outline.svg +1 -1
  865. package/dist/ionic/svg/cloud-circle-sharp.svg +1 -1
  866. package/dist/ionic/svg/cloud-circle.svg +1 -1
  867. package/dist/ionic/svg/cloud-done-outline.svg +1 -1
  868. package/dist/ionic/svg/cloud-done-sharp.svg +1 -1
  869. package/dist/ionic/svg/cloud-done.svg +1 -1
  870. package/dist/ionic/svg/cloud-download-outline.svg +1 -1
  871. package/dist/ionic/svg/cloud-download-sharp.svg +1 -1
  872. package/dist/ionic/svg/cloud-download.svg +1 -1
  873. package/dist/ionic/svg/cloud-offline-outline.svg +1 -1
  874. package/dist/ionic/svg/cloud-offline-sharp.svg +1 -1
  875. package/dist/ionic/svg/cloud-offline.svg +1 -1
  876. package/dist/ionic/svg/cloud-outline.svg +1 -1
  877. package/dist/ionic/svg/cloud-sharp.svg +1 -1
  878. package/dist/ionic/svg/cloud-upload-outline.svg +1 -1
  879. package/dist/ionic/svg/cloud-upload-sharp.svg +1 -1
  880. package/dist/ionic/svg/cloud-upload.svg +1 -1
  881. package/dist/ionic/svg/cloud.svg +1 -1
  882. package/dist/ionic/svg/cloudy-night-outline.svg +1 -1
  883. package/dist/ionic/svg/cloudy-night-sharp.svg +1 -1
  884. package/dist/ionic/svg/cloudy-night.svg +1 -1
  885. package/dist/ionic/svg/cloudy-outline.svg +1 -1
  886. package/dist/ionic/svg/cloudy-sharp.svg +1 -1
  887. package/dist/ionic/svg/cloudy.svg +1 -1
  888. package/dist/ionic/svg/code-download-outline.svg +1 -1
  889. package/dist/ionic/svg/code-download-sharp.svg +1 -1
  890. package/dist/ionic/svg/code-download.svg +1 -1
  891. package/dist/ionic/svg/code-outline.svg +1 -1
  892. package/dist/ionic/svg/code-sharp.svg +1 -1
  893. package/dist/ionic/svg/code-slash-outline.svg +1 -1
  894. package/dist/ionic/svg/code-slash-sharp.svg +1 -1
  895. package/dist/ionic/svg/code-slash.svg +1 -1
  896. package/dist/ionic/svg/code-working-outline.svg +1 -1
  897. package/dist/ionic/svg/code-working-sharp.svg +1 -1
  898. package/dist/ionic/svg/code-working.svg +1 -1
  899. package/dist/ionic/svg/code.svg +1 -1
  900. package/dist/ionic/svg/cog-outline.svg +1 -1
  901. package/dist/ionic/svg/cog-sharp.svg +1 -1
  902. package/dist/ionic/svg/cog.svg +1 -1
  903. package/dist/ionic/svg/color-fill-outline.svg +1 -1
  904. package/dist/ionic/svg/color-fill-sharp.svg +1 -1
  905. package/dist/ionic/svg/color-fill.svg +1 -1
  906. package/dist/ionic/svg/color-filter-outline.svg +1 -1
  907. package/dist/ionic/svg/color-filter-sharp.svg +1 -1
  908. package/dist/ionic/svg/color-filter.svg +1 -1
  909. package/dist/ionic/svg/color-palette-outline.svg +1 -1
  910. package/dist/ionic/svg/color-palette-sharp.svg +1 -1
  911. package/dist/ionic/svg/color-palette.svg +1 -1
  912. package/dist/ionic/svg/color-wand-outline.svg +1 -1
  913. package/dist/ionic/svg/color-wand-sharp.svg +1 -1
  914. package/dist/ionic/svg/color-wand.svg +1 -1
  915. package/dist/ionic/svg/compass-outline.svg +1 -1
  916. package/dist/ionic/svg/compass-sharp.svg +1 -1
  917. package/dist/ionic/svg/compass.svg +1 -1
  918. package/dist/ionic/svg/construct-outline.svg +1 -1
  919. package/dist/ionic/svg/construct-sharp.svg +1 -1
  920. package/dist/ionic/svg/construct.svg +1 -1
  921. package/dist/ionic/svg/contract-outline.svg +1 -1
  922. package/dist/ionic/svg/contract-sharp.svg +1 -1
  923. package/dist/ionic/svg/contract.svg +1 -1
  924. package/dist/ionic/svg/contrast-outline.svg +1 -1
  925. package/dist/ionic/svg/contrast-sharp.svg +1 -1
  926. package/dist/ionic/svg/contrast.svg +1 -1
  927. package/dist/ionic/svg/copy-outline.svg +1 -1
  928. package/dist/ionic/svg/copy-sharp.svg +1 -1
  929. package/dist/ionic/svg/copy.svg +1 -1
  930. package/dist/ionic/svg/create-outline.svg +1 -1
  931. package/dist/ionic/svg/create-sharp.svg +1 -1
  932. package/dist/ionic/svg/create.svg +1 -1
  933. package/dist/ionic/svg/crop-outline.svg +1 -1
  934. package/dist/ionic/svg/crop-sharp.svg +1 -1
  935. package/dist/ionic/svg/crop.svg +1 -1
  936. package/dist/ionic/svg/cube-outline.svg +1 -1
  937. package/dist/ionic/svg/cube-sharp.svg +1 -1
  938. package/dist/ionic/svg/cube.svg +1 -1
  939. package/dist/ionic/svg/cut-outline.svg +1 -1
  940. package/dist/ionic/svg/cut-sharp.svg +1 -1
  941. package/dist/ionic/svg/cut.svg +1 -1
  942. package/dist/ionic/svg/desktop-outline.svg +1 -1
  943. package/dist/ionic/svg/desktop-sharp.svg +1 -1
  944. package/dist/ionic/svg/desktop.svg +1 -1
  945. package/dist/ionic/svg/diamond-outline.svg +1 -1
  946. package/dist/ionic/svg/diamond-sharp.svg +1 -1
  947. package/dist/ionic/svg/diamond.svg +1 -1
  948. package/dist/ionic/svg/dice-outline.svg +1 -1
  949. package/dist/ionic/svg/dice-sharp.svg +1 -1
  950. package/dist/ionic/svg/dice.svg +1 -1
  951. package/dist/ionic/svg/disc-outline.svg +1 -1
  952. package/dist/ionic/svg/disc-sharp.svg +1 -1
  953. package/dist/ionic/svg/disc.svg +1 -1
  954. package/dist/ionic/svg/document-attach-outline.svg +1 -1
  955. package/dist/ionic/svg/document-attach-sharp.svg +1 -1
  956. package/dist/ionic/svg/document-attach.svg +1 -1
  957. package/dist/ionic/svg/document-lock-outline.svg +1 -1
  958. package/dist/ionic/svg/document-lock-sharp.svg +1 -1
  959. package/dist/ionic/svg/document-lock.svg +1 -1
  960. package/dist/ionic/svg/document-outline.svg +1 -1
  961. package/dist/ionic/svg/document-sharp.svg +1 -1
  962. package/dist/ionic/svg/document-text-outline.svg +1 -1
  963. package/dist/ionic/svg/document-text-sharp.svg +1 -1
  964. package/dist/ionic/svg/document-text.svg +1 -1
  965. package/dist/ionic/svg/document.svg +1 -1
  966. package/dist/ionic/svg/documents-outline.svg +1 -1
  967. package/dist/ionic/svg/documents-sharp.svg +1 -1
  968. package/dist/ionic/svg/documents.svg +1 -1
  969. package/dist/ionic/svg/download-outline.svg +1 -1
  970. package/dist/ionic/svg/download-sharp.svg +1 -1
  971. package/dist/ionic/svg/download.svg +1 -1
  972. package/dist/ionic/svg/duplicate-outline.svg +1 -1
  973. package/dist/ionic/svg/duplicate-sharp.svg +1 -1
  974. package/dist/ionic/svg/duplicate.svg +1 -1
  975. package/dist/ionic/svg/ear-outline.svg +1 -1
  976. package/dist/ionic/svg/ear-sharp.svg +1 -1
  977. package/dist/ionic/svg/ear.svg +1 -1
  978. package/dist/ionic/svg/earth-outline.svg +1 -1
  979. package/dist/ionic/svg/earth-sharp.svg +1 -1
  980. package/dist/ionic/svg/earth.svg +1 -1
  981. package/dist/ionic/svg/easel-outline.svg +1 -1
  982. package/dist/ionic/svg/easel-sharp.svg +1 -1
  983. package/dist/ionic/svg/easel.svg +1 -1
  984. package/dist/ionic/svg/egg-outline.svg +1 -1
  985. package/dist/ionic/svg/egg-sharp.svg +1 -1
  986. package/dist/ionic/svg/egg.svg +1 -1
  987. package/dist/ionic/svg/ellipse-outline.svg +1 -1
  988. package/dist/ionic/svg/ellipse-sharp.svg +1 -1
  989. package/dist/ionic/svg/ellipse.svg +1 -1
  990. package/dist/ionic/svg/ellipsis-horizontal-circle-outline.svg +1 -1
  991. package/dist/ionic/svg/ellipsis-horizontal-circle-sharp.svg +1 -1
  992. package/dist/ionic/svg/ellipsis-horizontal-circle.svg +1 -1
  993. package/dist/ionic/svg/ellipsis-horizontal-outline.svg +1 -1
  994. package/dist/ionic/svg/ellipsis-horizontal-sharp.svg +1 -1
  995. package/dist/ionic/svg/ellipsis-horizontal.svg +1 -1
  996. package/dist/ionic/svg/ellipsis-vertical-circle-outline.svg +1 -1
  997. package/dist/ionic/svg/ellipsis-vertical-circle-sharp.svg +1 -1
  998. package/dist/ionic/svg/ellipsis-vertical-circle.svg +1 -1
  999. package/dist/ionic/svg/ellipsis-vertical-outline.svg +1 -1
  1000. package/dist/ionic/svg/ellipsis-vertical-sharp.svg +1 -1
  1001. package/dist/ionic/svg/ellipsis-vertical.svg +1 -1
  1002. package/dist/ionic/svg/enter-outline.svg +1 -1
  1003. package/dist/ionic/svg/enter-sharp.svg +1 -1
  1004. package/dist/ionic/svg/enter.svg +1 -1
  1005. package/dist/ionic/svg/exit-outline.svg +1 -1
  1006. package/dist/ionic/svg/exit-sharp.svg +1 -1
  1007. package/dist/ionic/svg/exit.svg +1 -1
  1008. package/dist/ionic/svg/expand-outline.svg +1 -1
  1009. package/dist/ionic/svg/expand-sharp.svg +1 -1
  1010. package/dist/ionic/svg/expand.svg +1 -1
  1011. package/dist/ionic/svg/extension-puzzle-outline.svg +1 -1
  1012. package/dist/ionic/svg/extension-puzzle-sharp.svg +1 -1
  1013. package/dist/ionic/svg/extension-puzzle.svg +1 -1
  1014. package/dist/ionic/svg/eye-off-outline.svg +1 -1
  1015. package/dist/ionic/svg/eye-off-sharp.svg +1 -1
  1016. package/dist/ionic/svg/eye-off.svg +1 -1
  1017. package/dist/ionic/svg/eye-outline.svg +1 -1
  1018. package/dist/ionic/svg/eye-sharp.svg +1 -1
  1019. package/dist/ionic/svg/eye.svg +1 -1
  1020. package/dist/ionic/svg/eyedrop-outline.svg +1 -1
  1021. package/dist/ionic/svg/eyedrop-sharp.svg +1 -1
  1022. package/dist/ionic/svg/eyedrop.svg +1 -1
  1023. package/dist/ionic/svg/fast-food-outline.svg +1 -1
  1024. package/dist/ionic/svg/fast-food-sharp.svg +1 -1
  1025. package/dist/ionic/svg/fast-food.svg +1 -1
  1026. package/dist/ionic/svg/female-outline.svg +1 -1
  1027. package/dist/ionic/svg/female-sharp.svg +1 -1
  1028. package/dist/ionic/svg/female.svg +1 -1
  1029. package/dist/ionic/svg/file-tray-full-outline.svg +1 -1
  1030. package/dist/ionic/svg/file-tray-full-sharp.svg +1 -1
  1031. package/dist/ionic/svg/file-tray-full.svg +1 -1
  1032. package/dist/ionic/svg/file-tray-outline.svg +1 -1
  1033. package/dist/ionic/svg/file-tray-sharp.svg +1 -1
  1034. package/dist/ionic/svg/file-tray-stacked-outline.svg +1 -1
  1035. package/dist/ionic/svg/file-tray-stacked-sharp.svg +1 -1
  1036. package/dist/ionic/svg/file-tray-stacked.svg +1 -1
  1037. package/dist/ionic/svg/file-tray.svg +1 -1
  1038. package/dist/ionic/svg/film-outline.svg +1 -1
  1039. package/dist/ionic/svg/film-sharp.svg +1 -1
  1040. package/dist/ionic/svg/film.svg +1 -1
  1041. package/dist/ionic/svg/filter-circle-outline.svg +1 -1
  1042. package/dist/ionic/svg/filter-circle-sharp.svg +1 -1
  1043. package/dist/ionic/svg/filter-circle.svg +1 -1
  1044. package/dist/ionic/svg/filter-outline.svg +1 -1
  1045. package/dist/ionic/svg/filter-sharp.svg +1 -1
  1046. package/dist/ionic/svg/filter.svg +1 -1
  1047. package/dist/ionic/svg/finger-print-outline.svg +1 -1
  1048. package/dist/ionic/svg/finger-print-sharp.svg +1 -1
  1049. package/dist/ionic/svg/finger-print.svg +1 -1
  1050. package/dist/ionic/svg/fish-outline.svg +1 -1
  1051. package/dist/ionic/svg/fish-sharp.svg +1 -1
  1052. package/dist/ionic/svg/fish.svg +1 -1
  1053. package/dist/ionic/svg/fitness-outline.svg +1 -1
  1054. package/dist/ionic/svg/fitness-sharp.svg +1 -1
  1055. package/dist/ionic/svg/fitness.svg +1 -1
  1056. package/dist/ionic/svg/flag-outline.svg +1 -1
  1057. package/dist/ionic/svg/flag-sharp.svg +1 -1
  1058. package/dist/ionic/svg/flag.svg +1 -1
  1059. package/dist/ionic/svg/flame-outline.svg +1 -1
  1060. package/dist/ionic/svg/flame-sharp.svg +1 -1
  1061. package/dist/ionic/svg/flame.svg +1 -1
  1062. package/dist/ionic/svg/flash-off-outline.svg +1 -1
  1063. package/dist/ionic/svg/flash-off-sharp.svg +1 -1
  1064. package/dist/ionic/svg/flash-off.svg +1 -1
  1065. package/dist/ionic/svg/flash-outline.svg +1 -1
  1066. package/dist/ionic/svg/flash-sharp.svg +1 -1
  1067. package/dist/ionic/svg/flash.svg +1 -1
  1068. package/dist/ionic/svg/flashlight-outline.svg +1 -1
  1069. package/dist/ionic/svg/flashlight-sharp.svg +1 -1
  1070. package/dist/ionic/svg/flashlight.svg +1 -1
  1071. package/dist/ionic/svg/flask-outline.svg +1 -1
  1072. package/dist/ionic/svg/flask-sharp.svg +1 -1
  1073. package/dist/ionic/svg/flask.svg +1 -1
  1074. package/dist/ionic/svg/flower-outline.svg +1 -1
  1075. package/dist/ionic/svg/flower-sharp.svg +1 -1
  1076. package/dist/ionic/svg/flower.svg +1 -1
  1077. package/dist/ionic/svg/folder-open-outline.svg +1 -1
  1078. package/dist/ionic/svg/folder-open-sharp.svg +1 -1
  1079. package/dist/ionic/svg/folder-open.svg +1 -1
  1080. package/dist/ionic/svg/folder-outline.svg +1 -1
  1081. package/dist/ionic/svg/folder-sharp.svg +1 -1
  1082. package/dist/ionic/svg/folder.svg +1 -1
  1083. package/dist/ionic/svg/football-outline.svg +1 -1
  1084. package/dist/ionic/svg/football-sharp.svg +1 -1
  1085. package/dist/ionic/svg/football.svg +1 -1
  1086. package/dist/ionic/svg/footsteps-outline.svg +1 -1
  1087. package/dist/ionic/svg/footsteps-sharp.svg +1 -1
  1088. package/dist/ionic/svg/footsteps.svg +1 -1
  1089. package/dist/ionic/svg/funnel-outline.svg +1 -1
  1090. package/dist/ionic/svg/funnel-sharp.svg +1 -1
  1091. package/dist/ionic/svg/funnel.svg +1 -1
  1092. package/dist/ionic/svg/game-controller-outline.svg +1 -1
  1093. package/dist/ionic/svg/game-controller-sharp.svg +1 -1
  1094. package/dist/ionic/svg/game-controller.svg +1 -1
  1095. package/dist/ionic/svg/gift-outline.svg +1 -1
  1096. package/dist/ionic/svg/gift-sharp.svg +1 -1
  1097. package/dist/ionic/svg/gift.svg +1 -1
  1098. package/dist/ionic/svg/git-branch-outline.svg +1 -1
  1099. package/dist/ionic/svg/git-branch-sharp.svg +1 -1
  1100. package/dist/ionic/svg/git-branch.svg +1 -1
  1101. package/dist/ionic/svg/git-commit-outline.svg +1 -1
  1102. package/dist/ionic/svg/git-commit-sharp.svg +1 -1
  1103. package/dist/ionic/svg/git-commit.svg +1 -1
  1104. package/dist/ionic/svg/git-compare-outline.svg +1 -1
  1105. package/dist/ionic/svg/git-compare-sharp.svg +1 -1
  1106. package/dist/ionic/svg/git-compare.svg +1 -1
  1107. package/dist/ionic/svg/git-merge-outline.svg +1 -1
  1108. package/dist/ionic/svg/git-merge-sharp.svg +1 -1
  1109. package/dist/ionic/svg/git-merge.svg +1 -1
  1110. package/dist/ionic/svg/git-network-outline.svg +1 -1
  1111. package/dist/ionic/svg/git-network-sharp.svg +1 -1
  1112. package/dist/ionic/svg/git-network.svg +1 -1
  1113. package/dist/ionic/svg/git-pull-request-outline.svg +1 -1
  1114. package/dist/ionic/svg/git-pull-request-sharp.svg +1 -1
  1115. package/dist/ionic/svg/git-pull-request.svg +1 -1
  1116. package/dist/ionic/svg/glasses-outline.svg +1 -1
  1117. package/dist/ionic/svg/glasses-sharp.svg +1 -1
  1118. package/dist/ionic/svg/glasses.svg +1 -1
  1119. package/dist/ionic/svg/globe-outline.svg +1 -1
  1120. package/dist/ionic/svg/globe-sharp.svg +1 -1
  1121. package/dist/ionic/svg/globe.svg +1 -1
  1122. package/dist/ionic/svg/golf-outline.svg +1 -1
  1123. package/dist/ionic/svg/golf-sharp.svg +1 -1
  1124. package/dist/ionic/svg/golf.svg +1 -1
  1125. package/dist/ionic/svg/grid-outline.svg +1 -1
  1126. package/dist/ionic/svg/grid-sharp.svg +1 -1
  1127. package/dist/ionic/svg/grid.svg +1 -1
  1128. package/dist/ionic/svg/hammer-outline.svg +1 -1
  1129. package/dist/ionic/svg/hammer-sharp.svg +1 -1
  1130. package/dist/ionic/svg/hammer.svg +1 -1
  1131. package/dist/ionic/svg/hand-left-outline.svg +1 -1
  1132. package/dist/ionic/svg/hand-left-sharp.svg +1 -1
  1133. package/dist/ionic/svg/hand-left.svg +1 -1
  1134. package/dist/ionic/svg/hand-right-outline.svg +1 -1
  1135. package/dist/ionic/svg/hand-right-sharp.svg +1 -1
  1136. package/dist/ionic/svg/hand-right.svg +1 -1
  1137. package/dist/ionic/svg/happy-outline.svg +1 -1
  1138. package/dist/ionic/svg/happy-sharp.svg +1 -1
  1139. package/dist/ionic/svg/happy.svg +1 -1
  1140. package/dist/ionic/svg/hardware-chip-outline.svg +1 -1
  1141. package/dist/ionic/svg/hardware-chip-sharp.svg +1 -1
  1142. package/dist/ionic/svg/hardware-chip.svg +1 -1
  1143. package/dist/ionic/svg/headset-outline.svg +1 -1
  1144. package/dist/ionic/svg/headset-sharp.svg +1 -1
  1145. package/dist/ionic/svg/headset.svg +1 -1
  1146. package/dist/ionic/svg/heart-circle-outline.svg +1 -1
  1147. package/dist/ionic/svg/heart-circle-sharp.svg +1 -1
  1148. package/dist/ionic/svg/heart-circle.svg +1 -1
  1149. package/dist/ionic/svg/heart-dislike-circle-outline.svg +1 -1
  1150. package/dist/ionic/svg/heart-dislike-circle-sharp.svg +1 -1
  1151. package/dist/ionic/svg/heart-dislike-circle.svg +1 -1
  1152. package/dist/ionic/svg/heart-dislike-outline.svg +1 -1
  1153. package/dist/ionic/svg/heart-dislike-sharp.svg +1 -1
  1154. package/dist/ionic/svg/heart-dislike.svg +1 -1
  1155. package/dist/ionic/svg/heart-half-outline.svg +1 -1
  1156. package/dist/ionic/svg/heart-half-sharp.svg +1 -1
  1157. package/dist/ionic/svg/heart-half.svg +1 -1
  1158. package/dist/ionic/svg/heart-outline.svg +1 -1
  1159. package/dist/ionic/svg/heart-sharp.svg +1 -1
  1160. package/dist/ionic/svg/heart.svg +1 -1
  1161. package/dist/ionic/svg/help-buoy-outline.svg +1 -1
  1162. package/dist/ionic/svg/help-buoy-sharp.svg +1 -1
  1163. package/dist/ionic/svg/help-buoy.svg +1 -1
  1164. package/dist/ionic/svg/help-circle-outline.svg +1 -1
  1165. package/dist/ionic/svg/help-circle-sharp.svg +1 -1
  1166. package/dist/ionic/svg/help-circle.svg +1 -1
  1167. package/dist/ionic/svg/help-outline.svg +1 -1
  1168. package/dist/ionic/svg/help-sharp.svg +1 -1
  1169. package/dist/ionic/svg/help.svg +1 -1
  1170. package/dist/ionic/svg/home-outline.svg +1 -1
  1171. package/dist/ionic/svg/home-sharp.svg +1 -1
  1172. package/dist/ionic/svg/home.svg +1 -1
  1173. package/dist/ionic/svg/hourglass-outline.svg +1 -1
  1174. package/dist/ionic/svg/hourglass-sharp.svg +1 -1
  1175. package/dist/ionic/svg/hourglass.svg +1 -1
  1176. package/dist/ionic/svg/ice-cream-outline.svg +1 -1
  1177. package/dist/ionic/svg/ice-cream-sharp.svg +1 -1
  1178. package/dist/ionic/svg/ice-cream.svg +1 -1
  1179. package/dist/ionic/svg/id-card-outline.svg +1 -1
  1180. package/dist/ionic/svg/id-card-sharp.svg +1 -1
  1181. package/dist/ionic/svg/id-card.svg +1 -1
  1182. package/dist/ionic/svg/image-outline.svg +1 -1
  1183. package/dist/ionic/svg/image-sharp.svg +1 -1
  1184. package/dist/ionic/svg/image.svg +1 -1
  1185. package/dist/ionic/svg/images-outline.svg +1 -1
  1186. package/dist/ionic/svg/images-sharp.svg +1 -1
  1187. package/dist/ionic/svg/images.svg +1 -1
  1188. package/dist/ionic/svg/infinite-outline.svg +1 -1
  1189. package/dist/ionic/svg/infinite-sharp.svg +1 -1
  1190. package/dist/ionic/svg/infinite.svg +1 -1
  1191. package/dist/ionic/svg/information-circle-outline.svg +1 -1
  1192. package/dist/ionic/svg/information-circle-sharp.svg +1 -1
  1193. package/dist/ionic/svg/information-circle.svg +1 -1
  1194. package/dist/ionic/svg/information-outline.svg +1 -1
  1195. package/dist/ionic/svg/information-sharp.svg +1 -1
  1196. package/dist/ionic/svg/information.svg +1 -1
  1197. package/dist/ionic/svg/invert-mode-outline.svg +1 -1
  1198. package/dist/ionic/svg/invert-mode-sharp.svg +1 -1
  1199. package/dist/ionic/svg/invert-mode.svg +1 -1
  1200. package/dist/ionic/svg/journal-outline.svg +1 -1
  1201. package/dist/ionic/svg/journal-sharp.svg +1 -1
  1202. package/dist/ionic/svg/journal.svg +1 -1
  1203. package/dist/ionic/svg/key-outline.svg +1 -1
  1204. package/dist/ionic/svg/key-sharp.svg +1 -1
  1205. package/dist/ionic/svg/key.svg +1 -1
  1206. package/dist/ionic/svg/keypad-outline.svg +1 -1
  1207. package/dist/ionic/svg/keypad-sharp.svg +1 -1
  1208. package/dist/ionic/svg/keypad.svg +1 -1
  1209. package/dist/ionic/svg/language-outline.svg +1 -1
  1210. package/dist/ionic/svg/language-sharp.svg +1 -1
  1211. package/dist/ionic/svg/language.svg +1 -1
  1212. package/dist/ionic/svg/laptop-outline.svg +1 -1
  1213. package/dist/ionic/svg/laptop-sharp.svg +1 -1
  1214. package/dist/ionic/svg/laptop.svg +1 -1
  1215. package/dist/ionic/svg/layers-outline.svg +1 -1
  1216. package/dist/ionic/svg/layers-sharp.svg +1 -1
  1217. package/dist/ionic/svg/layers.svg +1 -1
  1218. package/dist/ionic/svg/leaf-outline.svg +1 -1
  1219. package/dist/ionic/svg/leaf-sharp.svg +1 -1
  1220. package/dist/ionic/svg/leaf.svg +1 -1
  1221. package/dist/ionic/svg/library-outline.svg +1 -1
  1222. package/dist/ionic/svg/library-sharp.svg +1 -1
  1223. package/dist/ionic/svg/library.svg +1 -1
  1224. package/dist/ionic/svg/link-outline.svg +1 -1
  1225. package/dist/ionic/svg/link-sharp.svg +1 -1
  1226. package/dist/ionic/svg/link.svg +1 -1
  1227. package/dist/ionic/svg/list-circle-outline.svg +1 -1
  1228. package/dist/ionic/svg/list-circle-sharp.svg +1 -1
  1229. package/dist/ionic/svg/list-circle.svg +1 -1
  1230. package/dist/ionic/svg/list-outline.svg +1 -1
  1231. package/dist/ionic/svg/list-sharp.svg +1 -1
  1232. package/dist/ionic/svg/list.svg +1 -1
  1233. package/dist/ionic/svg/locate-outline.svg +1 -1
  1234. package/dist/ionic/svg/locate-sharp.svg +1 -1
  1235. package/dist/ionic/svg/locate.svg +1 -1
  1236. package/dist/ionic/svg/location-outline.svg +1 -1
  1237. package/dist/ionic/svg/location-sharp.svg +1 -1
  1238. package/dist/ionic/svg/location.svg +1 -1
  1239. package/dist/ionic/svg/lock-closed-outline.svg +1 -1
  1240. package/dist/ionic/svg/lock-closed-sharp.svg +1 -1
  1241. package/dist/ionic/svg/lock-closed.svg +1 -1
  1242. package/dist/ionic/svg/lock-open-outline.svg +1 -1
  1243. package/dist/ionic/svg/lock-open-sharp.svg +1 -1
  1244. package/dist/ionic/svg/lock-open.svg +1 -1
  1245. package/dist/ionic/svg/log-in-outline.svg +1 -1
  1246. package/dist/ionic/svg/log-in-sharp.svg +1 -1
  1247. package/dist/ionic/svg/log-in.svg +1 -1
  1248. package/dist/ionic/svg/log-out-outline.svg +1 -1
  1249. package/dist/ionic/svg/log-out-sharp.svg +1 -1
  1250. package/dist/ionic/svg/log-out.svg +1 -1
  1251. package/dist/ionic/svg/logo-alipay.svg +1 -1
  1252. package/dist/ionic/svg/logo-amazon.svg +1 -1
  1253. package/dist/ionic/svg/logo-amplify.svg +1 -1
  1254. package/dist/ionic/svg/logo-android.svg +1 -1
  1255. package/dist/ionic/svg/logo-angular.svg +1 -1
  1256. package/dist/ionic/svg/logo-appflow.svg +1 -0
  1257. package/dist/ionic/svg/logo-apple-appstore.svg +1 -1
  1258. package/dist/ionic/svg/logo-apple-ar.svg +1 -1
  1259. package/dist/ionic/svg/logo-apple.svg +1 -1
  1260. package/dist/ionic/svg/logo-behance.svg +1 -1
  1261. package/dist/ionic/svg/logo-bitbucket.svg +1 -1
  1262. package/dist/ionic/svg/logo-bitcoin.svg +1 -1
  1263. package/dist/ionic/svg/logo-buffer.svg +1 -1
  1264. package/dist/ionic/svg/logo-capacitor.svg +1 -1
  1265. package/dist/ionic/svg/logo-chrome.svg +1 -1
  1266. package/dist/ionic/svg/logo-closed-captioning.svg +1 -1
  1267. package/dist/ionic/svg/logo-codepen.svg +1 -1
  1268. package/dist/ionic/svg/logo-css3.svg +1 -1
  1269. package/dist/ionic/svg/logo-designernews.svg +1 -1
  1270. package/dist/ionic/svg/logo-deviantart.svg +1 -1
  1271. package/dist/ionic/svg/logo-discord.svg +1 -1
  1272. package/dist/ionic/svg/logo-docker.svg +1 -1
  1273. package/dist/ionic/svg/logo-dribbble.svg +1 -1
  1274. package/dist/ionic/svg/logo-dropbox.svg +1 -1
  1275. package/dist/ionic/svg/logo-edge.svg +1 -1
  1276. package/dist/ionic/svg/logo-electron.svg +1 -1
  1277. package/dist/ionic/svg/logo-euro.svg +1 -1
  1278. package/dist/ionic/svg/logo-facebook.svg +1 -1
  1279. package/dist/ionic/svg/logo-figma.svg +1 -1
  1280. package/dist/ionic/svg/logo-firebase.svg +1 -1
  1281. package/dist/ionic/svg/logo-firefox.svg +1 -1
  1282. package/dist/ionic/svg/logo-flickr.svg +1 -1
  1283. package/dist/ionic/svg/logo-foursquare.svg +1 -1
  1284. package/dist/ionic/svg/logo-github.svg +1 -1
  1285. package/dist/ionic/svg/logo-gitlab.svg +1 -1
  1286. package/dist/ionic/svg/logo-google-playstore.svg +1 -1
  1287. package/dist/ionic/svg/logo-google.svg +1 -1
  1288. package/dist/ionic/svg/logo-hackernews.svg +1 -1
  1289. package/dist/ionic/svg/logo-html5.svg +1 -1
  1290. package/dist/ionic/svg/logo-instagram.svg +1 -1
  1291. package/dist/ionic/svg/logo-ionic.svg +1 -1
  1292. package/dist/ionic/svg/logo-ionitron.svg +1 -1
  1293. package/dist/ionic/svg/logo-javascript.svg +1 -1
  1294. package/dist/ionic/svg/logo-laravel.svg +1 -1
  1295. package/dist/ionic/svg/logo-linkedin.svg +1 -1
  1296. package/dist/ionic/svg/logo-markdown.svg +1 -1
  1297. package/dist/ionic/svg/logo-mastodon.svg +1 -1
  1298. package/dist/ionic/svg/logo-medium.svg +1 -1
  1299. package/dist/ionic/svg/logo-microsoft.svg +1 -1
  1300. package/dist/ionic/svg/logo-no-smoking.svg +1 -1
  1301. package/dist/ionic/svg/logo-nodejs.svg +1 -1
  1302. package/dist/ionic/svg/logo-npm.svg +1 -1
  1303. package/dist/ionic/svg/logo-octocat.svg +1 -1
  1304. package/dist/ionic/svg/logo-paypal.svg +1 -1
  1305. package/dist/ionic/svg/logo-pinterest.svg +1 -1
  1306. package/dist/ionic/svg/logo-playstation.svg +1 -1
  1307. package/dist/ionic/svg/logo-pwa.svg +1 -1
  1308. package/dist/ionic/svg/logo-python.svg +1 -1
  1309. package/dist/ionic/svg/logo-react.svg +1 -1
  1310. package/dist/ionic/svg/logo-reddit.svg +1 -1
  1311. package/dist/ionic/svg/logo-rss.svg +1 -1
  1312. package/dist/ionic/svg/logo-sass.svg +1 -1
  1313. package/dist/ionic/svg/logo-skype.svg +1 -1
  1314. package/dist/ionic/svg/logo-slack.svg +1 -1
  1315. package/dist/ionic/svg/logo-snapchat.svg +1 -1
  1316. package/dist/ionic/svg/logo-soundcloud.svg +1 -1
  1317. package/dist/ionic/svg/logo-stackoverflow.svg +1 -1
  1318. package/dist/ionic/svg/logo-steam.svg +1 -1
  1319. package/dist/ionic/svg/logo-stencil.svg +1 -1
  1320. package/dist/ionic/svg/logo-tableau.svg +1 -1
  1321. package/dist/ionic/svg/logo-threads.svg +1 -0
  1322. package/dist/ionic/svg/logo-tiktok.svg +1 -1
  1323. package/dist/ionic/svg/logo-trapeze.svg +1 -0
  1324. package/dist/ionic/svg/logo-tumblr.svg +1 -1
  1325. package/dist/ionic/svg/logo-tux.svg +1 -1
  1326. package/dist/ionic/svg/logo-twitch.svg +1 -1
  1327. package/dist/ionic/svg/logo-twitter.svg +1 -1
  1328. package/dist/ionic/svg/logo-usd.svg +1 -1
  1329. package/dist/ionic/svg/logo-venmo.svg +1 -1
  1330. package/dist/ionic/svg/logo-vercel.svg +1 -1
  1331. package/dist/ionic/svg/logo-vimeo.svg +1 -1
  1332. package/dist/ionic/svg/logo-vk.svg +1 -1
  1333. package/dist/ionic/svg/logo-vue.svg +1 -1
  1334. package/dist/ionic/svg/logo-web-component.svg +1 -1
  1335. package/dist/ionic/svg/logo-wechat.svg +1 -1
  1336. package/dist/ionic/svg/logo-whatsapp.svg +1 -1
  1337. package/dist/ionic/svg/logo-windows.svg +1 -1
  1338. package/dist/ionic/svg/logo-wordpress.svg +1 -1
  1339. package/dist/ionic/svg/logo-x.svg +1 -0
  1340. package/dist/ionic/svg/logo-xbox.svg +1 -1
  1341. package/dist/ionic/svg/logo-xing.svg +1 -1
  1342. package/dist/ionic/svg/logo-yahoo.svg +1 -1
  1343. package/dist/ionic/svg/logo-yen.svg +1 -1
  1344. package/dist/ionic/svg/logo-youtube.svg +1 -1
  1345. package/dist/ionic/svg/magnet-outline.svg +1 -1
  1346. package/dist/ionic/svg/magnet-sharp.svg +1 -1
  1347. package/dist/ionic/svg/magnet.svg +1 -1
  1348. package/dist/ionic/svg/mail-open-outline.svg +1 -1
  1349. package/dist/ionic/svg/mail-open-sharp.svg +1 -1
  1350. package/dist/ionic/svg/mail-open.svg +1 -1
  1351. package/dist/ionic/svg/mail-outline.svg +1 -1
  1352. package/dist/ionic/svg/mail-sharp.svg +1 -1
  1353. package/dist/ionic/svg/mail-unread-outline.svg +1 -1
  1354. package/dist/ionic/svg/mail-unread-sharp.svg +1 -1
  1355. package/dist/ionic/svg/mail-unread.svg +1 -1
  1356. package/dist/ionic/svg/mail.svg +1 -1
  1357. package/dist/ionic/svg/male-female-outline.svg +1 -1
  1358. package/dist/ionic/svg/male-female-sharp.svg +1 -1
  1359. package/dist/ionic/svg/male-female.svg +1 -1
  1360. package/dist/ionic/svg/male-outline.svg +1 -1
  1361. package/dist/ionic/svg/male-sharp.svg +1 -1
  1362. package/dist/ionic/svg/male.svg +1 -1
  1363. package/dist/ionic/svg/man-outline.svg +1 -1
  1364. package/dist/ionic/svg/man-sharp.svg +1 -1
  1365. package/dist/ionic/svg/man.svg +1 -1
  1366. package/dist/ionic/svg/map-outline.svg +1 -1
  1367. package/dist/ionic/svg/map-sharp.svg +1 -1
  1368. package/dist/ionic/svg/map.svg +1 -1
  1369. package/dist/ionic/svg/medal-outline.svg +1 -1
  1370. package/dist/ionic/svg/medal-sharp.svg +1 -1
  1371. package/dist/ionic/svg/medal.svg +1 -1
  1372. package/dist/ionic/svg/medical-outline.svg +1 -1
  1373. package/dist/ionic/svg/medical-sharp.svg +1 -1
  1374. package/dist/ionic/svg/medical.svg +1 -1
  1375. package/dist/ionic/svg/medkit-outline.svg +1 -1
  1376. package/dist/ionic/svg/medkit-sharp.svg +1 -1
  1377. package/dist/ionic/svg/medkit.svg +1 -1
  1378. package/dist/ionic/svg/megaphone-outline.svg +1 -1
  1379. package/dist/ionic/svg/megaphone-sharp.svg +1 -1
  1380. package/dist/ionic/svg/megaphone.svg +1 -1
  1381. package/dist/ionic/svg/menu-outline.svg +1 -1
  1382. package/dist/ionic/svg/menu-sharp.svg +1 -1
  1383. package/dist/ionic/svg/menu.svg +1 -1
  1384. package/dist/ionic/svg/mic-circle-outline.svg +1 -1
  1385. package/dist/ionic/svg/mic-circle-sharp.svg +1 -1
  1386. package/dist/ionic/svg/mic-circle.svg +1 -1
  1387. package/dist/ionic/svg/mic-off-circle-outline.svg +1 -1
  1388. package/dist/ionic/svg/mic-off-circle-sharp.svg +1 -1
  1389. package/dist/ionic/svg/mic-off-circle.svg +1 -1
  1390. package/dist/ionic/svg/mic-off-outline.svg +1 -1
  1391. package/dist/ionic/svg/mic-off-sharp.svg +1 -1
  1392. package/dist/ionic/svg/mic-off.svg +1 -1
  1393. package/dist/ionic/svg/mic-outline.svg +1 -1
  1394. package/dist/ionic/svg/mic-sharp.svg +1 -1
  1395. package/dist/ionic/svg/mic.svg +1 -1
  1396. package/dist/ionic/svg/moon-outline.svg +1 -1
  1397. package/dist/ionic/svg/moon-sharp.svg +1 -1
  1398. package/dist/ionic/svg/moon.svg +1 -1
  1399. package/dist/ionic/svg/move-outline.svg +1 -1
  1400. package/dist/ionic/svg/move-sharp.svg +1 -1
  1401. package/dist/ionic/svg/move.svg +1 -1
  1402. package/dist/ionic/svg/musical-note-outline.svg +1 -1
  1403. package/dist/ionic/svg/musical-note-sharp.svg +1 -1
  1404. package/dist/ionic/svg/musical-note.svg +1 -1
  1405. package/dist/ionic/svg/musical-notes-outline.svg +1 -1
  1406. package/dist/ionic/svg/musical-notes-sharp.svg +1 -1
  1407. package/dist/ionic/svg/musical-notes.svg +1 -1
  1408. package/dist/ionic/svg/navigate-circle-outline.svg +1 -1
  1409. package/dist/ionic/svg/navigate-circle-sharp.svg +1 -1
  1410. package/dist/ionic/svg/navigate-circle.svg +1 -1
  1411. package/dist/ionic/svg/navigate-outline.svg +1 -1
  1412. package/dist/ionic/svg/navigate-sharp.svg +1 -1
  1413. package/dist/ionic/svg/navigate.svg +1 -1
  1414. package/dist/ionic/svg/newspaper-outline.svg +1 -1
  1415. package/dist/ionic/svg/newspaper-sharp.svg +1 -1
  1416. package/dist/ionic/svg/newspaper.svg +1 -1
  1417. package/dist/ionic/svg/notifications-circle-outline.svg +1 -1
  1418. package/dist/ionic/svg/notifications-circle-sharp.svg +1 -1
  1419. package/dist/ionic/svg/notifications-circle.svg +1 -1
  1420. package/dist/ionic/svg/notifications-off-circle-outline.svg +1 -1
  1421. package/dist/ionic/svg/notifications-off-circle-sharp.svg +1 -1
  1422. package/dist/ionic/svg/notifications-off-circle.svg +1 -1
  1423. package/dist/ionic/svg/notifications-off-outline.svg +1 -1
  1424. package/dist/ionic/svg/notifications-off-sharp.svg +1 -1
  1425. package/dist/ionic/svg/notifications-off.svg +1 -1
  1426. package/dist/ionic/svg/notifications-outline.svg +1 -1
  1427. package/dist/ionic/svg/notifications-sharp.svg +1 -1
  1428. package/dist/ionic/svg/notifications.svg +1 -1
  1429. package/dist/ionic/svg/nuclear-outline.svg +1 -1
  1430. package/dist/ionic/svg/nuclear-sharp.svg +1 -1
  1431. package/dist/ionic/svg/nuclear.svg +1 -1
  1432. package/dist/ionic/svg/nutrition-outline.svg +1 -1
  1433. package/dist/ionic/svg/nutrition-sharp.svg +1 -1
  1434. package/dist/ionic/svg/nutrition.svg +1 -1
  1435. package/dist/ionic/svg/open-outline.svg +1 -1
  1436. package/dist/ionic/svg/open-sharp.svg +1 -1
  1437. package/dist/ionic/svg/open.svg +1 -1
  1438. package/dist/ionic/svg/options-outline.svg +1 -1
  1439. package/dist/ionic/svg/options-sharp.svg +1 -1
  1440. package/dist/ionic/svg/options.svg +1 -1
  1441. package/dist/ionic/svg/paper-plane-outline.svg +1 -1
  1442. package/dist/ionic/svg/paper-plane-sharp.svg +1 -1
  1443. package/dist/ionic/svg/paper-plane.svg +1 -1
  1444. package/dist/ionic/svg/partly-sunny-outline.svg +1 -1
  1445. package/dist/ionic/svg/partly-sunny-sharp.svg +1 -1
  1446. package/dist/ionic/svg/partly-sunny.svg +1 -1
  1447. package/dist/ionic/svg/pause-circle-outline.svg +1 -1
  1448. package/dist/ionic/svg/pause-circle-sharp.svg +1 -1
  1449. package/dist/ionic/svg/pause-circle.svg +1 -1
  1450. package/dist/ionic/svg/pause-outline.svg +1 -1
  1451. package/dist/ionic/svg/pause-sharp.svg +1 -1
  1452. package/dist/ionic/svg/pause.svg +1 -1
  1453. package/dist/ionic/svg/paw-outline.svg +1 -1
  1454. package/dist/ionic/svg/paw-sharp.svg +1 -1
  1455. package/dist/ionic/svg/paw.svg +1 -1
  1456. package/dist/ionic/svg/pencil-outline.svg +1 -1
  1457. package/dist/ionic/svg/pencil-sharp.svg +1 -1
  1458. package/dist/ionic/svg/pencil.svg +1 -1
  1459. package/dist/ionic/svg/people-circle-outline.svg +1 -1
  1460. package/dist/ionic/svg/people-circle-sharp.svg +1 -1
  1461. package/dist/ionic/svg/people-circle.svg +1 -1
  1462. package/dist/ionic/svg/people-outline.svg +1 -1
  1463. package/dist/ionic/svg/people-sharp.svg +1 -1
  1464. package/dist/ionic/svg/people.svg +1 -1
  1465. package/dist/ionic/svg/person-add-outline.svg +1 -1
  1466. package/dist/ionic/svg/person-add-sharp.svg +1 -1
  1467. package/dist/ionic/svg/person-add.svg +1 -1
  1468. package/dist/ionic/svg/person-circle-outline.svg +1 -1
  1469. package/dist/ionic/svg/person-circle-sharp.svg +1 -1
  1470. package/dist/ionic/svg/person-circle.svg +1 -1
  1471. package/dist/ionic/svg/person-outline.svg +1 -1
  1472. package/dist/ionic/svg/person-remove-outline.svg +1 -1
  1473. package/dist/ionic/svg/person-remove-sharp.svg +1 -1
  1474. package/dist/ionic/svg/person-remove.svg +1 -1
  1475. package/dist/ionic/svg/person-sharp.svg +1 -1
  1476. package/dist/ionic/svg/person.svg +1 -1
  1477. package/dist/ionic/svg/phone-landscape-outline.svg +1 -1
  1478. package/dist/ionic/svg/phone-landscape-sharp.svg +1 -1
  1479. package/dist/ionic/svg/phone-landscape.svg +1 -1
  1480. package/dist/ionic/svg/phone-portrait-outline.svg +1 -1
  1481. package/dist/ionic/svg/phone-portrait-sharp.svg +1 -1
  1482. package/dist/ionic/svg/phone-portrait.svg +1 -1
  1483. package/dist/ionic/svg/pie-chart-outline.svg +1 -1
  1484. package/dist/ionic/svg/pie-chart-sharp.svg +1 -1
  1485. package/dist/ionic/svg/pie-chart.svg +1 -1
  1486. package/dist/ionic/svg/pin-outline.svg +1 -1
  1487. package/dist/ionic/svg/pin-sharp.svg +1 -1
  1488. package/dist/ionic/svg/pin.svg +1 -1
  1489. package/dist/ionic/svg/pint-outline.svg +1 -1
  1490. package/dist/ionic/svg/pint-sharp.svg +1 -1
  1491. package/dist/ionic/svg/pint.svg +1 -1
  1492. package/dist/ionic/svg/pizza-outline.svg +1 -1
  1493. package/dist/ionic/svg/pizza-sharp.svg +1 -1
  1494. package/dist/ionic/svg/pizza.svg +1 -1
  1495. package/dist/ionic/svg/planet-outline.svg +1 -1
  1496. package/dist/ionic/svg/planet-sharp.svg +1 -1
  1497. package/dist/ionic/svg/planet.svg +1 -1
  1498. package/dist/ionic/svg/play-back-circle-outline.svg +1 -1
  1499. package/dist/ionic/svg/play-back-circle-sharp.svg +1 -1
  1500. package/dist/ionic/svg/play-back-circle.svg +1 -1
  1501. package/dist/ionic/svg/play-back-outline.svg +1 -1
  1502. package/dist/ionic/svg/play-back-sharp.svg +1 -1
  1503. package/dist/ionic/svg/play-back.svg +1 -1
  1504. package/dist/ionic/svg/play-circle-outline.svg +1 -1
  1505. package/dist/ionic/svg/play-circle-sharp.svg +1 -1
  1506. package/dist/ionic/svg/play-circle.svg +1 -1
  1507. package/dist/ionic/svg/play-forward-circle-outline.svg +1 -1
  1508. package/dist/ionic/svg/play-forward-circle-sharp.svg +1 -1
  1509. package/dist/ionic/svg/play-forward-circle.svg +1 -1
  1510. package/dist/ionic/svg/play-forward-outline.svg +1 -1
  1511. package/dist/ionic/svg/play-forward-sharp.svg +1 -1
  1512. package/dist/ionic/svg/play-forward.svg +1 -1
  1513. package/dist/ionic/svg/play-outline.svg +1 -1
  1514. package/dist/ionic/svg/play-sharp.svg +1 -1
  1515. package/dist/ionic/svg/play-skip-back-circle-outline.svg +1 -1
  1516. package/dist/ionic/svg/play-skip-back-circle-sharp.svg +1 -1
  1517. package/dist/ionic/svg/play-skip-back-circle.svg +1 -1
  1518. package/dist/ionic/svg/play-skip-back-outline.svg +1 -1
  1519. package/dist/ionic/svg/play-skip-back-sharp.svg +1 -1
  1520. package/dist/ionic/svg/play-skip-back.svg +1 -1
  1521. package/dist/ionic/svg/play-skip-forward-circle-outline.svg +1 -1
  1522. package/dist/ionic/svg/play-skip-forward-circle-sharp.svg +1 -1
  1523. package/dist/ionic/svg/play-skip-forward-circle.svg +1 -1
  1524. package/dist/ionic/svg/play-skip-forward-outline.svg +1 -1
  1525. package/dist/ionic/svg/play-skip-forward-sharp.svg +1 -1
  1526. package/dist/ionic/svg/play-skip-forward.svg +1 -1
  1527. package/dist/ionic/svg/play.svg +1 -1
  1528. package/dist/ionic/svg/podium-outline.svg +1 -1
  1529. package/dist/ionic/svg/podium-sharp.svg +1 -1
  1530. package/dist/ionic/svg/podium.svg +1 -1
  1531. package/dist/ionic/svg/power-outline.svg +1 -1
  1532. package/dist/ionic/svg/power-sharp.svg +1 -1
  1533. package/dist/ionic/svg/power.svg +1 -1
  1534. package/dist/ionic/svg/pricetag-outline.svg +1 -1
  1535. package/dist/ionic/svg/pricetag-sharp.svg +1 -1
  1536. package/dist/ionic/svg/pricetag.svg +1 -1
  1537. package/dist/ionic/svg/pricetags-outline.svg +1 -1
  1538. package/dist/ionic/svg/pricetags-sharp.svg +1 -1
  1539. package/dist/ionic/svg/pricetags.svg +1 -1
  1540. package/dist/ionic/svg/print-outline.svg +1 -1
  1541. package/dist/ionic/svg/print-sharp.svg +1 -1
  1542. package/dist/ionic/svg/print.svg +1 -1
  1543. package/dist/ionic/svg/prism-outline.svg +1 -1
  1544. package/dist/ionic/svg/prism-sharp.svg +1 -1
  1545. package/dist/ionic/svg/prism.svg +1 -1
  1546. package/dist/ionic/svg/pulse-outline.svg +1 -1
  1547. package/dist/ionic/svg/pulse-sharp.svg +1 -1
  1548. package/dist/ionic/svg/pulse.svg +1 -1
  1549. package/dist/ionic/svg/push-outline.svg +1 -1
  1550. package/dist/ionic/svg/push-sharp.svg +1 -1
  1551. package/dist/ionic/svg/push.svg +1 -1
  1552. package/dist/ionic/svg/qr-code-outline.svg +1 -1
  1553. package/dist/ionic/svg/qr-code-sharp.svg +1 -1
  1554. package/dist/ionic/svg/qr-code.svg +1 -1
  1555. package/dist/ionic/svg/radio-button-off-outline.svg +1 -1
  1556. package/dist/ionic/svg/radio-button-off-sharp.svg +1 -1
  1557. package/dist/ionic/svg/radio-button-off.svg +1 -1
  1558. package/dist/ionic/svg/radio-button-on-outline.svg +1 -1
  1559. package/dist/ionic/svg/radio-button-on-sharp.svg +1 -1
  1560. package/dist/ionic/svg/radio-button-on.svg +1 -1
  1561. package/dist/ionic/svg/radio-outline.svg +1 -1
  1562. package/dist/ionic/svg/radio-sharp.svg +1 -1
  1563. package/dist/ionic/svg/radio.svg +1 -1
  1564. package/dist/ionic/svg/rainy-outline.svg +1 -1
  1565. package/dist/ionic/svg/rainy-sharp.svg +1 -1
  1566. package/dist/ionic/svg/rainy.svg +1 -1
  1567. package/dist/ionic/svg/reader-outline.svg +1 -1
  1568. package/dist/ionic/svg/reader-sharp.svg +1 -1
  1569. package/dist/ionic/svg/reader.svg +1 -1
  1570. package/dist/ionic/svg/receipt-outline.svg +1 -1
  1571. package/dist/ionic/svg/receipt-sharp.svg +1 -1
  1572. package/dist/ionic/svg/receipt.svg +1 -1
  1573. package/dist/ionic/svg/recording-outline.svg +1 -1
  1574. package/dist/ionic/svg/recording-sharp.svg +1 -1
  1575. package/dist/ionic/svg/recording.svg +1 -1
  1576. package/dist/ionic/svg/refresh-circle-outline.svg +1 -1
  1577. package/dist/ionic/svg/refresh-circle-sharp.svg +1 -1
  1578. package/dist/ionic/svg/refresh-circle.svg +1 -1
  1579. package/dist/ionic/svg/refresh-outline.svg +1 -1
  1580. package/dist/ionic/svg/refresh-sharp.svg +1 -1
  1581. package/dist/ionic/svg/refresh.svg +1 -1
  1582. package/dist/ionic/svg/reload-circle-outline.svg +1 -1
  1583. package/dist/ionic/svg/reload-circle-sharp.svg +1 -1
  1584. package/dist/ionic/svg/reload-circle.svg +1 -1
  1585. package/dist/ionic/svg/reload-outline.svg +1 -1
  1586. package/dist/ionic/svg/reload-sharp.svg +1 -1
  1587. package/dist/ionic/svg/reload.svg +1 -1
  1588. package/dist/ionic/svg/remove-circle-outline.svg +1 -1
  1589. package/dist/ionic/svg/remove-circle-sharp.svg +1 -1
  1590. package/dist/ionic/svg/remove-circle.svg +1 -1
  1591. package/dist/ionic/svg/remove-outline.svg +1 -1
  1592. package/dist/ionic/svg/remove-sharp.svg +1 -1
  1593. package/dist/ionic/svg/remove.svg +1 -1
  1594. package/dist/ionic/svg/reorder-four-outline.svg +1 -1
  1595. package/dist/ionic/svg/reorder-four-sharp.svg +1 -1
  1596. package/dist/ionic/svg/reorder-four.svg +1 -1
  1597. package/dist/ionic/svg/reorder-three-outline.svg +1 -1
  1598. package/dist/ionic/svg/reorder-three-sharp.svg +1 -1
  1599. package/dist/ionic/svg/reorder-three.svg +1 -1
  1600. package/dist/ionic/svg/reorder-two-outline.svg +1 -1
  1601. package/dist/ionic/svg/reorder-two-sharp.svg +1 -1
  1602. package/dist/ionic/svg/reorder-two.svg +1 -1
  1603. package/dist/ionic/svg/repeat-outline.svg +1 -1
  1604. package/dist/ionic/svg/repeat-sharp.svg +1 -1
  1605. package/dist/ionic/svg/repeat.svg +1 -1
  1606. package/dist/ionic/svg/resize-outline.svg +1 -1
  1607. package/dist/ionic/svg/resize-sharp.svg +1 -1
  1608. package/dist/ionic/svg/resize.svg +1 -1
  1609. package/dist/ionic/svg/restaurant-outline.svg +1 -1
  1610. package/dist/ionic/svg/restaurant-sharp.svg +1 -1
  1611. package/dist/ionic/svg/restaurant.svg +1 -1
  1612. package/dist/ionic/svg/return-down-back-outline.svg +1 -1
  1613. package/dist/ionic/svg/return-down-back-sharp.svg +1 -1
  1614. package/dist/ionic/svg/return-down-back.svg +1 -1
  1615. package/dist/ionic/svg/return-down-forward-outline.svg +1 -1
  1616. package/dist/ionic/svg/return-down-forward-sharp.svg +1 -1
  1617. package/dist/ionic/svg/return-down-forward.svg +1 -1
  1618. package/dist/ionic/svg/return-up-back-outline.svg +1 -1
  1619. package/dist/ionic/svg/return-up-back-sharp.svg +1 -1
  1620. package/dist/ionic/svg/return-up-back.svg +1 -1
  1621. package/dist/ionic/svg/return-up-forward-outline.svg +1 -1
  1622. package/dist/ionic/svg/return-up-forward-sharp.svg +1 -1
  1623. package/dist/ionic/svg/return-up-forward.svg +1 -1
  1624. package/dist/ionic/svg/ribbon-outline.svg +1 -1
  1625. package/dist/ionic/svg/ribbon-sharp.svg +1 -1
  1626. package/dist/ionic/svg/ribbon.svg +1 -1
  1627. package/dist/ionic/svg/rocket-outline.svg +1 -1
  1628. package/dist/ionic/svg/rocket-sharp.svg +1 -1
  1629. package/dist/ionic/svg/rocket.svg +1 -1
  1630. package/dist/ionic/svg/rose-outline.svg +1 -1
  1631. package/dist/ionic/svg/rose-sharp.svg +1 -1
  1632. package/dist/ionic/svg/rose.svg +1 -1
  1633. package/dist/ionic/svg/sad-outline.svg +1 -1
  1634. package/dist/ionic/svg/sad-sharp.svg +1 -1
  1635. package/dist/ionic/svg/sad.svg +1 -1
  1636. package/dist/ionic/svg/save-outline.svg +1 -1
  1637. package/dist/ionic/svg/save-sharp.svg +1 -1
  1638. package/dist/ionic/svg/save.svg +1 -1
  1639. package/dist/ionic/svg/scale-outline.svg +1 -1
  1640. package/dist/ionic/svg/scale-sharp.svg +1 -1
  1641. package/dist/ionic/svg/scale.svg +1 -1
  1642. package/dist/ionic/svg/scan-circle-outline.svg +1 -1
  1643. package/dist/ionic/svg/scan-circle-sharp.svg +1 -1
  1644. package/dist/ionic/svg/scan-circle.svg +1 -1
  1645. package/dist/ionic/svg/scan-outline.svg +1 -1
  1646. package/dist/ionic/svg/scan-sharp.svg +1 -1
  1647. package/dist/ionic/svg/scan.svg +1 -1
  1648. package/dist/ionic/svg/school-outline.svg +1 -1
  1649. package/dist/ionic/svg/school-sharp.svg +1 -1
  1650. package/dist/ionic/svg/school.svg +1 -1
  1651. package/dist/ionic/svg/search-circle-outline.svg +1 -1
  1652. package/dist/ionic/svg/search-circle-sharp.svg +1 -1
  1653. package/dist/ionic/svg/search-circle.svg +1 -1
  1654. package/dist/ionic/svg/search-outline.svg +1 -1
  1655. package/dist/ionic/svg/search-sharp.svg +1 -1
  1656. package/dist/ionic/svg/search.svg +1 -1
  1657. package/dist/ionic/svg/send-outline.svg +1 -1
  1658. package/dist/ionic/svg/send-sharp.svg +1 -1
  1659. package/dist/ionic/svg/send.svg +1 -1
  1660. package/dist/ionic/svg/server-outline.svg +1 -1
  1661. package/dist/ionic/svg/server-sharp.svg +1 -1
  1662. package/dist/ionic/svg/server.svg +1 -1
  1663. package/dist/ionic/svg/settings-outline.svg +1 -1
  1664. package/dist/ionic/svg/settings-sharp.svg +1 -1
  1665. package/dist/ionic/svg/settings.svg +1 -1
  1666. package/dist/ionic/svg/shapes-outline.svg +1 -1
  1667. package/dist/ionic/svg/shapes-sharp.svg +1 -1
  1668. package/dist/ionic/svg/shapes.svg +1 -1
  1669. package/dist/ionic/svg/share-outline.svg +1 -1
  1670. package/dist/ionic/svg/share-sharp.svg +1 -1
  1671. package/dist/ionic/svg/share-social-outline.svg +1 -1
  1672. package/dist/ionic/svg/share-social-sharp.svg +1 -1
  1673. package/dist/ionic/svg/share-social.svg +1 -1
  1674. package/dist/ionic/svg/share.svg +1 -1
  1675. package/dist/ionic/svg/shield-checkmark-outline.svg +1 -1
  1676. package/dist/ionic/svg/shield-checkmark-sharp.svg +1 -1
  1677. package/dist/ionic/svg/shield-checkmark.svg +1 -1
  1678. package/dist/ionic/svg/shield-half-outline.svg +1 -1
  1679. package/dist/ionic/svg/shield-half-sharp.svg +1 -1
  1680. package/dist/ionic/svg/shield-half.svg +1 -1
  1681. package/dist/ionic/svg/shield-outline.svg +1 -1
  1682. package/dist/ionic/svg/shield-sharp.svg +1 -1
  1683. package/dist/ionic/svg/shield.svg +1 -1
  1684. package/dist/ionic/svg/shirt-outline.svg +1 -1
  1685. package/dist/ionic/svg/shirt-sharp.svg +1 -1
  1686. package/dist/ionic/svg/shirt.svg +1 -1
  1687. package/dist/ionic/svg/shuffle-outline.svg +1 -1
  1688. package/dist/ionic/svg/shuffle-sharp.svg +1 -1
  1689. package/dist/ionic/svg/shuffle.svg +1 -1
  1690. package/dist/ionic/svg/skull-outline.svg +1 -1
  1691. package/dist/ionic/svg/skull-sharp.svg +1 -1
  1692. package/dist/ionic/svg/skull.svg +1 -1
  1693. package/dist/ionic/svg/snow-outline.svg +1 -1
  1694. package/dist/ionic/svg/snow-sharp.svg +1 -1
  1695. package/dist/ionic/svg/snow.svg +1 -1
  1696. package/dist/ionic/svg/sparkles-outline.svg +1 -1
  1697. package/dist/ionic/svg/sparkles-sharp.svg +1 -1
  1698. package/dist/ionic/svg/sparkles.svg +1 -1
  1699. package/dist/ionic/svg/speedometer-outline.svg +1 -1
  1700. package/dist/ionic/svg/speedometer-sharp.svg +1 -1
  1701. package/dist/ionic/svg/speedometer.svg +1 -1
  1702. package/dist/ionic/svg/square-outline.svg +1 -1
  1703. package/dist/ionic/svg/square-sharp.svg +1 -1
  1704. package/dist/ionic/svg/square.svg +1 -1
  1705. package/dist/ionic/svg/star-half-outline.svg +1 -1
  1706. package/dist/ionic/svg/star-half-sharp.svg +1 -1
  1707. package/dist/ionic/svg/star-half.svg +1 -1
  1708. package/dist/ionic/svg/star-outline.svg +1 -1
  1709. package/dist/ionic/svg/star-sharp.svg +1 -1
  1710. package/dist/ionic/svg/star.svg +1 -1
  1711. package/dist/ionic/svg/stats-chart-outline.svg +1 -1
  1712. package/dist/ionic/svg/stats-chart-sharp.svg +1 -1
  1713. package/dist/ionic/svg/stats-chart.svg +1 -1
  1714. package/dist/ionic/svg/stop-circle-outline.svg +1 -1
  1715. package/dist/ionic/svg/stop-circle-sharp.svg +1 -1
  1716. package/dist/ionic/svg/stop-circle.svg +1 -1
  1717. package/dist/ionic/svg/stop-outline.svg +1 -1
  1718. package/dist/ionic/svg/stop-sharp.svg +1 -1
  1719. package/dist/ionic/svg/stop.svg +1 -1
  1720. package/dist/ionic/svg/stopwatch-outline.svg +1 -1
  1721. package/dist/ionic/svg/stopwatch-sharp.svg +1 -1
  1722. package/dist/ionic/svg/stopwatch.svg +1 -1
  1723. package/dist/ionic/svg/storefront-outline.svg +1 -1
  1724. package/dist/ionic/svg/storefront-sharp.svg +1 -1
  1725. package/dist/ionic/svg/storefront.svg +1 -1
  1726. package/dist/ionic/svg/subway-outline.svg +1 -1
  1727. package/dist/ionic/svg/subway-sharp.svg +1 -1
  1728. package/dist/ionic/svg/subway.svg +1 -1
  1729. package/dist/ionic/svg/sunny-outline.svg +1 -1
  1730. package/dist/ionic/svg/sunny-sharp.svg +1 -1
  1731. package/dist/ionic/svg/sunny.svg +1 -1
  1732. package/dist/ionic/svg/swap-horizontal-outline.svg +1 -1
  1733. package/dist/ionic/svg/swap-horizontal-sharp.svg +1 -1
  1734. package/dist/ionic/svg/swap-horizontal.svg +1 -1
  1735. package/dist/ionic/svg/swap-vertical-outline.svg +1 -1
  1736. package/dist/ionic/svg/swap-vertical-sharp.svg +1 -1
  1737. package/dist/ionic/svg/swap-vertical.svg +1 -1
  1738. package/dist/ionic/svg/sync-circle-outline.svg +1 -1
  1739. package/dist/ionic/svg/sync-circle-sharp.svg +1 -1
  1740. package/dist/ionic/svg/sync-circle.svg +1 -1
  1741. package/dist/ionic/svg/sync-outline.svg +1 -1
  1742. package/dist/ionic/svg/sync-sharp.svg +1 -1
  1743. package/dist/ionic/svg/sync.svg +1 -1
  1744. package/dist/ionic/svg/tablet-landscape-outline.svg +1 -1
  1745. package/dist/ionic/svg/tablet-landscape-sharp.svg +1 -1
  1746. package/dist/ionic/svg/tablet-landscape.svg +1 -1
  1747. package/dist/ionic/svg/tablet-portrait-outline.svg +1 -1
  1748. package/dist/ionic/svg/tablet-portrait-sharp.svg +1 -1
  1749. package/dist/ionic/svg/tablet-portrait.svg +1 -1
  1750. package/dist/ionic/svg/telescope-outline.svg +1 -1
  1751. package/dist/ionic/svg/telescope-sharp.svg +1 -1
  1752. package/dist/ionic/svg/telescope.svg +1 -1
  1753. package/dist/ionic/svg/tennisball-outline.svg +1 -1
  1754. package/dist/ionic/svg/tennisball-sharp.svg +1 -1
  1755. package/dist/ionic/svg/tennisball.svg +1 -1
  1756. package/dist/ionic/svg/terminal-outline.svg +1 -1
  1757. package/dist/ionic/svg/terminal-sharp.svg +1 -1
  1758. package/dist/ionic/svg/terminal.svg +1 -1
  1759. package/dist/ionic/svg/text-outline.svg +1 -1
  1760. package/dist/ionic/svg/text-sharp.svg +1 -1
  1761. package/dist/ionic/svg/text.svg +1 -1
  1762. package/dist/ionic/svg/thermometer-outline.svg +1 -1
  1763. package/dist/ionic/svg/thermometer-sharp.svg +1 -1
  1764. package/dist/ionic/svg/thermometer.svg +1 -1
  1765. package/dist/ionic/svg/thumbs-down-outline.svg +1 -1
  1766. package/dist/ionic/svg/thumbs-down-sharp.svg +1 -1
  1767. package/dist/ionic/svg/thumbs-down.svg +1 -1
  1768. package/dist/ionic/svg/thumbs-up-outline.svg +1 -1
  1769. package/dist/ionic/svg/thumbs-up-sharp.svg +1 -1
  1770. package/dist/ionic/svg/thumbs-up.svg +1 -1
  1771. package/dist/ionic/svg/thunderstorm-outline.svg +1 -1
  1772. package/dist/ionic/svg/thunderstorm-sharp.svg +1 -1
  1773. package/dist/ionic/svg/thunderstorm.svg +1 -1
  1774. package/dist/ionic/svg/ticket-outline.svg +1 -1
  1775. package/dist/ionic/svg/ticket-sharp.svg +1 -1
  1776. package/dist/ionic/svg/ticket.svg +1 -1
  1777. package/dist/ionic/svg/time-outline.svg +1 -1
  1778. package/dist/ionic/svg/time-sharp.svg +1 -1
  1779. package/dist/ionic/svg/time.svg +1 -1
  1780. package/dist/ionic/svg/timer-outline.svg +1 -1
  1781. package/dist/ionic/svg/timer-sharp.svg +1 -1
  1782. package/dist/ionic/svg/timer.svg +1 -1
  1783. package/dist/ionic/svg/today-outline.svg +1 -1
  1784. package/dist/ionic/svg/today-sharp.svg +1 -1
  1785. package/dist/ionic/svg/today.svg +1 -1
  1786. package/dist/ionic/svg/toggle-outline.svg +1 -1
  1787. package/dist/ionic/svg/toggle-sharp.svg +1 -1
  1788. package/dist/ionic/svg/toggle.svg +1 -1
  1789. package/dist/ionic/svg/trail-sign-outline.svg +1 -1
  1790. package/dist/ionic/svg/trail-sign-sharp.svg +1 -1
  1791. package/dist/ionic/svg/trail-sign.svg +1 -1
  1792. package/dist/ionic/svg/train-outline.svg +1 -1
  1793. package/dist/ionic/svg/train-sharp.svg +1 -1
  1794. package/dist/ionic/svg/train.svg +1 -1
  1795. package/dist/ionic/svg/transgender-outline.svg +1 -1
  1796. package/dist/ionic/svg/transgender-sharp.svg +1 -1
  1797. package/dist/ionic/svg/transgender.svg +1 -1
  1798. package/dist/ionic/svg/trash-bin-outline.svg +1 -1
  1799. package/dist/ionic/svg/trash-bin-sharp.svg +1 -1
  1800. package/dist/ionic/svg/trash-bin.svg +1 -1
  1801. package/dist/ionic/svg/trash-outline.svg +1 -1
  1802. package/dist/ionic/svg/trash-sharp.svg +1 -1
  1803. package/dist/ionic/svg/trash.svg +1 -1
  1804. package/dist/ionic/svg/trending-down-outline.svg +1 -1
  1805. package/dist/ionic/svg/trending-down-sharp.svg +1 -1
  1806. package/dist/ionic/svg/trending-down.svg +1 -1
  1807. package/dist/ionic/svg/trending-up-outline.svg +1 -1
  1808. package/dist/ionic/svg/trending-up-sharp.svg +1 -1
  1809. package/dist/ionic/svg/trending-up.svg +1 -1
  1810. package/dist/ionic/svg/triangle-outline.svg +1 -1
  1811. package/dist/ionic/svg/triangle-sharp.svg +1 -1
  1812. package/dist/ionic/svg/triangle.svg +1 -1
  1813. package/dist/ionic/svg/trophy-outline.svg +1 -1
  1814. package/dist/ionic/svg/trophy-sharp.svg +1 -1
  1815. package/dist/ionic/svg/trophy.svg +1 -1
  1816. package/dist/ionic/svg/tv-outline.svg +1 -1
  1817. package/dist/ionic/svg/tv-sharp.svg +1 -1
  1818. package/dist/ionic/svg/tv.svg +1 -1
  1819. package/dist/ionic/svg/umbrella-outline.svg +1 -1
  1820. package/dist/ionic/svg/umbrella-sharp.svg +1 -1
  1821. package/dist/ionic/svg/umbrella.svg +1 -1
  1822. package/dist/ionic/svg/unlink-outline.svg +1 -1
  1823. package/dist/ionic/svg/unlink-sharp.svg +1 -1
  1824. package/dist/ionic/svg/unlink.svg +1 -1
  1825. package/dist/ionic/svg/videocam-off-outline.svg +1 -1
  1826. package/dist/ionic/svg/videocam-off-sharp.svg +1 -1
  1827. package/dist/ionic/svg/videocam-off.svg +1 -1
  1828. package/dist/ionic/svg/videocam-outline.svg +1 -1
  1829. package/dist/ionic/svg/videocam-sharp.svg +1 -1
  1830. package/dist/ionic/svg/videocam.svg +1 -1
  1831. package/dist/ionic/svg/volume-high-outline.svg +1 -1
  1832. package/dist/ionic/svg/volume-high-sharp.svg +1 -1
  1833. package/dist/ionic/svg/volume-high.svg +1 -1
  1834. package/dist/ionic/svg/volume-low-outline.svg +1 -1
  1835. package/dist/ionic/svg/volume-low-sharp.svg +1 -1
  1836. package/dist/ionic/svg/volume-low.svg +1 -1
  1837. package/dist/ionic/svg/volume-medium-outline.svg +1 -1
  1838. package/dist/ionic/svg/volume-medium-sharp.svg +1 -1
  1839. package/dist/ionic/svg/volume-medium.svg +1 -1
  1840. package/dist/ionic/svg/volume-mute-outline.svg +1 -1
  1841. package/dist/ionic/svg/volume-mute-sharp.svg +1 -1
  1842. package/dist/ionic/svg/volume-mute.svg +1 -1
  1843. package/dist/ionic/svg/volume-off-outline.svg +1 -1
  1844. package/dist/ionic/svg/volume-off-sharp.svg +1 -1
  1845. package/dist/ionic/svg/volume-off.svg +1 -1
  1846. package/dist/ionic/svg/walk-outline.svg +1 -1
  1847. package/dist/ionic/svg/walk-sharp.svg +1 -1
  1848. package/dist/ionic/svg/walk.svg +1 -1
  1849. package/dist/ionic/svg/wallet-outline.svg +1 -1
  1850. package/dist/ionic/svg/wallet-sharp.svg +1 -1
  1851. package/dist/ionic/svg/wallet.svg +1 -1
  1852. package/dist/ionic/svg/warning-outline.svg +1 -1
  1853. package/dist/ionic/svg/warning-sharp.svg +1 -1
  1854. package/dist/ionic/svg/warning.svg +1 -1
  1855. package/dist/ionic/svg/watch-outline.svg +1 -1
  1856. package/dist/ionic/svg/watch-sharp.svg +1 -1
  1857. package/dist/ionic/svg/watch.svg +1 -1
  1858. package/dist/ionic/svg/water-outline.svg +1 -1
  1859. package/dist/ionic/svg/water-sharp.svg +1 -1
  1860. package/dist/ionic/svg/water.svg +1 -1
  1861. package/dist/ionic/svg/wifi-outline.svg +1 -1
  1862. package/dist/ionic/svg/wifi-sharp.svg +1 -1
  1863. package/dist/ionic/svg/wifi.svg +1 -1
  1864. package/dist/ionic/svg/wine-outline.svg +1 -1
  1865. package/dist/ionic/svg/wine-sharp.svg +1 -1
  1866. package/dist/ionic/svg/wine.svg +1 -1
  1867. package/dist/ionic/svg/woman-outline.svg +1 -1
  1868. package/dist/ionic/svg/woman-sharp.svg +1 -1
  1869. package/dist/ionic/svg/woman.svg +1 -1
  1870. package/dist/types/components/action-sheet/action-sheet.d.ts +5 -6
  1871. package/dist/types/components/alert/alert.d.ts +5 -6
  1872. package/dist/types/components/app/app.d.ts +2 -0
  1873. package/dist/types/components/button/button.d.ts +11 -0
  1874. package/dist/types/components/datetime/datetime-interface.d.ts +12 -3
  1875. package/dist/types/components/datetime/datetime.d.ts +12 -0
  1876. package/dist/types/components/datetime/utils/data.d.ts +3 -1
  1877. package/dist/types/components/datetime/utils/manipulation.d.ts +1 -0
  1878. package/dist/types/components/input-otp/input-otp-interface.d.ts +21 -0
  1879. package/dist/types/components/input-otp/input-otp.d.ts +272 -0
  1880. package/dist/types/components/item/item.d.ts +4 -0
  1881. package/dist/types/components/loading/loading.d.ts +5 -6
  1882. package/dist/types/components/menu/menu.d.ts +25 -3
  1883. package/dist/types/components/modal/animations/ios.transition.d.ts +14 -0
  1884. package/dist/types/components/modal/modal.d.ts +36 -6
  1885. package/dist/types/components/popover/popover.d.ts +6 -5
  1886. package/dist/types/components/range/range.d.ts +2 -0
  1887. package/dist/types/components/reorder-group/reorder-group-interface.d.ts +17 -0
  1888. package/dist/types/components/reorder-group/reorder-group.d.ts +24 -4
  1889. package/dist/types/components/router/router.d.ts +1 -0
  1890. package/dist/types/components/router/utils/interface.d.ts +1 -4
  1891. package/dist/types/components/searchbar/searchbar.d.ts +1 -3
  1892. package/dist/types/components/toast/toast.d.ts +4 -5
  1893. package/dist/types/components.d.ts +837 -23
  1894. package/dist/types/interface.d.ts +8 -2
  1895. package/dist/types/stencil-public-runtime.d.ts +37 -2
  1896. package/dist/types/utils/element-interface.d.ts +10 -0
  1897. package/dist/types/utils/test/playwright/playwright-declarations.d.ts +5 -0
  1898. package/hydrate/index.d.ts +44 -7
  1899. package/hydrate/index.js +6783 -2909
  1900. package/hydrate/index.mjs +6782 -2908
  1901. package/loader/cdn.js +1 -2
  1902. package/loader/index.cjs.js +1 -2
  1903. package/loader/index.es2017.js +0 -1
  1904. package/loader/index.js +1 -2
  1905. package/package.json +7 -7
  1906. package/dist/cjs/index-073c7cdc.js +0 -57
  1907. package/dist/cjs/index-cc858e97.js +0 -129
  1908. package/dist/esm/index-cfd9c1f2.js +0 -121
  1909. package/dist/esm/index-e2cf2ceb.js +0 -31
  1910. package/dist/esm/polyfills/core-js.js +0 -11
  1911. package/dist/esm/polyfills/dom.js +0 -79
  1912. package/dist/esm/polyfills/es5-html-element.js +0 -1
  1913. package/dist/esm/polyfills/index.js +0 -34
  1914. package/dist/esm/polyfills/system.js +0 -6
  1915. package/dist/esm-es5/animation-8b25e105.js +0 -4
  1916. package/dist/esm-es5/app-globals-dbdbb3df.js +0 -4
  1917. package/dist/esm-es5/button-active-90f1dbc4.js +0 -4
  1918. package/dist/esm-es5/capacitor-59395cbd.js +0 -4
  1919. package/dist/esm-es5/compare-with-utils-a96ff2ea.js +0 -4
  1920. package/dist/esm-es5/config-9898ed97.js +0 -4
  1921. package/dist/esm-es5/cubic-bezier-fe2083dc.js +0 -4
  1922. package/dist/esm-es5/data-0d7ea6eb.js +0 -4
  1923. package/dist/esm-es5/dir-babeabeb.js +0 -4
  1924. package/dist/esm-es5/focus-visible-dd40d69f.js +0 -4
  1925. package/dist/esm-es5/framework-delegate-56b467ad.js +0 -4
  1926. package/dist/esm-es5/gesture-controller-314a54f6.js +0 -4
  1927. package/dist/esm-es5/haptic-ac164e4c.js +0 -4
  1928. package/dist/esm-es5/hardware-back-button-a7eb8233.js +0 -4
  1929. package/dist/esm-es5/helpers-d94bc8ad.js +0 -4
  1930. package/dist/esm-es5/index-18f31305.js +0 -4
  1931. package/dist/esm-es5/index-39782642.js +0 -4
  1932. package/dist/esm-es5/index-527b9e34.js +0 -5
  1933. package/dist/esm-es5/index-68c0d151.js +0 -4
  1934. package/dist/esm-es5/index-9a17db3d.js +0 -4
  1935. package/dist/esm-es5/index-a5d50daf.js +0 -4
  1936. package/dist/esm-es5/index-be190feb.js +0 -4
  1937. package/dist/esm-es5/index-cfd9c1f2.js +0 -5
  1938. package/dist/esm-es5/index-e2cf2ceb.js +0 -4
  1939. package/dist/esm-es5/index.js +0 -4
  1940. package/dist/esm-es5/input-shims-279903e2.js +0 -4
  1941. package/dist/esm-es5/input.utils-40504d6d.js +0 -4
  1942. package/dist/esm-es5/ion-accordion_2.entry.js +0 -4
  1943. package/dist/esm-es5/ion-action-sheet.entry.js +0 -4
  1944. package/dist/esm-es5/ion-alert.entry.js +0 -4
  1945. package/dist/esm-es5/ion-app_8.entry.js +0 -4
  1946. package/dist/esm-es5/ion-avatar_3.entry.js +0 -4
  1947. package/dist/esm-es5/ion-back-button.entry.js +0 -4
  1948. package/dist/esm-es5/ion-backdrop.entry.js +0 -4
  1949. package/dist/esm-es5/ion-breadcrumb_2.entry.js +0 -4
  1950. package/dist/esm-es5/ion-button_2.entry.js +0 -4
  1951. package/dist/esm-es5/ion-card_5.entry.js +0 -4
  1952. package/dist/esm-es5/ion-checkbox.entry.js +0 -4
  1953. package/dist/esm-es5/ion-chip.entry.js +0 -4
  1954. package/dist/esm-es5/ion-col_3.entry.js +0 -4
  1955. package/dist/esm-es5/ion-datetime-button.entry.js +0 -4
  1956. package/dist/esm-es5/ion-datetime_3.entry.js +0 -4
  1957. package/dist/esm-es5/ion-fab_3.entry.js +0 -4
  1958. package/dist/esm-es5/ion-img.entry.js +0 -4
  1959. package/dist/esm-es5/ion-infinite-scroll_2.entry.js +0 -4
  1960. package/dist/esm-es5/ion-input-password-toggle.entry.js +0 -4
  1961. package/dist/esm-es5/ion-input.entry.js +0 -4
  1962. package/dist/esm-es5/ion-item-option_3.entry.js +0 -4
  1963. package/dist/esm-es5/ion-item_8.entry.js +0 -4
  1964. package/dist/esm-es5/ion-loading.entry.js +0 -4
  1965. package/dist/esm-es5/ion-menu_3.entry.js +0 -4
  1966. package/dist/esm-es5/ion-modal.entry.js +0 -4
  1967. package/dist/esm-es5/ion-nav_2.entry.js +0 -4
  1968. package/dist/esm-es5/ion-picker-column-option.entry.js +0 -4
  1969. package/dist/esm-es5/ion-picker-column.entry.js +0 -4
  1970. package/dist/esm-es5/ion-picker.entry.js +0 -4
  1971. package/dist/esm-es5/ion-popover.entry.js +0 -4
  1972. package/dist/esm-es5/ion-progress-bar.entry.js +0 -4
  1973. package/dist/esm-es5/ion-radio_2.entry.js +0 -4
  1974. package/dist/esm-es5/ion-range.entry.js +0 -4
  1975. package/dist/esm-es5/ion-refresher_2.entry.js +0 -4
  1976. package/dist/esm-es5/ion-reorder_2.entry.js +0 -4
  1977. package/dist/esm-es5/ion-ripple-effect.entry.js +0 -4
  1978. package/dist/esm-es5/ion-route_4.entry.js +0 -4
  1979. package/dist/esm-es5/ion-searchbar.entry.js +0 -4
  1980. package/dist/esm-es5/ion-segment-content.entry.js +0 -4
  1981. package/dist/esm-es5/ion-segment-view.entry.js +0 -4
  1982. package/dist/esm-es5/ion-segment_2.entry.js +0 -4
  1983. package/dist/esm-es5/ion-select-modal.entry.js +0 -4
  1984. package/dist/esm-es5/ion-select_3.entry.js +0 -4
  1985. package/dist/esm-es5/ion-spinner.entry.js +0 -4
  1986. package/dist/esm-es5/ion-split-pane.entry.js +0 -4
  1987. package/dist/esm-es5/ion-tab-bar_2.entry.js +0 -4
  1988. package/dist/esm-es5/ion-tab_2.entry.js +0 -4
  1989. package/dist/esm-es5/ion-text.entry.js +0 -4
  1990. package/dist/esm-es5/ion-textarea.entry.js +0 -4
  1991. package/dist/esm-es5/ion-toast.entry.js +0 -4
  1992. package/dist/esm-es5/ion-toggle.entry.js +0 -4
  1993. package/dist/esm-es5/ionic-global-b26f573e.js +0 -4
  1994. package/dist/esm-es5/ionic.js +0 -4
  1995. package/dist/esm-es5/ios.transition-4047cb68.js +0 -4
  1996. package/dist/esm-es5/keyboard-52278bd7.js +0 -4
  1997. package/dist/esm-es5/keyboard-73175e24.js +0 -4
  1998. package/dist/esm-es5/keyboard-controller-ec5c2bfa.js +0 -4
  1999. package/dist/esm-es5/loader.js +0 -4
  2000. package/dist/esm-es5/lock-controller-316928be.js +0 -4
  2001. package/dist/esm-es5/md.transition-30ce8d1b.js +0 -4
  2002. package/dist/esm-es5/notch-controller-1a1f7183.js +0 -4
  2003. package/dist/esm-es5/overlays-d99dcb0a.js +0 -4
  2004. package/dist/esm-es5/spinner-configs-964f7cf3.js +0 -4
  2005. package/dist/esm-es5/status-tap-42a8af65.js +0 -4
  2006. package/dist/esm-es5/swipe-back-04123e7c.js +0 -4
  2007. package/dist/esm-es5/theme-01f3f29c.js +0 -4
  2008. package/dist/esm-es5/watch-options-c2911ace.js +0 -4
  2009. package/dist/ionic/ionic.js +0 -127
  2010. package/dist/ionic/p-00023f5a.system.js +0 -4
  2011. package/dist/ionic/p-012c3ceb.system.js +0 -4
  2012. package/dist/ionic/p-03480b95.system.entry.js +0 -4
  2013. package/dist/ionic/p-08cef0b1.entry.js +0 -4
  2014. package/dist/ionic/p-08e01816.system.js +0 -4
  2015. package/dist/ionic/p-0af640d6.entry.js +0 -4
  2016. package/dist/ionic/p-105b2e8b.entry.js +0 -4
  2017. package/dist/ionic/p-117d0013.system.entry.js +0 -4
  2018. package/dist/ionic/p-11dca959.entry.js +0 -4
  2019. package/dist/ionic/p-12193821.system.js +0 -4
  2020. package/dist/ionic/p-12830298.system.entry.js +0 -4
  2021. package/dist/ionic/p-14154301.system.entry.js +0 -4
  2022. package/dist/ionic/p-1706b406.system.entry.js +0 -4
  2023. package/dist/ionic/p-17e21141.js +0 -4
  2024. package/dist/ionic/p-19494658.system.entry.js +0 -4
  2025. package/dist/ionic/p-1966a13c.system.js +0 -4
  2026. package/dist/ionic/p-1974d5b2.system.js +0 -4
  2027. package/dist/ionic/p-1a7df1c3.system.js +0 -4
  2028. package/dist/ionic/p-1a81ac09.system.js +0 -4
  2029. package/dist/ionic/p-1b9c59ab.js +0 -4
  2030. package/dist/ionic/p-1d307396.system.js +0 -4
  2031. package/dist/ionic/p-1dfc11b3.system.js +0 -4
  2032. package/dist/ionic/p-1e4371bd.js +0 -4
  2033. package/dist/ionic/p-1e955a45.system.js +0 -4
  2034. package/dist/ionic/p-200fc491.js +0 -4
  2035. package/dist/ionic/p-20d469d0.system.js +0 -4
  2036. package/dist/ionic/p-21891ead.js +0 -4
  2037. package/dist/ionic/p-2233344a.system.js +0 -4
  2038. package/dist/ionic/p-2469240b.entry.js +0 -4
  2039. package/dist/ionic/p-24a6c8a3.system.entry.js +0 -4
  2040. package/dist/ionic/p-257fb777.entry.js +0 -4
  2041. package/dist/ionic/p-25b10f81.js +0 -4
  2042. package/dist/ionic/p-2b7827c7.js +0 -4
  2043. package/dist/ionic/p-2bff0e69.system.entry.js +0 -4
  2044. package/dist/ionic/p-31dc303d.entry.js +0 -4
  2045. package/dist/ionic/p-3535d6b5.entry.js +0 -4
  2046. package/dist/ionic/p-35cdfd77.system.entry.js +0 -4
  2047. package/dist/ionic/p-393ffcc2.entry.js +0 -4
  2048. package/dist/ionic/p-39fa7dd1.system.entry.js +0 -4
  2049. package/dist/ionic/p-3a30f31b.system.entry.js +0 -4
  2050. package/dist/ionic/p-3e1e14d9.system.js +0 -4
  2051. package/dist/ionic/p-42f08b26.system.entry.js +0 -4
  2052. package/dist/ionic/p-4609d030.system.js +0 -4
  2053. package/dist/ionic/p-481e0885.entry.js +0 -4
  2054. package/dist/ionic/p-4a5be299.system.entry.js +0 -4
  2055. package/dist/ionic/p-4c667fce.js +0 -4
  2056. package/dist/ionic/p-4cf4172e.entry.js +0 -4
  2057. package/dist/ionic/p-4da92dac.entry.js +0 -4
  2058. package/dist/ionic/p-4ed5db19.system.js +0 -4
  2059. package/dist/ionic/p-4f255d5a.system.js +0 -4
  2060. package/dist/ionic/p-50cb2e8b.system.entry.js +0 -4
  2061. package/dist/ionic/p-57957c0f.entry.js +0 -4
  2062. package/dist/ionic/p-57d6e18e.entry.js +0 -4
  2063. package/dist/ionic/p-57e55ecb.system.js +0 -4
  2064. package/dist/ionic/p-5b67b447.js +0 -4
  2065. package/dist/ionic/p-5c9feddc.system.entry.js +0 -4
  2066. package/dist/ionic/p-5fac20aa.system.entry.js +0 -4
  2067. package/dist/ionic/p-612096e6.system.entry.js +0 -4
  2068. package/dist/ionic/p-6201c4ba.entry.js +0 -4
  2069. package/dist/ionic/p-625248d0.system.js +0 -4
  2070. package/dist/ionic/p-663413be.system.js +0 -4
  2071. package/dist/ionic/p-6636a436.js +0 -4
  2072. package/dist/ionic/p-66a5d6a8.js +0 -5
  2073. package/dist/ionic/p-66df5468.system.entry.js +0 -4
  2074. package/dist/ionic/p-67077d48.entry.js +0 -4
  2075. package/dist/ionic/p-67cacd6d.entry.js +0 -4
  2076. package/dist/ionic/p-6835ebdd.system.entry.js +0 -4
  2077. package/dist/ionic/p-6b8530f5.system.entry.js +0 -4
  2078. package/dist/ionic/p-6c474e87.entry.js +0 -4
  2079. package/dist/ionic/p-6dd86ff5.system.entry.js +0 -4
  2080. package/dist/ionic/p-6ec0c94a.entry.js +0 -4
  2081. package/dist/ionic/p-6f832afe.system.entry.js +0 -4
  2082. package/dist/ionic/p-707408c5.system.entry.js +0 -4
  2083. package/dist/ionic/p-712c0131.entry.js +0 -4
  2084. package/dist/ionic/p-721f43f9.entry.js +0 -4
  2085. package/dist/ionic/p-7445a2e5.system.js +0 -4
  2086. package/dist/ionic/p-7611ede3.system.entry.js +0 -4
  2087. package/dist/ionic/p-781e2dbb.system.js +0 -4
  2088. package/dist/ionic/p-792919fd.system.js +0 -4
  2089. package/dist/ionic/p-7b8c12c3.entry.js +0 -4
  2090. package/dist/ionic/p-7c5c7ae1.system.entry.js +0 -4
  2091. package/dist/ionic/p-7e3e6ed2.entry.js +0 -4
  2092. package/dist/ionic/p-7ffedf77.system.entry.js +0 -4
  2093. package/dist/ionic/p-809483ac.js +0 -4
  2094. package/dist/ionic/p-81904a80.entry.js +0 -4
  2095. package/dist/ionic/p-84096b45.system.js +0 -4
  2096. package/dist/ionic/p-8450f761.entry.js +0 -4
  2097. package/dist/ionic/p-8460d95a.entry.js +0 -4
  2098. package/dist/ionic/p-85b01465.js +0 -4
  2099. package/dist/ionic/p-865fe95c.entry.js +0 -4
  2100. package/dist/ionic/p-8674af94.entry.js +0 -4
  2101. package/dist/ionic/p-890a4ee2.entry.js +0 -4
  2102. package/dist/ionic/p-891553d8.entry.js +0 -4
  2103. package/dist/ionic/p-8985cdb6.system.js +0 -4
  2104. package/dist/ionic/p-8b050e84.system.js +0 -4
  2105. package/dist/ionic/p-8dacf4e2.entry.js +0 -4
  2106. package/dist/ionic/p-8ededb41.js +0 -4
  2107. package/dist/ionic/p-94551927.js +0 -4
  2108. package/dist/ionic/p-965287fb.system.entry.js +0 -4
  2109. package/dist/ionic/p-979d4f5c.system.js +0 -4
  2110. package/dist/ionic/p-98fd942b.system.entry.js +0 -4
  2111. package/dist/ionic/p-9df5043e.system.entry.js +0 -4
  2112. package/dist/ionic/p-9e753482.system.entry.js +0 -4
  2113. package/dist/ionic/p-a0fd2fe5.system.entry.js +0 -4
  2114. package/dist/ionic/p-a2c6a9c8.entry.js +0 -4
  2115. package/dist/ionic/p-a2dd5b69.system.entry.js +0 -4
  2116. package/dist/ionic/p-a4866e3e.system.js +0 -4
  2117. package/dist/ionic/p-a5dbe0ff.system.entry.js +0 -4
  2118. package/dist/ionic/p-a7a97bf4.system.entry.js +0 -4
  2119. package/dist/ionic/p-a835aca8.entry.js +0 -4
  2120. package/dist/ionic/p-a83e3290.system.js +0 -4
  2121. package/dist/ionic/p-a93873de.system.js +0 -4
  2122. package/dist/ionic/p-aad57e35.entry.js +0 -4
  2123. package/dist/ionic/p-ab7337e1.entry.js +0 -4
  2124. package/dist/ionic/p-abe101da.system.js +0 -4
  2125. package/dist/ionic/p-ad592db9.entry.js +0 -4
  2126. package/dist/ionic/p-ae039072.entry.js +0 -4
  2127. package/dist/ionic/p-aebfab05.system.entry.js +0 -4
  2128. package/dist/ionic/p-b06ac4a5.system.js +0 -4
  2129. package/dist/ionic/p-b2e7eda0.system.entry.js +0 -4
  2130. package/dist/ionic/p-b445ff65.entry.js +0 -4
  2131. package/dist/ionic/p-b4d17da0.system.entry.js +0 -4
  2132. package/dist/ionic/p-b5432d15.entry.js +0 -4
  2133. package/dist/ionic/p-b6d324f0.js +0 -4
  2134. package/dist/ionic/p-b7b1d91a.js +0 -4
  2135. package/dist/ionic/p-b8050298.system.entry.js +0 -4
  2136. package/dist/ionic/p-b904cfe2.system.entry.js +0 -4
  2137. package/dist/ionic/p-b9c793d4.entry.js +0 -4
  2138. package/dist/ionic/p-bafc3eae.system.entry.js +0 -4
  2139. package/dist/ionic/p-bf184319.system.entry.js +0 -4
  2140. package/dist/ionic/p-bfb763d0.system.entry.js +0 -4
  2141. package/dist/ionic/p-c16443a8.system.js +0 -4
  2142. package/dist/ionic/p-c1b7d311.system.entry.js +0 -4
  2143. package/dist/ionic/p-c2160d8c.entry.js +0 -4
  2144. package/dist/ionic/p-c468af8a.system.js +0 -4
  2145. package/dist/ionic/p-c5b77054.entry.js +0 -4
  2146. package/dist/ionic/p-c5bfa3e9.entry.js +0 -4
  2147. package/dist/ionic/p-c61cc894.js +0 -4
  2148. package/dist/ionic/p-cad82569.entry.js +0 -4
  2149. package/dist/ionic/p-d16fab3f.entry.js +0 -4
  2150. package/dist/ionic/p-d1eb2d7f.entry.js +0 -4
  2151. package/dist/ionic/p-d382f09c.system.js +0 -4
  2152. package/dist/ionic/p-d8d84afa.system.js +0 -4
  2153. package/dist/ionic/p-d984c1ab.system.entry.js +0 -4
  2154. package/dist/ionic/p-da2b833b.js +0 -4
  2155. package/dist/ionic/p-dabe3bd4.js +0 -4
  2156. package/dist/ionic/p-df069a0d.entry.js +0 -4
  2157. package/dist/ionic/p-e1678e42.entry.js +0 -4
  2158. package/dist/ionic/p-e6068998.system.entry.js +0 -4
  2159. package/dist/ionic/p-e673a0a2.system.js +0 -4
  2160. package/dist/ionic/p-e727e32d.system.entry.js +0 -4
  2161. package/dist/ionic/p-e8245753.entry.js +0 -4
  2162. package/dist/ionic/p-e887b6a9.system.js +0 -4
  2163. package/dist/ionic/p-f08a92cc.js +0 -4
  2164. package/dist/ionic/p-f08dfb19.entry.js +0 -4
  2165. package/dist/ionic/p-f0c9f8e3.system.entry.js +0 -4
  2166. package/dist/ionic/p-f0ef39ab.entry.js +0 -4
  2167. package/dist/ionic/p-f11a9436.system.js +0 -5
  2168. package/dist/ionic/p-f22490a7.system.entry.js +0 -4
  2169. package/dist/ionic/p-f6bb9be7.system.entry.js +0 -4
  2170. package/dist/ionic/p-f6e7d104.system.js +0 -4
  2171. package/dist/ionic/p-f725bf9e.system.js +0 -4
  2172. package/dist/ionic/p-f9a87db2.system.entry.js +0 -4
  2173. package/dist/ionic/p-fa3f4b96.system.js +0 -4
  2174. package/dist/ionic/p-fe063952.system.entry.js +0 -4
  2175. package/dist/node_modules/ionicons/dist/collection/components/icon/icon.css +0 -144
  2176. package/loader/package.json +0 -11
  2177. /package/dist/cjs/{compare-with-utils-df1001d7.js → compare-with-utils-DSicavqM.js} +0 -0
  2178. /package/dist/cjs/{cubic-bezier-f2dccc53.js → cubic-bezier-DAjy1V-e.js} +0 -0
  2179. /package/dist/cjs/{dir-94c21456.js → dir-Cn0z1rJH.js} +0 -0
  2180. /package/dist/cjs/{focus-visible-7a0ce04f.js → focus-visible-CCvKiLh3.js} +0 -0
  2181. /package/dist/cjs/{index-c8d52405.js → index-DkNv4J_i.js} +0 -0
  2182. /package/dist/cjs/{lock-controller-6585a42a.js → lock-controller-aDB9wrEf.js} +0 -0
  2183. /package/dist/cjs/{spinner-configs-282fd50a.js → spinner-configs-DxHKnd3-.js} +0 -0
  2184. /package/dist/cjs/{theme-d1c573d2.js → theme-CeDs6Hcv.js} +0 -0
  2185. /package/dist/cjs/{watch-options-f5f3e158.js → watch-options-CviOsrTS.js} +0 -0
  2186. /package/dist/esm/{compare-with-utils-a96ff2ea.js → compare-with-utils-sObYyvOy.js} +0 -0
  2187. /package/dist/esm/{cubic-bezier-fe2083dc.js → cubic-bezier-hHmYLOfE.js} +0 -0
  2188. /package/dist/esm/{dir-babeabeb.js → dir-C53feagD.js} +0 -0
  2189. /package/dist/esm/{focus-visible-dd40d69f.js → focus-visible-BmVRXR1y.js} +0 -0
  2190. /package/dist/esm/{index-a5d50daf.js → index-ZjP4CjeZ.js} +0 -0
  2191. /package/dist/esm/{lock-controller-316928be.js → lock-controller-B-hirT0v.js} +0 -0
  2192. /package/dist/esm/{spinner-configs-964f7cf3.js → spinner-configs-D4RIp70E.js} +0 -0
  2193. /package/dist/esm/{theme-01f3f29c.js → theme-DiVJyqlX.js} +0 -0
  2194. /package/dist/esm/{watch-options-c2911ace.js → watch-options-Dtdm8lKC.js} +0 -0
  2195. /package/dist/ionic/{p-ccd02320.js → p-B-hirT0v.js} +0 -0
  2196. /package/dist/ionic/{p-9b97df10.js → p-BTEOs1at.js} +0 -0
  2197. /package/dist/ionic/{p-d47265c8.js → p-BmVRXR1y.js} +0 -0
  2198. /package/dist/ionic/{p-fb813dab.js → p-C53feagD.js} +0 -0
  2199. /package/dist/ionic/{p-f0c2a614.js → p-D4RIp70E.js} +0 -0
  2200. /package/dist/ionic/{p-47794def.js → p-DiVJyqlX.js} +0 -0
  2201. /package/dist/ionic/{p-459d13d5.js → p-Dtdm8lKC.js} +0 -0
  2202. /package/dist/ionic/{p-7b30edcc.js → p-ZjP4CjeZ.js} +0 -0
  2203. /package/dist/ionic/{p-2408c236.js → p-hHmYLOfE.js} +0 -0
  2204. /package/dist/ionic/{p-de756e5c.js → p-sObYyvOy.js} +0 -0
@@ -1,11 +0,0 @@
1
- /**
2
- * core-js 3.6.5
3
- * https://github.com/zloirock/core-js
4
- * License: http://rock.mit-license.org
5
- * © 2019 Denis Pushkarev (zloirock.ru)
6
- */
7
- !function(t){"use strict";!function(t){var n={};function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)e.d(r,o,function(n){return t[n]}.bind(null,o));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=0)}([function(t,n,e){e(1),e(55),e(62),e(68),e(70),e(71),e(72),e(73),e(75),e(76),e(78),e(87),e(88),e(89),e(98),e(99),e(101),e(102),e(103),e(105),e(106),e(107),e(108),e(110),e(111),e(112),e(113),e(114),e(115),e(116),e(117),e(118),e(127),e(130),e(131),e(133),e(135),e(136),e(137),e(138),e(139),e(141),e(143),e(146),e(148),e(150),e(151),e(153),e(154),e(155),e(156),e(157),e(159),e(160),e(162),e(163),e(164),e(165),e(166),e(167),e(168),e(169),e(170),e(172),e(173),e(183),e(184),e(185),e(189),e(191),e(192),e(193),e(194),e(195),e(196),e(198),e(201),e(202),e(203),e(204),e(208),e(209),e(212),e(213),e(214),e(215),e(216),e(217),e(218),e(219),e(221),e(222),e(223),e(226),e(227),e(228),e(229),e(230),e(231),e(232),e(233),e(234),e(235),e(236),e(237),e(238),e(240),e(241),e(243),e(248),t.exports=e(246)},function(t,n,e){var r=e(2),o=e(6),i=e(45),a=e(14),u=e(46),c=e(39),f=e(47),s=e(48),l=e(52),p=e(49),h=e(53),v=p("isConcatSpreadable"),g=h>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),d=l("concat"),y=function(t){if(!a(t))return!1;var n=t[v];return void 0!==n?!!n:i(t)};r({target:"Array",proto:!0,forced:!g||!d},{concat:function(t){var n,e,r,o,i,a=u(this),l=s(a,0),p=0;for(n=-1,r=arguments.length;n<r;n++)if(i=-1===n?a:arguments[n],y(i)){if(p+(o=c(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(e=0;e<o;e++,p++)e in i&&f(l,p,i[e])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");f(l,p++,i)}return l.length=p,l}})},function(t,n,e){var r=e(3),o=e(4).f,i=e(18),a=e(21),u=e(22),c=e(32),f=e(44);t.exports=function(t,n){var e,s,l,p,h,v=t.target,g=t.global,d=t.stat;if(e=g?r:d?r[v]||u(v,{}):(r[v]||{}).prototype)for(s in n){if(p=n[s],l=t.noTargetGet?(h=o(e,s))&&h.value:e[s],!f(g?s:v+(d?".":"#")+s,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;c(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(e,s,p,t)}}},function(t,n){var e=function(t){return t&&t.Math==Math&&t};t.exports=e("object"==typeof globalThis&&globalThis)||e("object"==typeof window&&window)||e("object"==typeof self&&self)||e("object"==typeof global&&global)||Function("return this")()},function(t,n,e){var r=e(5),o=e(7),i=e(8),a=e(9),u=e(13),c=e(15),f=e(16),s=Object.getOwnPropertyDescriptor;n.f=r?s:function(t,n){if(t=a(t),n=u(n,!0),f)try{return s(t,n)}catch(t){}if(c(t,n))return i(!o.f.call(t,n),t[n])}},function(t,n,e){var r=e(6);t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,e){var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);n.f=i?function(t){var n=o(this,t);return!!n&&n.enumerable}:r},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,e){var r=e(10),o=e(12);t.exports=function(t){return r(o(t))}},function(t,n,e){var r=e(6),o=e(11),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,n){var e={}.toString;t.exports=function(t){return e.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,e){var r=e(14);t.exports=function(t,n){if(!r(t))return t;var e,o;if(n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;if("function"==typeof(e=t.valueOf)&&!r(o=e.call(t)))return o;if(!n&&"function"==typeof(e=t.toString)&&!r(o=e.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n){var e={}.hasOwnProperty;t.exports=function(t,n){return e.call(t,n)}},function(t,n,e){var r=e(5),o=e(6),i=e(17);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,n,e){var r=e(3),o=e(14),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,n,e){var r=e(5),o=e(19),i=e(8);t.exports=r?function(t,n,e){return o.f(t,n,i(1,e))}:function(t,n,e){return t[n]=e,t}},function(t,n,e){var r=e(5),o=e(16),i=e(20),a=e(13),u=Object.defineProperty;n.f=r?u:function(t,n,e){if(i(t),n=a(n,!0),i(e),o)try{return u(t,n,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported");return"value"in e&&(t[n]=e.value),t}},function(t,n,e){var r=e(14);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,n,e){var r=e(3),o=e(18),i=e(15),a=e(22),u=e(23),c=e(25),f=c.get,s=c.enforce,l=String(String).split("String");(t.exports=function(t,n,e,u){var c=!!u&&!!u.unsafe,f=!!u&&!!u.enumerable,p=!!u&&!!u.noTargetGet;"function"==typeof e&&("string"!=typeof n||i(e,"name")||o(e,"name",n),s(e).source=l.join("string"==typeof n?n:"")),t!==r?(c?!p&&t[n]&&(f=!0):delete t[n],f?t[n]=e:o(t,n,e)):f?t[n]=e:a(n,e)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||u(this)}))},function(t,n,e){var r=e(3),o=e(18);t.exports=function(t,n){try{o(r,t,n)}catch(e){r[t]=n}return n}},function(t,n,e){var r=e(24),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,n,e){var r=e(3),o=e(22),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,n,e){var r,o,i,a=e(26),u=e(3),c=e(14),f=e(18),s=e(15),l=e(27),p=e(31),h=u.WeakMap;if(a){var v=new h,g=v.get,d=v.has,y=v.set;r=function(t,n){return y.call(v,t,n),n},o=function(t){return g.call(v,t)||{}},i=function(t){return d.call(v,t)}}else{var x=l("state");p[x]=!0,r=function(t,n){return f(t,x,n),n},o=function(t){return s(t,x)?t[x]:{}},i=function(t){return s(t,x)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(n){var e;if(!c(n)||(e=o(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return e}}}},function(t,n,e){var r=e(3),o=e(23),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,n,e){var r=e(28),o=e(30),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n,e){var r=e(29),o=e(24);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.6.5",mode:r?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n){t.exports=!1},function(t,n){var e=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++e+r).toString(36)}},function(t,n){t.exports={}},function(t,n,e){var r=e(15),o=e(33),i=e(4),a=e(19);t.exports=function(t,n){for(var e=o(n),u=a.f,c=i.f,f=0;f<e.length;f++){var s=e[f];r(t,s)||u(t,s,c(n,s))}}},function(t,n,e){var r=e(34),o=e(36),i=e(43),a=e(20);t.exports=r("Reflect","ownKeys")||function(t){var n=o.f(a(t)),e=i.f;return e?n.concat(e(t)):n}},function(t,n,e){var r=e(35),o=e(3),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,n){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][n]||o[t]&&o[t][n]}},function(t,n,e){var r=e(3);t.exports=r},function(t,n,e){var r=e(37),o=e(42).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,n,e){var r=e(15),o=e(9),i=e(38).indexOf,a=e(31);t.exports=function(t,n){var e,u=o(t),c=0,f=[];for(e in u)!r(a,e)&&r(u,e)&&f.push(e);for(;n.length>c;)r(u,e=n[c++])&&(~i(f,e)||f.push(e));return f}},function(t,n,e){var r=e(9),o=e(39),i=e(41),a=function(t){return function(n,e,a){var u,c=r(n),f=o(c.length),s=i(a,f);if(t&&e!=e){for(;f>s;)if((u=c[s++])!=u)return!0}else for(;f>s;s++)if((t||s in c)&&c[s]===e)return t||s||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,n,e){var r=e(40),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,n){var e=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:e)(t)}},function(t,n,e){var r=e(40),o=Math.max,i=Math.min;t.exports=function(t,n){var e=r(t);return e<0?o(e+n,0):i(e,n)}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,e){var r=e(6),o=/#|\.prototype\./,i=function(t,n){var e=u[a(t)];return e==f||e!=c&&("function"==typeof n?r(n):!!n)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=i.data={},c=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},function(t,n,e){var r=e(11);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,n,e){var r=e(12);t.exports=function(t){return Object(r(t))}},function(t,n,e){var r=e(13),o=e(19),i=e(8);t.exports=function(t,n,e){var a=r(n);a in t?o.f(t,a,i(0,e)):t[a]=e}},function(t,n,e){var r=e(14),o=e(45),i=e(49)("species");t.exports=function(t,n){var e;return o(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!o(e.prototype)?r(e)&&null===(e=e[i])&&(e=void 0):e=void 0),new(void 0===e?Array:e)(0===n?0:n)}},function(t,n,e){var r=e(3),o=e(28),i=e(15),a=e(30),u=e(50),c=e(51),f=o("wks"),s=r.Symbol,l=c?s:s&&s.withoutSetter||a;t.exports=function(t){return i(f,t)||(u&&i(s,t)?f[t]=s[t]:f[t]=l("Symbol."+t)),f[t]}},function(t,n,e){var r=e(6);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,n,e){var r=e(50);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,e){var r=e(6),o=e(49),i=e(53),a=o("species");t.exports=function(t){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[t](Boolean).foo}))}},function(t,n,e){var r,o,i=e(3),a=e(54),u=i.process,c=u&&u.versions,f=c&&c.v8;f?o=(r=f.split("."))[0]+r[1]:a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=r[1]),t.exports=o&&+o},function(t,n,e){var r=e(34);t.exports=r("navigator","userAgent")||""},function(t,n,e){var r=e(2),o=e(56),i=e(57);r({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},function(t,n,e){var r=e(46),o=e(41),i=e(39),a=Math.min;t.exports=[].copyWithin||function(t,n){var e=r(this),u=i(e.length),c=o(t,u),f=o(n,u),s=arguments.length>2?arguments[2]:void 0,l=a((void 0===s?u:o(s,u))-f,u-c),p=1;for(f<c&&c<f+l&&(p=-1,f+=l-1,c+=l-1);l-- >0;)f in e?e[c]=e[f]:delete e[c],c+=p,f+=p;return e}},function(t,n,e){var r=e(49),o=e(58),i=e(19),a=r("unscopables"),u=Array.prototype;null==u[a]&&i.f(u,a,{configurable:!0,value:o(null)}),t.exports=function(t){u[a][t]=!0}},function(t,n,e){var r,o=e(20),i=e(59),a=e(42),u=e(31),c=e(61),f=e(17),s=e(27),l=s("IE_PROTO"),p=function(){},h=function(t){return"<script>"+t+"<\/script>"},v=function(){try{r=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,n;v=r?function(t){t.write(h("")),t.close();var n=t.parentWindow.Object;return t=null,n}(r):((n=f("iframe")).style.display="none",c.appendChild(n),n.src=String("javascript:"),(t=n.contentWindow.document).open(),t.write(h("document.F=Object")),t.close(),t.F);for(var e=a.length;e--;)delete v.prototype[a[e]];return v()};u[l]=!0,t.exports=Object.create||function(t,n){var e;return null!==t?(p.prototype=o(t),e=new p,p.prototype=null,e[l]=t):e=v(),void 0===n?e:i(e,n)}},function(t,n,e){var r=e(5),o=e(19),i=e(20),a=e(60);t.exports=r?Object.defineProperties:function(t,n){i(t);for(var e,r=a(n),u=r.length,c=0;u>c;)o.f(t,e=r[c++],n[e]);return t}},function(t,n,e){var r=e(37),o=e(42);t.exports=Object.keys||function(t){return r(t,o)}},function(t,n,e){var r=e(34);t.exports=r("document","documentElement")},function(t,n,e){var r=e(2),o=e(63).every,i=e(66),a=e(67),u=i("every"),c=a("every");r({target:"Array",proto:!0,forced:!u||!c},{every:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(64),o=e(10),i=e(46),a=e(39),u=e(48),c=[].push,f=function(t){var n=1==t,e=2==t,f=3==t,s=4==t,l=6==t,p=5==t||l;return function(h,v,g,d){for(var y,x,m=i(h),b=o(m),S=r(v,g,3),E=a(b.length),w=0,O=d||u,R=n?O(h,E):e?O(h,0):void 0;E>w;w++)if((p||w in b)&&(x=S(y=b[w],w,m),t))if(n)R[w]=x;else if(x)switch(t){case 3:return!0;case 5:return y;case 6:return w;case 2:c.call(R,y)}else if(s)return!1;return l?-1:f||s?s:R}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6)}},function(t,n,e){var r=e(65);t.exports=function(t,n,e){if(r(t),void 0===n)return t;switch(e){case 0:return function(){return t.call(n)};case 1:return function(e){return t.call(n,e)};case 2:return function(e,r){return t.call(n,e,r)};case 3:return function(e,r,o){return t.call(n,e,r,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,n,e){var r=e(6);t.exports=function(t,n){var e=[][t];return!!e&&r((function(){e.call(null,n||function(){throw 1},1)}))}},function(t,n,e){var r=e(5),o=e(6),i=e(15),a=Object.defineProperty,u={},c=function(t){throw t};t.exports=function(t,n){if(i(u,t))return u[t];n||(n={});var e=[][t],f=!!i(n,"ACCESSORS")&&n.ACCESSORS,s=i(n,0)?n[0]:c,l=i(n,1)?n[1]:void 0;return u[t]=!!e&&!o((function(){if(f&&!r)return!0;var t={length:-1};f?a(t,1,{enumerable:!0,get:c}):t[1]=1,e.call(t,s,l)}))}},function(t,n,e){var r=e(2),o=e(69),i=e(57);r({target:"Array",proto:!0},{fill:o}),i("fill")},function(t,n,e){var r=e(46),o=e(41),i=e(39);t.exports=function(t){for(var n=r(this),e=i(n.length),a=arguments.length,u=o(a>1?arguments[1]:void 0,e),c=a>2?arguments[2]:void 0,f=void 0===c?e:o(c,e);f>u;)n[u++]=t;return n}},function(t,n,e){var r=e(2),o=e(63).filter,i=e(52),a=e(67),u=i("filter"),c=a("filter");r({target:"Array",proto:!0,forced:!u||!c},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(2),o=e(63).find,i=e(57),a=e(67),u=!0,c=a("find");"find"in[]&&Array(1).find((function(){u=!1})),r({target:"Array",proto:!0,forced:u||!c},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("find")},function(t,n,e){var r=e(2),o=e(63).findIndex,i=e(57),a=e(67),u=!0,c=a("findIndex");"findIndex"in[]&&Array(1).findIndex((function(){u=!1})),r({target:"Array",proto:!0,forced:u||!c},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findIndex")},function(t,n,e){var r=e(2),o=e(74),i=e(46),a=e(39),u=e(40),c=e(48);r({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,n=i(this),e=a(n.length),r=c(n,0);return r.length=o(r,n,n,e,0,void 0===t?1:u(t)),r}})},function(t,n,e){var r=e(45),o=e(39),i=e(64),a=function(t,n,e,u,c,f,s,l){for(var p,h=c,v=0,g=!!s&&i(s,l,3);v<u;){if(v in e){if(p=g?g(e[v],v,n):e[v],f>0&&r(p))h=a(t,n,p,o(p.length),h,f-1)-1;else{if(h>=9007199254740991)throw TypeError("Exceed the acceptable array length");t[h]=p}h++}v++}return h};t.exports=a},function(t,n,e){var r=e(2),o=e(74),i=e(46),a=e(39),u=e(65),c=e(48);r({target:"Array",proto:!0},{flatMap:function(t){var n,e=i(this),r=a(e.length);return u(t),(n=c(e,0)).length=o(n,e,e,r,0,1,t,arguments.length>1?arguments[1]:void 0),n}})},function(t,n,e){var r=e(2),o=e(77);r({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},function(t,n,e){var r=e(63).forEach,o=e(66),i=e(67),a=o("forEach"),u=i("forEach");t.exports=a&&u?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},function(t,n,e){var r=e(2),o=e(79);r({target:"Array",stat:!0,forced:!e(86)((function(t){Array.from(t)}))},{from:o})},function(t,n,e){var r=e(64),o=e(46),i=e(80),a=e(81),u=e(39),c=e(47),f=e(83);t.exports=function(t){var n,e,s,l,p,h,v=o(t),g="function"==typeof this?this:Array,d=arguments.length,y=d>1?arguments[1]:void 0,x=void 0!==y,m=f(v),b=0;if(x&&(y=r(y,d>2?arguments[2]:void 0,2)),null==m||g==Array&&a(m))for(e=new g(n=u(v.length));n>b;b++)h=x?y(v[b],b):v[b],c(e,b,h);else for(p=(l=m.call(v)).next,e=new g;!(s=p.call(l)).done;b++)h=x?i(l,y,[s.value,b],!0):s.value,c(e,b,h);return e.length=b,e}},function(t,n,e){var r=e(20);t.exports=function(t,n,e,o){try{return o?n(r(e)[0],e[1]):n(e)}catch(n){var i=t.return;throw void 0!==i&&r(i.call(t)),n}}},function(t,n,e){var r=e(49),o=e(82),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,n){t.exports={}},function(t,n,e){var r=e(84),o=e(82),i=e(49)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,n,e){var r=e(85),o=e(11),i=e(49)("toStringTag"),a="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var n,e,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?e:a?o(n):"Object"==(r=o(n))&&"function"==typeof n.callee?"Arguments":r}},function(t,n,e){var r={};r[e(49)("toStringTag")]="z",t.exports="[object z]"===String(r)},function(t,n,e){var r=e(49)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var e=!1;try{var i={};i[r]=function(){return{next:function(){return{done:e=!0}}}},t(i)}catch(t){}return e}},function(t,n,e){var r=e(2),o=e(38).includes,i=e(57);r({target:"Array",proto:!0,forced:!e(67)("indexOf",{ACCESSORS:!0,1:0})},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("includes")},function(t,n,e){var r=e(2),o=e(38).indexOf,i=e(66),a=e(67),u=[].indexOf,c=!!u&&1/[1].indexOf(1,-0)<0,f=i("indexOf"),s=a("indexOf",{ACCESSORS:!0,1:0});r({target:"Array",proto:!0,forced:c||!f||!s},{indexOf:function(t){return c?u.apply(this,arguments)||0:o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(9),o=e(57),i=e(82),a=e(25),u=e(90),c=a.set,f=a.getterFor("Array Iterator");t.exports=u(Array,"Array",(function(t,n){c(this,{type:"Array Iterator",target:r(t),index:0,kind:n})}),(function(){var t=f(this),n=t.target,e=t.kind,r=t.index++;return!n||r>=n.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:r,done:!1}:"values"==e?{value:n[r],done:!1}:{value:[r,n[r]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},function(t,n,e){var r=e(2),o=e(91),i=e(93),a=e(96),u=e(95),c=e(18),f=e(21),s=e(49),l=e(29),p=e(82),h=e(92),v=h.IteratorPrototype,g=h.BUGGY_SAFARI_ITERATORS,d=s("iterator"),y=function(){return this};t.exports=function(t,n,e,s,h,x,m){o(e,n,s);var b,S,E,w=function(t){if(t===h&&I)return I;if(!g&&t in A)return A[t];switch(t){case"keys":case"values":case"entries":return function(){return new e(this,t)}}return function(){return new e(this)}},O=n+" Iterator",R=!1,A=t.prototype,j=A[d]||A["@@iterator"]||h&&A[h],I=!g&&j||w(h),k="Array"==n&&A.entries||j;if(k&&(b=i(k.call(new t)),v!==Object.prototype&&b.next&&(l||i(b)===v||(a?a(b,v):"function"!=typeof b[d]&&c(b,d,y)),u(b,O,!0,!0),l&&(p[O]=y))),"values"==h&&j&&"values"!==j.name&&(R=!0,I=function(){return j.call(this)}),l&&!m||A[d]===I||c(A,d,I),p[n]=I,h)if(S={values:w("values"),keys:x?I:w("keys"),entries:w("entries")},m)for(E in S)(g||R||!(E in A))&&f(A,E,S[E]);else r({target:n,proto:!0,forced:g||R},S);return S}},function(t,n,e){var r=e(92).IteratorPrototype,o=e(58),i=e(8),a=e(95),u=e(82),c=function(){return this};t.exports=function(t,n,e){var f=n+" Iterator";return t.prototype=o(r,{next:i(1,e)}),a(t,f,!1,!0),u[f]=c,t}},function(t,n,e){var r,o,i,a=e(93),u=e(18),c=e(15),f=e(49),s=e(29),l=f("iterator"),p=!1;[].keys&&("next"in(i=[].keys())?(o=a(a(i)))!==Object.prototype&&(r=o):p=!0),null==r&&(r={}),s||c(r,l)||u(r,l,(function(){return this})),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:p}},function(t,n,e){var r=e(15),o=e(46),i=e(27),a=e(94),u=i("IE_PROTO"),c=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){return t=o(t),r(t,u)?t[u]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?c:null}},function(t,n,e){var r=e(6);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,n,e){var r=e(19).f,o=e(15),i=e(49)("toStringTag");t.exports=function(t,n,e){t&&!o(t=e?t:t.prototype,i)&&r(t,i,{configurable:!0,value:n})}},function(t,n,e){var r=e(20),o=e(97);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,n=!1,e={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(e,[]),n=e instanceof Array}catch(t){}return function(e,i){return r(e),o(i),n?t.call(e,i):e.__proto__=i,e}}():void 0)},function(t,n,e){var r=e(14);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,n,e){var r=e(2),o=e(10),i=e(9),a=e(66),u=[].join,c=o!=Object,f=a("join",",");r({target:"Array",proto:!0,forced:c||!f},{join:function(t){return u.call(i(this),void 0===t?",":t)}})},function(t,n,e){var r=e(2),o=e(100);r({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},function(t,n,e){var r=e(9),o=e(40),i=e(39),a=e(66),u=e(67),c=Math.min,f=[].lastIndexOf,s=!!f&&1/[1].lastIndexOf(1,-0)<0,l=a("lastIndexOf"),p=u("indexOf",{ACCESSORS:!0,1:0}),h=s||!l||!p;t.exports=h?function(t){if(s)return f.apply(this,arguments)||0;var n=r(this),e=i(n.length),a=e-1;for(arguments.length>1&&(a=c(a,o(arguments[1]))),a<0&&(a=e+a);a>=0;a--)if(a in n&&n[a]===t)return a||0;return-1}:f},function(t,n,e){var r=e(2),o=e(63).map,i=e(52),a=e(67),u=i("map"),c=a("map");r({target:"Array",proto:!0,forced:!u||!c},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(2),o=e(6),i=e(47);r({target:"Array",stat:!0,forced:o((function(){function t(){}return!(Array.of.call(t)instanceof t)}))},{of:function(){for(var t=0,n=arguments.length,e=new("function"==typeof this?this:Array)(n);n>t;)i(e,t,arguments[t++]);return e.length=n,e}})},function(t,n,e){var r=e(2),o=e(104).left,i=e(66),a=e(67),u=i("reduce"),c=a("reduce",{1:0});r({target:"Array",proto:!0,forced:!u||!c},{reduce:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(65),o=e(46),i=e(10),a=e(39),u=function(t){return function(n,e,u,c){r(e);var f=o(n),s=i(f),l=a(f.length),p=t?l-1:0,h=t?-1:1;if(u<2)for(;;){if(p in s){c=s[p],p+=h;break}if(p+=h,t?p<0:l<=p)throw TypeError("Reduce of empty array with no initial value")}for(;t?p>=0:l>p;p+=h)p in s&&(c=e(c,s[p],p,f));return c}};t.exports={left:u(!1),right:u(!0)}},function(t,n,e){var r=e(2),o=e(104).right,i=e(66),a=e(67),u=i("reduceRight"),c=a("reduce",{1:0});r({target:"Array",proto:!0,forced:!u||!c},{reduceRight:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(2),o=e(14),i=e(45),a=e(41),u=e(39),c=e(9),f=e(47),s=e(49),l=e(52),p=e(67),h=l("slice"),v=p("slice",{ACCESSORS:!0,0:0,1:2}),g=s("species"),d=[].slice,y=Math.max;r({target:"Array",proto:!0,forced:!h||!v},{slice:function(t,n){var e,r,s,l=c(this),p=u(l.length),h=a(t,p),v=a(void 0===n?p:n,p);if(i(l)&&("function"!=typeof(e=l.constructor)||e!==Array&&!i(e.prototype)?o(e)&&null===(e=e[g])&&(e=void 0):e=void 0,e===Array||void 0===e))return d.call(l,h,v);for(r=new(void 0===e?Array:e)(y(v-h,0)),s=0;h<v;h++,s++)h in l&&f(r,s,l[h]);return r.length=s,r}})},function(t,n,e){var r=e(2),o=e(63).some,i=e(66),a=e(67),u=i("some"),c=a("some");r({target:"Array",proto:!0,forced:!u||!c},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){e(109)("Array")},function(t,n,e){var r=e(34),o=e(19),i=e(49),a=e(5),u=i("species");t.exports=function(t){var n=r(t),e=o.f;a&&n&&!n[u]&&e(n,u,{configurable:!0,get:function(){return this}})}},function(t,n,e){var r=e(2),o=e(41),i=e(40),a=e(39),u=e(46),c=e(48),f=e(47),s=e(52),l=e(67),p=s("splice"),h=l("splice",{ACCESSORS:!0,0:0,1:2}),v=Math.max,g=Math.min;r({target:"Array",proto:!0,forced:!p||!h},{splice:function(t,n){var e,r,s,l,p,h,d=u(this),y=a(d.length),x=o(t,y),m=arguments.length;if(0===m?e=r=0:1===m?(e=0,r=y-x):(e=m-2,r=g(v(i(n),0),y-x)),y+e-r>9007199254740991)throw TypeError("Maximum allowed length exceeded");for(s=c(d,r),l=0;l<r;l++)(p=x+l)in d&&f(s,l,d[p]);if(s.length=r,e<r){for(l=x;l<y-r;l++)h=l+e,(p=l+r)in d?d[h]=d[p]:delete d[h];for(l=y;l>y-r+e;l--)delete d[l-1]}else if(e>r)for(l=y-r;l>x;l--)h=l+e-1,(p=l+r-1)in d?d[h]=d[p]:delete d[h];for(l=0;l<e;l++)d[l+x]=arguments[l+2];return d.length=y-r+e,s}})},function(t,n,e){e(57)("flat")},function(t,n,e){e(57)("flatMap")},function(t,n,e){var r=e(14),o=e(19),i=e(93),a=e(49)("hasInstance"),u=Function.prototype;a in u||o.f(u,a,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},function(t,n,e){var r=e(5),o=e(19).f,i=Function.prototype,a=i.toString,u=/^\s*function ([^ (]*)/;r&&!("name"in i)&&o(i,"name",{configurable:!0,get:function(){try{return a.call(this).match(u)[1]}catch(t){return""}}})},function(t,n,e){e(2)({global:!0},{globalThis:e(3)})},function(t,n,e){var r=e(2),o=e(34),i=e(6),a=o("JSON","stringify"),u=/[\uD800-\uDFFF]/g,c=/^[\uD800-\uDBFF]$/,f=/^[\uDC00-\uDFFF]$/,s=function(t,n,e){var r=e.charAt(n-1),o=e.charAt(n+1);return c.test(t)&&!f.test(o)||f.test(t)&&!c.test(r)?"\\u"+t.charCodeAt(0).toString(16):t},l=i((function(){return'"\\udf06\\ud834"'!==a("\udf06\ud834")||'"\\udead"'!==a("\udead")}));a&&r({target:"JSON",stat:!0,forced:l},{stringify:function(t,n,e){var r=a.apply(null,arguments);return"string"==typeof r?r.replace(u,s):r}})},function(t,n,e){var r=e(3);e(95)(r.JSON,"JSON",!0)},function(t,n,e){var r=e(119),o=e(125);t.exports=r("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,n,e){var r=e(2),o=e(3),i=e(44),a=e(21),u=e(120),c=e(122),f=e(123),s=e(14),l=e(6),p=e(86),h=e(95),v=e(124);t.exports=function(t,n,e){var g=-1!==t.indexOf("Map"),d=-1!==t.indexOf("Weak"),y=g?"set":"add",x=o[t],m=x&&x.prototype,b=x,S={},E=function(t){var n=m[t];a(m,t,"add"==t?function(t){return n.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(d&&!s(t))&&n.call(this,0===t?0:t)}:"get"==t?function(t){return d&&!s(t)?void 0:n.call(this,0===t?0:t)}:"has"==t?function(t){return!(d&&!s(t))&&n.call(this,0===t?0:t)}:function(t,e){return n.call(this,0===t?0:t,e),this})};if(i(t,"function"!=typeof x||!(d||m.forEach&&!l((function(){(new x).entries().next()})))))b=e.getConstructor(n,t,g,y),u.REQUIRED=!0;else if(i(t,!0)){var w=new b,O=w[y](d?{}:-0,1)!=w,R=l((function(){w.has(1)})),A=p((function(t){new x(t)})),j=!d&&l((function(){for(var t=new x,n=5;n--;)t[y](n,n);return!t.has(-0)}));A||((b=n((function(n,e){f(n,b,t);var r=v(new x,n,b);return null!=e&&c(e,r[y],r,g),r}))).prototype=m,m.constructor=b),(R||j)&&(E("delete"),E("has"),g&&E("get")),(j||O)&&E(y),d&&m.clear&&delete m.clear}return S[t]=b,r({global:!0,forced:b!=x},S),h(b,t),d||e.setStrong(b,t,g),b}},function(t,n,e){var r=e(31),o=e(14),i=e(15),a=e(19).f,u=e(30),c=e(121),f=u("meta"),s=0,l=Object.isExtensible||function(){return!0},p=function(t){a(t,f,{value:{objectID:"O"+ ++s,weakData:{}}})},h=t.exports={REQUIRED:!1,fastKey:function(t,n){if(!o(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!i(t,f)){if(!l(t))return"F";if(!n)return"E";p(t)}return t[f].objectID},getWeakData:function(t,n){if(!i(t,f)){if(!l(t))return!0;if(!n)return!1;p(t)}return t[f].weakData},onFreeze:function(t){return c&&h.REQUIRED&&l(t)&&!i(t,f)&&p(t),t}};r[f]=!0},function(t,n,e){var r=e(6);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,n,e){var r=e(20),o=e(81),i=e(39),a=e(64),u=e(83),c=e(80),f=function(t,n){this.stopped=t,this.result=n};(t.exports=function(t,n,e,s,l){var p,h,v,g,d,y,x,m=a(n,e,s?2:1);if(l)p=t;else{if("function"!=typeof(h=u(t)))throw TypeError("Target is not iterable");if(o(h)){for(v=0,g=i(t.length);g>v;v++)if((d=s?m(r(x=t[v])[0],x[1]):m(t[v]))&&d instanceof f)return d;return new f(!1)}p=h.call(t)}for(y=p.next;!(x=y.call(p)).done;)if("object"==typeof(d=c(p,m,x.value,s))&&d&&d instanceof f)return d;return new f(!1)}).stop=function(t){return new f(!0,t)}},function(t,n){t.exports=function(t,n,e){if(!(t instanceof n))throw TypeError("Incorrect "+(e?e+" ":"")+"invocation");return t}},function(t,n,e){var r=e(14),o=e(96);t.exports=function(t,n,e){var i,a;return o&&"function"==typeof(i=n.constructor)&&i!==e&&r(a=i.prototype)&&a!==e.prototype&&o(t,a),t}},function(t,n,e){var r=e(19).f,o=e(58),i=e(126),a=e(64),u=e(123),c=e(122),f=e(90),s=e(109),l=e(5),p=e(120).fastKey,h=e(25),v=h.set,g=h.getterFor;t.exports={getConstructor:function(t,n,e,f){var s=t((function(t,r){u(t,s,n),v(t,{type:n,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&c(r,t[f],t,e)})),h=g(n),d=function(t,n,e){var r,o,i=h(t),a=y(t,n);return a?a.value=e:(i.last=a={index:o=p(n,!0),key:n,value:e,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},y=function(t,n){var e,r=h(t),o=p(n);if("F"!==o)return r.index[o];for(e=r.first;e;e=e.next)if(e.key==n)return e};return i(s.prototype,{clear:function(){for(var t=h(this),n=t.index,e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=void 0),delete n[e.index],e=e.next;t.first=t.last=void 0,l?t.size=0:this.size=0},delete:function(t){var n=h(this),e=y(this,t);if(e){var r=e.next,o=e.previous;delete n.index[e.index],e.removed=!0,o&&(o.next=r),r&&(r.previous=o),n.first==e&&(n.first=r),n.last==e&&(n.last=o),l?n.size--:this.size--}return!!e},forEach:function(t){for(var n,e=h(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);n=n?n.next:e.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(t){return!!y(this,t)}}),i(s.prototype,e?{get:function(t){var n=y(this,t);return n&&n.value},set:function(t,n){return d(this,0===t?0:t,n)}}:{add:function(t){return d(this,t=0===t?0:t,t)}}),l&&r(s.prototype,"size",{get:function(){return h(this).size}}),s},setStrong:function(t,n,e){var r=n+" Iterator",o=g(n),i=g(r);f(t,n,(function(t,n){v(this,{type:r,target:t,state:o(t),kind:n,last:void 0})}),(function(){for(var t=i(this),n=t.kind,e=t.last;e&&e.removed;)e=e.previous;return t.target&&(t.last=e=e?e.next:t.state.first)?"keys"==n?{value:e.key,done:!1}:"values"==n?{value:e.value,done:!1}:{value:[e.key,e.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),e?"entries":"values",!e,!0),s(n)}}},function(t,n,e){var r=e(21);t.exports=function(t,n,e){for(var o in n)r(t,o,n[o],e);return t}},function(t,n,e){var r=e(5),o=e(3),i=e(44),a=e(21),u=e(15),c=e(11),f=e(124),s=e(13),l=e(6),p=e(58),h=e(36).f,v=e(4).f,g=e(19).f,d=e(128).trim,y=o.Number,x=y.prototype,m="Number"==c(p(x)),b=function(t){var n,e,r,o,i,a,u,c,f=s(t,!1);if("string"==typeof f&&f.length>2)if(43===(n=(f=d(f)).charCodeAt(0))||45===n){if(88===(e=f.charCodeAt(2))||120===e)return NaN}else if(48===n){switch(f.charCodeAt(1)){case 66:case 98:r=2,o=49;break;case 79:case 111:r=8,o=55;break;default:return+f}for(a=(i=f.slice(2)).length,u=0;u<a;u++)if((c=i.charCodeAt(u))<48||c>o)return NaN;return parseInt(i,r)}return+f};if(i("Number",!y(" 0o1")||!y("0b1")||y("+0x1"))){for(var S,E=function(t){var n=arguments.length<1?0:t,e=this;return e instanceof E&&(m?l((function(){x.valueOf.call(e)})):"Number"!=c(e))?f(new y(b(n)),e,E):b(n)},w=r?h(y):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),O=0;w.length>O;O++)u(y,S=w[O])&&!u(E,S)&&g(E,S,v(y,S));E.prototype=x,x.constructor=E,a(o,"Number",E)}},function(t,n,e){var r=e(12),o="["+e(129)+"]",i=RegExp("^"+o+o+"*"),a=RegExp(o+o+"*$"),u=function(t){return function(n){var e=String(r(n));return 1&t&&(e=e.replace(i,"")),2&t&&(e=e.replace(a,"")),e}};t.exports={start:u(1),end:u(2),trim:u(3)}},function(t,n){t.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},function(t,n,e){e(2)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},function(t,n,e){e(2)({target:"Number",stat:!0},{isFinite:e(132)})},function(t,n,e){var r=e(3).isFinite;t.exports=Number.isFinite||function(t){return"number"==typeof t&&r(t)}},function(t,n,e){e(2)({target:"Number",stat:!0},{isInteger:e(134)})},function(t,n,e){var r=e(14),o=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&o(t)===t}},function(t,n,e){e(2)({target:"Number",stat:!0},{isNaN:function(t){return t!=t}})},function(t,n,e){var r=e(2),o=e(134),i=Math.abs;r({target:"Number",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},function(t,n,e){e(2)({target:"Number",stat:!0},{MAX_SAFE_INTEGER:9007199254740991})},function(t,n,e){e(2)({target:"Number",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991})},function(t,n,e){var r=e(2),o=e(140);r({target:"Number",stat:!0,forced:Number.parseFloat!=o},{parseFloat:o})},function(t,n,e){var r=e(3),o=e(128).trim,i=e(129),a=r.parseFloat,u=1/a(i+"-0")!=-1/0;t.exports=u?function(t){var n=o(String(t)),e=a(n);return 0===e&&"-"==n.charAt(0)?-0:e}:a},function(t,n,e){var r=e(2),o=e(142);r({target:"Number",stat:!0,forced:Number.parseInt!=o},{parseInt:o})},function(t,n,e){var r=e(3),o=e(128).trim,i=e(129),a=r.parseInt,u=/^[+-]?0[Xx]/,c=8!==a(i+"08")||22!==a(i+"0x16");t.exports=c?function(t,n){var e=o(String(t));return a(e,n>>>0||(u.test(e)?16:10))}:a},function(t,n,e){var r=e(2),o=e(40),i=e(144),a=e(145),u=e(6),c=1..toFixed,f=Math.floor,s=function(t,n,e){return 0===n?e:n%2==1?s(t,n-1,e*t):s(t*t,n/2,e)};r({target:"Number",proto:!0,forced:c&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!u((function(){c.call({})}))},{toFixed:function(t){var n,e,r,u,c=i(this),l=o(t),p=[0,0,0,0,0,0],h="",v="0",g=function(t,n){for(var e=-1,r=n;++e<6;)r+=t*p[e],p[e]=r%1e7,r=f(r/1e7)},d=function(t){for(var n=6,e=0;--n>=0;)e+=p[n],p[n]=f(e/t),e=e%t*1e7},y=function(){for(var t=6,n="";--t>=0;)if(""!==n||0===t||0!==p[t]){var e=String(p[t]);n=""===n?e:n+a.call("0",7-e.length)+e}return n};if(l<0||l>20)throw RangeError("Incorrect fraction digits");if(c!=c)return"NaN";if(c<=-1e21||c>=1e21)return String(c);if(c<0&&(h="-",c=-c),c>1e-21)if(e=(n=function(t){for(var n=0,e=t;e>=4096;)n+=12,e/=4096;for(;e>=2;)n+=1,e/=2;return n}(c*s(2,69,1))-69)<0?c*s(2,-n,1):c/s(2,n,1),e*=4503599627370496,(n=52-n)>0){for(g(0,e),r=l;r>=7;)g(1e7,0),r-=7;for(g(s(10,r,1),0),r=n-1;r>=23;)d(1<<23),r-=23;d(1<<r),g(1,1),d(2),v=y()}else g(0,e),g(1<<-n,0),v=y()+a.call("0",l);return v=l>0?h+((u=v.length)<=l?"0."+a.call("0",l-u)+v:v.slice(0,u-l)+"."+v.slice(u-l)):h+v}})},function(t,n,e){var r=e(11);t.exports=function(t){if("number"!=typeof t&&"Number"!=r(t))throw TypeError("Incorrect invocation");return+t}},function(t,n,e){var r=e(40),o=e(12);t.exports="".repeat||function(t){var n=String(o(this)),e="",i=r(t);if(i<0||i==1/0)throw RangeError("Wrong number of repetitions");for(;i>0;(i>>>=1)&&(n+=n))1&i&&(e+=n);return e}},function(t,n,e){var r=e(2),o=e(147);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,n,e){var r=e(5),o=e(6),i=e(60),a=e(43),u=e(7),c=e(46),f=e(10),s=Object.assign,l=Object.defineProperty;t.exports=!s||o((function(){if(r&&1!==s({b:1},s(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},n={},e=Symbol();return t[e]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){n[t]=t})),7!=s({},t)[e]||"abcdefghijklmnopqrst"!=i(s({},n)).join("")}))?function(t,n){for(var e=c(t),o=arguments.length,s=1,l=a.f,p=u.f;o>s;)for(var h,v=f(arguments[s++]),g=l?i(v).concat(l(v)):i(v),d=g.length,y=0;d>y;)h=g[y++],r&&!p.call(v,h)||(e[h]=v[h]);return e}:s},function(t,n,e){var r=e(2),o=e(5),i=e(149),a=e(46),u=e(65),c=e(19);o&&r({target:"Object",proto:!0,forced:i},{__defineGetter__:function(t,n){c.f(a(this),t,{get:u(n),enumerable:!0,configurable:!0})}})},function(t,n,e){var r=e(29),o=e(3),i=e(6);t.exports=r||!i((function(){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}))},function(t,n,e){var r=e(2),o=e(5),i=e(149),a=e(46),u=e(65),c=e(19);o&&r({target:"Object",proto:!0,forced:i},{__defineSetter__:function(t,n){c.f(a(this),t,{set:u(n),enumerable:!0,configurable:!0})}})},function(t,n,e){var r=e(2),o=e(152).entries;r({target:"Object",stat:!0},{entries:function(t){return o(t)}})},function(t,n,e){var r=e(5),o=e(60),i=e(9),a=e(7).f,u=function(t){return function(n){for(var e,u=i(n),c=o(u),f=c.length,s=0,l=[];f>s;)e=c[s++],r&&!a.call(u,e)||l.push(t?[e,u[e]]:u[e]);return l}};t.exports={entries:u(!0),values:u(!1)}},function(t,n,e){var r=e(2),o=e(121),i=e(6),a=e(14),u=e(120).onFreeze,c=Object.freeze;r({target:"Object",stat:!0,forced:i((function(){c(1)})),sham:!o},{freeze:function(t){return c&&a(t)?c(u(t)):t}})},function(t,n,e){var r=e(2),o=e(122),i=e(47);r({target:"Object",stat:!0},{fromEntries:function(t){var n={};return o(t,(function(t,e){i(n,t,e)}),void 0,!0),n}})},function(t,n,e){var r=e(2),o=e(6),i=e(9),a=e(4).f,u=e(5),c=o((function(){a(1)}));r({target:"Object",stat:!0,forced:!u||c,sham:!u},{getOwnPropertyDescriptor:function(t,n){return a(i(t),n)}})},function(t,n,e){var r=e(2),o=e(5),i=e(33),a=e(9),u=e(4),c=e(47);r({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var n,e,r=a(t),o=u.f,f=i(r),s={},l=0;f.length>l;)void 0!==(e=o(r,n=f[l++]))&&c(s,n,e);return s}})},function(t,n,e){var r=e(2),o=e(6),i=e(158).f;r({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},function(t,n,e){var r=e(9),o=e(36).f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return a&&"[object Window]"==i.call(t)?function(t){try{return o(t)}catch(t){return a.slice()}}(t):o(r(t))}},function(t,n,e){var r=e(2),o=e(6),i=e(46),a=e(93),u=e(94);r({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!u},{getPrototypeOf:function(t){return a(i(t))}})},function(t,n,e){e(2)({target:"Object",stat:!0},{is:e(161)})},function(t,n){t.exports=Object.is||function(t,n){return t===n?0!==t||1/t==1/n:t!=t&&n!=n}},function(t,n,e){var r=e(2),o=e(6),i=e(14),a=Object.isExtensible;r({target:"Object",stat:!0,forced:o((function(){a(1)}))},{isExtensible:function(t){return!!i(t)&&(!a||a(t))}})},function(t,n,e){var r=e(2),o=e(6),i=e(14),a=Object.isFrozen;r({target:"Object",stat:!0,forced:o((function(){a(1)}))},{isFrozen:function(t){return!i(t)||!!a&&a(t)}})},function(t,n,e){var r=e(2),o=e(6),i=e(14),a=Object.isSealed;r({target:"Object",stat:!0,forced:o((function(){a(1)}))},{isSealed:function(t){return!i(t)||!!a&&a(t)}})},function(t,n,e){var r=e(2),o=e(46),i=e(60);r({target:"Object",stat:!0,forced:e(6)((function(){i(1)}))},{keys:function(t){return i(o(t))}})},function(t,n,e){var r=e(2),o=e(5),i=e(149),a=e(46),u=e(13),c=e(93),f=e(4).f;o&&r({target:"Object",proto:!0,forced:i},{__lookupGetter__:function(t){var n,e=a(this),r=u(t,!0);do{if(n=f(e,r))return n.get}while(e=c(e))}})},function(t,n,e){var r=e(2),o=e(5),i=e(149),a=e(46),u=e(13),c=e(93),f=e(4).f;o&&r({target:"Object",proto:!0,forced:i},{__lookupSetter__:function(t){var n,e=a(this),r=u(t,!0);do{if(n=f(e,r))return n.set}while(e=c(e))}})},function(t,n,e){var r=e(2),o=e(14),i=e(120).onFreeze,a=e(121),u=e(6),c=Object.preventExtensions;r({target:"Object",stat:!0,forced:u((function(){c(1)})),sham:!a},{preventExtensions:function(t){return c&&o(t)?c(i(t)):t}})},function(t,n,e){var r=e(2),o=e(14),i=e(120).onFreeze,a=e(121),u=e(6),c=Object.seal;r({target:"Object",stat:!0,forced:u((function(){c(1)})),sham:!a},{seal:function(t){return c&&o(t)?c(i(t)):t}})},function(t,n,e){var r=e(85),o=e(21),i=e(171);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,n,e){var r=e(85),o=e(84);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,n,e){var r=e(2),o=e(152).values;r({target:"Object",stat:!0},{values:function(t){return o(t)}})},function(t,n,e){var r,o,i,a,u=e(2),c=e(29),f=e(3),s=e(34),l=e(174),p=e(21),h=e(126),v=e(95),g=e(109),d=e(14),y=e(65),x=e(123),m=e(11),b=e(23),S=e(122),E=e(86),w=e(175),O=e(176).set,R=e(178),A=e(179),j=e(181),I=e(180),k=e(182),P=e(25),L=e(44),T=e(49),_=e(53),U=T("species"),N="Promise",C=P.get,F=P.set,M=P.getterFor(N),z=l,D=f.TypeError,q=f.document,B=f.process,W=s("fetch"),$=I.f,G=$,V="process"==m(B),X=!!(q&&q.createEvent&&f.dispatchEvent),Y=L(N,(function(){if(!(b(z)!==String(z))){if(66===_)return!0;if(!V&&"function"!=typeof PromiseRejectionEvent)return!0}if(c&&!z.prototype.finally)return!0;if(_>=51&&/native code/.test(z))return!1;var t=z.resolve(1),n=function(t){t((function(){}),(function(){}))};return(t.constructor={})[U]=n,!(t.then((function(){}))instanceof n)})),K=Y||!E((function(t){z.all(t).catch((function(){}))})),J=function(t){var n;return!(!d(t)||"function"!=typeof(n=t.then))&&n},H=function(t,n,e){if(!n.notified){n.notified=!0;var r=n.reactions;R((function(){for(var o=n.value,i=1==n.state,a=0;r.length>a;){var u,c,f,s=r[a++],l=i?s.ok:s.fail,p=s.resolve,h=s.reject,v=s.domain;try{l?(i||(2===n.rejection&&nt(t,n),n.rejection=1),!0===l?u=o:(v&&v.enter(),u=l(o),v&&(v.exit(),f=!0)),u===s.promise?h(D("Promise-chain cycle")):(c=J(u))?c.call(u,p,h):p(u)):h(o)}catch(t){v&&!f&&v.exit(),h(t)}}n.reactions=[],n.notified=!1,e&&!n.rejection&&Z(t,n)}))}},Q=function(t,n,e){var r,o;X?((r=q.createEvent("Event")).promise=n,r.reason=e,r.initEvent(t,!1,!0),f.dispatchEvent(r)):r={promise:n,reason:e},(o=f["on"+t])?o(r):"unhandledrejection"===t&&j("Unhandled promise rejection",e)},Z=function(t,n){O.call(f,(function(){var e,r=n.value;if(tt(n)&&(e=k((function(){V?B.emit("unhandledRejection",r,t):Q("unhandledrejection",t,r)})),n.rejection=V||tt(n)?2:1,e.error))throw e.value}))},tt=function(t){return 1!==t.rejection&&!t.parent},nt=function(t,n){O.call(f,(function(){V?B.emit("rejectionHandled",t):Q("rejectionhandled",t,n.value)}))},et=function(t,n,e,r){return function(o){t(n,e,o,r)}},rt=function(t,n,e,r){n.done||(n.done=!0,r&&(n=r),n.value=e,n.state=2,H(t,n,!0))},ot=function(t,n,e,r){if(!n.done){n.done=!0,r&&(n=r);try{if(t===e)throw D("Promise can't be resolved itself");var o=J(e);o?R((function(){var r={done:!1};try{o.call(e,et(ot,t,r,n),et(rt,t,r,n))}catch(e){rt(t,r,e,n)}})):(n.value=e,n.state=1,H(t,n,!1))}catch(e){rt(t,{done:!1},e,n)}}};Y&&(z=function(t){x(this,z,N),y(t),r.call(this);var n=C(this);try{t(et(ot,this,n),et(rt,this,n))}catch(t){rt(this,n,t)}},(r=function(t){F(this,{type:N,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=h(z.prototype,{then:function(t,n){var e=M(this),r=$(w(this,z));return r.ok="function"!=typeof t||t,r.fail="function"==typeof n&&n,r.domain=V?B.domain:void 0,e.parent=!0,e.reactions.push(r),0!=e.state&&H(this,e,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r,n=C(t);this.promise=t,this.resolve=et(ot,t,n),this.reject=et(rt,t,n)},I.f=$=function(t){return t===z||t===i?new o(t):G(t)},c||"function"!=typeof l||(a=l.prototype.then,p(l.prototype,"then",(function(t,n){var e=this;return new z((function(t,n){a.call(e,t,n)})).then(t,n)}),{unsafe:!0}),"function"==typeof W&&u({global:!0,enumerable:!0,forced:!0},{fetch:function(t){return A(z,W.apply(f,arguments))}}))),u({global:!0,wrap:!0,forced:Y},{Promise:z}),v(z,N,!1,!0),g(N),i=s(N),u({target:N,stat:!0,forced:Y},{reject:function(t){var n=$(this);return n.reject.call(void 0,t),n.promise}}),u({target:N,stat:!0,forced:c||Y},{resolve:function(t){return A(c&&this===i?z:this,t)}}),u({target:N,stat:!0,forced:K},{all:function(t){var n=this,e=$(n),r=e.resolve,o=e.reject,i=k((function(){var e=y(n.resolve),i=[],a=0,u=1;S(t,(function(t){var c=a++,f=!1;i.push(void 0),u++,e.call(n,t).then((function(t){f||(f=!0,i[c]=t,--u||r(i))}),o)})),--u||r(i)}));return i.error&&o(i.value),e.promise},race:function(t){var n=this,e=$(n),r=e.reject,o=k((function(){var o=y(n.resolve);S(t,(function(t){o.call(n,t).then(e.resolve,r)}))}));return o.error&&r(o.value),e.promise}})},function(t,n,e){var r=e(3);t.exports=r.Promise},function(t,n,e){var r=e(20),o=e(65),i=e(49)("species");t.exports=function(t,n){var e,a=r(t).constructor;return void 0===a||null==(e=r(a)[i])?n:o(e)}},function(t,n,e){var r,o,i,a=e(3),u=e(6),c=e(11),f=e(64),s=e(61),l=e(17),p=e(177),h=a.location,v=a.setImmediate,g=a.clearImmediate,d=a.process,y=a.MessageChannel,x=a.Dispatch,m=0,b={},S=function(t){if(b.hasOwnProperty(t)){var n=b[t];delete b[t],n()}},E=function(t){return function(){S(t)}},w=function(t){S(t.data)},O=function(t){a.postMessage(t+"",h.protocol+"//"+h.host)};v&&g||(v=function(t){for(var n=[],e=1;arguments.length>e;)n.push(arguments[e++]);return b[++m]=function(){("function"==typeof t?t:Function(t)).apply(void 0,n)},r(m),m},g=function(t){delete b[t]},"process"==c(d)?r=function(t){d.nextTick(E(t))}:x&&x.now?r=function(t){x.now(E(t))}:y&&!p?(i=(o=new y).port2,o.port1.onmessage=w,r=f(i.postMessage,i,1)):!a.addEventListener||"function"!=typeof postMessage||a.importScripts||u(O)||"file:"===h.protocol?r="onreadystatechange"in l("script")?function(t){s.appendChild(l("script")).onreadystatechange=function(){s.removeChild(this),S(t)}}:function(t){setTimeout(E(t),0)}:(r=O,a.addEventListener("message",w,!1))),t.exports={set:v,clear:g}},function(t,n,e){var r=e(54);t.exports=/(iphone|ipod|ipad).*applewebkit/i.test(r)},function(t,n,e){var r,o,i,a,u,c,f,s,l=e(3),p=e(4).f,h=e(11),v=e(176).set,g=e(177),d=l.MutationObserver||l.WebKitMutationObserver,y=l.process,x=l.Promise,m="process"==h(y),b=p(l,"queueMicrotask"),S=b&&b.value;S||(r=function(){var t,n;for(m&&(t=y.domain)&&t.exit();o;){n=o.fn,o=o.next;try{n()}catch(t){throw o?a():i=void 0,t}}i=void 0,t&&t.enter()},m?a=function(){y.nextTick(r)}:d&&!g?(u=!0,c=document.createTextNode(""),new d(r).observe(c,{characterData:!0}),a=function(){c.data=u=!u}):x&&x.resolve?(f=x.resolve(void 0),s=f.then,a=function(){s.call(f,r)}):a=function(){v.call(l,r)}),t.exports=S||function(t){var n={fn:t,next:void 0};i&&(i.next=n),o||(o=n,a()),i=n}},function(t,n,e){var r=e(20),o=e(14),i=e(180);t.exports=function(t,n){if(r(t),o(n)&&n.constructor===t)return n;var e=i.f(t);return(0,e.resolve)(n),e.promise}},function(t,n,e){var r=e(65),o=function(t){var n,e;this.promise=new t((function(t,r){if(void 0!==n||void 0!==e)throw TypeError("Bad Promise constructor");n=t,e=r})),this.resolve=r(n),this.reject=r(e)};t.exports.f=function(t){return new o(t)}},function(t,n,e){var r=e(3);t.exports=function(t,n){var e=r.console;e&&e.error&&(1===arguments.length?e.error(t):e.error(t,n))}},function(t,n){t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},function(t,n,e){var r=e(2),o=e(65),i=e(180),a=e(182),u=e(122);r({target:"Promise",stat:!0},{allSettled:function(t){var n=this,e=i.f(n),r=e.resolve,c=e.reject,f=a((function(){var e=o(n.resolve),i=[],a=0,c=1;u(t,(function(t){var o=a++,u=!1;i.push(void 0),c++,e.call(n,t).then((function(t){u||(u=!0,i[o]={status:"fulfilled",value:t},--c||r(i))}),(function(t){u||(u=!0,i[o]={status:"rejected",reason:t},--c||r(i))}))})),--c||r(i)}));return f.error&&c(f.value),e.promise}})},function(t,n,e){var r=e(2),o=e(29),i=e(174),a=e(6),u=e(34),c=e(175),f=e(179),s=e(21);r({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){i.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var n=c(this,u("Promise")),e="function"==typeof t;return this.then(e?function(e){return f(n,t()).then((function(){return e}))}:t,e?function(e){return f(n,t()).then((function(){throw e}))}:t)}}),o||"function"!=typeof i||i.prototype.finally||s(i.prototype,"finally",u("Promise").prototype.finally)},function(t,n,e){var r=e(5),o=e(3),i=e(44),a=e(124),u=e(19).f,c=e(36).f,f=e(186),s=e(187),l=e(188),p=e(21),h=e(6),v=e(25).set,g=e(109),d=e(49)("match"),y=o.RegExp,x=y.prototype,m=/a/g,b=/a/g,S=new y(m)!==m,E=l.UNSUPPORTED_Y;if(r&&i("RegExp",!S||E||h((function(){return b[d]=!1,y(m)!=m||y(b)==b||"/a/i"!=y(m,"i")})))){for(var w=function(t,n){var e,r=this instanceof w,o=f(t),i=void 0===n;if(!r&&o&&t.constructor===w&&i)return t;S?o&&!i&&(t=t.source):t instanceof w&&(i&&(n=s.call(t)),t=t.source),E&&(e=!!n&&n.indexOf("y")>-1)&&(n=n.replace(/y/g,""));var u=a(S?new y(t,n):y(t,n),r?this:x,w);return E&&e&&v(u,{sticky:e}),u},O=function(t){t in w||u(w,t,{configurable:!0,get:function(){return y[t]},set:function(n){y[t]=n}})},R=c(y),A=0;R.length>A;)O(R[A++]);x.constructor=w,w.prototype=x,p(o,"RegExp",w)}g("RegExp")},function(t,n,e){var r=e(14),o=e(11),i=e(49)("match");t.exports=function(t){var n;return r(t)&&(void 0!==(n=t[i])?!!n:"RegExp"==o(t))}},function(t,n,e){var r=e(20);t.exports=function(){var t=r(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.dotAll&&(n+="s"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},function(t,n,e){var r=e(6);function o(t,n){return RegExp(t,n)}n.UNSUPPORTED_Y=r((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),n.BROKEN_CARET=r((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},function(t,n,e){var r=e(2),o=e(190);r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},function(t,n,e){var r,o,i=e(187),a=e(188),u=RegExp.prototype.exec,c=String.prototype.replace,f=u,s=(r=/a/,o=/b*/g,u.call(r,"a"),u.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),l=a.UNSUPPORTED_Y||a.BROKEN_CARET,p=void 0!==/()??/.exec("")[1];(s||p||l)&&(f=function(t){var n,e,r,o,a=this,f=l&&a.sticky,h=i.call(a),v=a.source,g=0,d=t;return f&&(-1===(h=h.replace("y","")).indexOf("g")&&(h+="g"),d=String(t).slice(a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==t[a.lastIndex-1])&&(v="(?: "+v+")",d=" "+d,g++),e=new RegExp("^(?:"+v+")",h)),p&&(e=new RegExp("^"+v+"$(?!\\s)",h)),s&&(n=a.lastIndex),r=u.call(f?e:a,d),f?r?(r.input=r.input.slice(g),r[0]=r[0].slice(g),r.index=a.lastIndex,a.lastIndex+=r[0].length):a.lastIndex=0:s&&r&&(a.lastIndex=a.global?r.index+r[0].length:n),p&&r&&r.length>1&&c.call(r[0],e,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),t.exports=f},function(t,n,e){var r=e(5),o=e(19),i=e(187),a=e(188).UNSUPPORTED_Y;r&&("g"!=/./g.flags||a)&&o.f(RegExp.prototype,"flags",{configurable:!0,get:i})},function(t,n,e){var r=e(5),o=e(188).UNSUPPORTED_Y,i=e(19).f,a=e(25).get,u=RegExp.prototype;r&&o&&i(RegExp.prototype,"sticky",{configurable:!0,get:function(){if(this!==u){if(this instanceof RegExp)return!!a(this).sticky;throw TypeError("Incompatible receiver, RegExp required")}}})},function(t,n,e){e(189);var r,o,i=e(2),a=e(14),u=(r=!1,(o=/[ac]/).exec=function(){return r=!0,/./.exec.apply(this,arguments)},!0===o.test("abc")&&r),c=/./.test;i({target:"RegExp",proto:!0,forced:!u},{test:function(t){if("function"!=typeof this.exec)return c.call(this,t);var n=this.exec(t);if(null!==n&&!a(n))throw new Error("RegExp exec method returned something other than an Object or null");return!!n}})},function(t,n,e){var r=e(21),o=e(20),i=e(6),a=e(187),u=RegExp.prototype,c=u.toString,f=i((function(){return"/a/b"!=c.call({source:"a",flags:"b"})})),s="toString"!=c.name;(f||s)&&r(RegExp.prototype,"toString",(function(){var t=o(this),n=String(t.source),e=t.flags;return"/"+n+"/"+String(void 0===e&&t instanceof RegExp&&!("flags"in u)?a.call(t):e)}),{unsafe:!0})},function(t,n,e){var r=e(119),o=e(125);t.exports=r("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,n,e){var r=e(2),o=e(197).codeAt;r({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},function(t,n,e){var r=e(40),o=e(12),i=function(t){return function(n,e){var i,a,u=String(o(n)),c=r(e),f=u.length;return c<0||c>=f?t?"":void 0:(i=u.charCodeAt(c))<55296||i>56319||c+1===f||(a=u.charCodeAt(c+1))<56320||a>57343?t?u.charAt(c):i:t?u.slice(c,c+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,n,e){var r,o=e(2),i=e(4).f,a=e(39),u=e(199),c=e(12),f=e(200),s=e(29),l="".endsWith,p=Math.min,h=f("endsWith");o({target:"String",proto:!0,forced:!!(s||h||(r=i(String.prototype,"endsWith"),!r||r.writable))&&!h},{endsWith:function(t){var n=String(c(this));u(t);var e=arguments.length>1?arguments[1]:void 0,r=a(n.length),o=void 0===e?r:p(a(e),r),i=String(t);return l?l.call(n,i,o):n.slice(o-i.length,o)===i}})},function(t,n,e){var r=e(186);t.exports=function(t){if(r(t))throw TypeError("The method doesn't accept regular expressions");return t}},function(t,n,e){var r=e(49)("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(e){try{return n[r]=!1,"/./"[t](n)}catch(t){}}return!1}},function(t,n,e){var r=e(2),o=e(41),i=String.fromCharCode,a=String.fromCodePoint;r({target:"String",stat:!0,forced:!!a&&1!=a.length},{fromCodePoint:function(t){for(var n,e=[],r=arguments.length,a=0;r>a;){if(n=+arguments[a++],o(n,1114111)!==n)throw RangeError(n+" is not a valid code point");e.push(n<65536?i(n):i(55296+((n-=65536)>>10),n%1024+56320))}return e.join("")}})},function(t,n,e){var r=e(2),o=e(199),i=e(12);r({target:"String",proto:!0,forced:!e(200)("includes")},{includes:function(t){return!!~String(i(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(197).charAt,o=e(25),i=e(90),a=o.set,u=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,n=u(this),e=n.string,o=n.index;return o>=e.length?{value:void 0,done:!0}:(t=r(e,o),n.index+=t.length,{value:t,done:!1})}))},function(t,n,e){var r=e(205),o=e(20),i=e(39),a=e(12),u=e(206),c=e(207);r("match",1,(function(t,n,e){return[function(n){var e=a(this),r=null==n?void 0:n[t];return void 0!==r?r.call(n,e):new RegExp(n)[t](String(e))},function(t){var r=e(n,t,this);if(r.done)return r.value;var a=o(t),f=String(this);if(!a.global)return c(a,f);var s=a.unicode;a.lastIndex=0;for(var l,p=[],h=0;null!==(l=c(a,f));){var v=String(l[0]);p[h]=v,""===v&&(a.lastIndex=u(f,i(a.lastIndex),s)),h++}return 0===h?null:p}]}))},function(t,n,e){e(189);var r=e(21),o=e(6),i=e(49),a=e(190),u=e(18),c=i("species"),f=!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),s="$0"==="a".replace(/./,"$0"),l=i("replace"),p=!!/./[l]&&""===/./[l]("a","$0"),h=!o((function(){var t=/(?:)/,n=t.exec;t.exec=function(){return n.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]}));t.exports=function(t,n,e,l){var v=i(t),g=!o((function(){var n={};return n[v]=function(){return 7},7!=""[t](n)})),d=g&&!o((function(){var n=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[c]=function(){return e},e.flags="",e[v]=/./[v]),e.exec=function(){return n=!0,null},e[v](""),!n}));if(!g||!d||"replace"===t&&(!f||!s||p)||"split"===t&&!h){var y=/./[v],x=e(v,""[t],(function(t,n,e,r,o){return n.exec===a?g&&!o?{done:!0,value:y.call(n,e,r)}:{done:!0,value:t.call(e,n,r)}:{done:!1}}),{REPLACE_KEEPS_$0:s,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:p}),m=x[0],b=x[1];r(String.prototype,t,m),r(RegExp.prototype,v,2==n?function(t,n){return b.call(t,this,n)}:function(t){return b.call(t,this)})}l&&u(RegExp.prototype[v],"sham",!0)}},function(t,n,e){var r=e(197).charAt;t.exports=function(t,n,e){return n+(e?r(t,n).length:1)}},function(t,n,e){var r=e(11),o=e(190);t.exports=function(t,n){var e=t.exec;if("function"==typeof e){var i=e.call(t,n);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,n)}},function(t,n,e){var r=e(2),o=e(91),i=e(12),a=e(39),u=e(65),c=e(20),f=e(11),s=e(186),l=e(187),p=e(18),h=e(6),v=e(49),g=e(175),d=e(206),y=e(25),x=e(29),m=v("matchAll"),b=y.set,S=y.getterFor("RegExp String Iterator"),E=RegExp.prototype,w=E.exec,O="".matchAll,R=!!O&&!h((function(){"a".matchAll(/./)})),A=o((function(t,n,e,r){b(this,{type:"RegExp String Iterator",regexp:t,string:n,global:e,unicode:r,done:!1})}),"RegExp String",(function(){var t=S(this);if(t.done)return{value:void 0,done:!0};var n=t.regexp,e=t.string,r=function(t,n){var e,r=t.exec;if("function"==typeof r){if("object"!=typeof(e=r.call(t,n)))throw TypeError("Incorrect exec result");return e}return w.call(t,n)}(n,e);return null===r?{value:void 0,done:t.done=!0}:t.global?(""==String(r[0])&&(n.lastIndex=d(e,a(n.lastIndex),t.unicode)),{value:r,done:!1}):(t.done=!0,{value:r,done:!1})})),j=function(t){var n,e,r,o,i,u,f=c(this),s=String(t);return n=g(f,RegExp),void 0===(e=f.flags)&&f instanceof RegExp&&!("flags"in E)&&(e=l.call(f)),r=void 0===e?"":String(e),o=new n(n===RegExp?f.source:f,r),i=!!~r.indexOf("g"),u=!!~r.indexOf("u"),o.lastIndex=a(f.lastIndex),new A(o,s,i,u)};r({target:"String",proto:!0,forced:R},{matchAll:function(t){var n,e,r,o=i(this);if(null!=t){if(s(t)&&!~String(i("flags"in E?t.flags:l.call(t))).indexOf("g"))throw TypeError("`.matchAll` does not allow non-global regexes");if(R)return O.apply(o,arguments);if(void 0===(e=t[m])&&x&&"RegExp"==f(t)&&(e=j),null!=e)return u(e).call(t,o)}else if(R)return O.apply(o,arguments);return n=String(o),r=new RegExp(t,"g"),x?j.call(r,n):r[m](n)}}),x||m in E||p(E,m,j)},function(t,n,e){var r=e(2),o=e(210).end;r({target:"String",proto:!0,forced:e(211)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(39),o=e(145),i=e(12),a=Math.ceil,u=function(t){return function(n,e,u){var c,f,s=String(i(n)),l=s.length,p=void 0===u?" ":String(u),h=r(e);return h<=l||""==p?s:(c=h-l,(f=o.call(p,a(c/p.length))).length>c&&(f=f.slice(0,c)),t?s+f:f+s)}};t.exports={start:u(!1),end:u(!0)}},function(t,n,e){var r=e(54);t.exports=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(r)},function(t,n,e){var r=e(2),o=e(210).start;r({target:"String",proto:!0,forced:e(211)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,n,e){var r=e(2),o=e(9),i=e(39);r({target:"String",stat:!0},{raw:function(t){for(var n=o(t.raw),e=i(n.length),r=arguments.length,a=[],u=0;e>u;)a.push(String(n[u++])),u<r&&a.push(String(arguments[u]));return a.join("")}})},function(t,n,e){e(2)({target:"String",proto:!0},{repeat:e(145)})},function(t,n,e){var r=e(205),o=e(20),i=e(46),a=e(39),u=e(40),c=e(12),f=e(206),s=e(207),l=Math.max,p=Math.min,h=Math.floor,v=/\$([$&'`]|\d\d?|<[^>]*>)/g,g=/\$([$&'`]|\d\d?)/g;r("replace",2,(function(t,n,e,r){var d=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,y=r.REPLACE_KEEPS_$0,x=d?"$":"$0";return[function(e,r){var o=c(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,r):n.call(String(o),e,r)},function(t,r){if(!d&&y||"string"==typeof r&&-1===r.indexOf(x)){var i=e(n,t,this,r);if(i.done)return i.value}var c=o(t),h=String(this),v="function"==typeof r;v||(r=String(r));var g=c.global;if(g){var b=c.unicode;c.lastIndex=0}for(var S=[];;){var E=s(c,h);if(null===E)break;if(S.push(E),!g)break;""===String(E[0])&&(c.lastIndex=f(h,a(c.lastIndex),b))}for(var w,O="",R=0,A=0;A<S.length;A++){E=S[A];for(var j=String(E[0]),I=l(p(u(E.index),h.length),0),k=[],P=1;P<E.length;P++)k.push(void 0===(w=E[P])?w:String(w));var L=E.groups;if(v){var T=[j].concat(k,I,h);void 0!==L&&T.push(L);var _=String(r.apply(void 0,T))}else _=m(j,h,I,k,L,r);I>=R&&(O+=h.slice(R,I)+_,R=I+j.length)}return O+h.slice(R)}];function m(t,e,r,o,a,u){var c=r+t.length,f=o.length,s=g;return void 0!==a&&(a=i(a),s=v),n.call(u,s,(function(n,i){var u;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return e.slice(0,r);case"'":return e.slice(c);case"<":u=a[i.slice(1,-1)];break;default:var s=+i;if(0===s)return n;if(s>f){var l=h(s/10);return 0===l?n:l<=f?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):n}u=o[s-1]}return void 0===u?"":u}))}}))},function(t,n,e){var r=e(205),o=e(20),i=e(12),a=e(161),u=e(207);r("search",1,(function(t,n,e){return[function(n){var e=i(this),r=null==n?void 0:n[t];return void 0!==r?r.call(n,e):new RegExp(n)[t](String(e))},function(t){var r=e(n,t,this);if(r.done)return r.value;var i=o(t),c=String(this),f=i.lastIndex;a(f,0)||(i.lastIndex=0);var s=u(i,c);return a(i.lastIndex,f)||(i.lastIndex=f),null===s?-1:s.index}]}))},function(t,n,e){var r=e(205),o=e(186),i=e(20),a=e(12),u=e(175),c=e(206),f=e(39),s=e(207),l=e(190),p=e(6),h=[].push,v=Math.min,g=!p((function(){return!RegExp(4294967295,"y")}));r("split",2,(function(t,n,e){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,e){var r=String(a(this)),i=void 0===e?4294967295:e>>>0;if(0===i)return[];if(void 0===t)return[r];if(!o(t))return n.call(r,t,i);for(var u,c,f,s=[],p=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),v=0,g=new RegExp(t.source,p+"g");(u=l.call(g,r))&&!((c=g.lastIndex)>v&&(s.push(r.slice(v,u.index)),u.length>1&&u.index<r.length&&h.apply(s,u.slice(1)),f=u[0].length,v=c,s.length>=i));)g.lastIndex===u.index&&g.lastIndex++;return v===r.length?!f&&g.test("")||s.push(""):s.push(r.slice(v)),s.length>i?s.slice(0,i):s}:"0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:n.call(this,t,e)}:n,[function(n,e){var o=a(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,e):r.call(String(o),n,e)},function(t,o){var a=e(r,t,this,o,r!==n);if(a.done)return a.value;var l=i(t),p=String(this),h=u(l,RegExp),d=l.unicode,y=(l.ignoreCase?"i":"")+(l.multiline?"m":"")+(l.unicode?"u":"")+(g?"y":"g"),x=new h(g?l:"^(?:"+l.source+")",y),m=void 0===o?4294967295:o>>>0;if(0===m)return[];if(0===p.length)return null===s(x,p)?[p]:[];for(var b=0,S=0,E=[];S<p.length;){x.lastIndex=g?S:0;var w,O=s(x,g?p:p.slice(S));if(null===O||(w=v(f(x.lastIndex+(g?0:S)),p.length))===b)S=c(p,S,d);else{if(E.push(p.slice(b,S)),E.length===m)return E;for(var R=1;R<=O.length-1;R++)if(E.push(O[R]),E.length===m)return E;S=b=w}}return E.push(p.slice(b)),E}]}),!g)},function(t,n,e){var r,o=e(2),i=e(4).f,a=e(39),u=e(199),c=e(12),f=e(200),s=e(29),l="".startsWith,p=Math.min,h=f("startsWith");o({target:"String",proto:!0,forced:!!(s||h||(r=i(String.prototype,"startsWith"),!r||r.writable))&&!h},{startsWith:function(t){var n=String(c(this));u(t);var e=a(p(arguments.length>1?arguments[1]:void 0,n.length)),r=String(t);return l?l.call(n,r,e):n.slice(e,e+r.length)===r}})},function(t,n,e){var r=e(2),o=e(128).trim;r({target:"String",proto:!0,forced:e(220)("trim")},{trim:function(){return o(this)}})},function(t,n,e){var r=e(6),o=e(129);t.exports=function(t){return r((function(){return!!o[t]()||"​…᠎"!="​…᠎"[t]()||o[t].name!==t}))}},function(t,n,e){var r=e(2),o=e(128).end,i=e(220)("trimEnd"),a=i?function(){return o(this)}:"".trimEnd;r({target:"String",proto:!0,forced:i},{trimEnd:a,trimRight:a})},function(t,n,e){var r=e(2),o=e(128).start,i=e(220)("trimStart"),a=i?function(){return o(this)}:"".trimStart;r({target:"String",proto:!0,forced:i},{trimStart:a,trimLeft:a})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},function(t,n,e){var r=e(12),o=/"/g;t.exports=function(t,n,e,i){var a=String(r(t)),u="<"+n;return""!==e&&(u+=" "+e+'="'+String(i).replace(o,"&quot;")+'"'),u+">"+a+"</"+n+">"}},function(t,n,e){var r=e(6);t.exports=function(t){return r((function(){var n=""[t]('"');return n!==n.toLowerCase()||n.split('"').length>3}))}},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("big")},{big:function(){return o(this,"big","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("blink")},{blink:function(){return o(this,"blink","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("bold")},{bold:function(){return o(this,"b","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("fixed")},{fixed:function(){return o(this,"tt","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("italics")},{italics:function(){return o(this,"i","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("link")},{link:function(t){return o(this,"a","href",t)}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("small")},{small:function(){return o(this,"small","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("strike")},{strike:function(){return o(this,"strike","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("sub")},{sub:function(){return o(this,"sub","","")}})},function(t,n,e){var r=e(2),o=e(224);r({target:"String",proto:!0,forced:e(225)("sup")},{sup:function(){return o(this,"sup","","")}})},function(t,n,e){var r,o=e(3),i=e(126),a=e(120),u=e(119),c=e(239),f=e(14),s=e(25).enforce,l=e(26),p=!o.ActiveXObject&&"ActiveXObject"in o,h=Object.isExtensible,v=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},g=t.exports=u("WeakMap",v,c);if(l&&p){r=c.getConstructor(v,"WeakMap",!0),a.REQUIRED=!0;var d=g.prototype,y=d.delete,x=d.has,m=d.get,b=d.set;i(d,{delete:function(t){if(f(t)&&!h(t)){var n=s(this);return n.frozen||(n.frozen=new r),y.call(this,t)||n.frozen.delete(t)}return y.call(this,t)},has:function(t){if(f(t)&&!h(t)){var n=s(this);return n.frozen||(n.frozen=new r),x.call(this,t)||n.frozen.has(t)}return x.call(this,t)},get:function(t){if(f(t)&&!h(t)){var n=s(this);return n.frozen||(n.frozen=new r),x.call(this,t)?m.call(this,t):n.frozen.get(t)}return m.call(this,t)},set:function(t,n){if(f(t)&&!h(t)){var e=s(this);e.frozen||(e.frozen=new r),x.call(this,t)?b.call(this,t,n):e.frozen.set(t,n)}else b.call(this,t,n);return this}})}},function(t,n,e){var r=e(126),o=e(120).getWeakData,i=e(20),a=e(14),u=e(123),c=e(122),f=e(63),s=e(15),l=e(25),p=l.set,h=l.getterFor,v=f.find,g=f.findIndex,d=0,y=function(t){return t.frozen||(t.frozen=new x)},x=function(){this.entries=[]},m=function(t,n){return v(t.entries,(function(t){return t[0]===n}))};x.prototype={get:function(t){var n=m(this,t);if(n)return n[1]},has:function(t){return!!m(this,t)},set:function(t,n){var e=m(this,t);e?e[1]=n:this.entries.push([t,n])},delete:function(t){var n=g(this.entries,(function(n){return n[0]===t}));return~n&&this.entries.splice(n,1),!!~n}},t.exports={getConstructor:function(t,n,e,f){var l=t((function(t,r){u(t,l,n),p(t,{type:n,id:d++,frozen:void 0}),null!=r&&c(r,t[f],t,e)})),v=h(n),g=function(t,n,e){var r=v(t),a=o(i(n),!0);return!0===a?y(r).set(n,e):a[r.id]=e,t};return r(l.prototype,{delete:function(t){var n=v(this);if(!a(t))return!1;var e=o(t);return!0===e?y(n).delete(t):e&&s(e,n.id)&&delete e[n.id]},has:function(t){var n=v(this);if(!a(t))return!1;var e=o(t);return!0===e?y(n).has(t):e&&s(e,n.id)}}),r(l.prototype,e?{get:function(t){var n=v(this);if(a(t)){var e=o(t);return!0===e?y(n).get(t):e?e[n.id]:void 0}},set:function(t,n){return g(this,t,n)}}:{add:function(t){return g(this,t,!0)}}),l}}},function(t,n,e){e(119)("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),e(239))},function(t,n,e){var r=e(3),o=e(242),i=e(77),a=e(18);for(var u in o){var c=r[u],f=c&&c.prototype;if(f&&f.forEach!==i)try{a(f,"forEach",i)}catch(t){f.forEach=i}}},function(t,n){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},function(t,n,e){e(203);var r,o=e(2),i=e(5),a=e(244),u=e(3),c=e(59),f=e(21),s=e(123),l=e(15),p=e(147),h=e(79),v=e(197).codeAt,g=e(245),d=e(95),y=e(246),x=e(25),m=u.URL,b=y.URLSearchParams,S=y.getState,E=x.set,w=x.getterFor("URL"),O=Math.floor,R=Math.pow,A=/[A-Za-z]/,j=/[\d+-.A-Za-z]/,I=/\d/,k=/^(0x|0X)/,P=/^[0-7]+$/,L=/^\d+$/,T=/^[\dA-Fa-f]+$/,_=/[\u0000\u0009\u000A\u000D #%/:?@[\\]]/,U=/[\u0000\u0009\u000A\u000D #/:?@[\\]]/,N=/^[\u0000-\u001F ]+|[\u0000-\u001F ]+$/g,C=/[\u0009\u000A\u000D]/g,F=function(t,n){var e,r,o;if("["==n.charAt(0)){if("]"!=n.charAt(n.length-1))return"Invalid host";if(!(e=z(n.slice(1,-1))))return"Invalid host";t.host=e}else if(X(t)){if(n=g(n),_.test(n))return"Invalid host";if(null===(e=M(n)))return"Invalid host";t.host=e}else{if(U.test(n))return"Invalid host";for(e="",r=h(n),o=0;o<r.length;o++)e+=G(r[o],q);t.host=e}},M=function(t){var n,e,r,o,i,a,u,c=t.split(".");if(c.length&&""==c[c.length-1]&&c.pop(),(n=c.length)>4)return t;for(e=[],r=0;r<n;r++){if(""==(o=c[r]))return t;if(i=10,o.length>1&&"0"==o.charAt(0)&&(i=k.test(o)?16:8,o=o.slice(8==i?1:2)),""===o)a=0;else{if(!(10==i?L:8==i?P:T).test(o))return t;a=parseInt(o,i)}e.push(a)}for(r=0;r<n;r++)if(a=e[r],r==n-1){if(a>=R(256,5-n))return null}else if(a>255)return null;for(u=e.pop(),r=0;r<e.length;r++)u+=e[r]*R(256,3-r);return u},z=function(t){var n,e,r,o,i,a,u,c=[0,0,0,0,0,0,0,0],f=0,s=null,l=0,p=function(){return t.charAt(l)};if(":"==p()){if(":"!=t.charAt(1))return;l+=2,s=++f}for(;p();){if(8==f)return;if(":"!=p()){for(n=e=0;e<4&&T.test(p());)n=16*n+parseInt(p(),16),l++,e++;if("."==p()){if(0==e)return;if(l-=e,f>6)return;for(r=0;p();){if(o=null,r>0){if(!("."==p()&&r<4))return;l++}if(!I.test(p()))return;for(;I.test(p());){if(i=parseInt(p(),10),null===o)o=i;else{if(0==o)return;o=10*o+i}if(o>255)return;l++}c[f]=256*c[f]+o,2!=++r&&4!=r||f++}if(4!=r)return;break}if(":"==p()){if(l++,!p())return}else if(p())return;c[f++]=n}else{if(null!==s)return;l++,s=++f}}if(null!==s)for(a=f-s,f=7;0!=f&&a>0;)u=c[f],c[f--]=c[s+a-1],c[s+--a]=u;else if(8!=f)return;return c},D=function(t){var n,e,r,o;if("number"==typeof t){for(n=[],e=0;e<4;e++)n.unshift(t%256),t=O(t/256);return n.join(".")}if("object"==typeof t){for(n="",r=function(t){for(var n=null,e=1,r=null,o=0,i=0;i<8;i++)0!==t[i]?(o>e&&(n=r,e=o),r=null,o=0):(null===r&&(r=i),++o);return o>e&&(n=r,e=o),n}(t),e=0;e<8;e++)o&&0===t[e]||(o&&(o=!1),r===e?(n+=e?":":"::",o=!0):(n+=t[e].toString(16),e<7&&(n+=":")));return"["+n+"]"}return t},q={},B=p({},q,{" ":1,'"':1,"<":1,">":1,"`":1}),W=p({},B,{"#":1,"?":1,"{":1,"}":1}),$=p({},W,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),G=function(t,n){var e=v(t,0);return e>32&&e<127&&!l(n,t)?t:encodeURIComponent(t)},V={ftp:21,file:null,http:80,https:443,ws:80,wss:443},X=function(t){return l(V,t.scheme)},Y=function(t){return""!=t.username||""!=t.password},K=function(t){return!t.host||t.cannotBeABaseURL||"file"==t.scheme},J=function(t,n){var e;return 2==t.length&&A.test(t.charAt(0))&&(":"==(e=t.charAt(1))||!n&&"|"==e)},H=function(t){var n;return t.length>1&&J(t.slice(0,2))&&(2==t.length||"/"===(n=t.charAt(2))||"\\"===n||"?"===n||"#"===n)},Q=function(t){var n=t.path,e=n.length;!e||"file"==t.scheme&&1==e&&J(n[0],!0)||n.pop()},Z=function(t){return"."===t||"%2e"===t.toLowerCase()},tt={},nt={},et={},rt={},ot={},it={},at={},ut={},ct={},ft={},st={},lt={},pt={},ht={},vt={},gt={},dt={},yt={},xt={},mt={},bt={},St=function(t,n,e,o){var i,a,u,c,f,s=e||tt,p=0,v="",g=!1,d=!1,y=!1;for(e||(t.scheme="",t.username="",t.password="",t.host=null,t.port=null,t.path=[],t.query=null,t.fragment=null,t.cannotBeABaseURL=!1,n=n.replace(N,"")),n=n.replace(C,""),i=h(n);p<=i.length;){switch(a=i[p],s){case tt:if(!a||!A.test(a)){if(e)return"Invalid scheme";s=et;continue}v+=a.toLowerCase(),s=nt;break;case nt:if(a&&(j.test(a)||"+"==a||"-"==a||"."==a))v+=a.toLowerCase();else{if(":"!=a){if(e)return"Invalid scheme";v="",s=et,p=0;continue}if(e&&(X(t)!=l(V,v)||"file"==v&&(Y(t)||null!==t.port)||"file"==t.scheme&&!t.host))return;if(t.scheme=v,e)return void(X(t)&&V[t.scheme]==t.port&&(t.port=null));v="","file"==t.scheme?s=ht:X(t)&&o&&o.scheme==t.scheme?s=rt:X(t)?s=ut:"/"==i[p+1]?(s=ot,p++):(t.cannotBeABaseURL=!0,t.path.push(""),s=xt)}break;case et:if(!o||o.cannotBeABaseURL&&"#"!=a)return"Invalid scheme";if(o.cannotBeABaseURL&&"#"==a){t.scheme=o.scheme,t.path=o.path.slice(),t.query=o.query,t.fragment="",t.cannotBeABaseURL=!0,s=bt;break}s="file"==o.scheme?ht:it;continue;case rt:if("/"!=a||"/"!=i[p+1]){s=it;continue}s=ct,p++;break;case ot:if("/"==a){s=ft;break}s=yt;continue;case it:if(t.scheme=o.scheme,a==r)t.username=o.username,t.password=o.password,t.host=o.host,t.port=o.port,t.path=o.path.slice(),t.query=o.query;else if("/"==a||"\\"==a&&X(t))s=at;else if("?"==a)t.username=o.username,t.password=o.password,t.host=o.host,t.port=o.port,t.path=o.path.slice(),t.query="",s=mt;else{if("#"!=a){t.username=o.username,t.password=o.password,t.host=o.host,t.port=o.port,t.path=o.path.slice(),t.path.pop(),s=yt;continue}t.username=o.username,t.password=o.password,t.host=o.host,t.port=o.port,t.path=o.path.slice(),t.query=o.query,t.fragment="",s=bt}break;case at:if(!X(t)||"/"!=a&&"\\"!=a){if("/"!=a){t.username=o.username,t.password=o.password,t.host=o.host,t.port=o.port,s=yt;continue}s=ft}else s=ct;break;case ut:if(s=ct,"/"!=a||"/"!=v.charAt(p+1))continue;p++;break;case ct:if("/"!=a&&"\\"!=a){s=ft;continue}break;case ft:if("@"==a){g&&(v="%40"+v),g=!0,u=h(v);for(var x=0;x<u.length;x++){var m=u[x];if(":"!=m||y){var b=G(m,$);y?t.password+=b:t.username+=b}else y=!0}v=""}else if(a==r||"/"==a||"?"==a||"#"==a||"\\"==a&&X(t)){if(g&&""==v)return"Invalid authority";p-=h(v).length+1,v="",s=st}else v+=a;break;case st:case lt:if(e&&"file"==t.scheme){s=gt;continue}if(":"!=a||d){if(a==r||"/"==a||"?"==a||"#"==a||"\\"==a&&X(t)){if(X(t)&&""==v)return"Invalid host";if(e&&""==v&&(Y(t)||null!==t.port))return;if(c=F(t,v))return c;if(v="",s=dt,e)return;continue}"["==a?d=!0:"]"==a&&(d=!1),v+=a}else{if(""==v)return"Invalid host";if(c=F(t,v))return c;if(v="",s=pt,e==lt)return}break;case pt:if(!I.test(a)){if(a==r||"/"==a||"?"==a||"#"==a||"\\"==a&&X(t)||e){if(""!=v){var S=parseInt(v,10);if(S>65535)return"Invalid port";t.port=X(t)&&S===V[t.scheme]?null:S,v=""}if(e)return;s=dt;continue}return"Invalid port"}v+=a;break;case ht:if(t.scheme="file","/"==a||"\\"==a)s=vt;else{if(!o||"file"!=o.scheme){s=yt;continue}if(a==r)t.host=o.host,t.path=o.path.slice(),t.query=o.query;else if("?"==a)t.host=o.host,t.path=o.path.slice(),t.query="",s=mt;else{if("#"!=a){H(i.slice(p).join(""))||(t.host=o.host,t.path=o.path.slice(),Q(t)),s=yt;continue}t.host=o.host,t.path=o.path.slice(),t.query=o.query,t.fragment="",s=bt}}break;case vt:if("/"==a||"\\"==a){s=gt;break}o&&"file"==o.scheme&&!H(i.slice(p).join(""))&&(J(o.path[0],!0)?t.path.push(o.path[0]):t.host=o.host),s=yt;continue;case gt:if(a==r||"/"==a||"\\"==a||"?"==a||"#"==a){if(!e&&J(v))s=yt;else if(""==v){if(t.host="",e)return;s=dt}else{if(c=F(t,v))return c;if("localhost"==t.host&&(t.host=""),e)return;v="",s=dt}continue}v+=a;break;case dt:if(X(t)){if(s=yt,"/"!=a&&"\\"!=a)continue}else if(e||"?"!=a)if(e||"#"!=a){if(a!=r&&(s=yt,"/"!=a))continue}else t.fragment="",s=bt;else t.query="",s=mt;break;case yt:if(a==r||"/"==a||"\\"==a&&X(t)||!e&&("?"==a||"#"==a)){if(".."===(f=(f=v).toLowerCase())||"%2e."===f||".%2e"===f||"%2e%2e"===f?(Q(t),"/"==a||"\\"==a&&X(t)||t.path.push("")):Z(v)?"/"==a||"\\"==a&&X(t)||t.path.push(""):("file"==t.scheme&&!t.path.length&&J(v)&&(t.host&&(t.host=""),v=v.charAt(0)+":"),t.path.push(v)),v="","file"==t.scheme&&(a==r||"?"==a||"#"==a))for(;t.path.length>1&&""===t.path[0];)t.path.shift();"?"==a?(t.query="",s=mt):"#"==a&&(t.fragment="",s=bt)}else v+=G(a,W);break;case xt:"?"==a?(t.query="",s=mt):"#"==a?(t.fragment="",s=bt):a!=r&&(t.path[0]+=G(a,q));break;case mt:e||"#"!=a?a!=r&&("'"==a&&X(t)?t.query+="%27":t.query+="#"==a?"%23":G(a,q)):(t.fragment="",s=bt);break;case bt:a!=r&&(t.fragment+=G(a,B))}p++}},Et=function(t){var n,e,r=s(this,Et,"URL"),o=arguments.length>1?arguments[1]:void 0,a=String(t),u=E(r,{type:"URL"});if(void 0!==o)if(o instanceof Et)n=w(o);else if(e=St(n={},String(o)))throw TypeError(e);if(e=St(u,a,null,n))throw TypeError(e);var c=u.searchParams=new b,f=S(c);f.updateSearchParams(u.query),f.updateURL=function(){u.query=String(c)||null},i||(r.href=Ot.call(r),r.origin=Rt.call(r),r.protocol=At.call(r),r.username=jt.call(r),r.password=It.call(r),r.host=kt.call(r),r.hostname=Pt.call(r),r.port=Lt.call(r),r.pathname=Tt.call(r),r.search=_t.call(r),r.searchParams=Ut.call(r),r.hash=Nt.call(r))},wt=Et.prototype,Ot=function(){var t=w(this),n=t.scheme,e=t.username,r=t.password,o=t.host,i=t.port,a=t.path,u=t.query,c=t.fragment,f=n+":";return null!==o?(f+="//",Y(t)&&(f+=e+(r?":"+r:"")+"@"),f+=D(o),null!==i&&(f+=":"+i)):"file"==n&&(f+="//"),f+=t.cannotBeABaseURL?a[0]:a.length?"/"+a.join("/"):"",null!==u&&(f+="?"+u),null!==c&&(f+="#"+c),f},Rt=function(){var t=w(this),n=t.scheme,e=t.port;if("blob"==n)try{return new URL(n.path[0]).origin}catch(t){return"null"}return"file"!=n&&X(t)?n+"://"+D(t.host)+(null!==e?":"+e:""):"null"},At=function(){return w(this).scheme+":"},jt=function(){return w(this).username},It=function(){return w(this).password},kt=function(){var t=w(this),n=t.host,e=t.port;return null===n?"":null===e?D(n):D(n)+":"+e},Pt=function(){var t=w(this).host;return null===t?"":D(t)},Lt=function(){var t=w(this).port;return null===t?"":String(t)},Tt=function(){var t=w(this),n=t.path;return t.cannotBeABaseURL?n[0]:n.length?"/"+n.join("/"):""},_t=function(){var t=w(this).query;return t?"?"+t:""},Ut=function(){return w(this).searchParams},Nt=function(){var t=w(this).fragment;return t?"#"+t:""},Ct=function(t,n){return{get:t,set:n,configurable:!0,enumerable:!0}};if(i&&c(wt,{href:Ct(Ot,(function(t){var n=w(this),e=String(t),r=St(n,e);if(r)throw TypeError(r);S(n.searchParams).updateSearchParams(n.query)})),origin:Ct(Rt),protocol:Ct(At,(function(t){var n=w(this);St(n,String(t)+":",tt)})),username:Ct(jt,(function(t){var n=w(this),e=h(String(t));if(!K(n)){n.username="";for(var r=0;r<e.length;r++)n.username+=G(e[r],$)}})),password:Ct(It,(function(t){var n=w(this),e=h(String(t));if(!K(n)){n.password="";for(var r=0;r<e.length;r++)n.password+=G(e[r],$)}})),host:Ct(kt,(function(t){var n=w(this);n.cannotBeABaseURL||St(n,String(t),st)})),hostname:Ct(Pt,(function(t){var n=w(this);n.cannotBeABaseURL||St(n,String(t),lt)})),port:Ct(Lt,(function(t){var n=w(this);K(n)||(""==(t=String(t))?n.port=null:St(n,t,pt))})),pathname:Ct(Tt,(function(t){var n=w(this);n.cannotBeABaseURL||(n.path=[],St(n,t+"",dt))})),search:Ct(_t,(function(t){var n=w(this);""==(t=String(t))?n.query=null:("?"==t.charAt(0)&&(t=t.slice(1)),n.query="",St(n,t,mt)),S(n.searchParams).updateSearchParams(n.query)})),searchParams:Ct(Ut),hash:Ct(Nt,(function(t){var n=w(this);""!=(t=String(t))?("#"==t.charAt(0)&&(t=t.slice(1)),n.fragment="",St(n,t,bt)):n.fragment=null}))}),f(wt,"toJSON",(function(){return Ot.call(this)}),{enumerable:!0}),f(wt,"toString",(function(){return Ot.call(this)}),{enumerable:!0}),m){var Ft=m.createObjectURL,Mt=m.revokeObjectURL;Ft&&f(Et,"createObjectURL",(function(t){return Ft.apply(m,arguments)})),Mt&&f(Et,"revokeObjectURL",(function(t){return Mt.apply(m,arguments)}))}d(Et,"URL"),o({global:!0,forced:!a,sham:!i},{URL:Et})},function(t,n,e){var r=e(6),o=e(49),i=e(29),a=o("iterator");t.exports=!r((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),n=t.searchParams,e="";return t.pathname="c%20d",n.forEach((function(t,r){n.delete("b"),e+=r+t})),i&&!t.toJSON||!n.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==n.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!n[a]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==e||"x"!==new URL("http://x",void 0).host}))},function(t,n,e){var r=/[^\0-\u007E]/,o=/[.\u3002\uFF0E\uFF61]/g,i="Overflow: input needs wider integers to process",a=Math.floor,u=String.fromCharCode,c=function(t){return t+22+75*(t<26)},f=function(t,n,e){var r=0;for(t=e?a(t/700):t>>1,t+=a(t/n);t>455;r+=36)t=a(t/35);return a(r+36*t/(t+38))},s=function(t){var n,e,r=[],o=(t=function(t){for(var n=[],e=0,r=t.length;e<r;){var o=t.charCodeAt(e++);if(o>=55296&&o<=56319&&e<r){var i=t.charCodeAt(e++);56320==(64512&i)?n.push(((1023&o)<<10)+(1023&i)+65536):(n.push(o),e--)}else n.push(o)}return n}(t)).length,s=128,l=0,p=72;for(n=0;n<t.length;n++)(e=t[n])<128&&r.push(u(e));var h=r.length,v=h;for(h&&r.push("-");v<o;){var g=2147483647;for(n=0;n<t.length;n++)(e=t[n])>=s&&e<g&&(g=e);var d=v+1;if(g-s>a((2147483647-l)/d))throw RangeError(i);for(l+=(g-s)*d,s=g,n=0;n<t.length;n++){if((e=t[n])<s&&++l>2147483647)throw RangeError(i);if(e==s){for(var y=l,x=36;;x+=36){var m=x<=p?1:x>=p+26?26:x-p;if(y<m)break;var b=y-m,S=36-m;r.push(u(c(m+b%S))),y=a(b/S)}r.push(u(c(y))),p=f(l,d,v==h),l=0,++v}}++l,++s}return r.join("")};t.exports=function(t){var n,e,i=[],a=t.toLowerCase().replace(o,".").split(".");for(n=0;n<a.length;n++)e=a[n],i.push(r.test(e)?"xn--"+s(e):e);return i.join(".")}},function(t,n,e){e(89);var r=e(2),o=e(34),i=e(244),a=e(21),u=e(126),c=e(95),f=e(91),s=e(25),l=e(123),p=e(15),h=e(64),v=e(84),g=e(20),d=e(14),y=e(58),x=e(8),m=e(247),b=e(83),S=e(49),E=o("fetch"),w=o("Headers"),O=S("iterator"),R=s.set,A=s.getterFor("URLSearchParams"),j=s.getterFor("URLSearchParamsIterator"),I=/\+/g,k=Array(4),P=function(t){return k[t-1]||(k[t-1]=RegExp("((?:%[\\da-f]{2}){"+t+"})","gi"))},L=function(t){try{return decodeURIComponent(t)}catch(n){return t}},T=function(t){var n=t.replace(I," "),e=4;try{return decodeURIComponent(n)}catch(t){for(;e;)n=n.replace(P(e--),L);return n}},_=/[!'()~]|%20/g,U={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},N=function(t){return U[t]},C=function(t){return encodeURIComponent(t).replace(_,N)},F=function(t,n){if(n)for(var e,r,o=n.split("&"),i=0;i<o.length;)(e=o[i++]).length&&(r=e.split("="),t.push({key:T(r.shift()),value:T(r.join("="))}))},M=function(t){this.entries.length=0,F(this.entries,t)},z=function(t,n){if(t<n)throw TypeError("Not enough arguments")},D=f((function(t,n){R(this,{type:"URLSearchParamsIterator",iterator:m(A(t).entries),kind:n})}),"Iterator",(function(){var t=j(this),n=t.kind,e=t.iterator.next(),r=e.value;return e.done||(e.value="keys"===n?r.key:"values"===n?r.value:[r.key,r.value]),e})),q=function(){l(this,q,"URLSearchParams");var t,n,e,r,o,i,a,u,c,f=arguments.length>0?arguments[0]:void 0,s=this,h=[];if(R(s,{type:"URLSearchParams",entries:h,updateURL:function(){},updateSearchParams:M}),void 0!==f)if(d(f))if("function"==typeof(t=b(f)))for(e=(n=t.call(f)).next;!(r=e.call(n)).done;){if((a=(i=(o=m(g(r.value))).next).call(o)).done||(u=i.call(o)).done||!i.call(o).done)throw TypeError("Expected sequence with length 2");h.push({key:a.value+"",value:u.value+""})}else for(c in f)p(f,c)&&h.push({key:c,value:f[c]+""});else F(h,"string"==typeof f?"?"===f.charAt(0)?f.slice(1):f:f+"")},B=q.prototype;u(B,{append:function(t,n){z(arguments.length,2);var e=A(this);e.entries.push({key:t+"",value:n+""}),e.updateURL()},delete:function(t){z(arguments.length,1);for(var n=A(this),e=n.entries,r=t+"",o=0;o<e.length;)e[o].key===r?e.splice(o,1):o++;n.updateURL()},get:function(t){z(arguments.length,1);for(var n=A(this).entries,e=t+"",r=0;r<n.length;r++)if(n[r].key===e)return n[r].value;return null},getAll:function(t){z(arguments.length,1);for(var n=A(this).entries,e=t+"",r=[],o=0;o<n.length;o++)n[o].key===e&&r.push(n[o].value);return r},has:function(t){z(arguments.length,1);for(var n=A(this).entries,e=t+"",r=0;r<n.length;)if(n[r++].key===e)return!0;return!1},set:function(t,n){z(arguments.length,1);for(var e,r=A(this),o=r.entries,i=!1,a=t+"",u=n+"",c=0;c<o.length;c++)(e=o[c]).key===a&&(i?o.splice(c--,1):(i=!0,e.value=u));i||o.push({key:a,value:u}),r.updateURL()},sort:function(){var t,n,e,r=A(this),o=r.entries,i=o.slice();for(o.length=0,e=0;e<i.length;e++){for(t=i[e],n=0;n<e;n++)if(o[n].key>t.key){o.splice(n,0,t);break}n===e&&o.push(t)}r.updateURL()},forEach:function(t){for(var n,e=A(this).entries,r=h(t,arguments.length>1?arguments[1]:void 0,3),o=0;o<e.length;)r((n=e[o++]).value,n.key,this)},keys:function(){return new D(this,"keys")},values:function(){return new D(this,"values")},entries:function(){return new D(this,"entries")}},{enumerable:!0}),a(B,O,B.entries),a(B,"toString",(function(){for(var t,n=A(this).entries,e=[],r=0;r<n.length;)t=n[r++],e.push(C(t.key)+"="+C(t.value));return e.join("&")}),{enumerable:!0}),c(q,"URLSearchParams"),r({global:!0,forced:!i},{URLSearchParams:q}),i||"function"!=typeof E||"function"!=typeof w||r({global:!0,enumerable:!0,forced:!0},{fetch:function(t){var n,e,r,o=[t];return arguments.length>1&&(n=arguments[1],d(n)&&(e=n.body,"URLSearchParams"===v(e)&&((r=n.headers?new w(n.headers):new w).has("content-type")||r.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"),n=y(n,{body:x(0,String(e)),headers:x(0,r)}))),o.push(n)),E.apply(this,o)}}),t.exports={URLSearchParams:q,getState:A}},function(t,n,e){var r=e(20),o=e(83);t.exports=function(t){var n=o(t);if("function"!=typeof n)throw TypeError(String(t)+" is not iterable");return r(n.call(t))}},function(t,n,e){e(2)({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return URL.prototype.toString.call(this)}})}])}();
8
-
9
- //!fetch 3.0.0, global "this" must be replaced with "window"
10
- // IIFE version
11
- !function(t){"use strict";var e="URLSearchParams"in self,r="Symbol"in self&&"iterator"in Symbol,o="FileReader"in self&&"Blob"in self&&function(){try{return new Blob,!0}catch(t){return!1}}(),n="FormData"in self,i="ArrayBuffer"in self;if(i)var s=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],a=ArrayBuffer.isView||function(t){return t&&s.indexOf(Object.prototype.toString.call(t))>-1};function h(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function u(t){return"string"!=typeof t&&(t=String(t)),t}function f(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return r&&(e[Symbol.iterator]=function(){return e}),e}function d(t){this.map={},t instanceof d?t.forEach((function(t,e){this.append(e,t)}),this):Array.isArray(t)?t.forEach((function(t){this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(e){this.append(e,t[e])}),this)}function c(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function p(t){return new Promise((function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}}))}function y(t){var e=new FileReader,r=p(e);return e.readAsArrayBuffer(t),r}function l(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function b(){return this.bodyUsed=!1,this._initBody=function(t){var r;this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:o&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:n&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:e&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():i&&o&&((r=t)&&DataView.prototype.isPrototypeOf(r))?(this._bodyArrayBuffer=l(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):i&&(ArrayBuffer.prototype.isPrototypeOf(t)||a(t))?this._bodyArrayBuffer=l(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText="",this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):e&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},o&&(this.blob=function(){var t=c(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?c(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(y)}),this.text=function(){var t,e,r,o=c(this);if(o)return o;if(this._bodyBlob)return t=this._bodyBlob,e=new FileReader,r=p(e),e.readAsText(t),r;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),o=0;o<e.length;o++)r[o]=String.fromCharCode(e[o]);return r.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},n&&(this.formData=function(){return this.text().then(v)}),this.json=function(){return this.text().then(JSON.parse)},this}d.prototype.append=function(t,e){t=h(t),e=u(e);var r=this.map[t];this.map[t]=r?r+", "+e:e},d.prototype.delete=function(t){delete this.map[h(t)]},d.prototype.get=function(t){return t=h(t),this.has(t)?this.map[t]:null},d.prototype.has=function(t){return this.map.hasOwnProperty(h(t))},d.prototype.set=function(t,e){this.map[h(t)]=u(e)},d.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},d.prototype.keys=function(){var t=[];return this.forEach((function(e,r){t.push(r)})),f(t)},d.prototype.values=function(){var t=[];return this.forEach((function(e){t.push(e)})),f(t)},d.prototype.entries=function(){var t=[];return this.forEach((function(e,r){t.push([r,e])})),f(t)},r&&(d.prototype[Symbol.iterator]=d.prototype.entries);var m=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function w(t,e){var r,o,n=(e=e||{}).body;if(t instanceof w){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new d(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,n||null==t._bodyInit||(n=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new d(e.headers)),this.method=(r=e.method||this.method||"GET",o=r.toUpperCase(),m.indexOf(o)>-1?o:r),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(n)}function v(t){var e=new FormData;return t.trim().split("&").forEach((function(t){if(t){var r=t.split("="),o=r.shift().replace(/\+/g," "),n=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(o),decodeURIComponent(n))}})),e}function E(t,e){e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new d(e.headers),this.url=e.url||"",this._initBody(t)}w.prototype.clone=function(){return new w(this,{body:this._bodyInit})},b.call(w.prototype),b.call(E.prototype),E.prototype.clone=function(){return new E(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},E.error=function(){var t=new E(null,{status:0,statusText:""});return t.type="error",t};var A=[301,302,303,307,308];E.redirect=function(t,e){if(-1===A.indexOf(e))throw new RangeError("Invalid status code");return new E(null,{status:e,headers:{location:t}})},t.DOMException=self.DOMException;try{new t.DOMException}catch(e){t.DOMException=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack},t.DOMException.prototype=Object.create(Error.prototype),t.DOMException.prototype.constructor=t.DOMException}function _(e,r){return new Promise((function(n,i){var s=new w(e,r);if(s.signal&&s.signal.aborted)return i(new t.DOMException("Aborted","AbortError"));var a=new XMLHttpRequest;function h(){a.abort()}a.onload=function(){var t,e,r={status:a.status,statusText:a.statusText,headers:(t=a.getAllResponseHeaders()||"",e=new d,t.replace(/\r?\n[\t ]+/g," ").split(/\r?\n/).forEach((function(t){var r=t.split(":"),o=r.shift().trim();if(o){var n=r.join(":").trim();e.append(o,n)}})),e)};r.url="responseURL"in a?a.responseURL:r.headers.get("X-Request-URL");var o="response"in a?a.response:a.responseText;n(new E(o,r))},a.onerror=function(){i(new TypeError("Network request failed"))},a.ontimeout=function(){i(new TypeError("Network request failed"))},a.onabort=function(){i(new t.DOMException("Aborted","AbortError"))},a.open(s.method,s.url,!0),"include"===s.credentials?a.withCredentials=!0:"omit"===s.credentials&&(a.withCredentials=!1),"responseType"in a&&o&&(a.responseType="blob"),s.headers.forEach((function(t,e){a.setRequestHeader(e,t)})),s.signal&&(s.signal.addEventListener("abort",h),a.onreadystatechange=function(){4===a.readyState&&s.signal.removeEventListener("abort",h)}),a.send(void 0===s._bodyInit?null:s._bodyInit)}))}_.polyfill=!0,self.fetch||(self.fetch=_,self.Headers=d,self.Request=w,self.Response=E),t.Headers=d,t.Request=w,t.Response=E,t.fetch=_}({});
@@ -1,79 +0,0 @@
1
- (function(){
2
- /*
3
- Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
4
- This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5
- The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6
- The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7
- Code distributed by Google as part of the polymer project is also
8
- subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9
- */
10
- 'use strict';var aa=new Set("annotation-xml color-profile font-face font-face-src font-face-uri font-face-format font-face-name missing-glyph".split(" "));function g(a){var b=aa.has(a);a=/^[a-z][.0-9_a-z]*-[\-.0-9_a-z]*$/.test(a);return!b&&a}function l(a){var b=a.isConnected;if(void 0!==b)return b;for(;a&&!(a.__CE_isImportDocument||a instanceof Document);)a=a.parentNode||(window.ShadowRoot&&a instanceof ShadowRoot?a.host:void 0);return!(!a||!(a.__CE_isImportDocument||a instanceof Document))}
11
- function n(a,b){for(;b&&b!==a&&!b.nextSibling;)b=b.parentNode;return b&&b!==a?b.nextSibling:null}
12
- function p(a,b,d){d=void 0===d?new Set:d;for(var c=a;c;){if(c.nodeType===Node.ELEMENT_NODE){var e=c;b(e);var f=e.localName;if("link"===f&&"import"===e.getAttribute("rel")){c=e.import;if(c instanceof Node&&!d.has(c))for(d.add(c),c=c.firstChild;c;c=c.nextSibling)p(c,b,d);c=n(a,e);continue}else if("template"===f){c=n(a,e);continue}if(e=e.__CE_shadowRoot)for(e=e.firstChild;e;e=e.nextSibling)p(e,b,d)}c=c.firstChild?c.firstChild:n(a,c)}}function r(a,b,d){a[b]=d};function u(){this.a=new Map;this.g=new Map;this.c=[];this.f=[];this.b=!1}function ba(a,b,d){a.a.set(b,d);a.g.set(d.constructorFunction,d)}function ca(a,b){a.b=!0;a.c.push(b)}function da(a,b){a.b=!0;a.f.push(b)}function v(a,b){a.b&&p(b,function(b){return w(a,b)})}function w(a,b){if(a.b&&!b.__CE_patched){b.__CE_patched=!0;for(var d=0;d<a.c.length;d++)a.c[d](b);for(d=0;d<a.f.length;d++)a.f[d](b)}}
13
- function x(a,b){var d=[];p(b,function(b){return d.push(b)});for(b=0;b<d.length;b++){var c=d[b];1===c.__CE_state?a.connectedCallback(c):y(a,c)}}function z(a,b){var d=[];p(b,function(b){return d.push(b)});for(b=0;b<d.length;b++){var c=d[b];1===c.__CE_state&&a.disconnectedCallback(c)}}
14
- function A(a,b,d){d=void 0===d?{}:d;var c=d.u||new Set,e=d.i||function(b){return y(a,b)},f=[];p(b,function(b){if("link"===b.localName&&"import"===b.getAttribute("rel")){var d=b.import;d instanceof Node&&(d.__CE_isImportDocument=!0,d.__CE_hasRegistry=!0);d&&"complete"===d.readyState?d.__CE_documentLoadHandled=!0:b.addEventListener("load",function(){var d=b.import;if(!d.__CE_documentLoadHandled){d.__CE_documentLoadHandled=!0;var f=new Set(c);f.delete(d);A(a,d,{u:f,i:e})}})}else f.push(b)},c);if(a.b)for(b=
15
- 0;b<f.length;b++)w(a,f[b]);for(b=0;b<f.length;b++)e(f[b])}
16
- function y(a,b){if(void 0===b.__CE_state){var d=b.ownerDocument;if(d.defaultView||d.__CE_isImportDocument&&d.__CE_hasRegistry)if(d=a.a.get(b.localName)){d.constructionStack.push(b);var c=d.constructorFunction;try{try{if(new c!==b)throw Error("The custom element constructor did not produce the element being upgraded.");}finally{d.constructionStack.pop()}}catch(t){throw b.__CE_state=2,t;}b.__CE_state=1;b.__CE_definition=d;if(d.attributeChangedCallback)for(d=d.observedAttributes,c=0;c<d.length;c++){var e=
17
- d[c],f=b.getAttribute(e);null!==f&&a.attributeChangedCallback(b,e,null,f,null)}l(b)&&a.connectedCallback(b)}}}u.prototype.connectedCallback=function(a){var b=a.__CE_definition;b.connectedCallback&&b.connectedCallback.call(a)};u.prototype.disconnectedCallback=function(a){var b=a.__CE_definition;b.disconnectedCallback&&b.disconnectedCallback.call(a)};
18
- u.prototype.attributeChangedCallback=function(a,b,d,c,e){var f=a.__CE_definition;f.attributeChangedCallback&&-1<f.observedAttributes.indexOf(b)&&f.attributeChangedCallback.call(a,b,d,c,e)};function B(a){var b=document;this.c=a;this.a=b;this.b=void 0;A(this.c,this.a);"loading"===this.a.readyState&&(this.b=new MutationObserver(this.f.bind(this)),this.b.observe(this.a,{childList:!0,subtree:!0}))}function C(a){a.b&&a.b.disconnect()}B.prototype.f=function(a){var b=this.a.readyState;"interactive"!==b&&"complete"!==b||C(this);for(b=0;b<a.length;b++)for(var d=a[b].addedNodes,c=0;c<d.length;c++)A(this.c,d[c])};function ea(){var a=this;this.b=this.a=void 0;this.c=new Promise(function(b){a.b=b;a.a&&b(a.a)})}function D(a){if(a.a)throw Error("Already resolved.");a.a=void 0;a.b&&a.b(void 0)};function E(a){this.c=!1;this.a=a;this.j=new Map;this.f=function(b){return b()};this.b=!1;this.g=[];this.o=new B(a)}
19
- E.prototype.l=function(a,b){var d=this;if(!(b instanceof Function))throw new TypeError("Custom element constructors must be functions.");if(!g(a))throw new SyntaxError("The element name '"+a+"' is not valid.");if(this.a.a.get(a))throw Error("A custom element with name '"+a+"' has already been defined.");if(this.c)throw Error("A custom element is already being defined.");this.c=!0;try{var c=function(b){var a=e[b];if(void 0!==a&&!(a instanceof Function))throw Error("The '"+b+"' callback must be a function.");
20
- return a},e=b.prototype;if(!(e instanceof Object))throw new TypeError("The custom element constructor's prototype is not an object.");var f=c("connectedCallback");var t=c("disconnectedCallback");var k=c("adoptedCallback");var h=c("attributeChangedCallback");var m=b.observedAttributes||[]}catch(q){return}finally{this.c=!1}b={localName:a,constructorFunction:b,connectedCallback:f,disconnectedCallback:t,adoptedCallback:k,attributeChangedCallback:h,observedAttributes:m,constructionStack:[]};ba(this.a,
21
- a,b);this.g.push(b);this.b||(this.b=!0,this.f(function(){return fa(d)}))};E.prototype.i=function(a){A(this.a,a)};
22
- function fa(a){if(!1!==a.b){a.b=!1;for(var b=a.g,d=[],c=new Map,e=0;e<b.length;e++)c.set(b[e].localName,[]);A(a.a,document,{i:function(b){if(void 0===b.__CE_state){var e=b.localName,f=c.get(e);f?f.push(b):a.a.a.get(e)&&d.push(b)}}});for(e=0;e<d.length;e++)y(a.a,d[e]);for(;0<b.length;){var f=b.shift();e=f.localName;f=c.get(f.localName);for(var t=0;t<f.length;t++)y(a.a,f[t]);(e=a.j.get(e))&&D(e)}}}E.prototype.get=function(a){if(a=this.a.a.get(a))return a.constructorFunction};
23
- E.prototype.m=function(a){if(!g(a))return Promise.reject(new SyntaxError("'"+a+"' is not a valid custom element name."));var b=this.j.get(a);if(b)return b.c;b=new ea;this.j.set(a,b);this.a.a.get(a)&&!this.g.some(function(b){return b.localName===a})&&D(b);return b.c};E.prototype.s=function(a){C(this.o);var b=this.f;this.f=function(d){return a(function(){return b(d)})}};window.CustomElementRegistry=E;E.prototype.define=E.prototype.l;E.prototype.upgrade=E.prototype.i;E.prototype.get=E.prototype.get;
24
- E.prototype.whenDefined=E.prototype.m;E.prototype.polyfillWrapFlushCallback=E.prototype.s;var F=window.Document.prototype.createElement,G=window.Document.prototype.createElementNS,ha=window.Document.prototype.importNode,ia=window.Document.prototype.prepend,ja=window.Document.prototype.append,ka=window.DocumentFragment.prototype.prepend,la=window.DocumentFragment.prototype.append,H=window.Node.prototype.cloneNode,I=window.Node.prototype.appendChild,J=window.Node.prototype.insertBefore,K=window.Node.prototype.removeChild,L=window.Node.prototype.replaceChild,M=Object.getOwnPropertyDescriptor(window.Node.prototype,
25
- "textContent"),N=window.Element.prototype.attachShadow,O=Object.getOwnPropertyDescriptor(window.Element.prototype,"innerHTML"),P=window.Element.prototype.getAttribute,Q=window.Element.prototype.setAttribute,R=window.Element.prototype.removeAttribute,S=window.Element.prototype.getAttributeNS,T=window.Element.prototype.setAttributeNS,U=window.Element.prototype.removeAttributeNS,ma=window.Element.prototype.insertAdjacentElement,na=window.Element.prototype.insertAdjacentHTML,oa=window.Element.prototype.prepend,
26
- pa=window.Element.prototype.append,V=window.Element.prototype.before,qa=window.Element.prototype.after,ra=window.Element.prototype.replaceWith,sa=window.Element.prototype.remove,ta=window.HTMLElement,W=Object.getOwnPropertyDescriptor(window.HTMLElement.prototype,"innerHTML"),ua=window.HTMLElement.prototype.insertAdjacentElement,va=window.HTMLElement.prototype.insertAdjacentHTML;var wa=new function(){};function xa(){var a=X;window.HTMLElement=function(){function b(){var b=this.constructor,c=a.g.get(b);if(!c)throw Error("The custom element being constructed was not registered with `customElements`.");var e=c.constructionStack;if(0===e.length)return e=F.call(document,c.localName),Object.setPrototypeOf(e,b.prototype),e.__CE_state=1,e.__CE_definition=c,w(a,e),e;c=e.length-1;var f=e[c];if(f===wa)throw Error("The HTMLElement constructor was either called reentrantly for this constructor or called multiple times.");
27
- e[c]=wa;Object.setPrototypeOf(f,b.prototype);w(a,f);return f}b.prototype=ta.prototype;Object.defineProperty(b.prototype,"constructor",{writable:!0,configurable:!0,enumerable:!1,value:b});return b}()};function Y(a,b,d){function c(b){return function(d){for(var e=[],c=0;c<arguments.length;++c)e[c]=arguments[c];c=[];for(var f=[],m=0;m<e.length;m++){var q=e[m];q instanceof Element&&l(q)&&f.push(q);if(q instanceof DocumentFragment)for(q=q.firstChild;q;q=q.nextSibling)c.push(q);else c.push(q)}b.apply(this,e);for(e=0;e<f.length;e++)z(a,f[e]);if(l(this))for(e=0;e<c.length;e++)f=c[e],f instanceof Element&&x(a,f)}}void 0!==d.h&&(b.prepend=c(d.h));void 0!==d.append&&(b.append=c(d.append))};function ya(){var a=X;r(Document.prototype,"createElement",function(b){if(this.__CE_hasRegistry){var d=a.a.get(b);if(d)return new d.constructorFunction}b=F.call(this,b);w(a,b);return b});r(Document.prototype,"importNode",function(b,d){b=ha.call(this,b,!!d);this.__CE_hasRegistry?A(a,b):v(a,b);return b});r(Document.prototype,"createElementNS",function(b,d){if(this.__CE_hasRegistry&&(null===b||"http://www.w3.org/1999/xhtml"===b)){var c=a.a.get(d);if(c)return new c.constructorFunction}b=G.call(this,b,
28
- d);w(a,b);return b});Y(a,Document.prototype,{h:ia,append:ja})};function za(){function a(a,c){Object.defineProperty(a,"textContent",{enumerable:c.enumerable,configurable:!0,get:c.get,set:function(a){if(this.nodeType===Node.TEXT_NODE)c.set.call(this,a);else{var d=void 0;if(this.firstChild){var e=this.childNodes,k=e.length;if(0<k&&l(this)){d=Array(k);for(var h=0;h<k;h++)d[h]=e[h]}}c.set.call(this,a);if(d)for(a=0;a<d.length;a++)z(b,d[a])}}})}var b=X;r(Node.prototype,"insertBefore",function(a,c){if(a instanceof DocumentFragment){var e=Array.prototype.slice.apply(a.childNodes);
29
- a=J.call(this,a,c);if(l(this))for(c=0;c<e.length;c++)x(b,e[c]);return a}e=l(a);c=J.call(this,a,c);e&&z(b,a);l(this)&&x(b,a);return c});r(Node.prototype,"appendChild",function(a){if(a instanceof DocumentFragment){var c=Array.prototype.slice.apply(a.childNodes);a=I.call(this,a);if(l(this))for(var e=0;e<c.length;e++)x(b,c[e]);return a}c=l(a);e=I.call(this,a);c&&z(b,a);l(this)&&x(b,a);return e});r(Node.prototype,"cloneNode",function(a){a=H.call(this,!!a);this.ownerDocument.__CE_hasRegistry?A(b,a):v(b,
30
- a);return a});r(Node.prototype,"removeChild",function(a){var c=l(a),e=K.call(this,a);c&&z(b,a);return e});r(Node.prototype,"replaceChild",function(a,c){if(a instanceof DocumentFragment){var e=Array.prototype.slice.apply(a.childNodes);a=L.call(this,a,c);if(l(this))for(z(b,c),c=0;c<e.length;c++)x(b,e[c]);return a}e=l(a);var f=L.call(this,a,c),d=l(this);d&&z(b,c);e&&z(b,a);d&&x(b,a);return f});M&&M.get?a(Node.prototype,M):ca(b,function(b){a(b,{enumerable:!0,configurable:!0,get:function(){for(var a=[],
31
- b=0;b<this.childNodes.length;b++){var f=this.childNodes[b];f.nodeType!==Node.COMMENT_NODE&&a.push(f.textContent)}return a.join("")},set:function(a){for(;this.firstChild;)K.call(this,this.firstChild);null!=a&&""!==a&&I.call(this,document.createTextNode(a))}})})};function Aa(a){function b(b){return function(e){for(var c=[],d=0;d<arguments.length;++d)c[d]=arguments[d];d=[];for(var k=[],h=0;h<c.length;h++){var m=c[h];m instanceof Element&&l(m)&&k.push(m);if(m instanceof DocumentFragment)for(m=m.firstChild;m;m=m.nextSibling)d.push(m);else d.push(m)}b.apply(this,c);for(c=0;c<k.length;c++)z(a,k[c]);if(l(this))for(c=0;c<d.length;c++)k=d[c],k instanceof Element&&x(a,k)}}var d=Element.prototype;void 0!==V&&(d.before=b(V));void 0!==V&&(d.after=b(qa));void 0!==ra&&
32
- r(d,"replaceWith",function(b){for(var e=[],c=0;c<arguments.length;++c)e[c]=arguments[c];c=[];for(var d=[],k=0;k<e.length;k++){var h=e[k];h instanceof Element&&l(h)&&d.push(h);if(h instanceof DocumentFragment)for(h=h.firstChild;h;h=h.nextSibling)c.push(h);else c.push(h)}k=l(this);ra.apply(this,e);for(e=0;e<d.length;e++)z(a,d[e]);if(k)for(z(a,this),e=0;e<c.length;e++)d=c[e],d instanceof Element&&x(a,d)});void 0!==sa&&r(d,"remove",function(){var b=l(this);sa.call(this);b&&z(a,this)})};function Ba(){function a(a,b){Object.defineProperty(a,"innerHTML",{enumerable:b.enumerable,configurable:!0,get:b.get,set:function(a){var e=this,d=void 0;l(this)&&(d=[],p(this,function(a){a!==e&&d.push(a)}));b.set.call(this,a);if(d)for(var f=0;f<d.length;f++){var t=d[f];1===t.__CE_state&&c.disconnectedCallback(t)}this.ownerDocument.__CE_hasRegistry?A(c,this):v(c,this);return a}})}function b(a,b){r(a,"insertAdjacentElement",function(a,e){var d=l(e);a=b.call(this,a,e);d&&z(c,e);l(a)&&x(c,e);return a})}
33
- function d(a,b){function e(a,b){for(var e=[];a!==b;a=a.nextSibling)e.push(a);for(b=0;b<e.length;b++)A(c,e[b])}r(a,"insertAdjacentHTML",function(a,c){a=a.toLowerCase();if("beforebegin"===a){var d=this.previousSibling;b.call(this,a,c);e(d||this.parentNode.firstChild,this)}else if("afterbegin"===a)d=this.firstChild,b.call(this,a,c),e(this.firstChild,d);else if("beforeend"===a)d=this.lastChild,b.call(this,a,c),e(d||this.firstChild,null);else if("afterend"===a)d=this.nextSibling,b.call(this,a,c),e(this.nextSibling,
34
- d);else throw new SyntaxError("The value provided ("+String(a)+") is not one of 'beforebegin', 'afterbegin', 'beforeend', or 'afterend'.");})}var c=X;N&&r(Element.prototype,"attachShadow",function(a){a=N.call(this,a);var b=c;if(b.b&&!a.__CE_patched){a.__CE_patched=!0;for(var e=0;e<b.c.length;e++)b.c[e](a)}return this.__CE_shadowRoot=a});O&&O.get?a(Element.prototype,O):W&&W.get?a(HTMLElement.prototype,W):da(c,function(b){a(b,{enumerable:!0,configurable:!0,get:function(){return H.call(this,!0).innerHTML},
35
- set:function(a){var b="template"===this.localName,c=b?this.content:this,e=G.call(document,this.namespaceURI,this.localName);for(e.innerHTML=a;0<c.childNodes.length;)K.call(c,c.childNodes[0]);for(a=b?e.content:e;0<a.childNodes.length;)I.call(c,a.childNodes[0])}})});r(Element.prototype,"setAttribute",function(a,b){if(1!==this.__CE_state)return Q.call(this,a,b);var e=P.call(this,a);Q.call(this,a,b);b=P.call(this,a);c.attributeChangedCallback(this,a,e,b,null)});r(Element.prototype,"setAttributeNS",function(a,
36
- b,d){if(1!==this.__CE_state)return T.call(this,a,b,d);var e=S.call(this,a,b);T.call(this,a,b,d);d=S.call(this,a,b);c.attributeChangedCallback(this,b,e,d,a)});r(Element.prototype,"removeAttribute",function(a){if(1!==this.__CE_state)return R.call(this,a);var b=P.call(this,a);R.call(this,a);null!==b&&c.attributeChangedCallback(this,a,b,null,null)});r(Element.prototype,"removeAttributeNS",function(a,b){if(1!==this.__CE_state)return U.call(this,a,b);var d=S.call(this,a,b);U.call(this,a,b);var e=S.call(this,
37
- a,b);d!==e&&c.attributeChangedCallback(this,b,d,e,a)});ua?b(HTMLElement.prototype,ua):ma?b(Element.prototype,ma):console.warn("Custom Elements: `Element#insertAdjacentElement` was not patched.");va?d(HTMLElement.prototype,va):na?d(Element.prototype,na):console.warn("Custom Elements: `Element#insertAdjacentHTML` was not patched.");Y(c,Element.prototype,{h:oa,append:pa});Aa(c)};var Z=window.customElements;if(!Z||Z.forcePolyfill||"function"!=typeof Z.define||"function"!=typeof Z.get){var X=new u;xa();ya();Y(X,DocumentFragment.prototype,{h:ka,append:la});za();Ba();document.__CE_hasRegistry=!0;var customElements=new E(X);Object.defineProperty(window,"customElements",{configurable:!0,enumerable:!0,value:customElements})};
38
- }).call(self);
39
-
40
- // Polyfill document.baseURI
41
- "string"!==typeof document.baseURI&&Object.defineProperty(Document.prototype,"baseURI",{enumerable:!0,configurable:!0,get:function(){var a=document.querySelector("base");return a&&a.href?a.href:document.URL}});
42
-
43
- // Polyfill CustomEvent
44
- "function"!==typeof window.CustomEvent&&(window.CustomEvent=function(c,a){a=a||{bubbles:!1,cancelable:!1,detail:void 0};var b=document.createEvent("CustomEvent");b.initCustomEvent(c,a.bubbles,a.cancelable,a.detail);return b},window.CustomEvent.prototype=window.Event.prototype);
45
-
46
- // Event.composedPath
47
- (function(b,c,d){b.composedPath||(b.composedPath=function(){if(this.path)return this.path;var a=this.target;for(this.path=[];null!==a.parentNode;)this.path.push(a),a=a.parentNode;this.path.push(c,d);return this.path})})(Event.prototype,document,window);
48
-
49
- /*!
50
- Element.closest and Element.matches
51
- https://github.com/jonathantneal/closest
52
- Creative Commons Zero v1.0 Universal
53
- */
54
- (function(a){"function"!==typeof a.matches&&(a.matches=a.msMatchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||function(a){a=(this.document||this.ownerDocument).querySelectorAll(a);for(var b=0;a[b]&&a[b]!==this;)++b;return!!a[b]});"function"!==typeof a.closest&&(a.closest=function(a){for(var b=this;b&&1===b.nodeType;){if(b.matches(a))return b;b=b.parentNode}return null})})(window.Element.prototype);
55
-
56
- /*!
57
- Element.getRootNode()
58
- */
59
- (function(c){function d(a){a=b(a);return a&&11===a.nodeType?d(a.host):a}function b(a){return a&&a.parentNode?b(a.parentNode):a}"function"!==typeof c.getRootNode&&(c.getRootNode=function(a){return a&&a.composed?d(this):b(this)})})(Element.prototype);
60
-
61
- /*!
62
- Element.isConnected()
63
- */
64
- (function(a){"isConnected"in a||Object.defineProperty(a,"isConnected",{configurable:!0,enumerable:!0,get:function(){var a=this.getRootNode({composed:!0});return a&&9===a.nodeType}})})(Element.prototype);
65
-
66
- /*!
67
- Element.remove()
68
- */
69
- (function(b){b.forEach(function(a){a.hasOwnProperty("remove")||Object.defineProperty(a,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})})})([Element.prototype,CharacterData.prototype,DocumentType.prototype]);
70
-
71
- /*!
72
- Element.classList
73
- */
74
- !function(e){'classList'in e||Object.defineProperty(e,"classList",{get:function(){var e=this,t=(e.getAttribute("class")||"").replace(/^\s+|\s$/g,"").split(/\s+/g);function n(){t.length>0?e.setAttribute("class",t.join(" ")):e.removeAttribute("class")}return""===t[0]&&t.splice(0,1),t.toggle=function(e,i){void 0!==i?i?t.add(e):t.remove(e):-1!==t.indexOf(e)?t.splice(t.indexOf(e),1):t.push(e),n()},t.add=function(){for(var e=[].slice.call(arguments),i=0,s=e.length;i<s;i++)-1===t.indexOf(e[i])&&t.push(e[i]);n()},t.remove=function(){for(var e=[].slice.call(arguments),i=0,s=e.length;i<s;i++)-1!==t.indexOf(e[i])&&t.splice(t.indexOf(e[i]),1);n()},t.item=function(e){return t[e]},t.contains=function(e){return-1!==t.indexOf(e)},t.replace=function(e,i){-1!==t.indexOf(e)&&t.splice(t.indexOf(e),1,i),n()},t.value=e.getAttribute("class")||"",t}})}(Element.prototype);
75
-
76
- /*!
77
- DOMTokenList
78
- */
79
- (function(b){try{document.body.classList.add()}catch(e){var c=b.add,d=b.remove;b.add=function(){for(var a=0;a<arguments.length;a++)c.call(this,arguments[a])};b.remove=function(){for(var a=0;a<arguments.length;a++)d.call(this,arguments[a])}}})(DOMTokenList.prototype);
@@ -1 +0,0 @@
1
- (function(){if("undefined"!==typeof window&&void 0!==window.Reflect&&void 0!==window.customElements){var a=HTMLElement;window.HTMLElement=function(){return Reflect.construct(a,[],this.constructor)};HTMLElement.prototype=a.prototype;HTMLElement.prototype.constructor=HTMLElement;Object.setPrototypeOf(HTMLElement,a)}})();
@@ -1,34 +0,0 @@
1
- export function applyPolyfills() {
2
- var promises = [];
3
- if (typeof window !== 'undefined') {
4
- var win = window;
5
-
6
- if (!win.customElements ||
7
- (win.Element && (!win.Element.prototype.closest || !win.Element.prototype.matches || !win.Element.prototype.remove || !win.Element.prototype.getRootNode))) {
8
- promises.push(import(/* webpackChunkName: "polyfills-dom" */ './dom.js'));
9
- }
10
-
11
- var checkIfURLIsSupported = function() {
12
- try {
13
- var u = new URL('b', 'http://a');
14
- u.pathname = 'c%20d';
15
- return (u.href === 'http://a/c%20d') && u.searchParams;
16
- } catch (e) {
17
- return false;
18
- }
19
- };
20
-
21
- if (
22
- 'function' !== typeof Object.assign || !Object.entries ||
23
- !Array.prototype.find || !Array.prototype.includes ||
24
- !String.prototype.startsWith || !String.prototype.endsWith ||
25
- (win.NodeList && !win.NodeList.prototype.forEach) ||
26
- !win.fetch ||
27
- !checkIfURLIsSupported() ||
28
- typeof WeakMap == 'undefined'
29
- ) {
30
- promises.push(import(/* webpackChunkName: "polyfills-core-js" */ './core-js.js'));
31
- }
32
- }
33
- return Promise.all(promises);
34
- }
@@ -1,6 +0,0 @@
1
- /**
2
- * SystemJS 4.0.2
3
- * MANUAL PATCH: remove script.crossOrigin = "anonymous"
4
- * MANUAL PATCH: add conditionally apply, n.System=n.System||new u
5
- */
6
- !function(){var e="undefined"!=typeof self,n=e?self:global;var t;if("undefined"!=typeof document){var e=document.querySelector("base[href]");e&&(t=e.href)}if(!t&&"undefined"!=typeof location){var e=(t=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==e&&(t=t.slice(0,e+1))}var r=/\\/g,o="undefined"!=typeof Symbol,i=o&&Symbol.toStringTag,c=o?Symbol():"@";function u(){this[c]={}}var s=u.prototype;var l;s.import=function(e,n){var t=this;return Promise.resolve(t.resolve(e,n)).then(function(e){var n=function e(n,t,r){var o=n[c][t];if(o)return o;var u=[],s=Object.create(null);i&&Object.defineProperty(s,i,{value:"Module"});var l=Promise.resolve().then(function(){return n.instantiate(t,r)}).then(function(e){if(!e)throw Error("Module "+t+" did not instantiate");var r=e[1](function(e,n){o.h=!0;var t=!1;if("object"!=typeof e)e in s&&s[e]===n||(s[e]=n,t=!0);else for(var n in e){var r=e[n];n in s&&s[n]===r||(s[n]=r,t=!0)}if(t)for(var e=0;e<u.length;e++)u[e](s);return n},2===e[1].length?{import:function(e){return n.import(e,t)},meta:n.createContext(t)}:void 0);return o.e=r.execute||function(){},[e[0],r.setters||[]]});var f=l.then(function(r){return Promise.all(r[0].map(function(o,i){var c=r[1][i];return Promise.resolve(n.resolve(o,t)).then(function(r){var o=e(n,r,t);return Promise.resolve(o.I).then(function(){return c&&(o.i.push(c),!o.h&&o.I||c(o.n)),o})})})).then(function(e){o.d=e})});return f.catch(function(e){o.e=null,o.er=e}),o=n[c][t]={id:t,i:u,n:s,I:l,L:f,h:!1,d:void 0,e:void 0,er:void 0,E:void 0,C:void 0}}(t,e);return n.C||function(e,n){return n.C=function e(n,t,r){if(!r[t.id])return r[t.id]=!0,Promise.resolve(t.L).then(function(){return Promise.all(t.d.map(function(t){return e(n,t,r)}))})}(e,n,{}).then(function(){return function e(n,t,r){if(r[t.id])return;if(r[t.id]=!0,!t.e){if(t.er)throw t.er;return t.E?t.E:void 0}var o;return t.d.forEach(function(t){{var i=e(n,t,r);i&&(o=o||[]).push(i)}}),o?Promise.all(o).then(i):i();function i(){try{var e=t.e.call(f);if(e)return e=e.then(function(){t.C=t.n,t.E=null}),t.E=t.E||e;t.C=t.n}catch(e){throw t.er=e,e}finally{t.L=t.I=void 0,t.e=null}}}(e,n,{})}).then(function(){return n.n})}(t,n)})},s.createContext=function(e){return{url:e}},s.register=function(e,n){l=[e,n]},s.getRegister=function(){var e=l;return l=void 0,e};var f=Object.freeze(Object.create(null));n.System=n.System||new u;var d=s.register;s.register=function(e,n){d.call(this,e,n)},s.instantiate=function(e,n){var t=this;return".json"===e.substr(-5)?fetch(e).then(function(e){return e.text()}).then(function(e){return[[],function(n){return{execute:function(){n("default",JSON.parse(e))}}}]}):new Promise(function(r,o){var i;function c(n){n.filename===e&&(i=n.error)}window.addEventListener("error",c);var u=document.createElement("script");u.charset="utf-8",u.async=!0,u.addEventListener("error",function(){window.removeEventListener("error",c),o(Error("Error loading "+e+(n?" from "+n:"")))}),u.addEventListener("load",function(){window.removeEventListener("error",c),document.head.removeChild(u),i?o(i):r(t.getRegister())}),u.src=e,document.head.appendChild(u)})},e&&"function"==typeof importScripts&&(s.instantiate=function(e){var n=this;return new Promise(function(t,r){try{importScripts(e)}catch(e){r(e)}t(n.getRegister())})}),s.resolve=function(e,n){var o=function(e,n){if(-1!==e.indexOf("\\")&&(e=e.replace(r,"/")),"/"===e[0]&&"/"===e[1])return n.slice(0,n.indexOf(":")+1)+e;if("."===e[0]&&("/"===e[1]||"."===e[1]&&("/"===e[2]||2===e.length&&(e+="/"))||1===e.length&&(e+="/"))||"/"===e[0]){var t=n.slice(0,n.indexOf(":")+1);var r;if(r="/"===n[t.length+1]?"file:"!==t?(r=n.slice(t.length+2)).slice(r.indexOf("/")+1):n.slice(8):n.slice(t.length+("/"===n[t.length])),"/"===e[0])return n.slice(0,n.length-r.length-1)+e;var o=r.slice(0,r.lastIndexOf("/")+1)+e,i=[];var c=-1;for(var e=0;e<o.length;e++)-1!==c?"/"===o[e]&&(i.push(o.slice(c,e+1)),c=-1):"."===o[e]?"."!==o[e+1]||"/"!==o[e+2]&&e+2!==o.length?"/"===o[e+1]||e+1===o.length?e+=1:c=e:(i.pop(),e+=2):c=e;return-1!==c&&i.push(o.slice(c)),n.slice(0,n.length-r.length)+i.join("")}}(e,n||t);if(!o){if(-1!==e.indexOf(":"))return Promise.resolve(e);throw Error('Cannot resolve "'+e+(n?'" from '+n:'"'))}return Promise.resolve(o)}}();
@@ -1,4 +0,0 @@
1
- import{__spreadArray}from"tslib";
2
- /*!
3
- * (C) Ionic http://ionicframework.com - MIT License
4
- */import{d as printIonError}from"./index-cfd9c1f2.js";import{w as win}from"./index-a5d50daf.js";var animationPrefix;var getAnimationPrefix=function(r){if(animationPrefix===undefined){var n=r.style.animationName!==undefined;var e=r.style.webkitAnimationName!==undefined;animationPrefix=!n&&e?"-webkit-":""}return animationPrefix};var setStyleProperty=function(r,n,e){var i=n.startsWith("animation")?getAnimationPrefix(r):"";r.style.setProperty(i+n,e)};var addClassToArray=function(r,n){if(r===void 0){r=[]}if(n!==undefined){var e=Array.isArray(n)?n:[n];return __spreadArray(__spreadArray([],r,true),e,true)}return r};var createAnimation=function(r){var n;var e;var i;var t;var a;var f;var u=[];var o=[];var v=[];var d=false;var c;var s={};var l=[];var m=[];var y={};var p=0;var A=false;var g=false;var C;var b;var _;var P=true;var E=false;var S=true;var x;var T=false;var w=r;var h=[];var k=[];var R=[];var I=[];var D=[];var F=[];var W=[];var j=[];var K=[];var M=[];var q=[];var z=typeof AnimationEffect==="function"||win!==undefined&&typeof win.AnimationEffect==="function";var B=typeof Element==="function"&&typeof Element.prototype.animate==="function"&&z;var G=function(){return q};var H=function(r){D.forEach((function(n){n.destroy(r)}));J(r);I.length=0;D.length=0;u.length=0;V();d=false;S=true;return x};var J=function(r){X();if(r){Y()}};var L=function(){A=false;g=false;S=true;C=undefined;b=undefined;_=undefined;p=0;E=false;P=true;T=false};var N=function(){return p!==0&&!T};var O=function(r,n){var e=n.findIndex((function(n){return n.c===r}));if(e>-1){n.splice(e,1)}};var Q=function(r,n){R.push({c:r,o:n});return x};var U=function(r,n){var e=(n===null||n===void 0?void 0:n.oneTimeCallback)?k:h;e.push({c:r,o:n});return x};var V=function(){h.length=0;k.length=0;return x};var X=function(){if(B){q.forEach((function(r){r.cancel()}));q.length=0}};var Y=function(){F.forEach((function(r){if(r===null||r===void 0?void 0:r.parentNode){r.parentNode.removeChild(r)}}));F.length=0};var Z=function(r){W.push(r);return x};var $=function(r){j.push(r);return x};var rr=function(r){K.push(r);return x};var nr=function(r){M.push(r);return x};var er=function(r){o=addClassToArray(o,r);return x};var ir=function(r){v=addClassToArray(v,r);return x};var tr=function(r){if(r===void 0){r={}}s=r;return x};var ar=function(r){if(r===void 0){r=[]}for(var n=0,e=r;n<e.length;n++){var i=e[n];s[i]=""}return x};var fr=function(r){l=addClassToArray(l,r);return x};var ur=function(r){m=addClassToArray(m,r);return x};var or=function(r){if(r===void 0){r={}}y=r;return x};var vr=function(r){if(r===void 0){r=[]}for(var n=0,e=r;n<e.length;n++){var i=e[n];y[i]=""}return x};var dr=function(){if(a!==undefined){return a}if(c){return c.getFill()}return"both"};var cr=function(){if(C!==undefined){return C}if(f!==undefined){return f}if(c){return c.getDirection()}return"normal"};var sr=function(){if(A){return"linear"}if(i!==undefined){return i}if(c){return c.getEasing()}return"linear"};var lr=function(){if(g){return 0}if(b!==undefined){return b}if(e!==undefined){return e}if(c){return c.getDuration()}return 0};var mr=function(){if(t!==undefined){return t}if(c){return c.getIterations()}return 1};var yr=function(){if(_!==undefined){return _}if(n!==undefined){return n}if(c){return c.getDelay()}return 0};var pr=function(){return u};var Ar=function(r){f=r;jr(true);return x};var gr=function(r){a=r;jr(true);return x};var Cr=function(r){n=r;jr(true);return x};var br=function(r){i=r;jr(true);return x};var _r=function(r){if(!B&&r===0){r=1}e=r;jr(true);return x};var Pr=function(r){t=r;jr(true);return x};var Er=function(r){c=r;return x};var Sr=function(r){if(r!=null){if(r.nodeType===1){I.push(r)}else if(r.length>=0){for(var n=0;n<r.length;n++){I.push(r[n])}}else{printIonError("createAnimation - Invalid addElement value.")}}return x};var xr=function(r){if(r!=null){if(Array.isArray(r)){for(var n=0,e=r;n<e.length;n++){var i=e[n];i.parent(x);D.push(i)}}else{r.parent(x);D.push(r)}}return x};var Tr=function(r){var n=u!==r;u=r;if(n){wr(u)}return x};var wr=function(r){if(B){G().forEach((function(n){var e=n.effect;if(e.setKeyframes){e.setKeyframes(r)}else{var i=new KeyframeEffect(e.target,r,e.getTiming());n.effect=i}}))}};var hr=function(){W.forEach((function(r){return r()}));j.forEach((function(r){return r()}));var r=o;var n=v;var e=s;I.forEach((function(i){var t=i.classList;r.forEach((function(r){return t.add(r)}));n.forEach((function(r){return t.remove(r)}));for(var a in e){if(e.hasOwnProperty(a)){setStyleProperty(i,a,e[a])}}}))};var kr=function(){K.forEach((function(r){return r()}));M.forEach((function(r){return r()}));var r=P?1:0;var n=l;var e=m;var i=y;I.forEach((function(r){var t=r.classList;n.forEach((function(r){return t.add(r)}));e.forEach((function(r){return t.remove(r)}));for(var a in i){if(i.hasOwnProperty(a)){setStyleProperty(r,a,i[a])}}}));b=undefined;C=undefined;_=undefined;h.forEach((function(n){return n.c(r,x)}));k.forEach((function(n){return n.c(r,x)}));k.length=0;S=true;if(P){E=true}P=true};var Rr=function(){if(p===0){return}p--;if(p===0){kr();if(c){c.animationFinish()}}};var Ir=function(){I.forEach((function(r){var n=r.animate(u,{id:w,delay:yr(),duration:lr(),easing:sr(),iterations:mr(),fill:dr(),direction:cr()});n.pause();q.push(n)}));if(q.length>0){q[0].onfinish=function(){Rr()}}};var Dr=function(){hr();if(u.length>0){if(B){Ir()}}d=true};var Fr=function(r){r=Math.min(Math.max(r,0),.9999);if(B){q.forEach((function(n){n.currentTime=n.effect.getComputedTiming().delay+lr()*r;n.pause()}))}};var Wr=function(r){q.forEach((function(r){r.effect.updateTiming({delay:yr(),duration:lr(),easing:sr(),iterations:mr(),fill:dr(),direction:cr()})}));if(r!==undefined){Fr(r)}};var jr=function(r,n,e){if(r===void 0){r=false}if(n===void 0){n=true}if(r){D.forEach((function(i){i.update(r,n,e)}))}if(B){Wr(e)}return x};var Kr=function(r,n){if(r===void 0){r=false}D.forEach((function(e){e.progressStart(r,n)}));zr();A=r;if(!d){Dr()}jr(false,true,n);return x};var Mr=function(r){D.forEach((function(n){n.progressStep(r)}));Fr(r);return x};var qr=function(r,n,e){A=false;D.forEach((function(i){i.progressEnd(r,n,e)}));if(e!==undefined){b=e}E=false;P=true;if(r===0){C=cr()==="reverse"?"normal":"reverse";if(C==="reverse"){P=false}if(B){jr();Fr(1-n)}else{_=(1-n)*lr()*-1;jr(false,false)}}else if(r===1){if(B){jr();Fr(n)}else{_=n*lr()*-1;jr(false,false)}}if(r!==undefined&&!c){Lr()}return x};var zr=function(){if(d){if(B){q.forEach((function(r){r.pause()}))}else{I.forEach((function(r){setStyleProperty(r,"animation-play-state","paused")}))}T=true}};var Br=function(){D.forEach((function(r){r.pause()}));zr();return x};var Gr=function(){Rr()};var Hr=function(){q.forEach((function(r){r.play()}));if(u.length===0||I.length===0){Rr()}};var Jr=function(){if(B){Fr(0);Wr()}};var Lr=function(r){return new Promise((function(n){if(r===null||r===void 0?void 0:r.sync){g=true;U((function(){return g=false}),{oneTimeCallback:true})}if(!d){Dr()}if(E){Jr();E=false}if(S){p=D.length+1;S=false}var e=function(){O(i,k);n()};var i=function(){O(e,R);n()};U(i,{oneTimeCallback:true});Q(e,{oneTimeCallback:true});D.forEach((function(r){r.play()}));if(B){Hr()}else{Gr()}T=false}))};var Nr=function(){D.forEach((function(r){r.stop()}));if(d){X();d=false}L();R.forEach((function(r){return r.c(0,x)}));R.length=0};var Or=function(r,n){var e;var i=u[0];if(i!==undefined&&(i.offset===undefined||i.offset===0)){i[r]=n}else{u=__spreadArray([(e={offset:0},e[r]=n,e)],u,true)}return x};var Qr=function(r,n){var e;var i=u[u.length-1];if(i!==undefined&&(i.offset===undefined||i.offset===1)){i[r]=n}else{u=__spreadArray(__spreadArray([],u,true),[(e={offset:1},e[r]=n,e)],false)}return x};var Ur=function(r,n,e){return Or(r,n).to(r,e)};return x={parentAnimation:c,elements:I,childAnimations:D,id:w,animationFinish:Rr,from:Or,to:Qr,fromTo:Ur,parent:Er,play:Lr,pause:Br,stop:Nr,destroy:H,keyframes:Tr,addAnimation:xr,addElement:Sr,update:jr,fill:gr,direction:Ar,iterations:Pr,duration:_r,easing:br,delay:Cr,getWebAnimations:G,getKeyframes:pr,getFill:dr,getDirection:cr,getDelay:yr,getIterations:mr,getEasing:sr,getDuration:lr,afterAddRead:rr,afterAddWrite:nr,afterClearStyles:vr,afterStyles:or,afterRemoveClass:ur,afterAddClass:fr,beforeAddRead:Z,beforeAddWrite:$,beforeClearStyles:ar,beforeStyles:tr,beforeRemoveClass:ir,beforeAddClass:er,onFinish:U,isRunning:N,progressStart:Kr,progressStep:Mr,progressEnd:qr}};export{createAnimation as c};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- import{i as initialize}from"./ionic-global-b26f573e.js";var globalScripts=initialize;export{globalScripts as g};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- import{w as writeTask}from"./index-527b9e34.js";import{h as hapticSelectionEnd,a as hapticSelectionStart,b as hapticSelectionChanged}from"./haptic-ac164e4c.js";import{createGesture}from"./index-39782642.js";var createButtonActiveGesture=function(t,e){var n;var r;var i=function(t,r,i){if(typeof document==="undefined"){return}var o=document.elementFromPoint(t,r);if(!o||!e(o)||o.disabled){c();return}if(o!==n){c();a(o,i)}};var a=function(t,e){n=t;if(!r){r=n}var i=n;writeTask((function(){return i.classList.add("ion-activated")}));e()};var c=function(t){if(t===void 0){t=false}if(!n){return}var e=n;writeTask((function(){return e.classList.remove("ion-activated")}));if(t&&r!==n){n.click()}n=undefined};return createGesture({el:t,gestureName:"buttonActiveDrag",threshold:0,onStart:function(t){return i(t.currentX,t.currentY,hapticSelectionStart)},onMove:function(t){return i(t.currentX,t.currentY,hapticSelectionChanged)},onEnd:function(){c(true);hapticSelectionEnd();r=undefined}})};export{createButtonActiveGesture as c};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- import{w as win}from"./index-a5d50daf.js";var getCapacitor=function(){if(win!==undefined){return win.Capacitor}return undefined};export{getCapacitor as g};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- var compareOptions=function(e,r,n){if(typeof n==="function"){return n(e,r)}else if(typeof n==="string"){return e[n]===r[n]}else{return Array.isArray(r)?r.includes(e):e===r}};var isOptionSelected=function(e,r,n){if(e===undefined){return false}if(Array.isArray(e)){return e.some((function(e){return compareOptions(e,r,n)}))}else{return compareOptions(e,r,n)}};export{compareOptions as c,isOptionSelected as i};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- import{d as printIonError}from"./index-cfd9c1f2.js";var sanitizeDOMString=function(r){try{if(r instanceof IonicSafeString){return r.value}if(!isSanitizerEnabled()||typeof r!=="string"||r===""){return r}if(r.includes("onload=")){return""}var e=document.createDocumentFragment();var n=document.createElement("div");e.appendChild(n);n.innerHTML=r;blockedTags.forEach((function(r){var n=e.querySelectorAll(r);for(var t=n.length-1;t>=0;t--){var i=n[t];if(i.parentNode){i.parentNode.removeChild(i)}else{e.removeChild(i)}var a=getElementChildren(i);for(var o=0;o<a.length;o++){sanitizeElement(a[o])}}}));var t=getElementChildren(e);for(var i=0;i<t.length;i++){sanitizeElement(t[i])}var a=document.createElement("div");a.appendChild(e);var o=a.querySelector("div");return o!==null?o.innerHTML:a.innerHTML}catch(r){printIonError("sanitizeDOMString",r);return""}};var sanitizeElement=function(r){if(r.nodeType&&r.nodeType!==1){return}if(typeof NamedNodeMap!=="undefined"&&!(r.attributes instanceof NamedNodeMap)){r.remove();return}for(var e=r.attributes.length-1;e>=0;e--){var n=r.attributes.item(e);var t=n.name;if(!allowedAttributes.includes(t.toLowerCase())){r.removeAttribute(t);continue}var i=n.value;var a=r[t];if(i!=null&&i.toLowerCase().includes("javascript:")||a!=null&&a.toLowerCase().includes("javascript:")){r.removeAttribute(t)}}var o=getElementChildren(r);for(var e=0;e<o.length;e++){sanitizeElement(o[e])}};var getElementChildren=function(r){return r.children!=null?r.children:r.childNodes};var isSanitizerEnabled=function(){var r;var e=window;var n=(r=e===null||e===void 0?void 0:e.Ionic)===null||r===void 0?void 0:r.config;if(n){if(n.get){return n.get("sanitizerEnabled",true)}else{return n.sanitizerEnabled===true||n.sanitizerEnabled===undefined}}return true};var allowedAttributes=["class","id","href","src","name","slot"];var blockedTags=["script","style","iframe","meta","link","object","embed"];var IonicSafeString=function(){function r(r){this.value=r}return r}();var setupConfig=function(r){var e=window;var n=e.Ionic;if(n&&n.config&&n.config.constructor.name!=="Object"){return}e.Ionic=e.Ionic||{};e.Ionic.config=Object.assign(Object.assign({},e.Ionic.config),r);return e.Ionic.config};var getMode=function(){var r;var e=window;var n=(r=e===null||e===void 0?void 0:e.Ionic)===null||r===void 0?void 0:r.config;if(n){if(n.mode){return n.mode}else{return n.get("mode")}}return"md"};var ENABLE_HTML_CONTENT_DEFAULT=false;export{ENABLE_HTML_CONTENT_DEFAULT as E,IonicSafeString as I,sanitizeDOMString as a,getMode as g,setupConfig as s};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- var getTimeGivenProgression=function(t,a,r,e,i){return solveCubicBezier(t[1],a[1],r[1],e[1],i).map((function(i){return solveCubicParametricEquation(t[0],a[0],r[0],e[0],i)}))};var solveCubicParametricEquation=function(t,a,r,e,i){var n=3*a*Math.pow(i-1,2);var u=-3*r*i+3*r+e*i;var o=t*Math.pow(i-1,3);return i*(n+i*u)-o};var solveCubicBezier=function(t,a,r,e,i){t-=i;a-=i;r-=i;e-=i;var n=solveCubicEquation(e-3*r+3*a-t,3*r-6*a+3*t,3*a-3*t,t);return n.filter((function(t){return t>=0&&t<=1}))};var solveQuadraticEquation=function(t,a,r){var e=a*a-4*t*r;if(e<0){return[]}else{return[(-a+Math.sqrt(e))/(2*t),(-a-Math.sqrt(e))/(2*t)]}};var solveCubicEquation=function(t,a,r,e){if(t===0){return solveQuadraticEquation(a,r,e)}a/=t;r/=t;e/=t;var i=(3*r-a*a)/3;var n=(2*a*a*a-9*a*r+27*e)/27;if(i===0){return[Math.pow(-n,1/3)]}else if(n===0){return[Math.sqrt(-i),-Math.sqrt(-i)]}var u=Math.pow(n/2,2)+Math.pow(i/3,3);if(u===0){return[Math.pow(n/2,1/2)-a/3]}else if(u>0){return[Math.pow(-(n/2)+Math.sqrt(u),1/3)-Math.pow(n/2+Math.sqrt(u),1/3)-a/3]}var o=Math.sqrt(Math.pow(-(i/3),3));var v=Math.acos(-(n/(2*Math.sqrt(Math.pow(-(i/3),3)))));var h=2*Math.pow(o,1/3);return[h*Math.cos(v/3)-a/3,h*Math.cos((v+2*Math.PI)/3)-a/3,h*Math.cos((v+4*Math.PI)/3)-a/3]};export{getTimeGivenProgression as g};
@@ -1,4 +0,0 @@
1
- import{__spreadArray}from"tslib";
2
- /*!
3
- * (C) Ionic http://ionicframework.com - MIT License
4
- */import{p as printIonWarning}from"./index-cfd9c1f2.js";var isSameDay=function(e,r){return e.month===r.month&&e.day===r.day&&e.year===r.year};var isBefore=function(e,r){return!!(e.year<r.year||e.year===r.year&&e.month<r.month||e.year===r.year&&e.month===r.month&&e.day!==null&&e.day<r.day)};var isAfter=function(e,r){return!!(e.year>r.year||e.year===r.year&&e.month>r.month||e.year===r.year&&e.month===r.month&&e.day!==null&&e.day>r.day)};var warnIfValueOutOfBounds=function(e,r,n){var a=Array.isArray(e)?e:[e];for(var t=0,i=a;t<i.length;t++){var u=i[t];if(r!==undefined&&isBefore(u,r)||n!==undefined&&isAfter(u,n)){printIonWarning("[ion-datetime] - The value provided to ion-datetime is out of bounds.\n\n"+"Min: ".concat(JSON.stringify(r),"\n")+"Max: ".concat(JSON.stringify(n),"\n")+"Value: ".concat(JSON.stringify(e)));break}}};var isLeapYear=function(e){return e%4===0&&e%100!==0||e%400===0};var getHourCycle=function(e,r){if(r!==undefined){return r}var n=new Intl.DateTimeFormat(e,{hour:"numeric"});var a=n.resolvedOptions();if(a.hourCycle!==undefined){return a.hourCycle}var t=new Date("5/18/2021 00:00");var i=n.formatToParts(t);var u=i.find((function(e){return e.type==="hour"}));if(!u){throw new Error("Hour value not found from DateTimeFormat")}switch(u.value){case"0":return"h11";case"12":return"h12";case"00":return"h23";case"24":return"h24";default:throw new Error('Invalid hour cycle "'.concat(r,'"'))}};var is24Hour=function(e){return e==="h23"||e==="h24"};var getNumDaysInMonth=function(e,r){return e===4||e===6||e===9||e===11?30:e===2?isLeapYear(r)?29:28:31};var isMonthFirstLocale=function(e,r){if(r===void 0){r={month:"numeric",year:"numeric"}}var n=new Intl.DateTimeFormat(e,r).formatToParts(new Date);return n[0].type==="month"};var isLocaleDayPeriodRTL=function(e){var r=new Intl.DateTimeFormat(e,{hour:"numeric"}).formatToParts(new Date);return r[0].type==="dayPeriod"};var ISO_8601_REGEXP=/^(\d{4}|[+\-]\d{6})(?:-(\d{2})(?:-(\d{2}))?)?(?:T(\d{2}):(\d{2})(?::(\d{2})(?:\.(\d{3}))?)?(?:(Z)|([+\-])(\d{2})(?::(\d{2}))?)?)?$/;var TIME_REGEXP=/^((\d{2}):(\d{2})(?::(\d{2})(?:\.(\d{3}))?)?(?:(Z)|([+\-])(\d{2})(?::(\d{2}))?)?)?$/;var convertToArrayOfNumbers=function(e){if(e===undefined){return}var r=e;if(typeof e==="string"){r=e.replace(/\[|\]|\s/g,"").split(",")}var n;if(Array.isArray(r)){n=r.map((function(e){return parseInt(e,10)})).filter(isFinite)}else{n=[r]}return n};var getPartsFromCalendarDay=function(e){return{month:parseInt(e.getAttribute("data-month"),10),day:parseInt(e.getAttribute("data-day"),10),year:parseInt(e.getAttribute("data-year"),10),dayOfWeek:parseInt(e.getAttribute("data-day-of-week"),10)}};function parseDate(e){if(Array.isArray(e)){var r=[];for(var n=0,a=e;n<a.length;n++){var t=a[n];var i=parseDate(t);if(!i){return undefined}r.push(i)}return r}var u=null;if(e!=null&&e!==""){u=TIME_REGEXP.exec(e);if(u){u.unshift(undefined,undefined);u[2]=u[3]=undefined}else{u=ISO_8601_REGEXP.exec(e)}}if(u===null){printIonWarning("[ion-datetime] - Unable to parse date string: ".concat(e,". Please provide a valid ISO 8601 datetime string."));return undefined}for(var o=1;o<8;o++){u[o]=u[o]!==undefined?parseInt(u[o],10):undefined}return{year:u[1],month:u[2],day:u[3],hour:u[4],minute:u[5],ampm:u[4]<12?"am":"pm"}}var clampDate=function(e,r,n){if(r&&isBefore(e,r)){return r}else if(n&&isAfter(e,n)){return n}return e};var parseAmPm=function(e){return e>=12?"pm":"am"};var parseMaxParts=function(e,r){var n=parseDate(e);if(n===undefined){return}var a=n.month,t=n.day,i=n.year,u=n.hour,o=n.minute;var d=i!==null&&i!==void 0?i:r.year;var f=a!==null&&a!==void 0?a:12;return{month:f,day:t!==null&&t!==void 0?t:getNumDaysInMonth(f,d),year:d,hour:u!==null&&u!==void 0?u:23,minute:o!==null&&o!==void 0?o:59}};var parseMinParts=function(e,r){var n=parseDate(e);if(n===undefined){return}var a=n.month,t=n.day,i=n.year,u=n.hour,o=n.minute;return{month:a!==null&&a!==void 0?a:1,day:t!==null&&t!==void 0?t:1,year:i!==null&&i!==void 0?i:r.year,hour:u!==null&&u!==void 0?u:0,minute:o!==null&&o!==void 0?o:0}};var twoDigit=function(e){return("0"+(e!==undefined?Math.abs(e):"0")).slice(-2)};var fourDigit=function(e){return("000"+(e!==undefined?Math.abs(e):"0")).slice(-4)};function convertDataToISO(e){if(Array.isArray(e)){return e.map((function(e){return convertDataToISO(e)}))}var r="";if(e.year!==undefined){r=fourDigit(e.year);if(e.month!==undefined){r+="-"+twoDigit(e.month);if(e.day!==undefined){r+="-"+twoDigit(e.day);if(e.hour!==undefined){r+="T".concat(twoDigit(e.hour),":").concat(twoDigit(e.minute),":00")}}}}else if(e.hour!==undefined){r=twoDigit(e.hour)+":"+twoDigit(e.minute)}return r}var convert12HourTo24Hour=function(e,r){if(r===undefined){return e}if(r==="am"){if(e===12){return 0}return e}if(e===12){return 12}return e+12};var getStartOfWeek=function(e){var r=e.dayOfWeek;if(r===null||r===undefined){throw new Error("No day of week provided")}return subtractDays(e,r)};var getEndOfWeek=function(e){var r=e.dayOfWeek;if(r===null||r===undefined){throw new Error("No day of week provided")}return addDays(e,6-r)};var getNextDay=function(e){return addDays(e,1)};var getPreviousDay=function(e){return subtractDays(e,1)};var getPreviousWeek=function(e){return subtractDays(e,7)};var getNextWeek=function(e){return addDays(e,7)};var subtractDays=function(e,r){var n=e.month,a=e.day,t=e.year;if(a===null){throw new Error("No day provided")}var i={month:n,day:a,year:t};i.day=a-r;if(i.day<1){i.month-=1}if(i.month<1){i.month=12;i.year-=1}if(i.day<1){var u=getNumDaysInMonth(i.month,i.year);i.day=u+i.day}return i};var addDays=function(e,r){var n=e.month,a=e.day,t=e.year;if(a===null){throw new Error("No day provided")}var i={month:n,day:a,year:t};var u=getNumDaysInMonth(n,t);i.day=a+r;if(i.day>u){i.day-=u;i.month+=1}if(i.month>12){i.month=1;i.year+=1}return i};var getPreviousMonth=function(e){var r=e.month===1?12:e.month-1;var n=e.month===1?e.year-1:e.year;var a=getNumDaysInMonth(r,n);var t=a<e.day?a:e.day;return{month:r,year:n,day:t}};var getNextMonth=function(e){var r=e.month===12?1:e.month+1;var n=e.month===12?e.year+1:e.year;var a=getNumDaysInMonth(r,n);var t=a<e.day?a:e.day;return{month:r,year:n,day:t}};var changeYear=function(e,r){var n=e.month;var a=e.year+r;var t=getNumDaysInMonth(n,a);var i=t<e.day?t:e.day;return{month:n,year:a,day:i}};var getPreviousYear=function(e){return changeYear(e,-1)};var getNextYear=function(e){return changeYear(e,1)};var getInternalHourValue=function(e,r,n){if(r){return e}return convert12HourTo24Hour(e,n)};var calculateHourFromAMPM=function(e,r){var n=e.ampm,a=e.hour;var t=a;if(n==="am"&&r==="pm"){t=convert12HourTo24Hour(t,"pm")}else if(n==="pm"&&r==="am"){t=Math.abs(t-12)}return t};var validateParts=function(e,r,n){var a=e.month,t=e.day,i=e.year;var u=clampDate(Object.assign({},e),r,n);var o=getNumDaysInMonth(a,i);if(t!==null&&o<t){u.day=o}if(r!==undefined&&isSameDay(u,r)){if(u.hour!==undefined&&r.hour!==undefined){if(u.hour<r.hour){u.hour=r.hour;u.minute=r.minute}else if(u.hour===r.hour&&u.minute!==undefined&&r.minute!==undefined&&u.minute<r.minute){u.minute=r.minute}}}if(n!==undefined&&isSameDay(e,n)){if(u.hour!==undefined&&n.hour!==undefined){if(u.hour>n.hour){u.hour=n.hour;u.minute=n.minute}else if(u.hour===n.hour&&u.minute!==undefined&&n.minute!==undefined&&u.minute>n.minute){u.minute=n.minute}}}return u};var getClosestValidDate=function(e){var r=e.refParts,n=e.monthValues,a=e.dayValues,t=e.yearValues,i=e.hourValues,u=e.minuteValues,o=e.minParts,d=e.maxParts;var f=r.hour,v=r.minute,s=r.day,l=r.month,c=r.year;var m=Object.assign(Object.assign({},r),{dayOfWeek:undefined});if(t!==undefined){var y=t.filter((function(e){if(o!==undefined&&e<o.year){return false}if(d!==undefined&&e>d.year){return false}return true}));m.year=findClosestValue(c,y)}if(n!==undefined){var g=n.filter((function(e){if(o!==undefined&&m.year===o.year&&e<o.month){return false}if(d!==undefined&&m.year===d.year&&e>d.month){return false}return true}));m.month=findClosestValue(l,g)}if(s!==null&&a!==undefined){var D=a.filter((function(e){if(o!==undefined&&isBefore(Object.assign(Object.assign({},m),{day:e}),o)){return false}if(d!==undefined&&isAfter(Object.assign(Object.assign({},m),{day:e}),d)){return false}return true}));m.day=findClosestValue(s,D)}if(f!==undefined&&i!==undefined){var h=i.filter((function(e){if((o===null||o===void 0?void 0:o.hour)!==undefined&&isSameDay(m,o)&&e<o.hour){return false}if((d===null||d===void 0?void 0:d.hour)!==undefined&&isSameDay(m,d)&&e>d.hour){return false}return true}));m.hour=findClosestValue(f,h);m.ampm=parseAmPm(m.hour)}if(v!==undefined&&u!==undefined){var T=u.filter((function(e){if((o===null||o===void 0?void 0:o.minute)!==undefined&&isSameDay(m,o)&&m.hour===o.hour&&e<o.minute){return false}if((d===null||d===void 0?void 0:d.minute)!==undefined&&isSameDay(m,d)&&m.hour===d.hour&&e>d.minute){return false}return true}));m.minute=findClosestValue(v,T)}return m};var findClosestValue=function(e,r){var n=r[0];var a=Math.abs(n-e);for(var t=1;t<r.length;t++){var i=r[t];var u=Math.abs(i-e);if(u<a){n=i;a=u}}return n};var getFormattedDayPeriod=function(e){if(e===undefined){return""}return e.toUpperCase()};var stripTimeZone=function(e){return Object.assign(Object.assign({},e),{timeZone:"UTC",timeZoneName:undefined})};var getLocalizedTime=function(e,r,n,a){if(a===void 0){a={hour:"numeric",minute:"numeric"}}var t={hour:r.hour,minute:r.minute};if(t.hour===undefined||t.minute===undefined){return"Invalid Time"}return new Intl.DateTimeFormat(e,Object.assign(Object.assign({},stripTimeZone(a)),{hourCycle:n})).format(new Date(convertDataToISO(Object.assign({year:2023,day:1,month:1},t))+"Z"))};var addTimePadding=function(e){var r=e.toString();if(r.length>1){return r}return"0".concat(r)};var getFormattedHour=function(e,r){if(e===0){switch(r){case"h11":return"0";case"h12":return"12";case"h23":return"00";case"h24":return"24";default:throw new Error('Invalid hour cycle "'.concat(r,'"'))}}var n=is24Hour(r);if(n){return addTimePadding(e)}return e.toString()};var generateDayAriaLabel=function(e,r,n){if(n.day===null){return null}var a=getNormalizedDate(n);var t=new Intl.DateTimeFormat(e,{weekday:"long",month:"long",day:"numeric",timeZone:"UTC"}).format(a);return r?"Today, ".concat(t):t};var getMonthAndYear=function(e,r){var n=getNormalizedDate(r);return new Intl.DateTimeFormat(e,{month:"long",year:"numeric",timeZone:"UTC"}).format(n)};var getDay=function(e,r){return getLocalizedDateTimeParts(e,r,{day:"numeric"}).find((function(e){return e.type==="day"})).value};var getYear=function(e,r){return getLocalizedDateTime(e,r,{year:"numeric"})};var getNormalizedDate=function(e){var r,n,a;var t=e.hour!==undefined&&e.minute!==undefined?" ".concat(e.hour,":").concat(e.minute):"";return new Date("".concat((r=e.month)!==null&&r!==void 0?r:1,"/").concat((n=e.day)!==null&&n!==void 0?n:1,"/").concat((a=e.year)!==null&&a!==void 0?a:2023).concat(t," GMT+0000"))};var getLocalizedDateTime=function(e,r,n){var a=getNormalizedDate(r);return getDateTimeFormat(e,stripTimeZone(n)).format(a)};var getLocalizedDateTimeParts=function(e,r,n){var a=getNormalizedDate(r);return getDateTimeFormat(e,n).formatToParts(a)};var getDateTimeFormat=function(e,r){return new Intl.DateTimeFormat(e,Object.assign(Object.assign({},r),{timeZone:"UTC"}))};var getTodayLabel=function(e){if("RelativeTimeFormat"in Intl){var r=new Intl.RelativeTimeFormat(e,{numeric:"auto"}).format(0,"day");return r.charAt(0).toUpperCase()+r.slice(1)}else{return"Today"}};var removeDateTzOffset=function(e){var r=e.getTimezoneOffset();e.setMinutes(e.getMinutes()-r);return e};var DATE_AM=removeDateTzOffset(new Date("2022T01:00"));var DATE_PM=removeDateTzOffset(new Date("2022T13:00"));var getLocalizedDayPeriod=function(e,r){var n=r==="am"?DATE_AM:DATE_PM;var a=new Intl.DateTimeFormat(e,{hour:"numeric",timeZone:"UTC"}).formatToParts(n).find((function(e){return e.type==="dayPeriod"}));if(a){return a.value}return getFormattedDayPeriod(r)};var formatValue=function(e){return Array.isArray(e)?e.join(","):e};var getToday=function(){return removeDateTzOffset(new Date).toISOString()};var minutes=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59];var hour11=[0,1,2,3,4,5,6,7,8,9,10,11];var hour12=[0,1,2,3,4,5,6,7,8,9,10,11];var hour23=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23];var hour24=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,0];var getDaysOfWeek=function(e,r,n){if(n===void 0){n=0}var a=r==="ios"?"short":"narrow";var t=new Intl.DateTimeFormat(e,{weekday:a});var i=new Date("11/01/2020");var u=[];for(var o=n;o<n+7;o++){var d=new Date(i);d.setDate(d.getDate()+o);u.push(t.format(d))}return u};var getDaysOfMonth=function(e,r,n){var a=getNumDaysInMonth(e,r);var t=new Date("".concat(e,"/1/").concat(r)).getDay();var i=t>=n?t-(n+1):6-(n-t);var u=[];for(var o=1;o<=a;o++){u.push({day:o,dayOfWeek:(i+o)%7})}for(var o=0;o<=i;o++){u=__spreadArray([{day:null,dayOfWeek:null}],u,true)}return u};var getHourData=function(e){switch(e){case"h11":return hour11;case"h12":return hour12;case"h23":return hour23;case"h24":return hour24;default:throw new Error('Invalid hour cycle "'.concat(e,'"'))}};var generateTime=function(e,r,n,a,t,i,u){if(n===void 0){n="h12"}var o=getHourCycle(e,n);var d=is24Hour(o);var f=getHourData(o);var v=minutes;var s=true;var l=true;if(i){f=f.filter((function(e){return i.includes(e)}))}if(u){v=v.filter((function(e){return u.includes(e)}))}if(a){if(isSameDay(r,a)){if(a.hour!==undefined){f=f.filter((function(e){var n=r.ampm==="pm"?(e+12)%24:e;return(d?e:n)>=a.hour}));s=a.hour<13}if(a.minute!==undefined){var c=false;if(a.hour!==undefined&&r.hour!==undefined){if(r.hour>a.hour){c=true}}v=v.filter((function(e){if(c){return true}return e>=a.minute}))}}else if(isBefore(r,a)){f=[];v=[];s=l=false}}if(t){if(isSameDay(r,t)){if(t.hour!==undefined){f=f.filter((function(e){var n=r.ampm==="pm"?(e+12)%24:e;return(d?e:n)<=t.hour}));l=t.hour>=12}if(t.minute!==undefined&&r.hour===t.hour){v=v.filter((function(e){return e<=t.minute}))}}else if(isAfter(r,t)){f=[];v=[];s=l=false}}return{hours:f,minutes:v,am:s,pm:l}};var generateMonths=function(e,r){var n={month:e.month,year:e.year,day:e.day};if(r!==undefined&&(e.month!==r.month||e.year!==r.year)){var a={month:r.month,year:r.year,day:r.day};var t=isBefore(a,n);return t?[a,n,getNextMonth(e)]:[getPreviousMonth(e),n,a]}return[getPreviousMonth(e),n,getNextMonth(e)]};var getMonthColumnData=function(e,r,n,a,t,i){if(i===void 0){i={month:"long"}}var u=r.year;var o=[];if(t!==undefined){var d=t;if((a===null||a===void 0?void 0:a.month)!==undefined){d=d.filter((function(e){return e<=a.month}))}if((n===null||n===void 0?void 0:n.month)!==undefined){d=d.filter((function(e){return e>=n.month}))}d.forEach((function(r){var n=new Date("".concat(r,"/1/").concat(u," GMT+0000"));var a=new Intl.DateTimeFormat(e,Object.assign(Object.assign({},i),{timeZone:"UTC"})).format(n);o.push({text:a,value:r})}))}else{var f=a&&a.year===u?a.month:12;var v=n&&n.year===u?n.month:1;for(var s=v;s<=f;s++){var l=new Date("".concat(s,"/1/").concat(u," GMT+0000"));var c=new Intl.DateTimeFormat(e,Object.assign(Object.assign({},i),{timeZone:"UTC"})).format(l);o.push({text:c,value:s})}}return o};var getDayColumnData=function(e,r,n,a,t,i){if(i===void 0){i={day:"numeric"}}var u=r.month,o=r.year;var d=[];var f=getNumDaysInMonth(u,o);var v=(a===null||a===void 0?void 0:a.day)!==null&&(a===null||a===void 0?void 0:a.day)!==undefined&&a.year===o&&a.month===u?a.day:f;var s=(n===null||n===void 0?void 0:n.day)!==null&&(n===null||n===void 0?void 0:n.day)!==undefined&&n.year===o&&n.month===u?n.day:1;if(t!==undefined){var l=t;l=l.filter((function(e){return e>=s&&e<=v}));l.forEach((function(r){var n=new Date("".concat(u,"/").concat(r,"/").concat(o," GMT+0000"));var a=new Intl.DateTimeFormat(e,Object.assign(Object.assign({},i),{timeZone:"UTC"})).format(n);d.push({text:a,value:r})}))}else{for(var c=s;c<=v;c++){var m=new Date("".concat(u,"/").concat(c,"/").concat(o," GMT+0000"));var y=new Intl.DateTimeFormat(e,Object.assign(Object.assign({},i),{timeZone:"UTC"})).format(m);d.push({text:y,value:c})}}return d};var getYearColumnData=function(e,r,n,a,t){var i,u;var o=[];if(t!==undefined){o=t;if((a===null||a===void 0?void 0:a.year)!==undefined){o=o.filter((function(e){return e<=a.year}))}if((n===null||n===void 0?void 0:n.year)!==undefined){o=o.filter((function(e){return e>=n.year}))}}else{var d=r.year;var f=(i=a===null||a===void 0?void 0:a.year)!==null&&i!==void 0?i:d;var v=(u=n===null||n===void 0?void 0:n.year)!==null&&u!==void 0?u:d-100;for(var s=v;s<=f;s++){o.push(s)}}return o.map((function(n){return{text:getYear(e,{year:n,month:r.month,day:r.day}),value:n}}))};var getAllMonthsInRange=function(e,r){if(e.month===r.month&&e.year===r.year){return[e]}return __spreadArray([e],getAllMonthsInRange(getNextMonth(e),r),true)};var getCombinedDateColumnData=function(e,r,n,a,t,i){var u=[];var o=[];var d=getAllMonthsInRange(n,a);if(i){d=d.filter((function(e){var r=e.month;return i.includes(r)}))}d.forEach((function(i){var d={month:i.month,day:null,year:i.year};var f=getDayColumnData(e,d,n,a,t,{month:"short",day:"numeric",weekday:"short"});var v=[];var s=[];f.forEach((function(n){var a=isSameDay(Object.assign(Object.assign({},d),{day:n.value}),r);s.push({text:a?getTodayLabel(e):n.text,value:"".concat(d.year,"-").concat(d.month,"-").concat(n.value)});v.push({month:d.month,year:d.year,day:n.value})}));o=__spreadArray(__spreadArray([],o,true),v,true);u=__spreadArray(__spreadArray([],u,true),s,true)}));return{parts:o,items:u}};var getTimeColumnsData=function(e,r,n,a,t,i,u){var o=getHourCycle(e,n);var d=is24Hour(o);var f=generateTime(e,r,o,a,t,i,u),v=f.hours,s=f.minutes,l=f.am,c=f.pm;var m=v.map((function(e){return{text:getFormattedHour(e,o),value:getInternalHourValue(e,d,r.ampm)}}));var y=s.map((function(e){return{text:addTimePadding(e),value:e}}));var g=[];if(l&&!d){g.push({text:getLocalizedDayPeriod(e,"am"),value:"am"})}if(c&&!d){g.push({text:getLocalizedDayPeriod(e,"pm"),value:"pm"})}return{minutesData:y,hoursData:m,dayPeriodData:g}};export{getNumDaysInMonth as A,getCombinedDateColumnData as B,getMonthColumnData as C,getDayColumnData as D,getYearColumnData as E,isMonthFirstLocale as F,getTimeColumnsData as G,isLocaleDayPeriodRTL as H,getDaysOfWeek as I,getMonthAndYear as J,getDaysOfMonth as K,getHourCycle as L,getLocalizedTime as M,getLocalizedDateTime as N,formatValue as O,clampDate as P,parseAmPm as Q,calculateHourFromAMPM as R,getDay as a,isAfter as b,isSameDay as c,getPreviousMonth as d,getNextMonth as e,getPartsFromCalendarDay as f,generateDayAriaLabel as g,getNextYear as h,isBefore as i,getPreviousYear as j,getEndOfWeek as k,getStartOfWeek as l,getPreviousDay as m,getNextDay as n,getPreviousWeek as o,getNextWeek as p,parseMinParts as q,parseMaxParts as r,parseDate as s,convertToArrayOfNumbers as t,convertDataToISO as u,validateParts as v,warnIfValueOutOfBounds as w,getToday as x,getClosestValidDate as y,generateMonths as z};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- var isRTL=function(t){if(t){if(t.dir!==""){return t.dir.toLowerCase()==="rtl"}}return(document===null||document===void 0?void 0:document.dir.toLowerCase())==="rtl"};export{isRTL as i};
@@ -1,4 +0,0 @@
1
- /*!
2
- * (C) Ionic http://ionicframework.com - MIT License
3
- */
4
- var ION_FOCUSED="ion-focused";var ION_FOCUSABLE="ion-focusable";var FOCUS_KEYS=["Tab","ArrowDown","Space","Escape"," ","Shift","Enter","ArrowLeft","ArrowRight","ArrowUp","Home","End"];var startFocusVisible=function(r){var o=[];var n=true;var t=r?r.shadowRoot:document;var u=r?r:document.body;var e=function(r){o.forEach((function(r){return r.classList.remove(ION_FOCUSED)}));r.forEach((function(r){return r.classList.add(ION_FOCUSED)}));o=r};var a=function(){n=false;e([])};var i=function(r){n=FOCUS_KEYS.includes(r.key);if(!n){e([])}};var c=function(r){if(n&&r.composedPath!==undefined){var o=r.composedPath().filter((function(r){if(r.classList){return r.classList.contains(ION_FOCUSABLE)}return false}));e(o)}};var f=function(){if(t.activeElement===u){e([])}};t.addEventListener("keydown",i);t.addEventListener("focusin",c);t.addEventListener("focusout",f);t.addEventListener("touchstart",a,{passive:true});t.addEventListener("mousedown",a);var s=function(){t.removeEventListener("keydown",i);t.removeEventListener("focusin",c);t.removeEventListener("focusout",f);t.removeEventListener("touchstart",a);t.removeEventListener("mousedown",a)};return{destroy:s,setFocus:e}};export{startFocusVisible};
@@ -1,4 +0,0 @@
1
- import{__awaiter,__generator,__spreadArray}from"tslib";
2
- /*!
3
- * (C) Ionic http://ionicframework.com - MIT License
4
- */import{c as componentOnReady}from"./helpers-d94bc8ad.js";var attachComponent=function(e,r,n,t,o,i){return __awaiter(void 0,void 0,void 0,(function(){var a,u;return __generator(this,(function(c){switch(c.label){case 0:if(e){return[2,e.attachViewToDom(r,n,o,t)]}if(!i&&typeof n!=="string"&&!(n instanceof HTMLElement)){throw new Error("framework delegate is missing")}u=typeof n==="string"?(a=r.ownerDocument)===null||a===void 0?void 0:a.createElement(n):n;if(t){t.forEach((function(e){return u.classList.add(e)}))}if(o){Object.assign(u,o)}r.appendChild(u);return[4,new Promise((function(e){return componentOnReady(u,e)}))];case 1:c.sent();return[2,u]}}))}))};var detachComponent=function(e,r){if(r){if(e){var n=r.parentElement;return e.removeViewFromDom(n,r)}r.remove()}return Promise.resolve()};var CoreDelegate=function(){var e;var r;var n=function(n,t){var o=[];for(var i=2;i<arguments.length;i++){o[i-2]=arguments[i]}return __awaiter(void 0,__spreadArray([n,t],o,true),void 0,(function(n,t,o,i){var a,u,c,f,s,d,v;if(o===void 0){o={}}if(i===void 0){i=[]}return __generator(this,(function(m){switch(m.label){case 0:e=n;if(!t)return[3,2];f=typeof t==="string"?(a=e.ownerDocument)===null||a===void 0?void 0:a.createElement(t):t;i.forEach((function(e){return f.classList.add(e)}));Object.assign(f,o);e.appendChild(f);c=f;return[4,new Promise((function(e){return componentOnReady(f,e)}))];case 1:m.sent();return[3,3];case 2:if(e.children.length>0&&(e.tagName==="ION-MODAL"||e.tagName==="ION-POPOVER")){s=c=e.children[0];if(!s.classList.contains("ion-delegate-host")){d=(u=e.ownerDocument)===null||u===void 0?void 0:u.createElement("div");d.classList.add("ion-delegate-host");i.forEach((function(e){return d.classList.add(e)}));d.append.apply(d,e.children);e.appendChild(d);c=d}}m.label=3;case 3:v=document.querySelector("ion-app")||document.body;r=document.createComment("ionic teleport");e.parentNode.insertBefore(r,e);v.appendChild(e);return[2,c!==null&&c!==void 0?c:e]}}))}))};var t=function(){if(e&&r){r.parentNode.insertBefore(e,r);r.remove()}return Promise.resolve()};return{attachViewToDom:n,removeViewFromDom:t}};export{CoreDelegate as C,attachComponent as a,detachComponent as d};