@ionic/core 8.3.4-dev.11729879684.1ea28919 → 8.3.4-dev.11730140347.1a5a7bee

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 (1141) hide show
  1. package/components/action-sheet.js +13 -8
  2. package/components/alert.js +15 -10
  3. package/components/animation.js +1 -1
  4. package/components/backdrop.js +10 -6
  5. package/components/button.js +41 -11
  6. package/components/buttons.js +11 -7
  7. package/components/capacitor.js +1 -1
  8. package/components/caret-down.js +6 -0
  9. package/components/caret-left.js +6 -0
  10. package/components/caret-right.js +6 -0
  11. package/components/checkbox.js +30 -13
  12. package/components/config2.js +79 -0
  13. package/components/data.js +4 -4
  14. package/components/focus-visible.js +8 -1
  15. package/components/framework-delegate.js +3 -1
  16. package/components/helpers.js +4 -1
  17. package/components/index2.js +2 -2
  18. package/components/index4.js +8 -9
  19. package/components/index5.js +27 -3
  20. package/components/index6.js +114 -20
  21. package/components/index7.js +163 -27
  22. package/components/input-shims.js +2 -2
  23. package/components/input.utils.js +1 -2
  24. package/components/ion-accordion-group.js +9 -6
  25. package/components/ion-accordion.js +36 -17
  26. package/components/ion-app.js +9 -77
  27. package/components/ion-avatar.js +52 -3
  28. package/components/ion-back-button.js +29 -19
  29. package/components/ion-badge.js +44 -8
  30. package/components/ion-breadcrumb.js +45 -11
  31. package/components/ion-breadcrumbs.js +9 -5
  32. package/components/ion-card-content.js +11 -7
  33. package/components/ion-card-header.js +9 -5
  34. package/components/ion-card-subtitle.js +9 -5
  35. package/components/ion-card-title.js +9 -5
  36. package/components/ion-card.js +17 -9
  37. package/components/ion-chip.js +45 -8
  38. package/components/ion-col.js +5 -5
  39. package/components/ion-content.js +14 -12
  40. package/components/ion-datetime-button.js +9 -6
  41. package/components/ion-datetime.js +96 -20
  42. package/components/ion-fab-button.js +33 -10
  43. package/components/ion-fab-list.js +5 -5
  44. package/components/ion-fab.js +6 -6
  45. package/components/ion-footer.js +18 -12
  46. package/components/ion-grid.js +5 -5
  47. package/components/ion-header.js +24 -15
  48. package/components/ion-img.js +5 -2
  49. package/components/ion-infinite-scroll-content.js +13 -8
  50. package/components/ion-infinite-scroll.js +5 -5
  51. package/components/ion-input-password-toggle.js +53 -14
  52. package/components/ion-input.js +118 -20
  53. package/components/ion-item-divider.js +9 -5
  54. package/components/ion-item-group.js +9 -5
  55. package/components/ion-item-option.js +28 -8
  56. package/components/ion-item-options.js +9 -5
  57. package/components/ion-item-sliding.js +5 -5
  58. package/components/ion-loading.js +13 -8
  59. package/components/ion-menu-button.js +28 -10
  60. package/components/ion-menu-toggle.js +5 -5
  61. package/components/ion-menu.js +12 -8
  62. package/components/ion-modal.js +51 -21
  63. package/components/ion-nav-link.js +1 -1
  64. package/components/ion-nav.js +8 -6
  65. package/components/ion-note.js +9 -5
  66. package/components/ion-picker-legacy.js +7 -8
  67. package/components/ion-progress-bar.js +11 -6
  68. package/components/ion-range.js +11 -8
  69. package/components/ion-refresher-content.js +28 -9
  70. package/components/ion-refresher.js +11 -7
  71. package/components/ion-reorder-group.js +5 -5
  72. package/components/ion-reorder.js +31 -5
  73. package/components/ion-router-link.js +6 -6
  74. package/components/ion-router-outlet.js +4 -3
  75. package/components/ion-row.js +5 -2
  76. package/components/ion-searchbar.js +93 -16
  77. package/components/ion-segment-button.js +12 -8
  78. package/components/ion-segment.js +11 -7
  79. package/components/ion-select-option.js +5 -2
  80. package/components/ion-select.js +77 -28
  81. package/components/ion-skeleton-text.js +6 -5
  82. package/components/ion-split-pane.js +12 -8
  83. package/components/ion-tab-bar.js +31 -8
  84. package/components/ion-tab-button.js +12 -7
  85. package/components/ion-tab.js +2 -2
  86. package/components/ion-tabs.js +2 -2
  87. package/components/ion-text.js +5 -5
  88. package/components/ion-textarea.js +38 -11
  89. package/components/ion-thumbnail.js +5 -2
  90. package/components/ion-title.js +11 -7
  91. package/components/ion-toast.js +30 -12
  92. package/components/ion-toggle.js +77 -18
  93. package/components/ion-toolbar.js +11 -7
  94. package/components/ionic-global.js +374 -84
  95. package/components/ios.transition.js +1 -0
  96. package/components/item.js +41 -11
  97. package/components/keyboard-controller.js +4 -2
  98. package/components/label.js +9 -5
  99. package/components/list-header.js +9 -5
  100. package/components/list.js +29 -6
  101. package/components/list2.js +6 -0
  102. package/components/notch-controller.js +1 -1
  103. package/components/overlays.js +9 -31
  104. package/components/picker-column-option.js +9 -5
  105. package/components/picker-column.js +7 -8
  106. package/components/picker-column2.js +4 -4
  107. package/components/picker.js +8 -4
  108. package/components/popover.js +11 -8
  109. package/components/radio-group.js +5 -3
  110. package/components/radio.js +12 -8
  111. package/components/ripple-effect.js +18 -8
  112. package/components/select-popover.js +9 -2
  113. package/components/spinner.js +36 -9
  114. package/components/status-tap.js +1 -1
  115. package/components/x.js +6 -0
  116. package/css/core.css +1 -1
  117. package/css/core.css.map +1 -1
  118. package/css/display.css.map +1 -1
  119. package/css/flex-utils.css.map +1 -1
  120. package/css/float-elements.css.map +1 -1
  121. package/css/global.bundle.css.map +1 -1
  122. package/css/ionic/bundle.ionic.css +1 -0
  123. package/css/ionic/bundle.ionic.css.map +1 -0
  124. package/css/ionic/core.ionic.css +1 -0
  125. package/css/ionic/core.ionic.css.map +1 -0
  126. package/css/ionic/global.bundle.ionic.css +1 -0
  127. package/css/ionic/global.bundle.ionic.css.map +1 -0
  128. package/css/ionic/ionic-swiper.ionic.css +1 -0
  129. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  130. package/css/ionic/link.ionic.css +1 -0
  131. package/css/ionic/link.ionic.css.map +1 -0
  132. package/css/ionic/structure.ionic.css +1 -0
  133. package/css/ionic/structure.ionic.css.map +1 -0
  134. package/css/ionic/typography.ionic.css +1 -0
  135. package/css/ionic/typography.ionic.css.map +1 -0
  136. package/css/ionic/utils.bundle.ionic.css +1 -0
  137. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  138. package/css/ionic-swiper.css +1 -1
  139. package/css/ionic-swiper.css.map +1 -1
  140. package/css/ionic.bundle.css +1 -1
  141. package/css/ionic.bundle.css.map +1 -1
  142. package/css/normalize.css.map +1 -1
  143. package/css/padding.css.map +1 -1
  144. package/css/palettes/dark.always.css.map +1 -1
  145. package/css/palettes/dark.class.css.map +1 -1
  146. package/css/palettes/dark.system.css.map +1 -1
  147. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  148. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  149. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  150. package/css/palettes/high-contrast.always.css.map +1 -1
  151. package/css/palettes/high-contrast.class.css.map +1 -1
  152. package/css/palettes/high-contrast.system.css.map +1 -1
  153. package/css/structure.css.map +1 -1
  154. package/css/text-alignment.css.map +1 -1
  155. package/css/text-transformation.css.map +1 -1
  156. package/css/typography.css.map +1 -1
  157. package/css/utils.bundle.css.map +1 -1
  158. package/dist/cjs/{animation-b4fdf128.js → animation-232e0c8f.js} +2 -2
  159. package/dist/cjs/{app-globals-21afee77.js → app-globals-0189a70c.js} +1 -1
  160. package/dist/cjs/{button-active-3f2f60b4.js → button-active-41228dbf.js} +4 -4
  161. package/dist/cjs/{capacitor-c04564bf.js → capacitor-806e7fee.js} +3 -3
  162. package/dist/cjs/caret-down-3c215cff.js +8 -0
  163. package/dist/cjs/caret-left-2bb66970.js +8 -0
  164. package/dist/cjs/caret-right-88e03970.js +8 -0
  165. package/dist/cjs/{index-73f75efb.js → config-1349d5b4.js} +79 -0
  166. package/dist/cjs/{data-21dc0f81.js → data-cad5d489.js} +6 -6
  167. package/dist/cjs/{focus-visible-7a0ce04f.js → focus-visible-9aa87fa3.js} +8 -0
  168. package/dist/cjs/{framework-delegate-55f5683a.js → framework-delegate-cf116b1d.js} +4 -2
  169. package/dist/cjs/{haptic-f6b37aa3.js → haptic-f0cad9a6.js} +1 -1
  170. package/dist/cjs/{helpers-afaa9001.js → helpers-e75eb909.js} +4 -1
  171. package/dist/cjs/{index-5b6a7459.js → index-1d02518d.js} +3 -3
  172. package/dist/cjs/{index-9509ecad.js → index-2c8b42cd.js} +8 -7
  173. package/dist/cjs/{index-f05acd21.js → index-3ac79a1b.js} +11 -12
  174. package/dist/cjs/{index-9cd00dc3.js → index-71085796.js} +14 -15
  175. package/dist/cjs/index.cjs.js +10 -13
  176. package/dist/cjs/{input-shims-9e59ef62.js → input-shims-2958dcc9.js} +17 -17
  177. package/dist/cjs/{input.utils-611cde0b.js → input.utils-ed749ecb.js} +4 -5
  178. package/dist/cjs/ion-accordion_2.cjs.entry.js +53 -32
  179. package/dist/cjs/ion-action-sheet.cjs.entry.js +32 -30
  180. package/dist/cjs/ion-alert.cjs.entry.js +42 -41
  181. package/dist/cjs/ion-app_8.cjs.entry.js +144 -189
  182. package/dist/cjs/ion-avatar_3.cjs.entry.js +96 -13
  183. package/dist/cjs/ion-back-button.cjs.entry.js +34 -25
  184. package/dist/cjs/ion-backdrop.cjs.entry.js +13 -9
  185. package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +62 -25
  186. package/dist/cjs/ion-button_2.cjs.entry.js +54 -24
  187. package/dist/cjs/ion-card_5.cjs.entry.js +59 -36
  188. package/dist/cjs/ion-checkbox.cjs.entry.js +36 -21
  189. package/dist/cjs/ion-chip.cjs.entry.js +44 -9
  190. package/dist/cjs/ion-col_3.cjs.entry.js +18 -15
  191. package/dist/cjs/ion-datetime-button.cjs.entry.js +18 -15
  192. package/dist/cjs/ion-datetime_3.cjs.entry.js +188 -115
  193. package/dist/cjs/ion-fab_3.cjs.entry.js +51 -29
  194. package/dist/cjs/ion-img.cjs.entry.js +12 -9
  195. package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +32 -29
  196. package/dist/cjs/ion-input-password-toggle.cjs.entry.js +57 -19
  197. package/dist/cjs/ion-input.cjs.entry.js +133 -39
  198. package/dist/cjs/ion-item-option_3.cjs.entry.js +51 -29
  199. package/dist/cjs/ion-item_8.cjs.entry.js +131 -60
  200. package/dist/cjs/ion-loading.cjs.entry.js +31 -30
  201. package/dist/cjs/ion-menu_3.cjs.entry.js +67 -49
  202. package/dist/cjs/ion-modal.cjs.entry.js +94 -67
  203. package/dist/cjs/ion-nav_2.cjs.entry.js +29 -28
  204. package/dist/cjs/ion-picker-column-option.cjs.entry.js +13 -9
  205. package/dist/cjs/ion-picker-column.cjs.entry.js +16 -17
  206. package/dist/cjs/ion-picker.cjs.entry.js +13 -9
  207. package/dist/cjs/ion-popover.cjs.entry.js +31 -30
  208. package/dist/cjs/ion-progress-bar.cjs.entry.js +18 -14
  209. package/dist/cjs/ion-radio_2.cjs.entry.js +27 -21
  210. package/dist/cjs/ion-range.cjs.entry.js +31 -28
  211. package/dist/cjs/ion-refresher_2.cjs.entry.js +73 -53
  212. package/dist/cjs/ion-reorder_2.cjs.entry.js +45 -22
  213. package/dist/cjs/ion-ripple-effect.cjs.entry.js +22 -12
  214. package/dist/cjs/ion-route_4.cjs.entry.js +17 -17
  215. package/dist/cjs/ion-searchbar.cjs.entry.js +107 -31
  216. package/dist/cjs/ion-segment_2.cjs.entry.js +33 -25
  217. package/dist/cjs/ion-select_3.cjs.entry.js +118 -63
  218. package/dist/cjs/ion-spinner.cjs.entry.js +42 -17
  219. package/dist/cjs/ion-split-pane.cjs.entry.js +16 -12
  220. package/dist/cjs/ion-tab-bar_2.cjs.entry.js +52 -28
  221. package/dist/cjs/ion-tab_2.cjs.entry.js +14 -14
  222. package/dist/cjs/ion-text.cjs.entry.js +7 -7
  223. package/dist/cjs/ion-textarea.cjs.entry.js +56 -32
  224. package/dist/cjs/ion-toast.cjs.entry.js +58 -43
  225. package/dist/cjs/ion-toggle.cjs.entry.js +88 -31
  226. package/dist/cjs/ionic-global-3647b9f5.js +534 -0
  227. package/dist/cjs/ionic.cjs.js +7 -7
  228. package/dist/cjs/{ios.transition-cf40433b.js → ios.transition-4411892c.js} +6 -7
  229. package/dist/cjs/{keyboard-controller-c05e747a.js → keyboard-controller-020444ad.js} +11 -9
  230. package/dist/cjs/{keyboard-af1bb365.js → keyboard-e0062bfc.js} +4 -3
  231. package/dist/cjs/{keyboard-0272231f.js → keyboard-ed6e1327.js} +1 -1
  232. package/dist/cjs/list-2930c629.js +8 -0
  233. package/dist/cjs/loader.cjs.js +5 -5
  234. package/dist/cjs/{md.transition-ededf99f.js → md.transition-261f9f67.js} +5 -7
  235. package/dist/cjs/{notch-controller-d69150f5.js → notch-controller-70ad2323.js} +4 -4
  236. package/dist/cjs/{overlays-ec7d9b5a.js → overlays-22320753.js} +22 -44
  237. package/dist/cjs/{status-tap-37681226.js → status-tap-cfc7f9a5.js} +8 -8
  238. package/dist/cjs/{swipe-back-0303a5e4.js → swipe-back-ecdf1cf5.js} +2 -1
  239. package/dist/cjs/x-81a8f51c.js +8 -0
  240. package/dist/collection/components/accordion/accordion.ionic.css +202 -0
  241. package/dist/collection/components/accordion/accordion.ios.css +73 -58
  242. package/dist/collection/components/accordion/accordion.js +37 -21
  243. package/dist/collection/components/accordion/accordion.md.css +67 -59
  244. package/dist/collection/components/accordion-group/accordion-group.ionic.css +82 -0
  245. package/dist/collection/components/accordion-group/accordion-group.ios.css +16 -4
  246. package/dist/collection/components/accordion-group/accordion-group.js +11 -8
  247. package/dist/collection/components/accordion-group/accordion-group.md.css +22 -4
  248. package/dist/collection/components/action-sheet/action-sheet.ios.css +18 -6
  249. package/dist/collection/components/action-sheet/action-sheet.js +14 -10
  250. package/dist/collection/components/action-sheet/action-sheet.md.css +17 -5
  251. package/dist/collection/components/alert/alert.ios.css +19 -1
  252. package/dist/collection/components/alert/alert.js +15 -12
  253. package/dist/collection/components/alert/alert.md.css +19 -1
  254. package/dist/collection/components/app/app.js +12 -78
  255. package/dist/collection/components/avatar/avatar.ionic.css +270 -0
  256. package/dist/collection/components/avatar/avatar.ios.css +12 -0
  257. package/dist/collection/components/avatar/avatar.js +92 -4
  258. package/dist/collection/components/avatar/avatar.md.css +12 -0
  259. package/dist/collection/components/back-button/back-button.ios.css +60 -48
  260. package/dist/collection/components/back-button/back-button.js +27 -19
  261. package/dist/collection/components/back-button/back-button.md.css +60 -48
  262. package/dist/collection/components/backdrop/backdrop.ionic.css +152 -0
  263. package/dist/collection/components/backdrop/backdrop.ios.css +13 -1
  264. package/dist/collection/components/backdrop/backdrop.js +12 -6
  265. package/dist/collection/components/backdrop/backdrop.md.css +13 -1
  266. package/dist/collection/components/badge/badge.ionic.css +250 -0
  267. package/dist/collection/components/badge/badge.ios.css +106 -3
  268. package/dist/collection/components/badge/badge.js +75 -8
  269. package/dist/collection/components/badge/badge.md.css +106 -3
  270. package/dist/collection/components/breadcrumb/breadcrumb.ios.css +20 -8
  271. package/dist/collection/components/breadcrumb/breadcrumb.js +43 -11
  272. package/dist/collection/components/breadcrumb/breadcrumb.md.css +20 -8
  273. package/dist/collection/components/breadcrumbs/breadcrumbs.ios.css +6 -0
  274. package/dist/collection/components/breadcrumbs/breadcrumbs.js +11 -9
  275. package/dist/collection/components/breadcrumbs/breadcrumbs.md.css +6 -0
  276. package/dist/collection/components/button/button.ionic.css +590 -0
  277. package/dist/collection/components/button/button.ios.css +129 -36
  278. package/dist/collection/components/button/button.js +46 -16
  279. package/dist/collection/components/button/button.md.css +120 -40
  280. package/dist/collection/components/buttons/buttons.ionic.css +100 -0
  281. package/dist/collection/components/buttons/buttons.ios.css +59 -7
  282. package/dist/collection/components/buttons/buttons.js +14 -8
  283. package/dist/collection/components/buttons/buttons.md.css +55 -3
  284. package/dist/collection/components/card/card.ionic.css +138 -0
  285. package/dist/collection/components/card/card.ios.css +65 -14
  286. package/dist/collection/components/card/card.js +34 -10
  287. package/dist/collection/components/card/card.md.css +65 -14
  288. package/dist/collection/components/card-content/card-content.ionic.css +91 -0
  289. package/dist/collection/components/card-content/card-content.ios.css +16 -1
  290. package/dist/collection/components/card-content/card-content.js +11 -8
  291. package/dist/collection/components/card-content/card-content.md.css +16 -1
  292. package/dist/collection/components/card-header/card-header.ionic.css +88 -0
  293. package/dist/collection/components/card-header/card-header.ios.css +27 -15
  294. package/dist/collection/components/card-header/card-header.js +12 -9
  295. package/dist/collection/components/card-header/card-header.md.css +27 -15
  296. package/dist/collection/components/card-subtitle/card-subtitle.ionic.css +147 -0
  297. package/dist/collection/components/card-subtitle/card-subtitle.ios.css +12 -0
  298. package/dist/collection/components/card-subtitle/card-subtitle.js +11 -8
  299. package/dist/collection/components/card-subtitle/card-subtitle.md.css +12 -0
  300. package/dist/collection/components/card-title/card-title.ios.css +73 -0
  301. package/dist/collection/components/card-title/card-title.js +11 -8
  302. package/dist/collection/components/card-title/card-title.md.css +73 -0
  303. package/dist/collection/components/checkbox/checkbox.ionic.css +403 -0
  304. package/dist/collection/components/checkbox/checkbox.ios.css +20 -2
  305. package/dist/collection/components/checkbox/checkbox.js +63 -14
  306. package/dist/collection/components/checkbox/checkbox.md.css +21 -3
  307. package/dist/collection/components/chip/chip.ionic.css +161 -0
  308. package/dist/collection/components/chip/chip.ios.css +20 -1
  309. package/dist/collection/components/chip/chip.js +77 -8
  310. package/dist/collection/components/chip/chip.md.css +20 -1
  311. package/dist/collection/components/col/col.css +12 -0
  312. package/dist/collection/components/col/col.js +9 -5
  313. package/dist/collection/components/content/content.css +8 -2
  314. package/dist/collection/components/content/content.js +16 -11
  315. package/dist/collection/components/datetime/datetime.ionic.css +669 -0
  316. package/dist/collection/components/datetime/datetime.ios.css +232 -73
  317. package/dist/collection/components/datetime/datetime.js +95 -19
  318. package/dist/collection/components/datetime/datetime.md.css +232 -73
  319. package/dist/collection/components/datetime/utils/data.js +3 -3
  320. package/dist/collection/components/datetime-button/datetime-button.ios.css +6 -0
  321. package/dist/collection/components/datetime-button/datetime-button.js +11 -8
  322. package/dist/collection/components/datetime-button/datetime-button.md.css +6 -0
  323. package/dist/collection/components/fab/fab.css +25 -1
  324. package/dist/collection/components/fab/fab.js +9 -5
  325. package/dist/collection/components/fab-button/fab-button.ios.css +18 -6
  326. package/dist/collection/components/fab-button/fab-button.js +36 -15
  327. package/dist/collection/components/fab-button/fab-button.md.css +20 -8
  328. package/dist/collection/components/fab-list/fab-list.css +12 -0
  329. package/dist/collection/components/fab-list/fab-list.js +9 -5
  330. package/dist/collection/components/footer/footer.ios.css +14 -2
  331. package/dist/collection/components/footer/footer.js +20 -15
  332. package/dist/collection/components/footer/footer.md.css +12 -0
  333. package/dist/collection/components/grid/grid.css +12 -0
  334. package/dist/collection/components/grid/grid.js +9 -5
  335. package/dist/collection/components/header/header.ionic.css +87 -0
  336. package/dist/collection/components/header/header.ios.css +25 -10
  337. package/dist/collection/components/header/header.js +42 -17
  338. package/dist/collection/components/header/header.md.css +23 -8
  339. package/dist/collection/components/img/img.js +8 -2
  340. package/dist/collection/components/infinite-scroll/infinite-scroll.js +8 -4
  341. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.ios.css +12 -0
  342. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +16 -10
  343. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.md.css +12 -0
  344. package/dist/collection/components/input/input.ionic.css +1097 -0
  345. package/dist/collection/components/input/input.ios.css +21 -2
  346. package/dist/collection/components/input/input.js +144 -30
  347. package/dist/collection/components/input/input.md.css +43 -4
  348. package/dist/collection/components/input-password-toggle/input-password-toggle.common.css +61 -0
  349. package/dist/collection/components/input-password-toggle/input-password-toggle.ionic.css +142 -0
  350. package/dist/collection/components/input-password-toggle/input-password-toggle.js +48 -12
  351. package/dist/collection/components/item/item.ionic.css +502 -0
  352. package/dist/collection/components/item/item.ios.css +109 -69
  353. package/dist/collection/components/item/item.js +44 -16
  354. package/dist/collection/components/item/item.md.css +120 -68
  355. package/dist/collection/components/item-divider/item-divider.ios.css +18 -0
  356. package/dist/collection/components/item-divider/item-divider.js +11 -8
  357. package/dist/collection/components/item-divider/item-divider.md.css +18 -0
  358. package/dist/collection/components/item-group/item-group.ios.css +12 -0
  359. package/dist/collection/components/item-group/item-group.js +13 -7
  360. package/dist/collection/components/item-group/item-group.md.css +12 -0
  361. package/dist/collection/components/item-option/item-option.ionic.css +333 -0
  362. package/dist/collection/components/item-option/item-option.ios.css +14 -2
  363. package/dist/collection/components/item-option/item-option.js +43 -8
  364. package/dist/collection/components/item-option/item-option.md.css +14 -2
  365. package/dist/collection/components/item-options/item-options.ionic.css +259 -0
  366. package/dist/collection/components/item-options/item-options.ios.css +18 -0
  367. package/dist/collection/components/item-options/item-options.js +13 -7
  368. package/dist/collection/components/item-options/item-options.md.css +18 -0
  369. package/dist/collection/components/item-sliding/item-sliding.css +6 -0
  370. package/dist/collection/components/item-sliding/item-sliding.js +8 -4
  371. package/dist/collection/components/label/label.ios.css +18 -0
  372. package/dist/collection/components/label/label.js +11 -8
  373. package/dist/collection/components/label/label.md.css +18 -0
  374. package/dist/collection/components/list/list.ionic.css +194 -0
  375. package/dist/collection/components/list/list.ios.css +18 -0
  376. package/dist/collection/components/list/list.js +47 -9
  377. package/dist/collection/components/list/list.md.css +20 -2
  378. package/dist/collection/components/list-header/list-header.ionic.css +237 -0
  379. package/dist/collection/components/list-header/list-header.ios.css +18 -0
  380. package/dist/collection/components/list-header/list-header.js +11 -8
  381. package/dist/collection/components/list-header/list-header.md.css +18 -0
  382. package/dist/collection/components/loading/loading.ios.css +13 -1
  383. package/dist/collection/components/loading/loading.js +13 -10
  384. package/dist/collection/components/loading/loading.md.css +13 -1
  385. package/dist/collection/components/menu/menu.ios.css +15 -3
  386. package/dist/collection/components/menu/menu.js +12 -7
  387. package/dist/collection/components/menu/menu.md.css +15 -3
  388. package/dist/collection/components/menu-button/menu-button.ionic.css +239 -0
  389. package/dist/collection/components/menu-button/menu-button.ios.css +48 -14
  390. package/dist/collection/components/menu-button/menu-button.js +26 -10
  391. package/dist/collection/components/menu-button/menu-button.md.css +49 -15
  392. package/dist/collection/components/menu-toggle/menu-toggle.js +8 -5
  393. package/dist/collection/components/modal/animations/sheet.js +8 -2
  394. package/dist/collection/components/modal/gestures/sheet.js +10 -6
  395. package/dist/collection/components/modal/modal.ionic.css +240 -0
  396. package/dist/collection/components/modal/modal.ios.css +106 -63
  397. package/dist/collection/components/modal/modal.js +47 -11
  398. package/dist/collection/components/modal/modal.md.css +106 -63
  399. package/dist/collection/components/nav/nav.css +7 -1
  400. package/dist/collection/components/nav/nav.js +11 -5
  401. package/dist/collection/components/nav-link/nav-link.js +5 -1
  402. package/dist/collection/components/note/note.ios.css +12 -0
  403. package/dist/collection/components/note/note.js +11 -8
  404. package/dist/collection/components/note/note.md.css +12 -0
  405. package/dist/collection/components/picker/picker.ios.css +15 -3
  406. package/dist/collection/components/picker/picker.js +8 -5
  407. package/dist/collection/components/picker/picker.md.css +15 -3
  408. package/dist/collection/components/picker-column/picker-column.css +9 -2
  409. package/dist/collection/components/picker-column/picker-column.js +8 -7
  410. package/dist/collection/components/picker-column-option/picker-column-option.ios.css +6 -0
  411. package/dist/collection/components/picker-column-option/picker-column-option.js +13 -7
  412. package/dist/collection/components/picker-column-option/picker-column-option.md.css +6 -0
  413. package/dist/collection/components/picker-legacy/picker.ios.css +13 -1
  414. package/dist/collection/components/picker-legacy/picker.js +7 -6
  415. package/dist/collection/components/picker-legacy/picker.md.css +13 -1
  416. package/dist/collection/components/picker-legacy-column/picker-column.ios.css +12 -0
  417. package/dist/collection/components/picker-legacy-column/picker-column.js +4 -4
  418. package/dist/collection/components/picker-legacy-column/picker-column.md.css +12 -0
  419. package/dist/collection/components/popover/popover.ios.css +13 -1
  420. package/dist/collection/components/popover/popover.js +15 -12
  421. package/dist/collection/components/popover/popover.md.css +13 -1
  422. package/dist/collection/components/progress-bar/progress-bar.ios.css +8 -2
  423. package/dist/collection/components/progress-bar/progress-bar.js +10 -7
  424. package/dist/collection/components/progress-bar/progress-bar.md.css +8 -2
  425. package/dist/collection/components/radio/radio.ionic.css +419 -0
  426. package/dist/collection/components/radio/radio.ios.css +134 -91
  427. package/dist/collection/components/radio/radio.js +12 -9
  428. package/dist/collection/components/radio/radio.md.css +134 -91
  429. package/dist/collection/components/radio-group/radio-group.js +9 -3
  430. package/dist/collection/components/range/range.ios.css +12 -0
  431. package/dist/collection/components/range/range.js +12 -9
  432. package/dist/collection/components/range/range.md.css +12 -0
  433. package/dist/collection/components/refresher/refresher.ios.css +14 -1
  434. package/dist/collection/components/refresher/refresher.js +11 -8
  435. package/dist/collection/components/refresher/refresher.md.css +15 -2
  436. package/dist/collection/components/refresher-content/refresher-content.js +28 -7
  437. package/dist/collection/components/reorder/reorder.ios.css +6 -0
  438. package/dist/collection/components/reorder/reorder.js +33 -6
  439. package/dist/collection/components/reorder/reorder.md.css +6 -0
  440. package/dist/collection/components/reorder-group/reorder-group.css +6 -0
  441. package/dist/collection/components/reorder-group/reorder-group.js +8 -4
  442. package/dist/collection/components/ripple-effect/{ripple-effect.css → ripple-effect.common.css} +7 -1
  443. package/dist/collection/components/ripple-effect/ripple-effect.ionic.css +154 -0
  444. package/dist/collection/components/ripple-effect/ripple-effect.js +14 -6
  445. package/dist/collection/components/route/route.js +4 -0
  446. package/dist/collection/components/router/router.js +4 -0
  447. package/dist/collection/components/router-link/router-link.css +8 -2
  448. package/dist/collection/components/router-link/router-link.js +9 -5
  449. package/dist/collection/components/router-outlet/router-outlet.css +7 -1
  450. package/dist/collection/components/router-outlet/router-outlet.js +5 -2
  451. package/dist/collection/components/row/row.css +12 -0
  452. package/dist/collection/components/row/row.js +9 -2
  453. package/dist/collection/components/searchbar/searchbar.ionic.css +346 -0
  454. package/dist/collection/components/searchbar/searchbar.ios.css +56 -18
  455. package/dist/collection/components/searchbar/searchbar.js +97 -25
  456. package/dist/collection/components/searchbar/searchbar.md.css +56 -18
  457. package/dist/collection/components/segment/segment.ionic.css +118 -0
  458. package/dist/collection/components/segment/segment.ios.css +45 -2
  459. package/dist/collection/components/segment/segment.js +11 -8
  460. package/dist/collection/components/segment/segment.md.css +45 -2
  461. package/dist/collection/components/segment-button/segment-button.ionic.css +351 -0
  462. package/dist/collection/components/segment-button/segment-button.ios.css +146 -105
  463. package/dist/collection/components/segment-button/segment-button.js +12 -9
  464. package/dist/collection/components/segment-button/segment-button.md.css +148 -107
  465. package/dist/collection/components/select/select.ios.css +22 -3
  466. package/dist/collection/components/select/select.js +79 -31
  467. package/dist/collection/components/select/select.md.css +38 -5
  468. package/dist/collection/components/select-option/select-option.js +9 -2
  469. package/dist/collection/components/select-popover/select-popover.ios.css +18 -0
  470. package/dist/collection/components/select-popover/select-popover.js +12 -4
  471. package/dist/collection/components/select-popover/select-popover.md.css +18 -0
  472. package/dist/collection/components/skeleton-text/skeleton-text.css +6 -0
  473. package/dist/collection/components/skeleton-text/skeleton-text.js +9 -5
  474. package/dist/collection/components/spinner/spinner.common.css +199 -0
  475. package/dist/collection/components/spinner/{spinner.css → spinner.ionic.css} +64 -0
  476. package/dist/collection/components/spinner/spinner.js +46 -6
  477. package/dist/collection/components/split-pane/split-pane.ios.css +20 -2
  478. package/dist/collection/components/split-pane/split-pane.js +14 -8
  479. package/dist/collection/components/split-pane/split-pane.md.css +20 -2
  480. package/dist/collection/components/tab/tab.js +6 -2
  481. package/dist/collection/components/tab-bar/tab-bar.ionic.css +252 -0
  482. package/dist/collection/components/tab-bar/tab-bar.ios.css +71 -43
  483. package/dist/collection/components/tab-bar/tab-bar.js +65 -10
  484. package/dist/collection/components/tab-bar/tab-bar.md.css +71 -43
  485. package/dist/collection/components/tab-button/tab-button.ionic.css +272 -0
  486. package/dist/collection/components/tab-button/tab-button.ios.css +103 -88
  487. package/dist/collection/components/tab-button/tab-button.js +11 -8
  488. package/dist/collection/components/tab-button/tab-button.md.css +103 -88
  489. package/dist/collection/components/tabs/tabs.css +7 -1
  490. package/dist/collection/components/tabs/tabs.js +4 -1
  491. package/dist/collection/components/text/text.css +6 -0
  492. package/dist/collection/components/text/text.js +7 -6
  493. package/dist/collection/components/textarea/textarea.ionic.css +805 -0
  494. package/dist/collection/components/textarea/textarea.ios.css +201 -96
  495. package/dist/collection/components/textarea/textarea.js +59 -16
  496. package/dist/collection/components/textarea/textarea.md.css +214 -97
  497. package/dist/collection/components/thumbnail/thumbnail.css +6 -0
  498. package/dist/collection/components/thumbnail/thumbnail.js +9 -2
  499. package/dist/collection/components/title/title.ionic.css +146 -0
  500. package/dist/collection/components/title/title.ios.css +32 -4
  501. package/dist/collection/components/title/title.js +13 -7
  502. package/dist/collection/components/title/title.md.css +32 -4
  503. package/dist/collection/components/toast/animations/utils.js +1 -1
  504. package/dist/collection/components/toast/toast.ionic.css +359 -0
  505. package/dist/collection/components/toast/toast.ios.css +74 -35
  506. package/dist/collection/components/toast/toast.js +45 -11
  507. package/dist/collection/components/toast/toast.md.css +74 -35
  508. package/dist/collection/components/toggle/toggle.ionic.css +420 -0
  509. package/dist/collection/components/toggle/toggle.ios.css +166 -120
  510. package/dist/collection/components/toggle/toggle.js +73 -18
  511. package/dist/collection/components/toggle/toggle.md.css +163 -120
  512. package/dist/collection/components/toolbar/toolbar.ionic.css +234 -0
  513. package/dist/collection/components/toolbar/toolbar.ios.css +90 -47
  514. package/dist/collection/components/toolbar/toolbar.js +13 -10
  515. package/dist/collection/components/toolbar/toolbar.md.css +90 -47
  516. package/dist/collection/global/ionic-global.js +229 -13
  517. package/dist/collection/utils/focus-visible.js +7 -0
  518. package/dist/collection/utils/framework-delegate.js +3 -1
  519. package/dist/collection/utils/helpers.js +3 -1
  520. package/dist/collection/utils/keyboard/keyboard-controller.js +3 -1
  521. package/dist/collection/utils/menu-controller/animations/overlay.js +3 -3
  522. package/dist/collection/utils/menu-controller/animations/push.js +2 -1
  523. package/dist/collection/utils/menu-controller/animations/reveal.js +2 -1
  524. package/dist/collection/utils/overlays.js +7 -27
  525. package/dist/collection/utils/test/playwright/generator.js +48 -23
  526. package/dist/collection/utils/test/playwright/page/utils/goto.js +14 -5
  527. package/dist/collection/utils/test/playwright/page/utils/set-content.js +14 -1
  528. package/dist/collection/utils/transition/ios.transition.js +1 -0
  529. package/dist/docs.json +6997 -321
  530. package/dist/esm/{animation-eab5a4ca.js → animation-16546c84.js} +1 -1
  531. package/dist/esm/{app-globals-5dbb61a5.js → app-globals-35381e66.js} +1 -1
  532. package/dist/esm/{button-active-f6503382.js → button-active-c768aceb.js} +2 -2
  533. package/dist/esm/{capacitor-59395cbd.js → capacitor-0897b83c.js} +1 -1
  534. package/dist/esm/caret-down-3eaad1cc.js +6 -0
  535. package/dist/esm/caret-left-33424bb0.js +6 -0
  536. package/dist/esm/caret-right-68d856ad.js +6 -0
  537. package/dist/esm/{index-28849c61.js → config-0b6b1b3d.js} +76 -1
  538. package/dist/esm/{data-ae11fd43.js → data-d9b1fbdb.js} +4 -4
  539. package/dist/esm/{focus-visible-dd40d69f.js → focus-visible-501aff19.js} +8 -1
  540. package/dist/esm/{framework-delegate-63d1a679.js → framework-delegate-56698eb0.js} +4 -2
  541. package/dist/esm/{haptic-ac164e4c.js → haptic-d9a770b8.js} +1 -1
  542. package/dist/esm/{helpers-da915de8.js → helpers-d57f52c8.js} +4 -1
  543. package/{components/index9.js → dist/esm/index-7f65e865.js} +3 -2
  544. package/dist/esm/{index-fe1782b1.js → index-82405a4a.js} +10 -11
  545. package/dist/esm/{index-e2cf2ceb.js → index-d997525d.js} +1 -1
  546. package/dist/esm/{index-3ad7f18b.js → index-edf94b3b.js} +5 -6
  547. package/dist/esm/{index-5cc724f3.js → index-f8ad386a.js} +2 -2
  548. package/dist/esm/index.js +10 -13
  549. package/dist/esm/{input-shims-0314bbe5.js → input-shims-0f3cc1c3.js} +6 -6
  550. package/dist/esm/{input.utils-09c71bc7.js → input.utils-ef4d8197.js} +2 -3
  551. package/dist/esm/ion-accordion_2.entry.js +45 -24
  552. package/dist/esm/ion-action-sheet.entry.js +21 -19
  553. package/dist/esm/ion-alert.entry.js +22 -21
  554. package/dist/esm/ion-app_8.entry.js +95 -140
  555. package/dist/esm/ion-avatar_3.entry.js +93 -10
  556. package/dist/esm/ion-back-button.entry.js +30 -21
  557. package/dist/esm/ion-backdrop.entry.js +11 -7
  558. package/dist/esm/ion-breadcrumb_2.entry.js +54 -17
  559. package/dist/esm/ion-button_2.entry.js +43 -13
  560. package/dist/esm/ion-card_5.entry.js +52 -29
  561. package/dist/esm/ion-checkbox.entry.js +29 -14
  562. package/dist/esm/ion-chip.entry.js +43 -8
  563. package/dist/esm/ion-col_3.entry.js +14 -11
  564. package/dist/esm/ion-datetime-button.entry.js +12 -9
  565. package/dist/esm/ion-datetime_3.entry.js +113 -40
  566. package/dist/esm/ion-fab_3.entry.js +43 -21
  567. package/dist/esm/ion-img.entry.js +7 -4
  568. package/dist/esm/ion-infinite-scroll_2.entry.js +18 -15
  569. package/dist/esm/ion-input-password-toggle.entry.js +53 -15
  570. package/dist/esm/ion-input.entry.js +119 -25
  571. package/dist/esm/ion-item-option_3.entry.js +40 -18
  572. package/dist/esm/ion-item_8.entry.js +113 -42
  573. package/dist/esm/ion-loading.entry.js +17 -16
  574. package/dist/esm/ion-menu_3.entry.js +47 -29
  575. package/dist/esm/ion-modal.entry.js +58 -31
  576. package/dist/esm/ion-nav_2.entry.js +13 -12
  577. package/dist/esm/ion-picker-column-option.entry.js +11 -7
  578. package/dist/esm/ion-picker-column.entry.js +11 -12
  579. package/dist/esm/ion-picker.entry.js +10 -6
  580. package/dist/esm/ion-popover.entry.js +17 -16
  581. package/dist/esm/ion-progress-bar.entry.js +12 -8
  582. package/dist/esm/ion-radio_2.entry.js +18 -12
  583. package/dist/esm/ion-range.entry.js +13 -10
  584. package/dist/esm/ion-refresher_2.entry.js +41 -21
  585. package/dist/esm/ion-reorder_2.entry.js +38 -15
  586. package/dist/esm/ion-ripple-effect.entry.js +18 -8
  587. package/dist/esm/ion-route_4.entry.js +8 -8
  588. package/dist/esm/ion-searchbar.entry.js +94 -18
  589. package/dist/esm/ion-segment_2.entry.js +24 -16
  590. package/dist/esm/ion-select_3.entry.js +93 -38
  591. package/dist/esm/ion-spinner.entry.js +33 -8
  592. package/dist/esm/ion-split-pane.entry.js +13 -9
  593. package/dist/esm/ion-tab-bar_2.entry.js +44 -20
  594. package/dist/esm/ion-tab_2.entry.js +7 -7
  595. package/dist/esm/ion-text.entry.js +6 -6
  596. package/dist/esm/ion-textarea.entry.js +41 -17
  597. package/dist/esm/ion-toast.entry.js +33 -18
  598. package/dist/esm/ion-toggle.entry.js +80 -23
  599. package/dist/esm/ionic-global-d7017fd9.js +520 -0
  600. package/dist/esm/ionic.js +5 -5
  601. package/dist/esm/{ios.transition-4ee1a3af.js → ios.transition-4b9fe79e.js} +6 -7
  602. package/dist/esm/{keyboard-52278bd7.js → keyboard-584d2e6f.js} +4 -3
  603. package/dist/esm/{keyboard-73175e24.js → keyboard-ad38b8fc.js} +1 -1
  604. package/dist/esm/{keyboard-controller-ec5c2bfa.js → keyboard-controller-9c9c2301.js} +5 -3
  605. package/dist/esm/list-6524700c.js +6 -0
  606. package/dist/esm/loader.js +5 -5
  607. package/dist/esm/{md.transition-5106a0d2.js → md.transition-a71dc418.js} +5 -7
  608. package/dist/esm/{notch-controller-55b09e11.js → notch-controller-4d9a7b28.js} +2 -2
  609. package/dist/esm/{overlays-d7b67e94.js → overlays-9da9aef5.js} +11 -33
  610. package/dist/esm/{status-tap-f472b09f.js → status-tap-82f51b25.js} +4 -4
  611. package/dist/esm/{swipe-back-e5394307.js → swipe-back-c5709ce5.js} +2 -1
  612. package/dist/esm/x-a64bcd9f.js +6 -0
  613. package/dist/esm-es5/animation-16546c84.js +4 -0
  614. package/dist/esm-es5/app-globals-35381e66.js +4 -0
  615. package/dist/esm-es5/button-active-c768aceb.js +4 -0
  616. package/dist/esm-es5/capacitor-0897b83c.js +4 -0
  617. package/dist/esm-es5/caret-down-3eaad1cc.js +4 -0
  618. package/dist/esm-es5/caret-left-33424bb0.js +4 -0
  619. package/dist/esm-es5/caret-right-68d856ad.js +4 -0
  620. package/dist/esm-es5/{index-28849c61.js → config-0b6b1b3d.js} +2 -2
  621. package/dist/esm-es5/data-d9b1fbdb.js +4 -0
  622. package/dist/esm-es5/focus-visible-501aff19.js +4 -0
  623. package/dist/esm-es5/framework-delegate-56698eb0.js +4 -0
  624. package/dist/esm-es5/{haptic-ac164e4c.js → haptic-d9a770b8.js} +1 -1
  625. package/dist/esm-es5/helpers-d57f52c8.js +4 -0
  626. package/dist/esm-es5/index-7f65e865.js +4 -0
  627. package/dist/esm-es5/index-82405a4a.js +4 -0
  628. package/dist/esm-es5/{index-e2cf2ceb.js → index-d997525d.js} +1 -1
  629. package/dist/esm-es5/index-edf94b3b.js +4 -0
  630. package/dist/esm-es5/index-f8ad386a.js +4 -0
  631. package/dist/esm-es5/index.js +1 -1
  632. package/dist/esm-es5/input-shims-0f3cc1c3.js +4 -0
  633. package/dist/esm-es5/input.utils-ef4d8197.js +4 -0
  634. package/dist/esm-es5/ion-accordion_2.entry.js +1 -1
  635. package/dist/esm-es5/ion-action-sheet.entry.js +1 -1
  636. package/dist/esm-es5/ion-alert.entry.js +1 -1
  637. package/dist/esm-es5/ion-app_8.entry.js +1 -1
  638. package/dist/esm-es5/ion-avatar_3.entry.js +1 -1
  639. package/dist/esm-es5/ion-back-button.entry.js +1 -1
  640. package/dist/esm-es5/ion-backdrop.entry.js +1 -1
  641. package/dist/esm-es5/ion-breadcrumb_2.entry.js +1 -1
  642. package/dist/esm-es5/ion-button_2.entry.js +1 -1
  643. package/dist/esm-es5/ion-card_5.entry.js +1 -1
  644. package/dist/esm-es5/ion-checkbox.entry.js +1 -1
  645. package/dist/esm-es5/ion-chip.entry.js +1 -1
  646. package/dist/esm-es5/ion-col_3.entry.js +1 -1
  647. package/dist/esm-es5/ion-datetime-button.entry.js +1 -1
  648. package/dist/esm-es5/ion-datetime_3.entry.js +1 -1
  649. package/dist/esm-es5/ion-fab_3.entry.js +1 -1
  650. package/dist/esm-es5/ion-img.entry.js +1 -1
  651. package/dist/esm-es5/ion-infinite-scroll_2.entry.js +1 -1
  652. package/dist/esm-es5/ion-input-password-toggle.entry.js +1 -1
  653. package/dist/esm-es5/ion-input.entry.js +1 -1
  654. package/dist/esm-es5/ion-item-option_3.entry.js +1 -1
  655. package/dist/esm-es5/ion-item_8.entry.js +1 -1
  656. package/dist/esm-es5/ion-loading.entry.js +1 -1
  657. package/dist/esm-es5/ion-menu_3.entry.js +1 -1
  658. package/dist/esm-es5/ion-modal.entry.js +1 -1
  659. package/dist/esm-es5/ion-nav_2.entry.js +1 -1
  660. package/dist/esm-es5/ion-picker-column-option.entry.js +1 -1
  661. package/dist/esm-es5/ion-picker-column.entry.js +1 -1
  662. package/dist/esm-es5/ion-picker.entry.js +1 -1
  663. package/dist/esm-es5/ion-popover.entry.js +1 -1
  664. package/dist/esm-es5/ion-progress-bar.entry.js +1 -1
  665. package/dist/esm-es5/ion-radio_2.entry.js +1 -1
  666. package/dist/esm-es5/ion-range.entry.js +1 -1
  667. package/dist/esm-es5/ion-refresher_2.entry.js +1 -1
  668. package/dist/esm-es5/ion-reorder_2.entry.js +1 -1
  669. package/dist/esm-es5/ion-ripple-effect.entry.js +1 -1
  670. package/dist/esm-es5/ion-route_4.entry.js +1 -1
  671. package/dist/esm-es5/ion-searchbar.entry.js +1 -1
  672. package/dist/esm-es5/ion-segment_2.entry.js +1 -1
  673. package/dist/esm-es5/ion-select_3.entry.js +1 -1
  674. package/dist/esm-es5/ion-spinner.entry.js +1 -1
  675. package/dist/esm-es5/ion-split-pane.entry.js +1 -1
  676. package/dist/esm-es5/ion-tab-bar_2.entry.js +1 -1
  677. package/dist/esm-es5/ion-tab_2.entry.js +1 -1
  678. package/dist/esm-es5/ion-text.entry.js +1 -1
  679. package/dist/esm-es5/ion-textarea.entry.js +1 -1
  680. package/dist/esm-es5/ion-toast.entry.js +1 -1
  681. package/dist/esm-es5/ion-toggle.entry.js +1 -1
  682. package/dist/esm-es5/ionic-global-d7017fd9.js +4 -0
  683. package/dist/esm-es5/ionic.js +1 -1
  684. package/dist/esm-es5/ios.transition-4b9fe79e.js +4 -0
  685. package/dist/esm-es5/keyboard-584d2e6f.js +4 -0
  686. package/dist/esm-es5/{keyboard-73175e24.js → keyboard-ad38b8fc.js} +1 -1
  687. package/dist/esm-es5/keyboard-controller-9c9c2301.js +4 -0
  688. package/dist/esm-es5/list-6524700c.js +4 -0
  689. package/dist/esm-es5/loader.js +1 -1
  690. package/dist/esm-es5/md.transition-a71dc418.js +4 -0
  691. package/dist/esm-es5/notch-controller-4d9a7b28.js +4 -0
  692. package/dist/esm-es5/overlays-9da9aef5.js +4 -0
  693. package/dist/esm-es5/status-tap-82f51b25.js +4 -0
  694. package/dist/esm-es5/swipe-back-c5709ce5.js +4 -0
  695. package/dist/esm-es5/x-a64bcd9f.js +4 -0
  696. package/dist/html.html-data.json +2302 -215
  697. package/dist/ionic/index.esm.js +1 -1
  698. package/dist/ionic/ionic.esm.js +1 -1
  699. package/dist/ionic/ionic.js +1 -1
  700. package/dist/ionic/p-01d80901.system.js +4 -0
  701. package/dist/ionic/p-036e1c5b.entry.js +4 -0
  702. package/dist/ionic/p-0689d382.entry.js +4 -0
  703. package/dist/ionic/{p-fcd71204.system.entry.js → p-0695a0af.system.entry.js} +1 -1
  704. package/dist/ionic/p-06ec4706.js +4 -0
  705. package/dist/ionic/p-087e8765.system.entry.js +4 -0
  706. package/dist/ionic/p-08df90cf.system.js +4 -0
  707. package/dist/ionic/p-08f1ef0c.entry.js +4 -0
  708. package/dist/ionic/{p-973f0b15.system.entry.js → p-093de343.system.entry.js} +1 -1
  709. package/dist/ionic/p-0a701833.entry.js +4 -0
  710. package/dist/ionic/{p-d60342e3.js → p-0a820472.js} +1 -1
  711. package/dist/ionic/p-1037b7dd.js +4 -0
  712. package/dist/ionic/{p-1e955a45.system.js → p-115d74cd.system.js} +1 -1
  713. package/dist/ionic/p-12e3e308.entry.js +4 -0
  714. package/dist/ionic/p-13046601.system.entry.js +4 -0
  715. package/dist/ionic/p-1331f417.system.entry.js +4 -0
  716. package/dist/ionic/p-14719a77.entry.js +4 -0
  717. package/dist/ionic/p-15d51b10.js +4 -0
  718. package/dist/ionic/p-19ac8e04.system.entry.js +4 -0
  719. package/dist/ionic/p-221e5078.system.js +4 -0
  720. package/dist/ionic/p-243adf8c.js +4 -0
  721. package/dist/ionic/p-25389914.entry.js +4 -0
  722. package/dist/ionic/p-25564f4c.system.entry.js +4 -0
  723. package/dist/ionic/{p-dfb78785.system.js → p-25e2c98f.system.js} +1 -1
  724. package/dist/ionic/p-26f7c080.system.js +4 -0
  725. package/dist/ionic/p-28d04212.system.js +4 -0
  726. package/dist/ionic/p-291dc0b3.system.entry.js +4 -0
  727. package/dist/ionic/p-29d6d1fc.system.entry.js +4 -0
  728. package/dist/ionic/p-2a559ac6.js +4 -0
  729. package/dist/ionic/p-2a79e451.entry.js +4 -0
  730. package/dist/ionic/{p-89a0a446.entry.js → p-2b428cf6.entry.js} +1 -1
  731. package/dist/ionic/p-2be91f19.entry.js +4 -0
  732. package/dist/ionic/p-2c368e32.entry.js +4 -0
  733. package/dist/ionic/{p-372ae7f4.system.js → p-2c5d7d84.system.js} +1 -1
  734. package/dist/ionic/p-2d580501.entry.js +4 -0
  735. package/dist/ionic/p-2d621d56.system.entry.js +4 -0
  736. package/dist/ionic/p-2da8c20c.system.entry.js +4 -0
  737. package/dist/ionic/p-2e6d744f.system.entry.js +4 -0
  738. package/dist/ionic/p-361c24e5.system.entry.js +4 -0
  739. package/dist/ionic/p-36bdcfc4.js +4 -0
  740. package/dist/ionic/p-388ac217.js +4 -0
  741. package/dist/ionic/p-39d15e64.system.entry.js +4 -0
  742. package/dist/ionic/{p-9ea607bd.system.js → p-3a11234f.system.js} +2 -2
  743. package/dist/ionic/p-3a5869c3.entry.js +4 -0
  744. package/dist/ionic/{p-5da94421.system.js → p-3bfe43bc.system.js} +2 -2
  745. package/dist/ionic/p-3ca5196c.js +4 -0
  746. package/dist/ionic/p-419fac38.entry.js +4 -0
  747. package/dist/ionic/p-4228a245.entry.js +4 -0
  748. package/dist/ionic/p-429dd2b5.system.js +4 -0
  749. package/dist/ionic/p-434c7348.system.entry.js +4 -0
  750. package/dist/ionic/p-45e150eb.js +4 -0
  751. package/dist/ionic/p-46787abb.system.js +4 -0
  752. package/dist/ionic/p-46cc2492.system.js +4 -0
  753. package/dist/ionic/p-49a3fc76.entry.js +4 -0
  754. package/dist/ionic/p-4a9b61ed.system.entry.js +4 -0
  755. package/dist/ionic/{p-49bc6544.entry.js → p-4b153a9f.entry.js} +1 -1
  756. package/dist/ionic/p-4c251d59.entry.js +4 -0
  757. package/dist/ionic/p-4d000ec5.entry.js +4 -0
  758. package/dist/ionic/p-4e202665.js +4 -0
  759. package/dist/ionic/{p-27281edd.js → p-4ed7dfdb.js} +1 -1
  760. package/dist/ionic/p-51151575.system.entry.js +4 -0
  761. package/dist/ionic/p-5468bfbf.entry.js +4 -0
  762. package/dist/ionic/{p-da2b833b.js → p-58f16ef6.js} +1 -1
  763. package/dist/ionic/p-5b57d327.system.js +4 -0
  764. package/dist/ionic/p-5ce35a03.js +4 -0
  765. package/dist/ionic/p-607c9c33.js +4 -0
  766. package/dist/ionic/{p-19ea7bff.system.js → p-61a51379.system.js} +1 -1
  767. package/dist/ionic/p-643e2eb8.js +4 -0
  768. package/dist/ionic/p-660f3b98.entry.js +4 -0
  769. package/dist/ionic/p-6703f239.entry.js +4 -0
  770. package/dist/ionic/p-68f3fa48.system.entry.js +4 -0
  771. package/dist/ionic/p-69e54172.js +4 -0
  772. package/dist/ionic/p-6a0dd6bc.js +4 -0
  773. package/dist/ionic/p-6ad6d594.js +4 -0
  774. package/dist/ionic/p-6b64dce1.entry.js +4 -0
  775. package/dist/ionic/p-6d9e1887.system.entry.js +4 -0
  776. package/dist/ionic/{p-fd0cb4ef.entry.js → p-6ecebfc6.entry.js} +1 -1
  777. package/dist/ionic/{p-313ccc01.system.entry.js → p-6f8c2e62.system.entry.js} +1 -1
  778. package/dist/ionic/p-70c6cd75.system.js +4 -0
  779. package/dist/ionic/p-719fca78.entry.js +4 -0
  780. package/dist/ionic/p-71e8ffdd.system.js +4 -0
  781. package/dist/ionic/p-726b9197.system.entry.js +4 -0
  782. package/dist/ionic/p-73e32456.system.js +4 -0
  783. package/dist/ionic/{p-9146695e.system.js → p-747e9c9a.system.js} +1 -1
  784. package/dist/ionic/p-774d5b57.system.entry.js +4 -0
  785. package/dist/ionic/p-776adb3d.entry.js +4 -0
  786. package/dist/ionic/p-7811f251.system.entry.js +4 -0
  787. package/dist/ionic/p-7d02004b.entry.js +4 -0
  788. package/dist/ionic/p-7ebc381e.entry.js +4 -0
  789. package/dist/ionic/p-80342c88.system.entry.js +4 -0
  790. package/dist/ionic/p-8181e971.entry.js +4 -0
  791. package/dist/ionic/p-8248976b.system.entry.js +4 -0
  792. package/dist/ionic/p-836515ee.entry.js +4 -0
  793. package/dist/ionic/p-8421aedf.js +4 -0
  794. package/dist/ionic/p-8d7bc281.system.entry.js +4 -0
  795. package/dist/ionic/p-931d77d5.entry.js +4 -0
  796. package/dist/ionic/p-95c2258a.entry.js +4 -0
  797. package/dist/ionic/p-974aaf78.entry.js +4 -0
  798. package/dist/ionic/p-99ab41a8.system.entry.js +4 -0
  799. package/dist/ionic/p-9abdb4a7.system.entry.js +4 -0
  800. package/dist/ionic/p-9e4ede77.system.entry.js +4 -0
  801. package/dist/ionic/p-9e8e25e4.system.js +4 -0
  802. package/dist/ionic/p-9e9bff83.system.js +4 -0
  803. package/dist/ionic/p-9f51595b.entry.js +4 -0
  804. package/dist/ionic/p-9fa0b117.entry.js +4 -0
  805. package/dist/ionic/p-9fcaadad.system.entry.js +4 -0
  806. package/dist/ionic/{p-836d39d4.system.entry.js → p-a65fe34d.system.entry.js} +1 -1
  807. package/dist/ionic/p-a856dbc6.entry.js +4 -0
  808. package/dist/ionic/p-a9af4103.js +4 -0
  809. package/dist/ionic/{p-d836d43e.js → p-a9fd9d48.js} +2 -2
  810. package/dist/ionic/p-aacc6ddd.system.js +5 -0
  811. package/dist/ionic/p-ab6e0f02.system.entry.js +4 -0
  812. package/dist/ionic/p-adaa7af1.entry.js +4 -0
  813. package/dist/ionic/{p-75c0dc65.system.entry.js → p-adec897a.system.entry.js} +1 -1
  814. package/dist/ionic/p-b19a9aa9.system.js +4 -0
  815. package/dist/ionic/p-b297c7b5.system.js +4 -0
  816. package/dist/ionic/p-b5bf8a04.entry.js +4 -0
  817. package/dist/ionic/p-b6fc8ee2.system.entry.js +4 -0
  818. package/dist/ionic/{p-89b61afc.js → p-b9b36d56.js} +1 -1
  819. package/dist/ionic/p-ba3ddec4.js +4 -0
  820. package/dist/ionic/p-bad792a6.entry.js +4 -0
  821. package/dist/ionic/p-bd50f24e.system.entry.js +4 -0
  822. package/dist/ionic/p-c08a9937.system.entry.js +4 -0
  823. package/dist/ionic/p-c248c88d.system.js +4 -0
  824. package/dist/ionic/p-c24ff776.system.entry.js +4 -0
  825. package/dist/ionic/p-c6191942.js +4 -0
  826. package/dist/ionic/p-c6e47379.entry.js +4 -0
  827. package/dist/ionic/p-c7e967c0.system.entry.js +4 -0
  828. package/dist/ionic/p-c8097757.system.entry.js +4 -0
  829. package/dist/ionic/p-c8f207d8.entry.js +4 -0
  830. package/dist/ionic/{p-b06ac4a5.system.js → p-c9ef0ca7.system.js} +1 -1
  831. package/dist/ionic/p-cb131dda.system.entry.js +4 -0
  832. package/dist/ionic/p-d0259f44.system.js +4 -0
  833. package/dist/ionic/p-d0953ec9.system.entry.js +4 -0
  834. package/dist/ionic/p-d10313a6.system.js +4 -0
  835. package/dist/ionic/{p-c7e16491.js → p-d1e991c3.js} +1 -1
  836. package/dist/ionic/p-d2ef848a.entry.js +4 -0
  837. package/dist/ionic/p-d346c889.system.entry.js +4 -0
  838. package/dist/ionic/p-d67b88b0.system.entry.js +4 -0
  839. package/dist/ionic/{p-3c8e5c23.system.js → p-d8339079.system.js} +1 -1
  840. package/dist/ionic/p-d8b501bd.system.entry.js +4 -0
  841. package/dist/ionic/{p-f687573e.system.js → p-d9e1c48c.system.js} +1 -1
  842. package/dist/ionic/p-da968066.entry.js +4 -0
  843. package/dist/ionic/p-db8aeb40.system.js +4 -0
  844. package/dist/ionic/{p-d743e981.js → p-dbfc5db6.js} +1 -1
  845. package/dist/ionic/p-dd50ef12.js +4 -0
  846. package/dist/ionic/p-df668729.entry.js +4 -0
  847. package/dist/ionic/p-e270862e.js +4 -0
  848. package/dist/ionic/p-e3b70846.system.js +4 -0
  849. package/dist/ionic/p-e51ff133.system.entry.js +4 -0
  850. package/dist/ionic/p-e5239905.system.entry.js +4 -0
  851. package/dist/ionic/{p-8985cdb6.system.js → p-e61e3bb4.system.js} +1 -1
  852. package/dist/ionic/p-eeb60a8f.entry.js +4 -0
  853. package/dist/ionic/p-eec767ca.entry.js +4 -0
  854. package/dist/ionic/p-f065578f.js +4 -0
  855. package/dist/ionic/p-f0d3419a.entry.js +4 -0
  856. package/dist/ionic/p-f4ae533b.js +4 -0
  857. package/dist/ionic/p-f61ce679.js +4 -0
  858. package/dist/ionic/{p-a93873de.system.js → p-f8e329da.system.js} +1 -1
  859. package/dist/ionic/p-fbcb3139.entry.js +4 -0
  860. package/dist/ionic/p-fca5d1b1.system.entry.js +4 -0
  861. package/dist/ionic/p-ffa51f41.system.entry.js +4 -0
  862. package/dist/types/components/accordion/accordion.d.ts +5 -3
  863. package/dist/types/components/accordion-group/accordion-group.d.ts +2 -1
  864. package/dist/types/components/action-sheet/action-sheet-interface.d.ts +3 -7
  865. package/dist/types/components/action-sheet/action-sheet.d.ts +3 -2
  866. package/dist/types/components/alert/alert-interface.d.ts +3 -7
  867. package/dist/types/components/alert/alert.d.ts +3 -2
  868. package/dist/types/components/app/app.d.ts +4 -2
  869. package/dist/types/components/avatar/avatar.d.ts +28 -0
  870. package/dist/types/components/back-button/back-button.d.ts +2 -1
  871. package/dist/types/components/backdrop/backdrop.d.ts +4 -0
  872. package/dist/types/components/badge/badge.d.ts +23 -1
  873. package/dist/types/components/breadcrumb/breadcrumb.d.ts +4 -1
  874. package/dist/types/components/breadcrumbs/breadcrumbs.d.ts +2 -2
  875. package/dist/types/components/button/button.d.ts +15 -4
  876. package/dist/types/components/buttons/buttons.d.ts +5 -1
  877. package/dist/types/components/card/card.d.ts +8 -1
  878. package/dist/types/components/card-content/card-content.d.ts +2 -1
  879. package/dist/types/components/card-header/card-header.d.ts +3 -2
  880. package/dist/types/components/card-subtitle/card-subtitle.d.ts +2 -1
  881. package/dist/types/components/card-title/card-title.d.ts +2 -1
  882. package/dist/types/components/checkbox/checkbox.d.ts +14 -4
  883. package/dist/types/components/chip/chip.d.ts +19 -1
  884. package/dist/types/components/col/col.d.ts +4 -0
  885. package/dist/types/components/content/content.d.ts +3 -0
  886. package/dist/types/components/datetime/datetime.d.ts +26 -1
  887. package/dist/types/components/datetime/utils/data.d.ts +3 -3
  888. package/dist/types/components/datetime-button/datetime-button.d.ts +2 -1
  889. package/dist/types/components/fab/fab.d.ts +4 -0
  890. package/dist/types/components/fab-button/fab-button.d.ts +5 -3
  891. package/dist/types/components/fab-list/fab-list.d.ts +4 -0
  892. package/dist/types/components/footer/footer.d.ts +4 -3
  893. package/dist/types/components/grid/grid.d.ts +4 -0
  894. package/dist/types/components/header/header.d.ts +9 -3
  895. package/dist/types/components/img/img.d.ts +3 -0
  896. package/dist/types/components/infinite-scroll/infinite-scroll.d.ts +4 -0
  897. package/dist/types/components/infinite-scroll-content/infinite-scroll-content.d.ts +4 -0
  898. package/dist/types/components/input/input.d.ts +31 -5
  899. package/dist/types/components/input-password-toggle/input-password-toggle.d.ts +2 -0
  900. package/dist/types/components/item/item.d.ts +11 -4
  901. package/dist/types/components/item-divider/item-divider.d.ts +2 -1
  902. package/dist/types/components/item-group/item-group.d.ts +4 -0
  903. package/dist/types/components/item-option/item-option.d.ts +11 -1
  904. package/dist/types/components/item-options/item-options.d.ts +4 -0
  905. package/dist/types/components/item-sliding/item-sliding.d.ts +4 -0
  906. package/dist/types/components/label/label.d.ts +2 -1
  907. package/dist/types/components/list/list.d.ts +15 -1
  908. package/dist/types/components/list-header/list-header.d.ts +2 -1
  909. package/dist/types/components/loading/loading-interface.d.ts +2 -7
  910. package/dist/types/components/loading/loading.d.ts +3 -2
  911. package/dist/types/components/menu/menu.d.ts +3 -0
  912. package/dist/types/components/menu-button/menu-button.d.ts +3 -1
  913. package/dist/types/components/menu-toggle/menu-toggle.d.ts +3 -0
  914. package/dist/types/components/modal/gestures/sheet.d.ts +1 -1
  915. package/dist/types/components/modal/modal-interface.d.ts +4 -7
  916. package/dist/types/components/modal/modal.d.ts +11 -1
  917. package/dist/types/components/nav/nav-interface.d.ts +9 -1
  918. package/dist/types/components/nav/nav.d.ts +5 -1
  919. package/dist/types/components/nav-link/nav-link.d.ts +4 -0
  920. package/dist/types/components/note/note.d.ts +2 -1
  921. package/dist/types/components/picker/picker.d.ts +2 -1
  922. package/dist/types/components/picker-column/picker-column.d.ts +2 -1
  923. package/dist/types/components/picker-column-option/picker-column-option.d.ts +4 -0
  924. package/dist/types/components/picker-legacy/picker.d.ts +2 -1
  925. package/dist/types/components/popover/popover-interface.d.ts +3 -6
  926. package/dist/types/components/popover/popover.d.ts +6 -5
  927. package/dist/types/components/progress-bar/progress-bar.d.ts +2 -1
  928. package/dist/types/components/radio/radio.d.ts +2 -1
  929. package/dist/types/components/radio-group/radio-group.d.ts +4 -0
  930. package/dist/types/components/range/range.d.ts +2 -1
  931. package/dist/types/components/refresher/refresher.d.ts +2 -1
  932. package/dist/types/components/refresher-content/refresher-content.d.ts +4 -0
  933. package/dist/types/components/reorder/reorder.d.ts +9 -0
  934. package/dist/types/components/reorder-group/reorder-group.d.ts +4 -0
  935. package/dist/types/components/ripple-effect/ripple-effect.d.ts +4 -0
  936. package/dist/types/components/route/route.d.ts +4 -0
  937. package/dist/types/components/router/router.d.ts +4 -0
  938. package/dist/types/components/router-link/router-link.d.ts +4 -0
  939. package/dist/types/components/router-outlet/router-outlet.d.ts +4 -1
  940. package/dist/types/components/row/row.d.ts +4 -0
  941. package/dist/types/components/searchbar/searchbar.d.ts +30 -8
  942. package/dist/types/components/segment/segment.d.ts +2 -1
  943. package/dist/types/components/segment-button/segment-button.d.ts +2 -1
  944. package/dist/types/components/select/select.d.ts +20 -5
  945. package/dist/types/components/select-option/select-option.d.ts +4 -0
  946. package/dist/types/components/select-popover/select-popover.d.ts +3 -0
  947. package/dist/types/components/skeleton-text/skeleton-text.d.ts +4 -0
  948. package/dist/types/components/spinner/spinner.d.ts +15 -0
  949. package/dist/types/components/split-pane/split-pane.d.ts +4 -0
  950. package/dist/types/components/tab/tab.d.ts +4 -0
  951. package/dist/types/components/tab-bar/tab-bar.d.ts +22 -2
  952. package/dist/types/components/tab-button/tab-button.d.ts +2 -1
  953. package/dist/types/components/tabs/tabs.d.ts +3 -0
  954. package/dist/types/components/text/text.d.ts +2 -1
  955. package/dist/types/components/textarea/textarea.d.ts +16 -4
  956. package/dist/types/components/thumbnail/thumbnail.d.ts +4 -0
  957. package/dist/types/components/title/title.d.ts +4 -0
  958. package/dist/types/components/toast/animations/utils.d.ts +2 -2
  959. package/dist/types/components/toast/toast-interface.d.ts +3 -7
  960. package/dist/types/components/toast/toast.d.ts +12 -2
  961. package/dist/types/components/toggle/toggle.d.ts +15 -1
  962. package/dist/types/components/toolbar/toolbar.d.ts +4 -3
  963. package/dist/types/components.d.ts +1354 -178
  964. package/dist/types/global/ionic-global.d.ts +27 -2
  965. package/dist/types/interface.d.ts +3 -0
  966. package/dist/types/utils/config.d.ts +106 -2
  967. package/dist/types/utils/focus-visible.d.ts +1 -0
  968. package/dist/types/utils/overlays-interface.d.ts +31 -1
  969. package/dist/types/utils/test/playwright/generator.d.ts +31 -2
  970. package/hydrate/index.js +2255 -875
  971. package/hydrate/index.mjs +2255 -875
  972. package/package.json +9 -4
  973. package/components/hardware-back-button.js +0 -115
  974. package/components/index8.js +0 -128
  975. package/dist/cjs/hardware-back-button-9e8a2c4f.js +0 -122
  976. package/dist/cjs/index-5915f9b3.js +0 -38
  977. package/dist/cjs/index-c8d52405.js +0 -10
  978. package/dist/cjs/ionic-global-d9a8bb5b.js +0 -237
  979. package/dist/esm/hardware-back-button-06ef3c3e.js +0 -116
  980. package/dist/esm/index-79b30591.js +0 -167
  981. package/dist/esm/index-9b0d46f4.js +0 -34
  982. package/dist/esm/index-a5d50daf.js +0 -7
  983. package/dist/esm/ionic-global-c81d82ab.js +0 -231
  984. package/dist/esm-es5/animation-eab5a4ca.js +0 -4
  985. package/dist/esm-es5/app-globals-5dbb61a5.js +0 -4
  986. package/dist/esm-es5/button-active-f6503382.js +0 -4
  987. package/dist/esm-es5/capacitor-59395cbd.js +0 -4
  988. package/dist/esm-es5/data-ae11fd43.js +0 -4
  989. package/dist/esm-es5/focus-visible-dd40d69f.js +0 -4
  990. package/dist/esm-es5/framework-delegate-63d1a679.js +0 -4
  991. package/dist/esm-es5/hardware-back-button-06ef3c3e.js +0 -4
  992. package/dist/esm-es5/helpers-da915de8.js +0 -4
  993. package/dist/esm-es5/index-3ad7f18b.js +0 -4
  994. package/dist/esm-es5/index-5cc724f3.js +0 -4
  995. package/dist/esm-es5/index-79b30591.js +0 -4
  996. package/dist/esm-es5/index-9b0d46f4.js +0 -4
  997. package/dist/esm-es5/index-a5d50daf.js +0 -4
  998. package/dist/esm-es5/index-fe1782b1.js +0 -4
  999. package/dist/esm-es5/input-shims-0314bbe5.js +0 -4
  1000. package/dist/esm-es5/input.utils-09c71bc7.js +0 -4
  1001. package/dist/esm-es5/ionic-global-c81d82ab.js +0 -4
  1002. package/dist/esm-es5/ios.transition-4ee1a3af.js +0 -4
  1003. package/dist/esm-es5/keyboard-52278bd7.js +0 -4
  1004. package/dist/esm-es5/keyboard-controller-ec5c2bfa.js +0 -4
  1005. package/dist/esm-es5/md.transition-5106a0d2.js +0 -4
  1006. package/dist/esm-es5/notch-controller-55b09e11.js +0 -4
  1007. package/dist/esm-es5/overlays-d7b67e94.js +0 -4
  1008. package/dist/esm-es5/status-tap-f472b09f.js +0 -4
  1009. package/dist/esm-es5/swipe-back-e5394307.js +0 -4
  1010. package/dist/ionic/p-003eecb9.entry.js +0 -4
  1011. package/dist/ionic/p-00b01a55.system.entry.js +0 -4
  1012. package/dist/ionic/p-01503bbd.system.entry.js +0 -4
  1013. package/dist/ionic/p-0303d0f8.js +0 -4
  1014. package/dist/ionic/p-0373d924.system.entry.js +0 -4
  1015. package/dist/ionic/p-0574e87e.js +0 -4
  1016. package/dist/ionic/p-05beda73.entry.js +0 -4
  1017. package/dist/ionic/p-06e58c4e.js +0 -4
  1018. package/dist/ionic/p-06fee233.js +0 -4
  1019. package/dist/ionic/p-0c06e09b.system.js +0 -4
  1020. package/dist/ionic/p-13542e1b.entry.js +0 -4
  1021. package/dist/ionic/p-17474161.system.js +0 -4
  1022. package/dist/ionic/p-176b372f.entry.js +0 -4
  1023. package/dist/ionic/p-1dfc11b3.system.js +0 -4
  1024. package/dist/ionic/p-1e4371bd.js +0 -4
  1025. package/dist/ionic/p-21cfd4de.entry.js +0 -4
  1026. package/dist/ionic/p-21e5e7e4.js +0 -4
  1027. package/dist/ionic/p-2200e26b.entry.js +0 -4
  1028. package/dist/ionic/p-233e6c93.entry.js +0 -4
  1029. package/dist/ionic/p-25180df3.system.js +0 -5
  1030. package/dist/ionic/p-25928b83.system.entry.js +0 -4
  1031. package/dist/ionic/p-2690b1de.js +0 -4
  1032. package/dist/ionic/p-26e35c79.system.js +0 -4
  1033. package/dist/ionic/p-293ed6ac.system.entry.js +0 -4
  1034. package/dist/ionic/p-2b7827c7.js +0 -4
  1035. package/dist/ionic/p-2b7838a8.entry.js +0 -4
  1036. package/dist/ionic/p-2c4bdd9d.entry.js +0 -4
  1037. package/dist/ionic/p-2ca6eac2.system.entry.js +0 -4
  1038. package/dist/ionic/p-2ea1ca4f.system.entry.js +0 -4
  1039. package/dist/ionic/p-322c5fb4.system.js +0 -4
  1040. package/dist/ionic/p-34343a73.system.entry.js +0 -4
  1041. package/dist/ionic/p-34b11c24.js +0 -4
  1042. package/dist/ionic/p-3ad285e3.system.js +0 -4
  1043. package/dist/ionic/p-3c968c7f.system.entry.js +0 -4
  1044. package/dist/ionic/p-3cc276f4.js +0 -4
  1045. package/dist/ionic/p-44d1539c.system.entry.js +0 -4
  1046. package/dist/ionic/p-4a0a4204.system.entry.js +0 -4
  1047. package/dist/ionic/p-4a82bd1c.system.entry.js +0 -4
  1048. package/dist/ionic/p-4b0fedb7.system.entry.js +0 -4
  1049. package/dist/ionic/p-4c2d5b80.system.js +0 -4
  1050. package/dist/ionic/p-4c8fceb0.entry.js +0 -4
  1051. package/dist/ionic/p-4f3d2686.entry.js +0 -4
  1052. package/dist/ionic/p-521eca2e.entry.js +0 -4
  1053. package/dist/ionic/p-53854390.entry.js +0 -4
  1054. package/dist/ionic/p-53add985.system.entry.js +0 -4
  1055. package/dist/ionic/p-5417b9bb.entry.js +0 -4
  1056. package/dist/ionic/p-5e842258.entry.js +0 -4
  1057. package/dist/ionic/p-60cc7986.entry.js +0 -4
  1058. package/dist/ionic/p-6562e0a9.system.entry.js +0 -4
  1059. package/dist/ionic/p-661ce4a8.entry.js +0 -4
  1060. package/dist/ionic/p-6817cf42.system.entry.js +0 -4
  1061. package/dist/ionic/p-68c4df55.entry.js +0 -4
  1062. package/dist/ionic/p-69066a53.js +0 -4
  1063. package/dist/ionic/p-6b8893dd.entry.js +0 -4
  1064. package/dist/ionic/p-6bc7a4a9.entry.js +0 -4
  1065. package/dist/ionic/p-6e85e450.entry.js +0 -4
  1066. package/dist/ionic/p-7243df6f.entry.js +0 -4
  1067. package/dist/ionic/p-7251fed5.entry.js +0 -4
  1068. package/dist/ionic/p-72812e99.js +0 -4
  1069. package/dist/ionic/p-72bc8a1c.js +0 -4
  1070. package/dist/ionic/p-72ffd137.system.entry.js +0 -4
  1071. package/dist/ionic/p-755b27f0.system.entry.js +0 -4
  1072. package/dist/ionic/p-773d118d.entry.js +0 -4
  1073. package/dist/ionic/p-7740e32c.system.js +0 -4
  1074. package/dist/ionic/p-792919fd.system.js +0 -4
  1075. package/dist/ionic/p-7b30edcc.js +0 -4
  1076. package/dist/ionic/p-82ab7ccb.entry.js +0 -4
  1077. package/dist/ionic/p-8635f5e6.system.js +0 -4
  1078. package/dist/ionic/p-8836d0eb.system.entry.js +0 -4
  1079. package/dist/ionic/p-88e63c7d.js +0 -4
  1080. package/dist/ionic/p-8acd6d79.system.entry.js +0 -4
  1081. package/dist/ionic/p-8b6232a6.system.entry.js +0 -4
  1082. package/dist/ionic/p-8d44cf1f.entry.js +0 -4
  1083. package/dist/ionic/p-8d86e104.js +0 -4
  1084. package/dist/ionic/p-9172535c.entry.js +0 -4
  1085. package/dist/ionic/p-92595957.system.entry.js +0 -4
  1086. package/dist/ionic/p-92d7a3d1.entry.js +0 -4
  1087. package/dist/ionic/p-93f37ceb.system.entry.js +0 -4
  1088. package/dist/ionic/p-95823c62.system.entry.js +0 -4
  1089. package/dist/ionic/p-960803fc.system.entry.js +0 -4
  1090. package/dist/ionic/p-96cc4814.js +0 -4
  1091. package/dist/ionic/p-9b6c6302.system.entry.js +0 -4
  1092. package/dist/ionic/p-9cb7129c.system.entry.js +0 -4
  1093. package/dist/ionic/p-9ece8dcf.entry.js +0 -4
  1094. package/dist/ionic/p-9f3008d4.system.js +0 -4
  1095. package/dist/ionic/p-a0c88dc2.system.entry.js +0 -4
  1096. package/dist/ionic/p-a15ddedb.system.js +0 -4
  1097. package/dist/ionic/p-a3711608.system.entry.js +0 -4
  1098. package/dist/ionic/p-a4565eb5.system.js +0 -4
  1099. package/dist/ionic/p-a5e9e45f.entry.js +0 -4
  1100. package/dist/ionic/p-a60604de.system.entry.js +0 -4
  1101. package/dist/ionic/p-a69b9fc5.system.js +0 -4
  1102. package/dist/ionic/p-a7f82b4e.system.entry.js +0 -4
  1103. package/dist/ionic/p-a879ecb7.system.entry.js +0 -4
  1104. package/dist/ionic/p-a90e2708.system.entry.js +0 -4
  1105. package/dist/ionic/p-abe101da.system.js +0 -4
  1106. package/dist/ionic/p-af999a31.entry.js +0 -4
  1107. package/dist/ionic/p-b51e4004.js +0 -4
  1108. package/dist/ionic/p-b54fc1ae.entry.js +0 -4
  1109. package/dist/ionic/p-b7657e8d.entry.js +0 -4
  1110. package/dist/ionic/p-baffaf8d.system.entry.js +0 -4
  1111. package/dist/ionic/p-bd25d639.system.entry.js +0 -4
  1112. package/dist/ionic/p-bfa2e81c.entry.js +0 -4
  1113. package/dist/ionic/p-c34659b9.entry.js +0 -4
  1114. package/dist/ionic/p-c3be1039.entry.js +0 -4
  1115. package/dist/ionic/p-c43aa331.entry.js +0 -4
  1116. package/dist/ionic/p-c468af8a.system.js +0 -4
  1117. package/dist/ionic/p-c61cc894.js +0 -4
  1118. package/dist/ionic/p-cdb11938.system.entry.js +0 -4
  1119. package/dist/ionic/p-ce705aac.system.entry.js +0 -4
  1120. package/dist/ionic/p-d3fc49aa.system.entry.js +0 -4
  1121. package/dist/ionic/p-d47265c8.js +0 -4
  1122. package/dist/ionic/p-d6841eac.js +0 -4
  1123. package/dist/ionic/p-da263d8e.entry.js +0 -4
  1124. package/dist/ionic/p-df83e308.system.entry.js +0 -4
  1125. package/dist/ionic/p-e36b14f9.system.entry.js +0 -4
  1126. package/dist/ionic/p-e3a5da9d.entry.js +0 -4
  1127. package/dist/ionic/p-e3e1e3de.entry.js +0 -4
  1128. package/dist/ionic/p-e3f13b08.js +0 -4
  1129. package/dist/ionic/p-e61ed046.system.js +0 -4
  1130. package/dist/ionic/p-e75a4b67.system.entry.js +0 -4
  1131. package/dist/ionic/p-ecceeb90.js +0 -4
  1132. package/dist/ionic/p-efaffe74.entry.js +0 -4
  1133. package/dist/ionic/p-f1acf541.system.entry.js +0 -4
  1134. package/dist/ionic/p-f88ebc36.entry.js +0 -4
  1135. package/dist/ionic/p-f8c8b9ba.entry.js +0 -4
  1136. package/dist/ionic/p-f9a53abb.system.js +0 -4
  1137. package/dist/ionic/p-fadf58d8.entry.js +0 -4
  1138. package/dist/ionic/p-fc77485b.entry.js +0 -4
  1139. package/dist/ionic/p-ff4b7e40.system.js +0 -4
  1140. package/dist/ionic/p-ffb17177.system.entry.js +0 -4
  1141. /package/dist/collection/components/{input-password-toggle/input-password-toggle.css → refresher-content/refresher-content.css} +0 -0
@@ -0,0 +1,4 @@
1
+ var __awaiter=this&&this.__awaiter||function(t,i,e,n){function r(t){return t instanceof e?t:new e((function(i){i(t)}))}return new(e||(e=Promise))((function(e,s){function u(t){try{a(n.next(t))}catch(t){s(t)}}function o(t){try{a(n["throw"](t))}catch(t){s(t)}}function a(t){t.done?e(t.value):r(t.value).then(u,o)}a((n=n.apply(t,i||[])).next())}))};var __generator=this&&this.__generator||function(t,i){var e={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},n,r,s,u;return u={next:o(0),throw:o(1),return:o(2)},typeof Symbol==="function"&&(u[Symbol.iterator]=function(){return this}),u;function o(t){return function(i){return a([t,i])}}function a(o){if(n)throw new TypeError("Generator is already executing.");while(u&&(u=0,o[0]&&(e=0)),e)try{if(n=1,r&&(s=o[0]&2?r["return"]:o[0]?r["throw"]||((s=r["return"])&&s.call(r),0):r.next)&&!(s=s.call(r,o[1])).done)return s;if(r=0,s)o=[o[0]&2,s.value];switch(o[0]){case 0:case 1:s=o;break;case 4:e.label++;return{value:o[1],done:false};case 5:e.label++;r=o[1];o=[0];continue;case 7:o=e.ops.pop();e.trys.pop();continue;default:if(!(s=e.trys,s=s.length>0&&s[s.length-1])&&(o[0]===6||o[0]===2)){e=0;continue}if(o[0]===3&&(!s||o[1]>s[0]&&o[1]<s[3])){e.label=o[1];break}if(o[0]===6&&e.label<s[1]){e.label=s[1];s=o;break}if(s&&e.label<s[2]){e.label=s[2];e.ops.push(o);break}if(s[2])e.ops.pop();e.trys.pop();continue}o=i.call(t,e)}catch(t){o=[6,t];r=0}finally{n=s=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:true}}};
2
+ /*!
3
+ * (C) Ionic http://ionicframework.com - MIT License
4
+ */System.register(["./p-aacc6ddd.system.js","./p-e673a0a2.system.js","./p-b19a9aa9.system.js","./p-73e32456.system.js","./p-70c6cd75.system.js","./p-9e8e25e4.system.js"],(function(t,i){"use strict";var e,n,r,s,u,o,a,f,h,c,d,v,l,w,m,b,_,p;return{setters:[function(t){e=t.r;n=t.j;r=t.c;s=t.l;u=t.g;o=t.m},function(t){a=t.g},function(t){f=t.m;h=t.s},function(t){c=t.l;d=t.t;v=t.s;l=t.d;w=t.b;m=t.c},function(t){b=t.b;_=t.c},function(t){p=t.a}],execute:function(){var g=1;var y=2;var k=3;var j=function(){function t(t,i){this.component=t;this.params=i;this.state=g}t.prototype.init=function(t){return __awaiter(this,void 0,void 0,(function(){var i,e;return __generator(this,(function(n){switch(n.label){case 0:this.state=y;if(!!this.element)return[3,2];i=this.component;e=this;return[4,p(this.delegate,t,i,["ion-page","ion-page-invisible"],this.params)];case 1:e.element=n.sent();n.label=2;case 2:return[2]}}))}))};t.prototype._destroy=function(){f(this.state!==k,"view state must be ATTACHED");var t=this.element;if(t){if(this.delegate){this.delegate.removeViewFromDom(t.parentElement,t)}else{t.remove()}}this.nav=undefined;this.state=k};return t}();var C=function(t,i,e){if(!t){return false}if(t.component!==i){return false}return h(t.params,e)};var B=function(t,i){if(!t){return null}if(t instanceof j){return t}return new j(t,i)};var E=function(t){return t.map((function(t){if(t instanceof j){return t}if("component"in t){return B(t.component,t.componentProps===null?undefined:t.componentProps)}return B(t,undefined)})).filter((function(t){return t!==null}))};var O=":host{right:0;left:0;top:0;bottom:0;position:absolute;contain:layout size style;z-index:0}";var S=O;var V=t("ion_nav",function(){function t(t){e(this,t);this.ionNavWillLoad=n(this,"ionNavWillLoad",7);this.ionNavWillChange=n(this,"ionNavWillChange",3);this.ionNavDidChange=n(this,"ionNavDidChange",3);this.transInstr=[];this.gestureOrAnimationInProgress=false;this.useRouter=false;this.isTransitioning=false;this.destroyed=false;this.views=[];this.didLoad=false;this.delegate=undefined;this.swipeGesture=undefined;this.animated=true;this.animation=undefined;this.rootParams=undefined;this.root=undefined}t.prototype.swipeGestureChanged=function(){if(this.gesture){this.gesture.enable(this.swipeGesture===true)}};t.prototype.rootChanged=function(){if(this.root===undefined){return}if(this.didLoad===false){return}if(!this.useRouter){if(this.root!==undefined){this.setRoot(this.root,this.rootParams)}}};t.prototype.componentWillLoad=function(){this.useRouter=document.querySelector("ion-router")!==null&&this.el.closest("[no-router]")===null;if(this.swipeGesture===undefined){var t=b(this);this.swipeGesture=r.getBoolean("swipeBackEnabled",t==="ios")}this.ionNavWillLoad.emit()};t.prototype.componentDidLoad=function(){return __awaiter(this,void 0,void 0,(function(){var t;return __generator(this,(function(e){switch(e.label){case 0:this.didLoad=true;this.rootChanged();t=this;return[4,i.import("./p-08df90cf.system.js")];case 1:t.gesture=e.sent().createSwipeBackGesture(this.el,this.canStart.bind(this),this.onStart.bind(this),this.onMove.bind(this),this.onEnd.bind(this));this.swipeGestureChanged();return[2]}}))}))};t.prototype.connectedCallback=function(){this.destroyed=false};t.prototype.disconnectedCallback=function(){for(var t=0,i=this.views;t<i.length;t++){var e=i[t];c(e.element,l);e._destroy()}if(this.gesture){this.gesture.destroy();this.gesture=undefined}this.transInstr.length=0;this.views.length=0;this.destroyed=true};t.prototype.push=function(t,i,e,n){return this.insert(-1,t,i,e,n)};t.prototype.insert=function(t,i,e,n,r){return this.insertPages(t,[{component:i,componentProps:e}],n,r)};t.prototype.insertPages=function(t,i,e,n){return this.queueTrns({insertStart:t,insertViews:i,opts:e},n)};t.prototype.pop=function(t,i){return this.removeIndex(-1,1,t,i)};t.prototype.popTo=function(t,i,e){var n={removeStart:-1,removeCount:-1,opts:i};if(typeof t==="object"&&t.component){n.removeView=t;n.removeStart=1}else if(typeof t==="number"){n.removeStart=t+1}return this.queueTrns(n,e)};t.prototype.popToRoot=function(t,i){return this.removeIndex(1,-1,t,i)};t.prototype.removeIndex=function(t,i,e,n){if(i===void 0){i=1}return this.queueTrns({removeStart:t,removeCount:i,opts:e},n)};t.prototype.setRoot=function(t,i,e,n){return this.setPages([{component:t,componentProps:i}],e,n)};t.prototype.setPages=function(t,i,e){i!==null&&i!==void 0?i:i={};if(i.animated!==true){i.animated=false}return this.queueTrns({insertStart:0,insertViews:t,removeStart:0,removeCount:-1,opts:i},e)};t.prototype.setRouteId=function(t,i,e,n){var r=this;var s=this.getActiveSync();if(C(s,t,i)){return Promise.resolve({changed:false,element:s.element})}var u;var o=new Promise((function(t){return u=t}));var a;var f={updateURL:false,viewIsReady:function(t){var i;var e=new Promise((function(t){return i=t}));u({changed:true,element:t,markVisible:function(){return __awaiter(r,void 0,void 0,(function(){return __generator(this,(function(t){switch(t.label){case 0:i();return[4,a];case 1:t.sent();return[2]}}))}))}});return e}};if(e==="root"){a=this.setRoot(t,i,f)}else{var h=this.views.find((function(e){return C(e,t,i)}));if(h){a=this.popTo(h,Object.assign(Object.assign({},f),{direction:"back",animationBuilder:n}))}else if(e==="forward"){a=this.push(t,i,Object.assign(Object.assign({},f),{animationBuilder:n}))}else if(e==="back"){a=this.setRoot(t,i,Object.assign(Object.assign({},f),{direction:"back",animated:true,animationBuilder:n}))}}return o};t.prototype.getRouteId=function(){return __awaiter(this,void 0,void 0,(function(){var t;return __generator(this,(function(i){t=this.getActiveSync();if(t){return[2,{id:t.element.tagName,params:t.params,element:t.element}]}return[2,undefined]}))}))};t.prototype.getActive=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){return[2,this.getActiveSync()]}))}))};t.prototype.getByIndex=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(i){return[2,this.views[t]]}))}))};t.prototype.canGoBack=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(i){return[2,this.canGoBackSync(t)]}))}))};t.prototype.getPrevious=function(t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(i){return[2,this.getPreviousSync(t)]}))}))};t.prototype.getLength=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){return[2,Promise.resolve(this.views.length)]}))}))};t.prototype.getActiveSync=function(){return this.views[this.views.length-1]};t.prototype.canGoBackSync=function(t){if(t===void 0){t=this.getActiveSync()}return!!(t&&this.getPreviousSync(t))};t.prototype.getPreviousSync=function(t){if(t===void 0){t=this.getActiveSync()}if(!t){return undefined}var i=this.views;var e=i.indexOf(t);return e>0?i[e-1]:undefined};t.prototype.queueTrns=function(t,i){return __awaiter(this,void 0,void 0,(function(){var e,n,r,s,u;return __generator(this,(function(o){switch(o.label){case 0:if(this.isTransitioning&&((e=t.opts)===null||e===void 0?void 0:e.skipIfBusy)){return[2,false]}r=new Promise((function(i,e){t.resolve=i;t.reject=e}));t.done=i;if(!(t.opts&&t.opts.updateURL!==false&&this.useRouter))return[3,2];s=document.querySelector("ion-router");if(!s)return[3,2];return[4,s.canTransition()];case 1:u=o.sent();if(u===false){return[2,false]}if(typeof u==="string"){s.push(u,t.opts.direction||"back");return[2,false]}o.label=2;case 2:if(((n=t.insertViews)===null||n===void 0?void 0:n.length)===0){t.insertViews=undefined}this.transInstr.push(t);this.nextTrns();return[2,r]}}))}))};t.prototype.success=function(t,i){if(this.destroyed){this.fireError("nav controller was destroyed",i);return}if(i.done){i.done(t.hasCompleted,t.requiresTransition,t.enteringView,t.leavingView,t.direction)}i.resolve(t.hasCompleted);if(i.opts.updateURL!==false&&this.useRouter){var e=document.querySelector("ion-router");if(e){var n=t.direction==="back"?"back":"forward";e.navChanged(n)}}};t.prototype.failed=function(t,i){if(this.destroyed){this.fireError("nav controller was destroyed",i);return}this.transInstr.length=0;this.fireError(t,i)};t.prototype.fireError=function(t,i){if(i.done){i.done(false,false,t)}if(i.reject&&!this.destroyed){i.reject(t)}else{i.resolve(false)}};t.prototype.nextTrns=function(){if(this.isTransitioning){return false}var t=this.transInstr.shift();if(!t){return false}this.runTransition(t);return true};t.prototype.runTransition=function(t){return __awaiter(this,void 0,void 0,(function(){var i,e,n,r,s,u;return __generator(this,(function(o){switch(o.label){case 0:o.trys.push([0,6,,7]);this.ionNavWillChange.emit();this.isTransitioning=true;this.prepareTI(t);i=this.getActiveSync();e=this.getEnteringView(t,i);if(!i&&!e){throw new Error("no views in the stack to be removed")}if(!(e&&e.state===g))return[3,2];return[4,e.init(this.el)];case 1:o.sent();o.label=2;case 2:this.postViewInit(e,i,t);n=(t.enteringRequiresTransition||t.leavingRequiresTransition)&&e!==i;if(n&&t.opts&&i){r=t.opts.direction==="back";if(r){t.opts.animationBuilder=t.opts.animationBuilder||(e===null||e===void 0?void 0:e.animationBuilder)}i.animationBuilder=t.opts.animationBuilder}s=void 0;if(!n)return[3,4];return[4,this.transition(e,i,t)];case 3:s=o.sent();return[3,5];case 4:s={hasCompleted:true,requiresTransition:false};o.label=5;case 5:this.success(s,t);this.ionNavDidChange.emit();return[3,7];case 6:u=o.sent();this.failed(u,t);return[3,7];case 7:this.isTransitioning=false;this.nextTrns();return[2]}}))}))};t.prototype.prepareTI=function(t){var i,e;var n;var r=this.views.length;(i=t.opts)!==null&&i!==void 0?i:t.opts={};(e=(n=t.opts).delegate)!==null&&e!==void 0?e:n.delegate=this.delegate;if(t.removeView!==undefined){f(t.removeStart!==undefined,"removeView needs removeStart");f(t.removeCount!==undefined,"removeView needs removeCount");var s=this.views.indexOf(t.removeView);if(s<0){throw new Error("removeView was not found")}t.removeStart+=s}if(t.removeStart!==undefined){if(t.removeStart<0){t.removeStart=r-1}if(t.removeCount<0){t.removeCount=r-t.removeStart}t.leavingRequiresTransition=t.removeCount>0&&t.removeStart+t.removeCount===r}if(t.insertViews){if(t.insertStart<0||t.insertStart>r){t.insertStart=r}t.enteringRequiresTransition=t.insertStart===r}var u=t.insertViews;if(!u){return}f(u.length>0,"length can not be zero");var o=E(u);if(o.length===0){throw new Error("invalid views to insert")}for(var a=0,h=o;a<h.length;a++){var c=h[a];c.delegate=t.opts.delegate;var d=c.nav;if(d&&d!==this){throw new Error("inserted view was already inserted")}if(c.state===k){throw new Error("inserted view was already destroyed")}}t.insertViews=o};t.prototype.getEnteringView=function(t,i){var e=t.insertViews;if(e!==undefined){return e[e.length-1]}var n=t.removeStart;if(n!==undefined){var r=this.views;var s=n+t.removeCount;for(var u=r.length-1;u>=0;u--){var o=r[u];if((u<n||u>=s)&&o!==i){return o}}}return undefined};t.prototype.postViewInit=function(t,i,e){var n,r,s;f(i||t,"Both leavingView and enteringView are null");f(e.resolve,"resolve must be valid");f(e.reject,"reject must be valid");var u=e.opts;var o=e.insertViews,a=e.removeStart,h=e.removeCount;var d;if(a!==undefined&&h!==undefined){f(a>=0,"removeStart can not be negative");f(h>=0,"removeCount can not be negative");d=[];for(var v=a;v<a+h;v++){var b=this.views[v];if(b!==undefined&&b!==t&&b!==i){d.push(b)}}(n=u.direction)!==null&&n!==void 0?n:u.direction="back"}var _=this.views.length+((r=o===null||o===void 0?void 0:o.length)!==null&&r!==void 0?r:0)-(h!==null&&h!==void 0?h:0);f(_>=0,"final balance can not be negative");if(_===0){console.warn("You can't remove all the pages in the navigation stack. nav.pop() is probably called too many times.",this,this.el);throw new Error("navigation stack needs at least one root page")}if(o){var p=e.insertStart;for(var g=0,y=o;g<y.length;g++){var b=y[g];this.insertViewAt(b,p);p++}if(e.enteringRequiresTransition){(s=u.direction)!==null&&s!==void 0?s:u.direction="forward"}}if(d&&d.length>0){for(var k=0,j=d;k<j.length;k++){var b=j[k];c(b.element,w);c(b.element,m);c(b.element,l)}for(var C=0,B=d;C<B.length;C++){var b=B[C];this.destroyView(b)}}};t.prototype.transition=function(t,i,e){return __awaiter(this,void 0,void 0,(function(){var n,s,u,o,a,f,h,c;var v=this;return __generator(this,(function(l){switch(l.label){case 0:n=e.opts;s=n.progressAnimation?function(t){if(t!==undefined&&!v.gestureOrAnimationInProgress){v.gestureOrAnimationInProgress=true;t.onFinish((function(){v.gestureOrAnimationInProgress=false}),{oneTimeCallback:true});t.progressEnd(0,0,0)}else{v.sbAni=t}}:undefined;u=_(this);o=b(this,u);a=t.element;f=i&&i.element;h=Object.assign(Object.assign({mode:o,theme:u,showGoBack:this.canGoBackSync(t),baseEl:this.el,progressCallback:s,animated:this.animated&&r.getBoolean("animated",true),enteringEl:a,leavingEl:f},n),{animationBuilder:n.animationBuilder||this.animation||r.get("navAnimation")});return[4,d(h)];case 1:c=l.sent().hasCompleted;return[2,this.transitionFinish(c,t,i,n)]}}))}))};t.prototype.transitionFinish=function(t,i,e,n){var r=t?i:e;if(r){this.unmountInactiveViews(r)}return{hasCompleted:t,requiresTransition:true,enteringView:i,leavingView:e,direction:n.direction}};t.prototype.insertViewAt=function(t,i){var e=this.views;var n=e.indexOf(t);if(n>-1){f(t.nav===this,"view is not part of the nav");e.splice(n,1);e.splice(i,0,t)}else{f(!t.nav,"nav is used");t.nav=this;e.splice(i,0,t)}};t.prototype.removeView=function(t){f(t.state===y||t.state===k,"view state should be loaded or destroyed");var i=this.views;var e=i.indexOf(t);f(e>-1,"view must be part of the stack");if(e>=0){i.splice(e,1)}};t.prototype.destroyView=function(t){t._destroy();this.removeView(t)};t.prototype.unmountInactiveViews=function(t){if(this.destroyed){return}var i=this.views;var e=i.indexOf(t);for(var n=i.length-1;n>=0;n--){var r=i[n];var s=r.element;if(s){if(n>e){c(s,l);this.destroyView(r)}else if(n<e){v(s,true)}}}};t.prototype.canStart=function(){return!this.gestureOrAnimationInProgress&&!!this.swipeGesture&&!this.isTransitioning&&this.transInstr.length===0&&this.canGoBackSync()};t.prototype.onStart=function(){this.gestureOrAnimationInProgress=true;this.pop({direction:"back",progressAnimation:true})};t.prototype.onMove=function(t){if(this.sbAni){this.sbAni.progressStep(t)}};t.prototype.onEnd=function(t,i,e){var n=this;if(this.sbAni){this.sbAni.onFinish((function(){n.gestureOrAnimationInProgress=false}),{oneTimeCallback:true});var r=t?-.001:.001;if(!t){this.sbAni.easing("cubic-bezier(1, 0, 0.68, 0.28)");r+=a([0,0],[1,0],[.68,.28],[1,1],i)[0]}else{r+=a([0,0],[.32,.72],[0,1],[1,1],i)[0]}this.sbAni.progressEnd(t?1:0,r,e)}else{this.gestureOrAnimationInProgress=false}};t.prototype.render=function(){return s("slot",{key:"cb4e79a79821427dcb55f9e97342662a1e3b6d6e"})};Object.defineProperty(t.prototype,"el",{get:function(){return u(this)},enumerable:false,configurable:true});Object.defineProperty(t,"watchers",{get:function(){return{swipeGesture:["swipeGestureChanged"],root:["rootChanged"]}},enumerable:false,configurable:true});return t}());V.style=S;var P=function(t,i,e,n,r){var s=t.closest("ion-nav");if(s){if(i==="forward"){if(e!==undefined){return s.push(e,n,{skipIfBusy:true,animationBuilder:r})}}else if(i==="root"){if(e!==undefined){return s.setRoot(e,n,{skipIfBusy:true,animationBuilder:r})}}else if(i==="back"){return s.pop({skipIfBusy:true,animationBuilder:r})}}return Promise.resolve(false)};var T=t("ion_nav_link",function(){function t(t){var i=this;e(this,t);this.onClick=function(){return P(i.el,i.routerDirection,i.component,i.componentProps,i.routerAnimation)};this.component=undefined;this.componentProps=undefined;this.routerDirection="forward";this.routerAnimation=undefined}t.prototype.render=function(){return s(o,{key:"de17298fc02afaa1ffbe8609ec6d9d61c4967f83",onClick:this.onClick})};Object.defineProperty(t.prototype,"el",{get:function(){return u(this)},enumerable:false,configurable:true});return t}())}}}));
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * (C) Ionic http://ionicframework.com - MIT License
3
+ */
4
+ import{r as t,j as o,k as e,l as i,m as n,g as a}from"./p-a9fd9d48.js";import{c as r}from"./p-e270862e.js";import{r as c}from"./p-c6191942.js";import{c as s}from"./p-ccd02320.js";import{d,e as l,B as h,i as b,f as p,g as u,h as g,s as v,j as f,k as m}from"./p-45e150eb.js";import{g as k}from"./p-47794def.js";import{b as x,c as y}from"./p-3ca5196c.js";import{c as w}from"./p-d1e991c3.js";import"./p-b9b36d56.js";import"./p-388ac217.js";import"./p-8ededb41.js";import"./p-9b97df10.js";import"./p-643e2eb8.js";const z=t=>{const o=w(),e=w(),i=w();return e.addElement(t.querySelector("ion-backdrop")).fromTo("opacity",.01,"var(--backdrop-opacity)").beforeStyles({"pointer-events":"none"}).afterClearStyles(["pointer-events"]),i.addElement(t.querySelector(".action-sheet-wrapper")).fromTo("transform","translateY(100%)","translateY(0%)"),o.addElement(t).easing("cubic-bezier(.36,.66,.04,1)").duration(400).addAnimation([e,i])},j=t=>{const o=w(),e=w(),i=w();return e.addElement(t.querySelector("ion-backdrop")).fromTo("opacity","var(--backdrop-opacity)",0),i.addElement(t.querySelector(".action-sheet-wrapper")).fromTo("transform","translateY(0%)","translateY(100%)"),o.addElement(t).easing("cubic-bezier(.36,.66,.04,1)").duration(450).addAnimation([e,i])},C=t=>{const o=w(),e=w(),i=w();return e.addElement(t.querySelector("ion-backdrop")).fromTo("opacity",.01,"var(--backdrop-opacity)").beforeStyles({"pointer-events":"none"}).afterClearStyles(["pointer-events"]),i.addElement(t.querySelector(".action-sheet-wrapper")).fromTo("transform","translateY(100%)","translateY(0%)"),o.addElement(t).easing("cubic-bezier(.36,.66,.04,1)").duration(400).addAnimation([e,i])},D=t=>{const o=w(),e=w(),i=w();return e.addElement(t.querySelector("ion-backdrop")).fromTo("opacity","var(--backdrop-opacity)",0),i.addElement(t.querySelector(".action-sheet-wrapper")).fromTo("transform","translateY(0%)","translateY(100%)"),o.addElement(t).easing("cubic-bezier(.36,.66,.04,1)").duration(450).addAnimation([e,i])},O=class{constructor(e){t(this,e),this.didPresent=o(this,"ionActionSheetDidPresent",7),this.willPresent=o(this,"ionActionSheetWillPresent",7),this.willDismiss=o(this,"ionActionSheetWillDismiss",7),this.didDismiss=o(this,"ionActionSheetDidDismiss",7),this.didPresentShorthand=o(this,"didPresent",7),this.willPresentShorthand=o(this,"willPresent",7),this.willDismissShorthand=o(this,"willDismiss",7),this.didDismissShorthand=o(this,"didDismiss",7),this.delegateController=d(this),this.lockController=s(),this.triggerController=l(),this.presented=!1,this.onBackdropTap=()=>{this.dismiss(void 0,h)},this.dispatchCancelHandler=t=>{if(b(t.detail.role)){const t=this.getButtons().find((t=>"cancel"===t.role));this.callButtonHandler(t)}},this.overlayIndex=void 0,this.delegate=void 0,this.hasController=!1,this.keyboardClose=!0,this.enterAnimation=void 0,this.leaveAnimation=void 0,this.buttons=[],this.cssClass=void 0,this.backdropDismiss=!0,this.header=void 0,this.subHeader=void 0,this.translucent=!1,this.animated=!0,this.htmlAttributes=void 0,this.isOpen=!1,this.trigger=void 0}onIsOpenChange(t,o){!0===t&&!1===o?this.present():!1===t&&!0===o&&this.dismiss()}triggerChanged(){const{trigger:t,el:o,triggerController:e}=this;t&&e.addClickListener(o,t)}async present(){const t=await this.lockController.lock();await this.delegateController.attachViewToDom(),await p(this,"actionSheetEnter",z,C),t()}async dismiss(t,o){const e=await this.lockController.lock(),i=await u(this,t,o,"actionSheetLeave",j,D);return i&&this.delegateController.removeViewFromDom(),e(),i}onDidDismiss(){return g(this.el,"ionActionSheetDidDismiss")}onWillDismiss(){return g(this.el,"ionActionSheetWillDismiss")}async buttonClick(t){const o=t.role;return b(o)?this.dismiss(t.data,o):await this.callButtonHandler(t)?this.dismiss(t.data,t.role):Promise.resolve()}async callButtonHandler(t){return!t||!1!==await v(t.handler)}getButtons(){return this.buttons.map((t=>"string"==typeof t?{text:t}:t))}connectedCallback(){f(this.el),this.triggerChanged()}disconnectedCallback(){this.gesture&&(this.gesture.destroy(),this.gesture=void 0),this.triggerController.removeClickListener()}componentWillLoad(){var t;(null===(t=this.htmlAttributes)||void 0===t?void 0:t.id)||m(this.el)}componentDidLoad(){const t=x(this),{groupEl:o,wrapperEl:i}=this;!this.gesture&&"ios"===t&&i&&o&&e((()=>{o.scrollHeight>o.clientHeight||(this.gesture=r(i,(t=>t.classList.contains("action-sheet-button"))),this.gesture.enable(!0))})),!0===this.isOpen&&c((()=>this.present())),this.triggerChanged()}render(){const{header:t,htmlAttributes:o,overlayIndex:e}=this,a=y(this),r=this.getButtons(),c=r.find((t=>"cancel"===t.role)),s=r.filter((t=>"cancel"!==t.role)),d=`action-sheet-${e}-header`;return i(n,Object.assign({key:"7fbcf04cb0243a39d87b08b29265880c92f0ad3f",role:"dialog","aria-modal":"true","aria-labelledby":void 0!==t?d:null,tabindex:"-1"},o,{style:{zIndex:`${2e4+this.overlayIndex}`},class:Object.assign(Object.assign({[a]:!0},k(this.cssClass)),{"overlay-hidden":!0,"action-sheet-translucent":this.translucent}),onIonActionSheetWillDismiss:this.dispatchCancelHandler,onIonBackdropTap:this.onBackdropTap}),i("ion-backdrop",{key:"897a78d622d666b27410354501317b0b3eb48093",tappable:this.backdropDismiss}),i("div",{key:"ad5c42ebfa41a89cac1df8167afa76c8e9bd3947",tabindex:"0"}),i("div",{key:"18c881b0df474f53959f14a497e050d2a7ec2eb7",class:"action-sheet-wrapper ion-overlay-wrapper",ref:t=>this.wrapperEl=t},i("div",{key:"f2788afe2d371e80244c13ba6c259894a5ffe6ea",class:"action-sheet-container"},i("div",{key:"a48766378a6951da925707e59a662a2371544083",class:"action-sheet-group",ref:t=>this.groupEl=t},void 0!==t&&i("div",{key:"a76b97ed07af33785ed48bfede75658081b4ad43",id:d,class:{"action-sheet-title":!0,"action-sheet-has-sub-title":void 0!==this.subHeader}},t,this.subHeader&&i("div",{key:"7e033981ae660204fd71a1f983e383d6601ad688",class:"action-sheet-sub-title"},this.subHeader)),s.map((t=>i("button",Object.assign({},t.htmlAttributes,{type:"button",id:t.id,class:S(t),onClick:()=>this.buttonClick(t),disabled:t.disabled}),i("span",{class:"action-sheet-button-inner"},t.icon&&i("ion-icon",{icon:t.icon,"aria-hidden":"true",lazy:!1,class:"action-sheet-icon"}),t.text),"md"===a&&i("ion-ripple-effect",null))))),c&&i("div",{key:"404f04670ad494b7a6578167d2e2935197550185",class:"action-sheet-group action-sheet-group-cancel"},i("button",Object.assign({key:"49b4a535e6749b9dbac135d064831457c43b6e35"},c.htmlAttributes,{type:"button",class:S(c),onClick:()=>this.buttonClick(c)}),i("span",{key:"159fd069191f32b962bda834756a7f0d7e1b1ca0",class:"action-sheet-button-inner"},c.icon&&i("ion-icon",{key:"c06fb27fa0b3daad25d621124f44f3ec6c4bf015",icon:c.icon,"aria-hidden":"true",lazy:!1,class:"action-sheet-icon"}),c.text),"md"===a&&i("ion-ripple-effect",{key:"f6d6179b58da0dfe3310fe957c0441fd20abb47a"}))))),i("div",{key:"3222a9753771914b523a98354ef6d2373bb19aa2",tabindex:"0"}))}get el(){return a(this)}static get watchers(){return{isOpen:["onIsOpenChange"],trigger:["triggerChanged"]}}},S=t=>Object.assign({"action-sheet-button":!0,"ion-activatable":!t.disabled,"ion-focusable":!t.disabled,[`action-sheet-${t.role}`]:void 0!==t.role},k(t.cssClass));O.style={ionic:'.sc-ion-action-sheet-ionic-h{--color:initial;--button-color-activated:var(--button-color);--button-color-focused:var(--button-color);--button-color-hover:var(--button-color);--button-color-selected:var(--button-color);--min-width:auto;--width:100%;--max-width:500px;--min-height:auto;--height:auto;--max-height:calc(100% - (var(--ion-safe-area-top) + var(--ion-safe-area-bottom)));-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;right:0;left:0;top:0;bottom:0;display:block;position:fixed;outline:none;font-family:var(--ion-font-family, inherit);-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1001}.overlay-hidden.sc-ion-action-sheet-ionic-h{display:none}.action-sheet-wrapper.sc-ion-action-sheet-ionic{right:0;left:0;bottom:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);display:block;position:absolute;width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);z-index:10;pointer-events:none}.action-sheet-button.sc-ion-action-sheet-ionic{display:block;position:relative;width:100%;border:0;outline:none;background:var(--button-background);color:var(--button-color);font-family:inherit;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-ionic:disabled{color:var(--button-color-disabled);opacity:0.4}.action-sheet-button-inner.sc-ion-action-sheet-ionic{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;pointer-events:none;width:100%;height:100%;z-index:1}.action-sheet-container.sc-ion-action-sheet-ionic{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-pack:end;justify-content:flex-end;height:100%;max-height:calc(100vh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)));max-height:calc(100dvh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)))}.action-sheet-group.sc-ion-action-sheet-ionic{-ms-flex-negative:2;flex-shrink:2;overscroll-behavior-y:contain;overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:all;background:var(--background)}@media (any-pointer: coarse){.action-sheet-group.sc-ion-action-sheet-ionic::-webkit-scrollbar{display:none}}.action-sheet-group-cancel.sc-ion-action-sheet-ionic{-ms-flex-negative:0;flex-shrink:0;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-ionic::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}.action-sheet-selected.sc-ion-action-sheet-ionic{color:var(--button-color-selected)}.action-sheet-selected.sc-ion-action-sheet-ionic::after{background:var(--button-background-selected);opacity:var(--button-background-selected-opacity)}.action-sheet-button.ion-activated.sc-ion-action-sheet-ionic{color:var(--button-color-activated)}.action-sheet-button.ion-activated.sc-ion-action-sheet-ionic::after{background:var(--button-background-activated);opacity:var(--button-background-activated-opacity)}.action-sheet-button.ion-focused.sc-ion-action-sheet-ionic{color:var(--button-color-focused)}.action-sheet-button.ion-focused.sc-ion-action-sheet-ionic::after{background:var(--button-background-focused);opacity:var(--button-background-focused-opacity)}@media (any-hover: hover){.action-sheet-button.sc-ion-action-sheet-ionic:not(:disabled):hover{color:var(--button-color-hover)}.action-sheet-button.sc-ion-action-sheet-ionic:not(:disabled):hover::after{background:var(--button-background-hover);opacity:var(--button-background-hover-opacity)}}.sc-ion-action-sheet-ionic-h{--background:var(--ion-overlay-background-color, var(--ion-background-color, #fff));--backdrop-opacity:var(--ion-backdrop-opacity, 0.32);--button-background:transparent;--button-background-selected:currentColor;--button-background-selected-opacity:0;--button-background-activated:transparent;--button-background-activated-opacity:0;--button-background-hover:currentColor;--button-background-hover-opacity:0.04;--button-background-focused:currentColor;--button-background-focused-opacity:0.12;--button-color:var(--ion-color-step-850, var(--ion-text-color-step-150, #262626));--button-color-disabled:var(--button-color);--color:rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.54)}.action-sheet-wrapper.sc-ion-action-sheet-ionic{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:var(--ion-safe-area-top, 0);margin-bottom:0}.action-sheet-title.sc-ion-action-sheet-ionic{-webkit-padding-start:16px;padding-inline-start:16px;-webkit-padding-end:16px;padding-inline-end:16px;padding-top:20px;padding-bottom:17px;min-height:60px;color:var(--color, rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.54));font-size:1rem;text-align:start}.action-sheet-sub-title.sc-ion-action-sheet-ionic{padding-left:0;padding-right:0;padding-top:16px;padding-bottom:0;font-size:0.875rem}.action-sheet-group.sc-ion-action-sheet-ionic:first-child{padding-top:0}.action-sheet-group.sc-ion-action-sheet-ionic:last-child{padding-bottom:var(--ion-safe-area-bottom)}.action-sheet-button.sc-ion-action-sheet-ionic{-webkit-padding-start:16px;padding-inline-start:16px;-webkit-padding-end:16px;padding-inline-end:16px;padding-top:12px;padding-bottom:12px;position:relative;min-height:52px;font-size:1rem;text-align:start;contain:content;overflow:hidden}.action-sheet-icon.sc-ion-action-sheet-ionic{-webkit-margin-start:0;margin-inline-start:0;-webkit-margin-end:32px;margin-inline-end:32px;margin-top:0;margin-bottom:0;color:var(--color);font-size:1.5rem}.action-sheet-button-inner.sc-ion-action-sheet-ionic{-ms-flex-pack:start;justify-content:flex-start}.action-sheet-selected.sc-ion-action-sheet-ionic{font-weight:bold}',ios:'.sc-ion-action-sheet-ios-h{--color:initial;--button-color-activated:var(--button-color);--button-color-focused:var(--button-color);--button-color-hover:var(--button-color);--button-color-selected:var(--button-color);--min-width:auto;--width:100%;--max-width:500px;--min-height:auto;--height:auto;--max-height:calc(100% - (var(--ion-safe-area-top) + var(--ion-safe-area-bottom)));-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;right:0;left:0;top:0;bottom:0;display:block;position:fixed;outline:none;font-family:var(--ion-font-family, inherit);-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1001}.overlay-hidden.sc-ion-action-sheet-ios-h{display:none}.action-sheet-wrapper.sc-ion-action-sheet-ios{right:0;left:0;bottom:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);display:block;position:absolute;width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);z-index:10;pointer-events:none}.action-sheet-button.sc-ion-action-sheet-ios{display:block;position:relative;width:100%;border:0;outline:none;background:var(--button-background);color:var(--button-color);font-family:inherit;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-ios:disabled{color:var(--button-color-disabled);opacity:0.4}.action-sheet-button-inner.sc-ion-action-sheet-ios{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;pointer-events:none;width:100%;height:100%;z-index:1}.action-sheet-container.sc-ion-action-sheet-ios{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-pack:end;justify-content:flex-end;height:100%;max-height:calc(100vh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)));max-height:calc(100dvh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)))}.action-sheet-group.sc-ion-action-sheet-ios{-ms-flex-negative:2;flex-shrink:2;overscroll-behavior-y:contain;overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:all;background:var(--background)}@media (any-pointer: coarse){.action-sheet-group.sc-ion-action-sheet-ios::-webkit-scrollbar{display:none}}.action-sheet-group-cancel.sc-ion-action-sheet-ios{-ms-flex-negative:0;flex-shrink:0;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-ios::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}.action-sheet-selected.sc-ion-action-sheet-ios{color:var(--button-color-selected)}.action-sheet-selected.sc-ion-action-sheet-ios::after{background:var(--button-background-selected);opacity:var(--button-background-selected-opacity)}.action-sheet-button.ion-activated.sc-ion-action-sheet-ios{color:var(--button-color-activated)}.action-sheet-button.ion-activated.sc-ion-action-sheet-ios::after{background:var(--button-background-activated);opacity:var(--button-background-activated-opacity)}.action-sheet-button.ion-focused.sc-ion-action-sheet-ios{color:var(--button-color-focused)}.action-sheet-button.ion-focused.sc-ion-action-sheet-ios::after{background:var(--button-background-focused);opacity:var(--button-background-focused-opacity)}@media (any-hover: hover){.action-sheet-button.sc-ion-action-sheet-ios:not(:disabled):hover{color:var(--button-color-hover)}.action-sheet-button.sc-ion-action-sheet-ios:not(:disabled):hover::after{background:var(--button-background-hover);opacity:var(--button-background-hover-opacity)}}.sc-ion-action-sheet-ios-h{--background:var(--ion-overlay-background-color, var(--ion-color-step-100, var(--ion-background-color-step-100, #f9f9f9)));--backdrop-opacity:var(--ion-backdrop-opacity, 0.4);--button-background:linear-gradient(0deg, rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08), rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08) 50%, transparent 50%) bottom/100% 1px no-repeat transparent;--button-background-activated:var(--ion-text-color, #000);--button-background-activated-opacity:0.08;--button-background-hover:currentColor;--button-background-hover-opacity:0.04;--button-background-focused:currentColor;--button-background-focused-opacity:0.12;--button-background-selected:var(--ion-color-step-150, var(--ion-background-color-step-150, var(--ion-background-color, #fff)));--button-background-selected-opacity:1;--button-color:var(--ion-color-primary, #0054e9);--button-color-disabled:var(--ion-color-step-850, var(--ion-text-color-step-150, #262626));--color:var(--ion-color-step-400, var(--ion-text-color-step-600, #999999));text-align:center}.action-sheet-wrapper.sc-ion-action-sheet-ios{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:var(--ion-safe-area-top, 0);padding-bottom:var(--ion-safe-area-bottom, 0);-webkit-box-sizing:content-box;box-sizing:content-box}.action-sheet-container.sc-ion-action-sheet-ios{-webkit-padding-start:8px;padding-inline-start:8px;-webkit-padding-end:8px;padding-inline-end:8px;padding-top:0;padding-bottom:0}.action-sheet-group.sc-ion-action-sheet-ios{border-radius:13px;margin-bottom:8px}.action-sheet-group.sc-ion-action-sheet-ios:first-child{margin-top:10px}.action-sheet-group.sc-ion-action-sheet-ios:last-child{margin-bottom:10px}@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))){.action-sheet-translucent.sc-ion-action-sheet-ios-h .action-sheet-group.sc-ion-action-sheet-ios{background-color:transparent;-webkit-backdrop-filter:saturate(280%) blur(20px);backdrop-filter:saturate(280%) blur(20px)}.action-sheet-translucent.sc-ion-action-sheet-ios-h .action-sheet-title.sc-ion-action-sheet-ios,.action-sheet-translucent.sc-ion-action-sheet-ios-h .action-sheet-button.sc-ion-action-sheet-ios{background-color:transparent;background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8)), to(rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8))), -webkit-gradient(linear, left bottom, left top, from(rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.4)), color-stop(50%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.4)), color-stop(50%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8)));background-image:linear-gradient(0deg, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8), rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 100%), linear-gradient(0deg, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.4), rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.4) 50%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 50%);background-repeat:no-repeat;background-position:top, bottom;background-size:100% calc(100% - 1px), 100% 1px;-webkit-backdrop-filter:saturate(120%);backdrop-filter:saturate(120%)}.action-sheet-translucent.sc-ion-action-sheet-ios-h .action-sheet-button.ion-activated.sc-ion-action-sheet-ios{background-color:rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.7);background-image:none}.action-sheet-translucent.sc-ion-action-sheet-ios-h .action-sheet-cancel.sc-ion-action-sheet-ios{background:var(--button-background-selected)}}.action-sheet-title.sc-ion-action-sheet-ios{background:-webkit-gradient(linear, left bottom, left top, from(rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08)), color-stop(50%, rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08)), color-stop(50%, transparent)) bottom/100% 1px no-repeat transparent;background:linear-gradient(0deg, rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08), rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.08) 50%, transparent 50%) bottom/100% 1px no-repeat transparent}.action-sheet-title.sc-ion-action-sheet-ios{-webkit-padding-start:10px;padding-inline-start:10px;-webkit-padding-end:10px;padding-inline-end:10px;padding-top:14px;padding-bottom:13px;color:var(--color, var(--ion-color-step-400, var(--ion-text-color-step-600, #999999)));font-size:max(13px, 0.8125rem);font-weight:400;text-align:center}.action-sheet-title.action-sheet-has-sub-title.sc-ion-action-sheet-ios{font-weight:600}.action-sheet-sub-title.sc-ion-action-sheet-ios{padding-left:0;padding-right:0;padding-top:6px;padding-bottom:0;font-size:max(13px, 0.8125rem);font-weight:400}.action-sheet-button.sc-ion-action-sheet-ios{-webkit-padding-start:14px;padding-inline-start:14px;-webkit-padding-end:14px;padding-inline-end:14px;padding-top:14px;padding-bottom:14px;min-height:56px;font-size:max(20px, 1.25rem);contain:content}.action-sheet-button.sc-ion-action-sheet-ios .action-sheet-icon.sc-ion-action-sheet-ios{-webkit-margin-end:0.3em;margin-inline-end:0.3em;font-size:max(28px, 1.75rem);pointer-events:none}.action-sheet-button.sc-ion-action-sheet-ios:last-child{background-image:none}.action-sheet-selected.sc-ion-action-sheet-ios{font-weight:bold}.action-sheet-cancel.sc-ion-action-sheet-ios{font-weight:600}.action-sheet-cancel.sc-ion-action-sheet-ios::after{background:var(--button-background-selected);opacity:var(--button-background-selected-opacity)}.action-sheet-destructive.sc-ion-action-sheet-ios,.action-sheet-destructive.ion-activated.sc-ion-action-sheet-ios,.action-sheet-destructive.ion-focused.sc-ion-action-sheet-ios{color:var(--ion-color-danger, #c5000f)}@media (any-hover: hover){.action-sheet-destructive.sc-ion-action-sheet-ios:hover{color:var(--ion-color-danger, #c5000f)}}',md:'.sc-ion-action-sheet-md-h{--color:initial;--button-color-activated:var(--button-color);--button-color-focused:var(--button-color);--button-color-hover:var(--button-color);--button-color-selected:var(--button-color);--min-width:auto;--width:100%;--max-width:500px;--min-height:auto;--height:auto;--max-height:calc(100% - (var(--ion-safe-area-top) + var(--ion-safe-area-bottom)));-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;right:0;left:0;top:0;bottom:0;display:block;position:fixed;outline:none;font-family:var(--ion-font-family, inherit);-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1001}.overlay-hidden.sc-ion-action-sheet-md-h{display:none}.action-sheet-wrapper.sc-ion-action-sheet-md{right:0;left:0;bottom:0;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);display:block;position:absolute;width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);z-index:10;pointer-events:none}.action-sheet-button.sc-ion-action-sheet-md{display:block;position:relative;width:100%;border:0;outline:none;background:var(--button-background);color:var(--button-color);font-family:inherit;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-md:disabled{color:var(--button-color-disabled);opacity:0.4}.action-sheet-button-inner.sc-ion-action-sheet-md{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;pointer-events:none;width:100%;height:100%;z-index:1}.action-sheet-container.sc-ion-action-sheet-md{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-pack:end;justify-content:flex-end;height:100%;max-height:calc(100vh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)));max-height:calc(100dvh - (var(--ion-safe-area-top, 0) + var(--ion-safe-area-bottom, 0)))}.action-sheet-group.sc-ion-action-sheet-md{-ms-flex-negative:2;flex-shrink:2;overscroll-behavior-y:contain;overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:all;background:var(--background)}@media (any-pointer: coarse){.action-sheet-group.sc-ion-action-sheet-md::-webkit-scrollbar{display:none}}.action-sheet-group-cancel.sc-ion-action-sheet-md{-ms-flex-negative:0;flex-shrink:0;overflow:hidden}.action-sheet-button.sc-ion-action-sheet-md::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}.action-sheet-selected.sc-ion-action-sheet-md{color:var(--button-color-selected)}.action-sheet-selected.sc-ion-action-sheet-md::after{background:var(--button-background-selected);opacity:var(--button-background-selected-opacity)}.action-sheet-button.ion-activated.sc-ion-action-sheet-md{color:var(--button-color-activated)}.action-sheet-button.ion-activated.sc-ion-action-sheet-md::after{background:var(--button-background-activated);opacity:var(--button-background-activated-opacity)}.action-sheet-button.ion-focused.sc-ion-action-sheet-md{color:var(--button-color-focused)}.action-sheet-button.ion-focused.sc-ion-action-sheet-md::after{background:var(--button-background-focused);opacity:var(--button-background-focused-opacity)}@media (any-hover: hover){.action-sheet-button.sc-ion-action-sheet-md:not(:disabled):hover{color:var(--button-color-hover)}.action-sheet-button.sc-ion-action-sheet-md:not(:disabled):hover::after{background:var(--button-background-hover);opacity:var(--button-background-hover-opacity)}}.sc-ion-action-sheet-md-h{--background:var(--ion-overlay-background-color, var(--ion-background-color, #fff));--backdrop-opacity:var(--ion-backdrop-opacity, 0.32);--button-background:transparent;--button-background-selected:currentColor;--button-background-selected-opacity:0;--button-background-activated:transparent;--button-background-activated-opacity:0;--button-background-hover:currentColor;--button-background-hover-opacity:0.04;--button-background-focused:currentColor;--button-background-focused-opacity:0.12;--button-color:var(--ion-color-step-850, var(--ion-text-color-step-150, #262626));--button-color-disabled:var(--button-color);--color:rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.54)}.action-sheet-wrapper.sc-ion-action-sheet-md{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:var(--ion-safe-area-top, 0);margin-bottom:0}.action-sheet-title.sc-ion-action-sheet-md{-webkit-padding-start:16px;padding-inline-start:16px;-webkit-padding-end:16px;padding-inline-end:16px;padding-top:20px;padding-bottom:17px;min-height:60px;color:var(--color, rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.54));font-size:1rem;text-align:start}.action-sheet-sub-title.sc-ion-action-sheet-md{padding-left:0;padding-right:0;padding-top:16px;padding-bottom:0;font-size:0.875rem}.action-sheet-group.sc-ion-action-sheet-md:first-child{padding-top:0}.action-sheet-group.sc-ion-action-sheet-md:last-child{padding-bottom:var(--ion-safe-area-bottom)}.action-sheet-button.sc-ion-action-sheet-md{-webkit-padding-start:16px;padding-inline-start:16px;-webkit-padding-end:16px;padding-inline-end:16px;padding-top:12px;padding-bottom:12px;position:relative;min-height:52px;font-size:1rem;text-align:start;contain:content;overflow:hidden}.action-sheet-icon.sc-ion-action-sheet-md{-webkit-margin-start:0;margin-inline-start:0;-webkit-margin-end:32px;margin-inline-end:32px;margin-top:0;margin-bottom:0;color:var(--color);font-size:1.5rem}.action-sheet-button-inner.sc-ion-action-sheet-md{-ms-flex-pack:start;justify-content:flex-start}.action-sheet-selected.sc-ion-action-sheet-md{font-weight:bold}'};export{O as ion_action_sheet}
@@ -1,4 +1,4 @@
1
1
  var __awaiter=this&&this.__awaiter||function(e,r,n,i){function t(e){return e instanceof n?e:new n((function(r){r(e)}))}return new(n||(n=Promise))((function(n,s){function o(e){try{a(i.next(e))}catch(e){s(e)}}function f(e){try{a(i["throw"](e))}catch(e){s(e)}}function a(e){e.done?n(e.value):t(e.value).then(o,f)}a((i=i.apply(e,r||[])).next())}))};var __generator=this&&this.__generator||function(e,r){var n={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},i,t,s,o;return o={next:f(0),throw:f(1),return:f(2)},typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function f(e){return function(r){return a([e,r])}}function a(f){if(i)throw new TypeError("Generator is already executing.");while(o&&(o=0,f[0]&&(n=0)),n)try{if(i=1,t&&(s=f[0]&2?t["return"]:f[0]?t["throw"]||((s=t["return"])&&s.call(t),0):t.next)&&!(s=s.call(t,f[1])).done)return s;if(t=0,s)f=[f[0]&2,s.value];switch(f[0]){case 0:case 1:s=f;break;case 4:n.label++;return{value:f[1],done:false};case 5:n.label++;t=f[1];f=[0];continue;case 7:f=n.ops.pop();n.trys.pop();continue;default:if(!(s=n.trys,s=s.length>0&&s[s.length-1])&&(f[0]===6||f[0]===2)){n=0;continue}if(f[0]===3&&(!s||f[1]>s[0]&&f[1]<s[3])){n.label=f[1];break}if(f[0]===6&&n.label<s[1]){n.label=s[1];s=f;break}if(s&&n.label<s[2]){n.label=s[2];n.ops.push(f);break}if(s[2])n.ops.pop();n.trys.pop();continue}f=r.call(e,n)}catch(e){f=[6,e];t=0}finally{i=s=0}if(f[0]&5)throw f[1];return{value:f[0]?f[1]:void 0,done:true}}};
2
2
  /*!
3
3
  * (C) Ionic http://ionicframework.com - MIT License
4
- */System.register(["./p-25180df3.system.js","./p-e673a0a2.system.js","./p-9ea607bd.system.js","./p-3ad285e3.system.js","./p-a93873de.system.js","./p-a69b9fc5.system.js","./p-9146695e.system.js","./p-f233f1e0.system.js","./p-1e955a45.system.js","./p-d8d84afa.system.js","./p-ff4b7e40.system.js","./p-8985cdb6.system.js","./p-792919fd.system.js"],(function(e,r){"use strict";var n,i,t,s,o,f,a,h,c,l,u,d,p,g,m,v,b,x,y,w,k,_,j,S,z,Y,P;return{setters:[function(e){n=e.w;i=e.r;t=e.d;s=e.e;o=e.h;f=e.i;a=e.f},function(e){h=e.g},function(e){c=e.I;l=e.b;u=e.p;d=e.g},function(e){p=e.t;g=e.c;m=e.j;v=e.g;b=e.r},function(e){x=e.d;y=e.I},function(e){w=e.b;k=e.c},function(e){_=e.c},function(e){j=e.E;S=e.a},function(e){z=e.h;Y=e.i},function(e){P=e.S},function(){},function(){},function(){}],execute:function(){var M=this;var E=function(e){var r=e.previousElementSibling;var n=r!==null&&r.tagName==="ION-HEADER";return n?"translate":"scale"};var T=function(e,r,n){return e==="scale"?N(r,n):X(r,n)};var D=function(e){var r=e.querySelector("ion-spinner");var n=r.shadowRoot.querySelector("circle");var i=e.querySelector(".spinner-arrow-container");var t=e.querySelector(".arrow-container");var s=t?t.querySelector("ion-icon"):null;var o=_().duration(1e3).easing("ease-out");var f=_().addElement(i).keyframes([{offset:0,opacity:"0.3"},{offset:.45,opacity:"0.3"},{offset:.55,opacity:"1"},{offset:1,opacity:"1"}]);var a=_().addElement(n).keyframes([{offset:0,strokeDasharray:"1px, 200px"},{offset:.2,strokeDasharray:"1px, 200px"},{offset:.55,strokeDasharray:"100px, 200px"},{offset:1,strokeDasharray:"100px, 200px"}]);var h=_().addElement(r).keyframes([{offset:0,transform:"rotate(-90deg)"},{offset:1,transform:"rotate(210deg)"}]);if(t&&s){var c=_().addElement(t).keyframes([{offset:0,transform:"rotate(0deg)"},{offset:.3,transform:"rotate(0deg)"},{offset:.55,transform:"rotate(280deg)"},{offset:1,transform:"rotate(400deg)"}]);var l=_().addElement(s).keyframes([{offset:0,transform:"translateX(2px) scale(0)"},{offset:.3,transform:"translateX(2px) scale(0)"},{offset:.55,transform:"translateX(-1.5px) scale(1)"},{offset:1,transform:"translateX(-1.5px) scale(1)"}]);o.addAnimation([c,l])}return o.addAnimation([f,a,h])};var N=function(e,r){var n=r.clientHeight;var i=_().addElement(e).keyframes([{offset:0,transform:"scale(0) translateY(-".concat(n,"px)")},{offset:1,transform:"scale(1) translateY(100px)"}]);return D(e).addAnimation([i])};var X=function(e,r){var n=r.clientHeight;var i=_().addElement(e).keyframes([{offset:0,transform:"translateY(-".concat(n,"px)")},{offset:1,transform:"translateY(100px)"}]);return D(e).addAnimation([i])};var H=function(e){return _().duration(125).addElement(e).fromTo("transform","translateY(var(--ion-pulling-refresher-translate, 100px))","translateY(0px)")};var O=function(e,r){e.style.setProperty("opacity",r.toString())};var L=function(e,r,i){var t=1;n((function(){e.forEach((function(e,n){var s=n*(t/r);var o=t-s;var f=i-s;var a=m(0,f/o,1);e.style.setProperty("opacity",a.toString())}))}))};var C=function(e,r){n((function(){e.style.setProperty("--refreshing-rotation-duration",r>=1?"0.5s":"2s");e.style.setProperty("opacity","1")}))};var I=function(e,r,i){if(i===void 0){i=200}if(!e){return Promise.resolve()}var t=p(e,i);n((function(){e.style.setProperty("transition","".concat(i,"ms all ease-out"));if(r===undefined){e.style.removeProperty("transform")}else{e.style.setProperty("transform","translate3d(0px, ".concat(r,", 0px)"))}}));return t};var R=function(){return navigator.maxTouchPoints>0&&CSS.supports("background: -webkit-named-image(apple-pay-logo-black)")};var A=function(e,r){return __awaiter(M,void 0,void 0,(function(){var n,i,t;return __generator(this,(function(s){switch(s.label){case 0:n=e.querySelector("ion-refresher-content");if(!n){return[2,Promise.resolve(false)]}return[4,new Promise((function(e){return g(n,e)}))];case 1:s.sent();i=e.querySelector("ion-refresher-content .refresher-pulling ion-spinner");t=e.querySelector("ion-refresher-content .refresher-refreshing ion-spinner");return[2,i!==null&&t!==null&&(r==="ios"&&R()||r==="md")]}}))}))};var G="ion-refresher{top:0;display:none;position:absolute;width:100%;height:60px;pointer-events:none;z-index:-1}ion-refresher{inset-inline-start:0}ion-refresher.refresher-active{display:block}ion-refresher-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.refresher-pulling,.refresher-refreshing{display:none;width:100%}.refresher-pulling-icon,.refresher-refreshing-icon{-webkit-transform-origin:center;transform-origin:center;-webkit-transition:200ms;transition:200ms;font-size:30px;text-align:center}:host-context([dir=rtl]) .refresher-pulling-icon,:host-context([dir=rtl]) .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}[dir=rtl] .refresher-pulling-icon,[dir=rtl] .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}@supports selector(:dir(rtl)){.refresher-pulling-icon:dir(rtl),.refresher-refreshing-icon:dir(rtl){-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}}.refresher-pulling-text,.refresher-refreshing-text{font-size:16px;text-align:center}ion-refresher-content .arrow-container{display:none}.refresher-pulling ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.refresher-refreshing ion-refresher-content .refresher-refreshing{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-completing ion-refresher-content .refresher-refreshing{display:block}.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-native .refresher-pulling-text,.refresher-native .refresher-refreshing-text{display:none}.refresher-ios .refresher-pulling-icon,.refresher-ios .refresher-refreshing-icon{color:var(--ion-text-color, #000)}.refresher-ios .refresher-pulling-text,.refresher-ios .refresher-refreshing-text{color:var(--ion-text-color, #000)}.refresher-ios .refresher-refreshing .spinner-lines-ios line,.refresher-ios .refresher-refreshing .spinner-lines-small-ios line,.refresher-ios .refresher-refreshing .spinner-crescent circle{stroke:var(--ion-text-color, #000)}.refresher-ios .refresher-refreshing .spinner-bubbles circle,.refresher-ios .refresher-refreshing .spinner-circles circle,.refresher-ios .refresher-refreshing .spinner-dots circle{fill:var(--ion-text-color, #000)}ion-refresher.refresher-native{display:block;z-index:1}ion-refresher.refresher-native ion-spinner{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0}.refresher-native .refresher-refreshing ion-spinner{--refreshing-rotation-duration:2s;display:none;-webkit-animation:var(--refreshing-rotation-duration) ease-out refresher-rotate forwards;animation:var(--refreshing-rotation-duration) ease-out refresher-rotate forwards}.refresher-native .refresher-refreshing{display:none;-webkit-animation:250ms linear refresher-pop forwards;animation:250ms linear refresher-pop forwards}.refresher-native ion-spinner{width:32px;height:32px;color:var(--ion-color-step-450, var(--ion-background-color-step-450, #747577))}.refresher-native.refresher-refreshing .refresher-pulling ion-spinner,.refresher-native.refresher-completing .refresher-pulling ion-spinner{display:none}.refresher-native.refresher-refreshing .refresher-refreshing ion-spinner,.refresher-native.refresher-completing .refresher-refreshing ion-spinner{display:block}.refresher-native.refresher-pulling .refresher-pulling ion-spinner{display:block}.refresher-native.refresher-pulling .refresher-refreshing ion-spinner{display:none}.refresher-native.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0) rotate(180deg);transform:scale(0) rotate(180deg);-webkit-transition:300ms;transition:300ms}@-webkit-keyframes refresher-pop{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}50%{-webkit-transform:scale(1.2);transform:scale(1.2);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes refresher-pop{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}50%{-webkit-transform:scale(1.2);transform:scale(1.2);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes refresher-rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}@keyframes refresher-rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}";var Z=G;var q="ion-refresher{top:0;display:none;position:absolute;width:100%;height:60px;pointer-events:none;z-index:-1}ion-refresher{inset-inline-start:0}ion-refresher.refresher-active{display:block}ion-refresher-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.refresher-pulling,.refresher-refreshing{display:none;width:100%}.refresher-pulling-icon,.refresher-refreshing-icon{-webkit-transform-origin:center;transform-origin:center;-webkit-transition:200ms;transition:200ms;font-size:30px;text-align:center}:host-context([dir=rtl]) .refresher-pulling-icon,:host-context([dir=rtl]) .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}[dir=rtl] .refresher-pulling-icon,[dir=rtl] .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}@supports selector(:dir(rtl)){.refresher-pulling-icon:dir(rtl),.refresher-refreshing-icon:dir(rtl){-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}}.refresher-pulling-text,.refresher-refreshing-text{font-size:16px;text-align:center}ion-refresher-content .arrow-container{display:none}.refresher-pulling ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.refresher-refreshing ion-refresher-content .refresher-refreshing{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-completing ion-refresher-content .refresher-refreshing{display:block}.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-native .refresher-pulling-text,.refresher-native .refresher-refreshing-text{display:none}.refresher-md .refresher-pulling-icon,.refresher-md .refresher-refreshing-icon{color:var(--ion-text-color, #000)}.refresher-md .refresher-pulling-text,.refresher-md .refresher-refreshing-text{color:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-lines-md line,.refresher-md .refresher-refreshing .spinner-lines-small-md line,.refresher-md .refresher-refreshing .spinner-crescent circle{stroke:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-bubbles circle,.refresher-md .refresher-refreshing .spinner-circles circle,.refresher-md .refresher-refreshing .spinner-dots circle{fill:var(--ion-text-color, #000)}ion-refresher.refresher-native{display:block;z-index:1}ion-refresher.refresher-native ion-spinner{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;width:24px;height:24px;color:var(--ion-color-primary, #0054e9)}ion-refresher.refresher-native .spinner-arrow-container{display:inherit}ion-refresher.refresher-native .arrow-container{display:block;position:absolute;width:24px;height:24px}ion-refresher.refresher-native .arrow-container ion-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;left:0;right:0;bottom:-4px;position:absolute;color:var(--ion-color-primary, #0054e9);font-size:12px}ion-refresher.refresher-native.refresher-pulling ion-refresher-content .refresher-pulling,ion-refresher.refresher-native.refresher-ready ion-refresher-content .refresher-pulling{display:-ms-flexbox;display:flex}ion-refresher.refresher-native.refresher-refreshing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-completing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-cancelling ion-refresher-content .refresher-refreshing{display:-ms-flexbox;display:flex}ion-refresher.refresher-native .refresher-pulling-icon{-webkit-transform:translateY(calc(-100% - 10px));transform:translateY(calc(-100% - 10px))}ion-refresher.refresher-native .refresher-pulling-icon,ion-refresher.refresher-native .refresher-refreshing-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;border-radius:100%;-webkit-padding-start:8px;padding-inline-start:8px;-webkit-padding-end:8px;padding-inline-end:8px;padding-top:8px;padding-bottom:8px;display:-ms-flexbox;display:flex;border:1px solid var(--ion-color-step-200, var(--ion-background-color-step-200, #ececec));background:var(--ion-color-step-250, var(--ion-background-color-step-250, #ffffff));-webkit-box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1);box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1)}";var B=q;var F=e("ion_refresher",function(){function e(e){i(this,e);this.ionRefresh=t(this,"ionRefresh",7);this.ionPull=t(this,"ionPull",7);this.ionStart=t(this,"ionStart",7);this.appliedStyles=false;this.didStart=false;this.progress=0;this.pointerDown=false;this.needsCompletion=false;this.didRefresh=false;this.contentFullscreen=false;this.lastVelocityY=0;this.animations=[];this.nativeRefresher=false;this.state=1;this.pullMin=60;this.pullMax=this.pullMin+60;this.closeDuration="280ms";this.snapbackDuration="280ms";this.pullFactor=1;this.disabled=false}e.prototype.disabledChanged=function(){if(this.gesture){this.gesture.enable(!this.disabled)}};e.prototype.checkNativeRefresher=function(){return __awaiter(this,void 0,void 0,(function(){var e,r;return __generator(this,(function(n){switch(n.label){case 0:return[4,A(this.el,w(this))];case 1:e=n.sent();if(e&&!this.nativeRefresher){r=this.el.closest("ion-content");this.setupNativeRefresher(r)}else if(!e){this.destroyNativeRefresher()}return[2]}}))}))};e.prototype.destroyNativeRefresher=function(){if(this.scrollEl&&this.scrollListenerCallback){this.scrollEl.removeEventListener("scroll",this.scrollListenerCallback);this.scrollListenerCallback=undefined}this.nativeRefresher=false};e.prototype.resetNativeRefresher=function(e,r){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){switch(n.label){case 0:this.state=r;if(!(w(this)==="ios"))return[3,2];return[4,I(e,undefined,300)];case 1:n.sent();return[3,4];case 2:return[4,p(this.el.querySelector(".refresher-refreshing-icon"),200)];case 3:n.sent();n.label=4;case 4:this.didRefresh=false;this.needsCompletion=false;this.pointerDown=false;this.animations.forEach((function(e){return e.destroy()}));this.animations=[];this.progress=0;this.state=1;return[2]}}))}))};e.prototype.setupiOSNativeRefresher=function(e,i){return __awaiter(this,void 0,void 0,(function(){var t,o,f,a;var h=this;return __generator(this,(function(c){switch(c.label){case 0:this.elementToTransform=this.scrollEl;t=e.shadowRoot.querySelectorAll("svg");o=this.scrollEl.clientHeight*.16;f=t.length;n((function(){return t.forEach((function(e){return e.style.setProperty("animation","none")}))}));this.scrollListenerCallback=function(){if(!h.pointerDown&&h.state===1){return}s((function(){var e=h.scrollEl.scrollTop;var r=h.el.clientHeight;if(e>0){if(h.state===8){var s=m(0,e/(r*.5),1);n((function(){return O(i,1-s)}));return}return}if(h.pointerDown){if(!h.didStart){h.didStart=true;h.ionStart.emit()}if(h.pointerDown){h.ionPull.emit()}}var a=h.didStart?30:0;var c=h.progress=m(0,(Math.abs(e)-a)/o,1);var l=h.state===8||c===1;if(l){if(h.pointerDown){C(i,h.lastVelocityY)}if(!h.didRefresh){h.beginRefresh();h.didRefresh=true;x({style:y.Light});if(!h.pointerDown){I(h.elementToTransform,"".concat(r,"px"))}}}else{h.state=2;L(t,f,c)}}))};this.scrollEl.addEventListener("scroll",this.scrollListenerCallback);a=this;return[4,r.import("./p-3e1e14d9.system.js")];case 1:a.gesture=c.sent().createGesture({el:this.scrollEl,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:5,onStart:function(){h.pointerDown=true;if(!h.didRefresh){I(h.elementToTransform,"0px")}if(o===0){o=h.scrollEl.clientHeight*.16}},onMove:function(e){h.lastVelocityY=e.velocityY},onEnd:function(){h.pointerDown=false;h.didStart=false;if(h.needsCompletion){h.resetNativeRefresher(h.elementToTransform,32);h.needsCompletion=false}else if(h.didRefresh){s((function(){return I(h.elementToTransform,"".concat(h.el.clientHeight,"px"))}))}}});this.disabledChanged();return[2]}}))}))};e.prototype.setupMDNativeRefresher=function(e,i,t){return __awaiter(this,void 0,void 0,(function(){var s,o,f,a;var l=this;return __generator(this,(function(u){switch(u.label){case 0:s=v(i).querySelector("circle");o=this.el.querySelector("ion-refresher-content .refresher-pulling-icon");f=v(t).querySelector("circle");if(s!==null&&f!==null){n((function(){s.style.setProperty("animation","none");t.style.setProperty("animation-delay","-655ms");f.style.setProperty("animation-delay","-655ms")}))}a=this;return[4,r.import("./p-3e1e14d9.system.js")];case 1:a.gesture=u.sent().createGesture({el:this.scrollEl,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:5,canStart:function(){return l.state!==8&&l.state!==32&&l.scrollEl.scrollTop===0},onStart:function(e){l.progress=0;e.data={animation:undefined,didStart:false,cancelled:false}},onMove:function(r){if(r.velocityY<0&&l.progress===0&&!r.data.didStart||r.data.cancelled){r.data.cancelled=true;return}if(!r.data.didStart){r.data.didStart=true;l.state=2;var i=l.scrollEl;var t=i.matches(c)?"overflow":"--overflow";n((function(){return i.style.setProperty(t,"hidden")}));var s=E(e);var f=T(s,o,l.el);r.data.animation=f;f.progressStart(false,0);l.ionStart.emit();l.animations.push(f);return}l.progress=m(0,r.deltaY/180*.5,1);r.data.animation.progressStep(l.progress);l.ionPull.emit()},onEnd:function(e){if(!e.data.didStart){return}l.gesture.enable(false);var r=l.scrollEl;var i=r.matches(c)?"overflow":"--overflow";n((function(){return r.style.removeProperty(i)}));if(l.progress<=.4){e.data.animation.progressEnd(0,l.progress,500).onFinish((function(){l.animations.forEach((function(e){return e.destroy()}));l.animations=[];l.gesture.enable(true);l.state=1}));return}var t=h([0,0],[0,0],[1,1],[1,1],l.progress)[0];var s=H(o);l.animations.push(s);n((function(){return __awaiter(l,void 0,void 0,(function(){return __generator(this,(function(r){switch(r.label){case 0:o.style.setProperty("--ion-pulling-refresher-translate","".concat(t*100,"px"));e.data.animation.progressEnd();return[4,s.play()];case 1:r.sent();this.beginRefresh();e.data.animation.destroy();this.gesture.enable(true);return[2]}}))}))}))}});this.disabledChanged();return[2]}}))}))};e.prototype.setupNativeRefresher=function(e){return __awaiter(this,void 0,void 0,(function(){var r,n;return __generator(this,(function(i){if(this.scrollListenerCallback||!e||this.nativeRefresher||!this.scrollEl){return[2]}this.setCss(0,"",false,"");this.nativeRefresher=true;r=this.el.querySelector("ion-refresher-content .refresher-pulling ion-spinner");n=this.el.querySelector("ion-refresher-content .refresher-refreshing ion-spinner");if(w(this)==="ios"){this.setupiOSNativeRefresher(r,n)}else{this.setupMDNativeRefresher(e,r,n)}return[2]}))}))};e.prototype.componentDidUpdate=function(){this.checkNativeRefresher()};e.prototype.connectedCallback=function(){return __awaiter(this,void 0,void 0,(function(){var e;var n=this;return __generator(this,(function(i){if(this.el.getAttribute("slot")!=="fixed"){console.error('Make sure you use: <ion-refresher slot="fixed">');return[2]}e=this.el.closest(l);if(!e){u(this.el);return[2]}g(e,(function(){return __awaiter(n,void 0,void 0,(function(){var n,i,t,s;var o=this;return __generator(this,(function(f){switch(f.label){case 0:n=e.querySelector(c);i=this;return[4,d(n!==null&&n!==void 0?n:e)];case 1:i.scrollEl=f.sent();t=this;return[4,e.getBackgroundElement()];case 2:t.backgroundContentEl=f.sent();this.contentFullscreen=e.fullscreen;return[4,A(this.el,w(this))];case 3:if(!f.sent())return[3,4];this.setupNativeRefresher(e);return[3,6];case 4:s=this;return[4,r.import("./p-3e1e14d9.system.js")];case 5:s.gesture=f.sent().createGesture({el:e,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:20,passive:false,canStart:function(){return o.canStart()},onStart:function(){return o.onStart()},onMove:function(e){return o.onMove(e)},onEnd:function(){return o.onEnd()}});this.disabledChanged();f.label=6;case 6:return[2]}}))}))}));return[2]}))}))};e.prototype.disconnectedCallback=function(){this.destroyNativeRefresher();this.scrollEl=undefined;if(this.gesture){this.gesture.destroy();this.gesture=undefined}};e.prototype.complete=function(){return __awaiter(this,void 0,void 0,(function(){var e=this;return __generator(this,(function(r){if(this.nativeRefresher){this.needsCompletion=true;if(!this.pointerDown){b((function(){return b((function(){return e.resetNativeRefresher(e.elementToTransform,32)}))}))}}else{this.close(32,"120ms")}return[2]}))}))};e.prototype.cancel=function(){return __awaiter(this,void 0,void 0,(function(){var e=this;return __generator(this,(function(r){if(this.nativeRefresher){if(!this.pointerDown){b((function(){return b((function(){return e.resetNativeRefresher(e.elementToTransform,16)}))}))}}else{this.close(16,"")}return[2]}))}))};e.prototype.getProgress=function(){return Promise.resolve(this.progress)};e.prototype.canStart=function(){if(!this.scrollEl){return false}if(this.state!==1){return false}if(this.scrollEl.scrollTop>0){return false}return true};e.prototype.onStart=function(){this.progress=0;this.state=1;this.memoizeOverflowStyle();if(this.contentFullscreen&&this.backgroundContentEl){this.backgroundContentEl.style.setProperty("--offset-top","0px")}};e.prototype.onMove=function(e){if(!this.scrollEl){return}var r=e.event;if(r.touches!==undefined&&r.touches.length>1){return}if((this.state&56)!==0){return}var n=Number.isNaN(this.pullFactor)||this.pullFactor<0?1:this.pullFactor;var i=e.deltaY*n;if(i<=0){this.progress=0;this.state=1;if(this.appliedStyles){this.setCss(0,"",false,"");return}return}if(this.state===1){var t=this.scrollEl.scrollTop;if(t>0){this.progress=0;return}this.state=2}if(r.cancelable){r.preventDefault()}this.setCss(i,"0ms",true,"");if(i===0){this.progress=0;return}var s=this.pullMin;this.progress=i/s;if(!this.didStart){this.didStart=true;this.ionStart.emit()}this.ionPull.emit();if(i<s){this.state=2;return}if(i>this.pullMax){this.beginRefresh();return}this.state=4;return};e.prototype.onEnd=function(){if(this.state===4){this.beginRefresh()}else if(this.state===2){this.cancel()}else if(this.state===1){this.restoreOverflowStyle()}};e.prototype.beginRefresh=function(){this.state=8;this.setCss(this.pullMin,this.snapbackDuration,true,"");this.ionRefresh.emit({complete:this.complete.bind(this)})};e.prototype.close=function(e,r){var n=this;setTimeout((function(){var e;n.state=1;n.progress=0;n.didStart=false;n.setCss(0,"0ms",false,"",true);if(n.contentFullscreen&&n.backgroundContentEl){(e=n.backgroundContentEl)===null||e===void 0?void 0:e.style.removeProperty("--offset-top")}}),600);this.state=e;this.setCss(0,this.closeDuration,true,r)};e.prototype.setCss=function(e,r,i,t,s){var o=this;if(s===void 0){s=false}if(this.nativeRefresher){return}this.appliedStyles=e>0;n((function(){if(o.scrollEl&&o.backgroundContentEl){var n=o.scrollEl.style;var f=o.backgroundContentEl.style;n.transform=f.transform=e>0?"translateY(".concat(e,"px) translateZ(0px)"):"";n.transitionDuration=f.transitionDuration=r;n.transitionDelay=f.transitionDelay=t;n.overflow=i?"hidden":""}if(s){o.restoreOverflowStyle()}}))};e.prototype.memoizeOverflowStyle=function(){if(this.scrollEl){var e=this.scrollEl.style,r=e.overflow,n=e.overflowX,i=e.overflowY;this.overflowStyles={overflow:r!==null&&r!==void 0?r:"",overflowX:n!==null&&n!==void 0?n:"",overflowY:i!==null&&i!==void 0?i:""}}};e.prototype.restoreOverflowStyle=function(){if(this.overflowStyles!==undefined&&this.scrollEl!==undefined){var e=this.overflowStyles,r=e.overflow,n=e.overflowX,i=e.overflowY;this.scrollEl.style.overflow=r;this.scrollEl.style.overflowX=n;this.scrollEl.style.overflowY=i;this.overflowStyles=undefined}};e.prototype.render=function(){var e;var r=w(this);return o(a,{key:"3270f181a5141e7d886ec554a3e892974446b90e",slot:"fixed",class:(e={},e[r]=true,e["refresher-".concat(r)]=true,e["refresher-native"]=this.nativeRefresher,e["refresher-active"]=this.state!==1,e["refresher-pulling"]=this.state===2,e["refresher-ready"]=this.state===4,e["refresher-refreshing"]=this.state===8,e["refresher-cancelling"]=this.state===16,e["refresher-completing"]=this.state===32,e)})};Object.defineProperty(e.prototype,"el",{get:function(){return f(this)},enumerable:false,configurable:true});Object.defineProperty(e,"watchers",{get:function(){return{disabled:["disabledChanged"]}},enumerable:false,configurable:true});return e}());F.style={ios:Z,md:B};var J=e("ion_refresher_content",function(){function e(e){i(this,e);this.customHTMLEnabled=k.get("innerHTMLTemplatesEnabled",j);this.pullingIcon=undefined;this.pullingText=undefined;this.refreshingSpinner=undefined;this.refreshingText=undefined}e.prototype.componentWillLoad=function(){if(this.pullingIcon===undefined){var e=R();var r=w(this);var n=e?"lines":Y;this.pullingIcon=k.get("refreshingIcon",r==="ios"&&e?k.get("spinner",n):"circular")}if(this.refreshingSpinner===undefined){var r=w(this);this.refreshingSpinner=k.get("refreshingSpinner",k.get("spinner",r==="ios"?"lines":"circular"))}};e.prototype.renderPullingText=function(){var e=this,r=e.customHTMLEnabled,n=e.pullingText;if(r){return o("div",{class:"refresher-pulling-text",innerHTML:S(n)})}return o("div",{class:"refresher-pulling-text"},n)};e.prototype.renderRefreshingText=function(){var e=this,r=e.customHTMLEnabled,n=e.refreshingText;if(r){return o("div",{class:"refresher-refreshing-text",innerHTML:S(n)})}return o("div",{class:"refresher-refreshing-text"},n)};e.prototype.render=function(){var e=this.pullingIcon;var r=e!=null&&P[e]!==undefined;var n=w(this);return o(a,{key:"1bec5b4da221c69d856f3f5ddf40f2e03ebf2a4c",class:n},o("div",{key:"4fcc526c4f1881e9368d9cd16bd7030919bd3841",class:"refresher-pulling"},this.pullingIcon&&r&&o("div",{key:"a4e9e2e12c2d7faefc8303ec8c021f999ddf308e",class:"refresher-pulling-icon"},o("div",{key:"5a2d215feb7fb4b64d540d3a65c0f24b415a2433",class:"spinner-arrow-container"},o("ion-spinner",{key:"abef2621d671ac6ff0abac43a702cbd825b7f127",name:this.pullingIcon,paused:true}),n==="md"&&this.pullingIcon==="circular"&&o("div",{key:"30087d672c3780672a05874cd93cd099b2855462",class:"arrow-container"},o("ion-icon",{key:"5e30333dee469aec0d8efc8c4e6dabb619c6f363",icon:z,"aria-hidden":"true"})))),this.pullingIcon&&!r&&o("div",{key:"48fe72b5ce8ded633c6ee799cebb520b9c8be528",class:"refresher-pulling-icon"},o("ion-icon",{key:"d8dfd5d42056b1c0a436c5006affb255407816c0",icon:this.pullingIcon,lazy:false,"aria-hidden":"true"})),this.pullingText!==undefined&&this.renderPullingText()),o("div",{key:"c2cbfb94f157c82601ffe7bb815ff82ebc7c0a49",class:"refresher-refreshing"},this.refreshingSpinner&&o("div",{key:"17f3ebe6a31768d5e389f45a2c12f68600185db9",class:"refresher-refreshing-icon"},o("ion-spinner",{key:"e8e61f8d7189c9939bba184201c9509d1d5b0fad",name:this.refreshingSpinner})),this.refreshingText!==undefined&&this.renderRefreshingText()))};Object.defineProperty(e.prototype,"el",{get:function(){return f(this)},enumerable:false,configurable:true});return e}())}}}));
4
+ */System.register(["./p-aacc6ddd.system.js","./p-e673a0a2.system.js","./p-3a11234f.system.js","./p-b19a9aa9.system.js","./p-f8e329da.system.js","./p-70c6cd75.system.js","./p-747e9c9a.system.js","./p-f233f1e0.system.js","./p-115d74cd.system.js","./p-d8d84afa.system.js","./p-e61e3bb4.system.js"],(function(e,r){"use strict";var n,i,t,s,o,f,a,h,c,l,u,d,p,g,m,v,b,x,w,y,k,_,j,M,z,Y,S,P;return{setters:[function(e){n=e.w;i=e.r;t=e.j;s=e.k;o=e.l;f=e.g;a=e.m;h=e.c},function(e){c=e.g},function(e){l=e.I;u=e.b;d=e.p;p=e.g},function(e){g=e.t;m=e.c;v=e.j;b=e.g;x=e.r},function(e){w=e.d;y=e.I},function(e){k=e.b;_=e.c},function(e){j=e.c},function(e){M=e.E;z=e.a},function(e){Y=e.h;S=e.i},function(e){P=e.S},function(){}],execute:function(){var D=this;var C=function(e){var r=e.previousElementSibling;var n=r!==null&&r.tagName==="ION-HEADER";return n?"translate":"scale"};var E=function(e,r,n){return e==="scale"?N(r,n):I(r,n)};var L=function(e){var r=e.querySelector("ion-spinner");var n=r.shadowRoot.querySelector("circle");var i=e.querySelector(".spinner-arrow-container");var t=e.querySelector(".arrow-container");var s=t?t.querySelector("ion-icon"):null;var o=j().duration(1e3).easing("ease-out");var f=j().addElement(i).keyframes([{offset:0,opacity:"0.3"},{offset:.45,opacity:"0.3"},{offset:.55,opacity:"1"},{offset:1,opacity:"1"}]);var a=j().addElement(n).keyframes([{offset:0,strokeDasharray:"1px, 200px"},{offset:.2,strokeDasharray:"1px, 200px"},{offset:.55,strokeDasharray:"100px, 200px"},{offset:1,strokeDasharray:"100px, 200px"}]);var h=j().addElement(r).keyframes([{offset:0,transform:"rotate(-90deg)"},{offset:1,transform:"rotate(210deg)"}]);if(t&&s){var c=j().addElement(t).keyframes([{offset:0,transform:"rotate(0deg)"},{offset:.3,transform:"rotate(0deg)"},{offset:.55,transform:"rotate(280deg)"},{offset:1,transform:"rotate(400deg)"}]);var l=j().addElement(s).keyframes([{offset:0,transform:"translateX(2px) scale(0)"},{offset:.3,transform:"translateX(2px) scale(0)"},{offset:.55,transform:"translateX(-1.5px) scale(1)"},{offset:1,transform:"translateX(-1.5px) scale(1)"}]);o.addAnimation([c,l])}return o.addAnimation([f,a,h])};var N=function(e,r){var n=r.clientHeight;var i=j().addElement(e).keyframes([{offset:0,transform:"scale(0) translateY(-".concat(n,"px)")},{offset:1,transform:"scale(1) translateY(100px)"}]);return L(e).addAnimation([i])};var I=function(e,r){var n=r.clientHeight;var i=j().addElement(e).keyframes([{offset:0,transform:"translateY(-".concat(n,"px)")},{offset:1,transform:"translateY(100px)"}]);return L(e).addAnimation([i])};var T=function(e){return j().duration(125).addElement(e).fromTo("transform","translateY(var(--ion-pulling-refresher-translate, 100px))","translateY(0px)")};var X=function(e,r){e.style.setProperty("opacity",r.toString())};var H=function(e,r,i){var t=1;n((function(){e.forEach((function(e,n){var s=n*(t/r);var o=t-s;var f=i-s;var a=v(0,f/o,1);e.style.setProperty("opacity",a.toString())}))}))};var A=function(e,r){n((function(){e.style.setProperty("--refreshing-rotation-duration",r>=1?"0.5s":"2s");e.style.setProperty("opacity","1")}))};var Z=function(e,r,i){if(i===void 0){i=200}if(!e){return Promise.resolve()}var t=g(e,i);n((function(){e.style.setProperty("transition","".concat(i,"ms all ease-out"));if(r===undefined){e.style.removeProperty("transform")}else{e.style.setProperty("transform","translate3d(0px, ".concat(r,", 0px)"))}}));return t};var O=function(){return navigator.maxTouchPoints>0&&CSS.supports("background: -webkit-named-image(apple-pay-logo-black)")};var W=function(e,r){return __awaiter(D,void 0,void 0,(function(){var n,i,t;return __generator(this,(function(s){switch(s.label){case 0:n=e.querySelector("ion-refresher-content");if(!n){return[2,Promise.resolve(false)]}return[4,new Promise((function(e){return m(n,e)}))];case 1:s.sent();i=e.querySelector("ion-refresher-content .refresher-pulling ion-spinner");t=e.querySelector("ion-refresher-content .refresher-refreshing ion-spinner");return[2,i!==null&&t!==null&&(r==="ios"&&O()||r==="md")]}}))}))};var R="ion-refresher{top:0;display:none;position:absolute;width:100%;height:60px;pointer-events:none;z-index:-1}ion-refresher{inset-inline-start:0}ion-refresher.refresher-active{display:block}ion-refresher-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.refresher-pulling,.refresher-refreshing{display:none;width:100%}.refresher-pulling-icon,.refresher-refreshing-icon{-webkit-transform-origin:center;transform-origin:center;-webkit-transition:200ms;transition:200ms;font-size:30px;text-align:center}:host-context([dir=rtl]) .refresher-pulling-icon,:host-context([dir=rtl]) .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}[dir=rtl] .refresher-pulling-icon,[dir=rtl] .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}@supports selector(:dir(rtl)){.refresher-pulling-icon:dir(rtl),.refresher-refreshing-icon:dir(rtl){-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}}.refresher-pulling-text,.refresher-refreshing-text{font-size:16px;text-align:center}ion-refresher-content .arrow-container{display:none}.refresher-pulling ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.refresher-refreshing ion-refresher-content .refresher-refreshing{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-completing ion-refresher-content .refresher-refreshing{display:block}.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-native .refresher-pulling-text,.refresher-native .refresher-refreshing-text{display:none}.refresher-md .refresher-pulling-icon,.refresher-md .refresher-refreshing-icon{color:var(--ion-text-color, #000)}.refresher-md .refresher-pulling-text,.refresher-md .refresher-refreshing-text{color:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-lines-md line,.refresher-md .refresher-refreshing .spinner-lines-small-md line,.refresher-md .refresher-refreshing .spinner-crescent circle{stroke:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-bubbles circle,.refresher-md .refresher-refreshing .spinner-circles circle,.refresher-md .refresher-refreshing .spinner-dots circle{fill:var(--ion-text-color, #000)}ion-refresher.refresher-native{display:block;z-index:1}ion-refresher.refresher-native ion-spinner{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;width:24px;height:24px;color:var(--ion-color-primary, #0054e9)}ion-refresher.refresher-native .spinner-arrow-container{display:inherit}ion-refresher.refresher-native .arrow-container{display:block;position:absolute;width:24px;height:24px}ion-refresher.refresher-native .arrow-container ion-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;right:0;left:0;bottom:-4px;position:absolute;color:var(--ion-color-primary, #0054e9);font-size:12px}ion-refresher.refresher-native.refresher-pulling ion-refresher-content .refresher-pulling,ion-refresher.refresher-native.refresher-ready ion-refresher-content .refresher-pulling{display:-ms-flexbox;display:flex}ion-refresher.refresher-native.refresher-refreshing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-completing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-cancelling ion-refresher-content .refresher-refreshing{display:-ms-flexbox;display:flex}ion-refresher.refresher-native .refresher-pulling-icon{-webkit-transform:translateY(calc(-100% - 10px));transform:translateY(calc(-100% - 10px))}ion-refresher.refresher-native .refresher-pulling-icon,ion-refresher.refresher-native .refresher-refreshing-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;border-radius:100%;-webkit-padding-start:8px;padding-inline-start:8px;-webkit-padding-end:8px;padding-inline-end:8px;padding-top:8px;padding-bottom:8px;display:-ms-flexbox;display:flex;border:1px solid var(--ion-color-step-200, var(--ion-background-color-step-200, #ececec));background:var(--ion-color-step-250, var(--ion-background-color-step-250, #ffffff));-webkit-box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1);box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1)}";var G=R;var Q="ion-refresher{top:0;display:none;position:absolute;width:100%;height:60px;pointer-events:none;z-index:-1}ion-refresher{inset-inline-start:0}ion-refresher.refresher-active{display:block}ion-refresher-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.refresher-pulling,.refresher-refreshing{display:none;width:100%}.refresher-pulling-icon,.refresher-refreshing-icon{-webkit-transform-origin:center;transform-origin:center;-webkit-transition:200ms;transition:200ms;font-size:30px;text-align:center}:host-context([dir=rtl]) .refresher-pulling-icon,:host-context([dir=rtl]) .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}[dir=rtl] .refresher-pulling-icon,[dir=rtl] .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}@supports selector(:dir(rtl)){.refresher-pulling-icon:dir(rtl),.refresher-refreshing-icon:dir(rtl){-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}}.refresher-pulling-text,.refresher-refreshing-text{font-size:16px;text-align:center}ion-refresher-content .arrow-container{display:none}.refresher-pulling ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.refresher-refreshing ion-refresher-content .refresher-refreshing{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-completing ion-refresher-content .refresher-refreshing{display:block}.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-native .refresher-pulling-text,.refresher-native .refresher-refreshing-text{display:none}.refresher-ios .refresher-pulling-icon,.refresher-ios .refresher-refreshing-icon{color:var(--ion-text-color, #000)}.refresher-ios .refresher-pulling-text,.refresher-ios .refresher-refreshing-text{color:var(--ion-text-color, #000)}.refresher-ios .refresher-refreshing .spinner-lines-ios line,.refresher-ios .refresher-refreshing .spinner-lines-small-ios line,.refresher-ios .refresher-refreshing .spinner-crescent circle{stroke:var(--ion-text-color, #000)}.refresher-ios .refresher-refreshing .spinner-bubbles circle,.refresher-ios .refresher-refreshing .spinner-circles circle,.refresher-ios .refresher-refreshing .spinner-dots circle{fill:var(--ion-text-color, #000)}ion-refresher.refresher-native{display:block;z-index:1}ion-refresher.refresher-native ion-spinner{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0}.refresher-native .refresher-refreshing ion-spinner{--refreshing-rotation-duration:2s;display:none;-webkit-animation:var(--refreshing-rotation-duration) ease-out refresher-rotate forwards;animation:var(--refreshing-rotation-duration) ease-out refresher-rotate forwards}.refresher-native .refresher-refreshing{display:none;-webkit-animation:250ms linear refresher-pop forwards;animation:250ms linear refresher-pop forwards}.refresher-native ion-spinner{width:32px;height:32px;color:var(--ion-color-step-450, var(--ion-background-color-step-450, #747577))}.refresher-native.refresher-refreshing .refresher-pulling ion-spinner,.refresher-native.refresher-completing .refresher-pulling ion-spinner{display:none}.refresher-native.refresher-refreshing .refresher-refreshing ion-spinner,.refresher-native.refresher-completing .refresher-refreshing ion-spinner{display:block}.refresher-native.refresher-pulling .refresher-pulling ion-spinner{display:block}.refresher-native.refresher-pulling .refresher-refreshing ion-spinner{display:none}.refresher-native.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0) rotate(180deg);transform:scale(0) rotate(180deg);-webkit-transition:300ms;transition:300ms}@-webkit-keyframes refresher-pop{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}50%{-webkit-transform:scale(1.2);transform:scale(1.2);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes refresher-pop{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}50%{-webkit-transform:scale(1.2);transform:scale(1.2);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes refresher-rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}@keyframes refresher-rotate{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(180deg);transform:rotate(180deg)}}";var B=Q;var J="ion-refresher{top:0;display:none;position:absolute;width:100%;height:60px;pointer-events:none;z-index:-1}ion-refresher{inset-inline-start:0}ion-refresher.refresher-active{display:block}ion-refresher-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.refresher-pulling,.refresher-refreshing{display:none;width:100%}.refresher-pulling-icon,.refresher-refreshing-icon{-webkit-transform-origin:center;transform-origin:center;-webkit-transition:200ms;transition:200ms;font-size:30px;text-align:center}:host-context([dir=rtl]) .refresher-pulling-icon,:host-context([dir=rtl]) .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}[dir=rtl] .refresher-pulling-icon,[dir=rtl] .refresher-refreshing-icon{-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}@supports selector(:dir(rtl)){.refresher-pulling-icon:dir(rtl),.refresher-refreshing-icon:dir(rtl){-webkit-transform-origin:calc(100% - center);transform-origin:calc(100% - center)}}.refresher-pulling-text,.refresher-refreshing-text{font-size:16px;text-align:center}ion-refresher-content .arrow-container{display:none}.refresher-pulling ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling{display:block}.refresher-ready ion-refresher-content .refresher-pulling-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.refresher-refreshing ion-refresher-content .refresher-refreshing{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling{display:block}.refresher-cancelling ion-refresher-content .refresher-pulling-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-completing ion-refresher-content .refresher-refreshing{display:block}.refresher-completing ion-refresher-content .refresher-refreshing-icon{-webkit-transform:scale(0);transform:scale(0)}.refresher-native .refresher-pulling-text,.refresher-native .refresher-refreshing-text{display:none}.refresher-md .refresher-pulling-icon,.refresher-md .refresher-refreshing-icon{color:var(--ion-text-color, #000)}.refresher-md .refresher-pulling-text,.refresher-md .refresher-refreshing-text{color:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-lines-md line,.refresher-md .refresher-refreshing .spinner-lines-small-md line,.refresher-md .refresher-refreshing .spinner-crescent circle{stroke:var(--ion-text-color, #000)}.refresher-md .refresher-refreshing .spinner-bubbles circle,.refresher-md .refresher-refreshing .spinner-circles circle,.refresher-md .refresher-refreshing .spinner-dots circle{fill:var(--ion-text-color, #000)}ion-refresher.refresher-native{display:block;z-index:1}ion-refresher.refresher-native ion-spinner{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;width:24px;height:24px;color:var(--ion-color-primary, #0054e9)}ion-refresher.refresher-native .spinner-arrow-container{display:inherit}ion-refresher.refresher-native .arrow-container{display:block;position:absolute;width:24px;height:24px}ion-refresher.refresher-native .arrow-container ion-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;right:0;left:0;bottom:-4px;position:absolute;color:var(--ion-color-primary, #0054e9);font-size:12px}ion-refresher.refresher-native.refresher-pulling ion-refresher-content .refresher-pulling,ion-refresher.refresher-native.refresher-ready ion-refresher-content .refresher-pulling{display:-ms-flexbox;display:flex}ion-refresher.refresher-native.refresher-refreshing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-completing ion-refresher-content .refresher-refreshing,ion-refresher.refresher-native.refresher-cancelling ion-refresher-content .refresher-refreshing{display:-ms-flexbox;display:flex}ion-refresher.refresher-native .refresher-pulling-icon{-webkit-transform:translateY(calc(-100% - 10px));transform:translateY(calc(-100% - 10px))}ion-refresher.refresher-native .refresher-pulling-icon,ion-refresher.refresher-native .refresher-refreshing-icon{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:0;margin-bottom:0;border-radius:100%;-webkit-padding-start:8px;padding-inline-start:8px;-webkit-padding-end:8px;padding-inline-end:8px;padding-top:8px;padding-bottom:8px;display:-ms-flexbox;display:flex;border:1px solid var(--ion-color-step-200, var(--ion-background-color-step-200, #ececec));background:var(--ion-color-step-250, var(--ion-background-color-step-250, #ffffff));-webkit-box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1);box-shadow:0px 1px 6px rgba(0, 0, 0, 0.1)}";var U=J;var q=e("ion_refresher",function(){function e(e){i(this,e);this.ionRefresh=t(this,"ionRefresh",7);this.ionPull=t(this,"ionPull",7);this.ionStart=t(this,"ionStart",7);this.appliedStyles=false;this.didStart=false;this.progress=0;this.pointerDown=false;this.needsCompletion=false;this.didRefresh=false;this.contentFullscreen=false;this.lastVelocityY=0;this.animations=[];this.nativeRefresher=false;this.state=1;this.pullMin=60;this.pullMax=this.pullMin+60;this.closeDuration="280ms";this.snapbackDuration="280ms";this.pullFactor=1;this.disabled=false}e.prototype.disabledChanged=function(){if(this.gesture){this.gesture.enable(!this.disabled)}};e.prototype.checkNativeRefresher=function(){return __awaiter(this,void 0,void 0,(function(){var e,r;return __generator(this,(function(n){switch(n.label){case 0:return[4,W(this.el,k(this))];case 1:e=n.sent();if(e&&!this.nativeRefresher){r=this.el.closest("ion-content");this.setupNativeRefresher(r)}else if(!e){this.destroyNativeRefresher()}return[2]}}))}))};e.prototype.destroyNativeRefresher=function(){if(this.scrollEl&&this.scrollListenerCallback){this.scrollEl.removeEventListener("scroll",this.scrollListenerCallback);this.scrollListenerCallback=undefined}this.nativeRefresher=false};e.prototype.resetNativeRefresher=function(e,r){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(n){switch(n.label){case 0:this.state=r;if(!(k(this)==="ios"))return[3,2];return[4,Z(e,undefined,300)];case 1:n.sent();return[3,4];case 2:return[4,g(this.el.querySelector(".refresher-refreshing-icon"),200)];case 3:n.sent();n.label=4;case 4:this.didRefresh=false;this.needsCompletion=false;this.pointerDown=false;this.animations.forEach((function(e){return e.destroy()}));this.animations=[];this.progress=0;this.state=1;return[2]}}))}))};e.prototype.setupiOSNativeRefresher=function(e,i){return __awaiter(this,void 0,void 0,(function(){var t,o,f,a;var h=this;return __generator(this,(function(c){switch(c.label){case 0:this.elementToTransform=this.scrollEl;t=e.shadowRoot.querySelectorAll("svg");o=this.scrollEl.clientHeight*.16;f=t.length;n((function(){return t.forEach((function(e){return e.style.setProperty("animation","none")}))}));this.scrollListenerCallback=function(){if(!h.pointerDown&&h.state===1){return}s((function(){var e=h.scrollEl.scrollTop;var r=h.el.clientHeight;if(e>0){if(h.state===8){var s=v(0,e/(r*.5),1);n((function(){return X(i,1-s)}));return}return}if(h.pointerDown){if(!h.didStart){h.didStart=true;h.ionStart.emit()}if(h.pointerDown){h.ionPull.emit()}}var a=h.didStart?30:0;var c=h.progress=v(0,(Math.abs(e)-a)/o,1);var l=h.state===8||c===1;if(l){if(h.pointerDown){A(i,h.lastVelocityY)}if(!h.didRefresh){h.beginRefresh();h.didRefresh=true;w({style:y.Light});if(!h.pointerDown){Z(h.elementToTransform,"".concat(r,"px"))}}}else{h.state=2;H(t,f,c)}}))};this.scrollEl.addEventListener("scroll",this.scrollListenerCallback);a=this;return[4,r.import("./p-3e1e14d9.system.js")];case 1:a.gesture=c.sent().createGesture({el:this.scrollEl,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:5,onStart:function(){h.pointerDown=true;if(!h.didRefresh){Z(h.elementToTransform,"0px")}if(o===0){o=h.scrollEl.clientHeight*.16}},onMove:function(e){h.lastVelocityY=e.velocityY},onEnd:function(){h.pointerDown=false;h.didStart=false;if(h.needsCompletion){h.resetNativeRefresher(h.elementToTransform,32);h.needsCompletion=false}else if(h.didRefresh){s((function(){return Z(h.elementToTransform,"".concat(h.el.clientHeight,"px"))}))}}});this.disabledChanged();return[2]}}))}))};e.prototype.setupMDNativeRefresher=function(e,i,t){return __awaiter(this,void 0,void 0,(function(){var s,o,f,a;var h=this;return __generator(this,(function(u){switch(u.label){case 0:s=b(i).querySelector("circle");o=this.el.querySelector("ion-refresher-content .refresher-pulling-icon");f=b(t).querySelector("circle");if(s!==null&&f!==null){n((function(){s.style.setProperty("animation","none");t.style.setProperty("animation-delay","-655ms");f.style.setProperty("animation-delay","-655ms")}))}a=this;return[4,r.import("./p-3e1e14d9.system.js")];case 1:a.gesture=u.sent().createGesture({el:this.scrollEl,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:5,canStart:function(){return h.state!==8&&h.state!==32&&h.scrollEl.scrollTop===0},onStart:function(e){h.progress=0;e.data={animation:undefined,didStart:false,cancelled:false}},onMove:function(r){if(r.velocityY<0&&h.progress===0&&!r.data.didStart||r.data.cancelled){r.data.cancelled=true;return}if(!r.data.didStart){r.data.didStart=true;h.state=2;var i=h.scrollEl;var t=i.matches(l)?"overflow":"--overflow";n((function(){return i.style.setProperty(t,"hidden")}));var s=C(e);var f=E(s,o,h.el);r.data.animation=f;f.progressStart(false,0);h.ionStart.emit();h.animations.push(f);return}h.progress=v(0,r.deltaY/180*.5,1);r.data.animation.progressStep(h.progress);h.ionPull.emit()},onEnd:function(e){if(!e.data.didStart){return}h.gesture.enable(false);var r=h.scrollEl;var i=r.matches(l)?"overflow":"--overflow";n((function(){return r.style.removeProperty(i)}));if(h.progress<=.4){e.data.animation.progressEnd(0,h.progress,500).onFinish((function(){h.animations.forEach((function(e){return e.destroy()}));h.animations=[];h.gesture.enable(true);h.state=1}));return}var t=c([0,0],[0,0],[1,1],[1,1],h.progress)[0];var s=T(o);h.animations.push(s);n((function(){return __awaiter(h,void 0,void 0,(function(){return __generator(this,(function(r){switch(r.label){case 0:o.style.setProperty("--ion-pulling-refresher-translate","".concat(t*100,"px"));e.data.animation.progressEnd();return[4,s.play()];case 1:r.sent();this.beginRefresh();e.data.animation.destroy();this.gesture.enable(true);return[2]}}))}))}))}});this.disabledChanged();return[2]}}))}))};e.prototype.setupNativeRefresher=function(e){return __awaiter(this,void 0,void 0,(function(){var r,n;return __generator(this,(function(i){if(this.scrollListenerCallback||!e||this.nativeRefresher||!this.scrollEl){return[2]}this.setCss(0,"",false,"");this.nativeRefresher=true;r=this.el.querySelector("ion-refresher-content .refresher-pulling ion-spinner");n=this.el.querySelector("ion-refresher-content .refresher-refreshing ion-spinner");if(k(this)==="ios"){this.setupiOSNativeRefresher(r,n)}else{this.setupMDNativeRefresher(e,r,n)}return[2]}))}))};e.prototype.componentDidUpdate=function(){this.checkNativeRefresher()};e.prototype.connectedCallback=function(){return __awaiter(this,void 0,void 0,(function(){var e;var n=this;return __generator(this,(function(i){if(this.el.getAttribute("slot")!=="fixed"){console.error('Make sure you use: <ion-refresher slot="fixed">');return[2]}e=this.el.closest(u);if(!e){d(this.el);return[2]}m(e,(function(){return __awaiter(n,void 0,void 0,(function(){var n,i,t,s;var o=this;return __generator(this,(function(f){switch(f.label){case 0:n=e.querySelector(l);i=this;return[4,p(n!==null&&n!==void 0?n:e)];case 1:i.scrollEl=f.sent();t=this;return[4,e.getBackgroundElement()];case 2:t.backgroundContentEl=f.sent();this.contentFullscreen=e.fullscreen;return[4,W(this.el,k(this))];case 3:if(!f.sent())return[3,4];this.setupNativeRefresher(e);return[3,6];case 4:s=this;return[4,r.import("./p-3e1e14d9.system.js")];case 5:s.gesture=f.sent().createGesture({el:e,gestureName:"refresher",gesturePriority:31,direction:"y",threshold:20,passive:false,canStart:function(){return o.canStart()},onStart:function(){return o.onStart()},onMove:function(e){return o.onMove(e)},onEnd:function(){return o.onEnd()}});this.disabledChanged();f.label=6;case 6:return[2]}}))}))}));return[2]}))}))};e.prototype.disconnectedCallback=function(){this.destroyNativeRefresher();this.scrollEl=undefined;if(this.gesture){this.gesture.destroy();this.gesture=undefined}};e.prototype.complete=function(){return __awaiter(this,void 0,void 0,(function(){var e=this;return __generator(this,(function(r){if(this.nativeRefresher){this.needsCompletion=true;if(!this.pointerDown){x((function(){return x((function(){return e.resetNativeRefresher(e.elementToTransform,32)}))}))}}else{this.close(32,"120ms")}return[2]}))}))};e.prototype.cancel=function(){return __awaiter(this,void 0,void 0,(function(){var e=this;return __generator(this,(function(r){if(this.nativeRefresher){if(!this.pointerDown){x((function(){return x((function(){return e.resetNativeRefresher(e.elementToTransform,16)}))}))}}else{this.close(16,"")}return[2]}))}))};e.prototype.getProgress=function(){return Promise.resolve(this.progress)};e.prototype.canStart=function(){if(!this.scrollEl){return false}if(this.state!==1){return false}if(this.scrollEl.scrollTop>0){return false}return true};e.prototype.onStart=function(){this.progress=0;this.state=1;this.memoizeOverflowStyle();if(this.contentFullscreen&&this.backgroundContentEl){this.backgroundContentEl.style.setProperty("--offset-top","0px")}};e.prototype.onMove=function(e){if(!this.scrollEl){return}var r=e.event;if(r.touches!==undefined&&r.touches.length>1){return}if((this.state&56)!==0){return}var n=Number.isNaN(this.pullFactor)||this.pullFactor<0?1:this.pullFactor;var i=e.deltaY*n;if(i<=0){this.progress=0;this.state=1;if(this.appliedStyles){this.setCss(0,"",false,"");return}return}if(this.state===1){var t=this.scrollEl.scrollTop;if(t>0){this.progress=0;return}this.state=2}if(r.cancelable){r.preventDefault()}this.setCss(i,"0ms",true,"");if(i===0){this.progress=0;return}var s=this.pullMin;this.progress=i/s;if(!this.didStart){this.didStart=true;this.ionStart.emit()}this.ionPull.emit();if(i<s){this.state=2;return}if(i>this.pullMax){this.beginRefresh();return}this.state=4;return};e.prototype.onEnd=function(){if(this.state===4){this.beginRefresh()}else if(this.state===2){this.cancel()}else if(this.state===1){this.restoreOverflowStyle()}};e.prototype.beginRefresh=function(){this.state=8;this.setCss(this.pullMin,this.snapbackDuration,true,"");this.ionRefresh.emit({complete:this.complete.bind(this)})};e.prototype.close=function(e,r){var n=this;setTimeout((function(){var e;n.state=1;n.progress=0;n.didStart=false;n.setCss(0,"0ms",false,"",true);if(n.contentFullscreen&&n.backgroundContentEl){(e=n.backgroundContentEl)===null||e===void 0?void 0:e.style.removeProperty("--offset-top")}}),600);this.state=e;this.setCss(0,this.closeDuration,true,r)};e.prototype.setCss=function(e,r,i,t,s){var o=this;if(s===void 0){s=false}if(this.nativeRefresher){return}this.appliedStyles=e>0;n((function(){if(o.scrollEl&&o.backgroundContentEl){var n=o.scrollEl.style;var f=o.backgroundContentEl.style;n.transform=f.transform=e>0?"translateY(".concat(e,"px) translateZ(0px)"):"";n.transitionDuration=f.transitionDuration=r;n.transitionDelay=f.transitionDelay=t;n.overflow=i?"hidden":""}if(s){o.restoreOverflowStyle()}}))};e.prototype.memoizeOverflowStyle=function(){if(this.scrollEl){var e=this.scrollEl.style,r=e.overflow,n=e.overflowX,i=e.overflowY;this.overflowStyles={overflow:r!==null&&r!==void 0?r:"",overflowX:n!==null&&n!==void 0?n:"",overflowY:i!==null&&i!==void 0?i:""}}};e.prototype.restoreOverflowStyle=function(){if(this.overflowStyles!==undefined&&this.scrollEl!==undefined){var e=this.overflowStyles,r=e.overflow,n=e.overflowX,i=e.overflowY;this.scrollEl.style.overflow=r;this.scrollEl.style.overflowX=n;this.scrollEl.style.overflowY=i;this.overflowStyles=undefined}};e.prototype.render=function(){var e;var r=_(this);return o(a,{key:"ecc8cddc285a230e4a95fae1e275a1f8c350e104",slot:"fixed",class:(e={},e[r]=true,e["refresher-".concat(r)]=true,e["refresher-native"]=this.nativeRefresher,e["refresher-active"]=this.state!==1,e["refresher-pulling"]=this.state===2,e["refresher-ready"]=this.state===4,e["refresher-refreshing"]=this.state===8,e["refresher-cancelling"]=this.state===16,e["refresher-completing"]=this.state===32,e)})};Object.defineProperty(e.prototype,"el",{get:function(){return f(this)},enumerable:false,configurable:true});Object.defineProperty(e,"watchers",{get:function(){return{disabled:["disabledChanged"]}},enumerable:false,configurable:true});return e}());q.style={ionic:G,ios:B,md:U};var F="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTYgMjU2IiBmaWxsPSJjdXJyZW50Q29sb3IiPjxwYXRoIGQ9Ik0xNjgsNDhWMjA4YTgsOCwwLDAsMS0xMy42Niw1LjY2bC04MC04MGE4LDgsMCwwLDEsMC0xMS4zMmw4MC04MEE4LDgsMCwwLDEsMTY4LDQ4WiIvPjwvc3ZnPg==";var K="";var V=K;var $="";var ee=$;var re="";var ne=re;var ie=e("ion_refresher_content",function(){function e(e){i(this,e);this.customHTMLEnabled=h.get("innerHTMLTemplatesEnabled",M);this.pullingIcon=undefined;this.pullingText=undefined;this.refreshingSpinner=undefined;this.refreshingText=undefined}e.prototype.componentWillLoad=function(){var e=_(this);if(this.pullingIcon===undefined){var r=O();var n=r?"lines":Y;this.pullingIcon=h.get("refreshingIcon",e==="ios"&&r?h.get("spinner",n):"circular")}if(this.refreshingSpinner===undefined){this.refreshingSpinner=h.get("refreshingSpinner",h.get("spinner",e==="ios"?"lines":"circular"))}};e.prototype.renderPullingText=function(){var e=this,r=e.customHTMLEnabled,n=e.pullingText;if(r){return o("div",{class:"refresher-pulling-text",innerHTML:z(n)})}return o("div",{class:"refresher-pulling-text"},n)};e.prototype.renderRefreshingText=function(){var e=this,r=e.customHTMLEnabled,n=e.refreshingText;if(r){return o("div",{class:"refresher-refreshing-text",innerHTML:z(n)})}return o("div",{class:"refresher-refreshing-text"},n)};e.prototype.render=function(){var e;var r=this.pullingIcon;var n=r!=null&&P[r]!==undefined;var i=_(this);var t=i==="ionic"?F:S;return o(a,{key:"8dcfdbc6969e4370e070e1f3c5fc1785c63f620b",class:(e={},e[i]=true,e)},o("div",{key:"2322cc218e3b78c9b85a3d5596b2e67bf82a7de5",class:"refresher-pulling"},this.pullingIcon&&n&&o("div",{key:"8cbb0dd8862e474b3d0255c1a727cc9a6ed437f2",class:"refresher-pulling-icon"},o("div",{key:"a510b37135e9ba3045d66e68b8b5f374034d48a4",class:"spinner-arrow-container"},o("ion-spinner",{key:"58f33aaa8b659e0241db0ce464a7bcd180820e8e",name:this.pullingIcon,paused:true}),(i==="md"||i==="ionic")&&this.pullingIcon==="circular"&&o("div",{key:"8e93bed47f0961b68cc5c3010508d7d70b6e81da",class:"arrow-container"},o("ion-icon",{key:"d8c0aea713104112de808b15b8a1d90805623a87",icon:t,"aria-hidden":"true"})))),this.pullingIcon&&!n&&o("div",{key:"ebc1847517406c2f4b09d0793e45f786feb9b062",class:"refresher-pulling-icon"},o("ion-icon",{key:"74f2778b23a53ceece7a77276aaa74c75a01a15f",icon:this.pullingIcon,lazy:false,"aria-hidden":"true"})),this.pullingText!==undefined&&this.renderPullingText()),o("div",{key:"722264dcb2ade5489ef1939024506fa16a8f7f6a",class:"refresher-refreshing"},this.refreshingSpinner&&o("div",{key:"83f066cfb0586534ad43c2bba715624be131ba8f",class:"refresher-refreshing-icon"},o("ion-spinner",{key:"0c8093761225dc4b1d99696c14f9f2a62ae987ad",name:this.refreshingSpinner})),this.refreshingText!==undefined&&this.renderRefreshingText()))};Object.defineProperty(e.prototype,"el",{get:function(){return f(this)},enumerable:false,configurable:true});return e}());ie.style={ionic:V,ios:ee,md:ne}}}}));
@@ -0,0 +1,4 @@
1
+ var __spreadArray=this&&this.__spreadArray||function(r,a,i){if(i||arguments.length===2)for(var n=0,e=a.length,t;n<e;n++){if(t||!(n in a)){if(!t)t=Array.prototype.slice.call(a,0,n);t[n]=a[n]}}return r.concat(t||Array.prototype.slice.call(a))};
2
+ /*!
3
+ * (C) Ionic http://ionicframework.com - MIT License
4
+ */System.register(["./p-aacc6ddd.system.js"],(function(r){"use strict";var a;return{setters:[function(r){a=r.c}],execute:function(){var i=r("t",(function(r,a){if(a===void 0){a=0}return new Promise((function(i){n(r,a,i)}))}));var n=function(r,a,i){if(a===void 0){a=0}var n;var e;var t={passive:true};var o=500;var u=function(){if(n){n()}};var f=function(a){if(a===undefined||r===a.target){u();i(a)}};if(r){r.addEventListener("webkitTransitionEnd",f,t);r.addEventListener("transitionend",f,t);e=setTimeout(f,a+o);n=function(){if(e!==undefined){clearTimeout(e);e=undefined}r.removeEventListener("webkitTransitionEnd",f,t);r.removeEventListener("transitionend",f,t)}}return u};var e=r("c",(function(r,a){if(r.componentOnReady){r.componentOnReady().then((function(r){return a(r)}))}else{c((function(){return a(r)}))}}));var t=r("k",(function(r){return r.componentOnReady!==undefined}));var o=r("h",(function(r,a){if(a===void 0){a=[]}var i={};a.forEach((function(a){if(r.hasAttribute(a)){var n=r.getAttribute(a);if(n!==null){i[a]=r.getAttribute(a)}r.removeAttribute(a)}}));return i}));var u=["role","aria-activedescendant","aria-atomic","aria-autocomplete","aria-braillelabel","aria-brailleroledescription","aria-busy","aria-checked","aria-colcount","aria-colindex","aria-colindextext","aria-colspan","aria-controls","aria-current","aria-describedby","aria-description","aria-details","aria-disabled","aria-errormessage","aria-expanded","aria-flowto","aria-haspopup","aria-hidden","aria-invalid","aria-keyshortcuts","aria-label","aria-labelledby","aria-level","aria-live","aria-multiline","aria-multiselectable","aria-orientation","aria-owns","aria-placeholder","aria-posinset","aria-pressed","aria-readonly","aria-relevant","aria-required","aria-roledescription","aria-rowcount","aria-rowindex","aria-rowindextext","aria-rowspan","aria-selected","aria-setsize","aria-sort","aria-valuemax","aria-valuemin","aria-valuenow","aria-valuetext"];var f=r("i",(function(r,a){var i=u;if(a&&a.length>0){i=i.filter((function(r){return!a.includes(r)}))}return o(r,i)}));var v=r("a",(function(r,a,i,n){var e;if(typeof window!=="undefined"){var t=window;var o=(e=t===null||t===void 0?void 0:t.Ionic)===null||e===void 0?void 0:e.config;if(o){var u=o.get("_ael");if(u){return u(r,a,i,n)}else if(o._ael){return o._ael(r,a,i,n)}}}return r.addEventListener(a,i,n)}));var d=r("b",(function(r,a,i,n){var e;if(typeof window!=="undefined"){var t=window;var o=(e=t===null||t===void 0?void 0:t.Ionic)===null||e===void 0?void 0:e.config;if(o){var u=o.get("_rel");if(u){return u(r,a,i,n)}else if(o._rel){return o._rel(r,a,i,n)}}}return r.removeEventListener(a,i,n)}));var l=r("g",(function(r,a){if(a===void 0){a=r}return r.shadowRoot||a}));var c=r("r",(function(r){if(typeof __zone_symbol__requestAnimationFrame==="function"){return __zone_symbol__requestAnimationFrame(r)}if(typeof requestAnimationFrame==="function"){return requestAnimationFrame(r)}return setTimeout(r)}));var s=r("l",(function(r){return!!r.shadowRoot&&!!r.attachShadow}));var p=r("f",(function(r){r.focus();if(r.classList.contains("ion-focusable")){var i=a.get("appRootSelector","ion-app");var n=r.closest(i);if(n){n.setFocus([r])}}}));var m=r("d",(function(r,a,i,n,e){if(r||s(a)){var t=a.querySelector("input.aux-input");if(!t){t=a.ownerDocument.createElement("input");t.type="hidden";t.classList.add("aux-input");a.appendChild(t)}t.disabled=e;t.name=i;t.value=n||""}}));var w=r("j",(function(r,a,i){return Math.max(r,Math.min(a,i))}));var b=r("m",(function(r,a){if(!r){var i="ASSERT: "+a;console.error(i);debugger;throw new Error(i)}}));var y=r("p",(function(r){if(r){var a=r.changedTouches;if(a&&a.length>0){var i=a[0];return{x:i.clientX,y:i.clientY}}if(r.pageX!==undefined){return{x:r.pageX,y:r.pageY}}}return{x:0,y:0}}));var _=r("n",(function(r){var a=document.dir==="rtl";switch(r){case"start":return a;case"end":return!a;default:throw new Error('"'.concat(r,'" is not a valid value for [side]. Use "start" or "end" instead.'))}}));var x=r("e",(function(r,a){var i=r._original||r;return{_original:r,emit:h(i.emit.bind(i),a)}}));var h=r("o",(function(r,a){if(a===void 0){a=0}var i;return function(){var n=[];for(var e=0;e<arguments.length;e++){n[e]=arguments[e]}clearTimeout(i);i=setTimeout.apply(void 0,__spreadArray([r,a],n,false))}}));var A=r("s",(function(r,a){r!==null&&r!==void 0?r:r={};a!==null&&a!==void 0?a:a={};if(r===a){return true}var i=Object.keys(r);if(i.length!==Object.keys(a).length){return false}for(var n=0,e=i;n<e.length;n++){var t=e[n];if(!(t in a)){return false}if(r[t]!==a[t]){return false}}return true}))}}}));
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * (C) Ionic http://ionicframework.com - MIT License
3
+ */
4
+ System.register(["./p-747e9c9a.system.js","./p-73e32456.system.js","./p-70c6cd75.system.js","./p-aacc6ddd.system.js","./p-b19a9aa9.system.js"],(function(n){"use strict";var t,a;return{setters:[function(n){t=n.c},function(n){a=n.g},function(){},function(){},function(){}],execute:function(){var i=n("mdTransitionAnimation",(function(n,i){var r,e,s;var c="40px";var o="0px";var u=i.direction==="back";var v=i.enteringEl;var f=i.leavingEl;var l=a(v);var b=l.querySelector("ion-toolbar");var p=t();p.addElement(l).fill("both").beforeRemoveClass("ion-page-invisible");if(u){p.duration(((r=i.duration)!==null&&r!==void 0?r:0)||200).easing("cubic-bezier(0.47,0,0.745,0.715)")}else{p.duration(((e=i.duration)!==null&&e!==void 0?e:0)||280).easing("cubic-bezier(0.36,0.66,0.04,1)").fromTo("transform","translateY(".concat(c,")"),"translateY(".concat(o,")")).fromTo("opacity",.01,1)}if(b){var m=t();m.addElement(b);p.addAnimation(m)}if(f&&u){p.duration(((s=i.duration)!==null&&s!==void 0?s:0)||200).easing("cubic-bezier(0.47,0,0.745,0.715)");var d=t();d.addElement(a(f)).onFinish((function(n){if(n===1&&d.elements.length>0){d.elements[0].style.setProperty("display","none")}})).fromTo("transform","translateY(".concat(o,")"),"translateY(".concat(c,")")).fromTo("opacity",1,0);p.addAnimation(d)}return p}))}}}));
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * (C) Ionic http://ionicframework.com - MIT License
3
+ */
4
+ import{r as o,l as t,c as i,m as n,g as e,j as r,k as a,n as s,w as l}from"./p-a9fd9d48.js";import{getOrInitFocusVisibleUtility as d}from"./p-5ce35a03.js";import{c,a as b,b as p}from"./p-3ca5196c.js";import{i as h,k as g,c as f,j as m,s as u}from"./p-c6191942.js";import{i as x}from"./p-fb813dab.js";import{c as v,h as k}from"./p-47794def.js";import{a as w,p as y,g as z}from"./p-69e54172.js";import{c as j}from"./p-ba3ddec4.js";import{g as C}from"./p-2408c236.js";import{a as Z,d as S}from"./p-643e2eb8.js";import{c as $}from"./p-ccd02320.js";import{t as T}from"./p-36bdcfc4.js";import"./p-4ed7dfdb.js";import"./p-388ac217.js";const O=class{constructor(t){o(this,t)}async setFocus(o){d().setFocus(o)}render(){const o=c(this);return t(n,{key:"aa7f465d2fe61cfd40709c0fd388f80a0927376c",class:{[o]:!0,"ion-page":!0,"force-statusbar-padding":i.getBoolean("_forceStatusbarPadding")}})}get el(){return e(this)}};O.style="html.plt-mobile ion-app{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html.plt-mobile ion-app [contenteditable]{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}ion-app.force-statusbar-padding{--ion-safe-area-top:20px}";const E=class{constructor(t){o(this,t),this.collapse=!1}render(){const o=c(this);return t(n,{key:"a32c3dd9e4c8a0e24be5227a3fc020a9283db778",class:{[o]:!0,"buttons-collapse":this.collapse}},t("slot",{key:"2a8e7bc3a127bafd38203e6cf0098ff9c160c35c"}))}};E.style={ionic:".sc-ion-buttons-ionic-h{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.sc-ion-buttons-ionic-s ion-button{--padding-top:0;--padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.sc-ion-buttons-ionic-s .button-has-icon-only{--padding-top:0;--padding-bottom:0}.sc-ion-buttons-ionic-s .button-clear{--color:globals.$ion-primitives-neutral-1200;--background:transparent;--background-activated:transparent;--background-focused:transparent;--background-hover:transparent}.sc-ion-buttons-ionic-s .button-has-icon-only{width:var(--ion-scale-1000, 40px);height:var(--ion-scale-1000, 40px)}.sc-ion-buttons-ionic-s ion-icon[slot=icon-only]{font-size:var(--ion-font-size-600, 1.5rem)}",ios:".sc-ion-buttons-ios-h{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.sc-ion-buttons-ios-s ion-button{--padding-top:0;--padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.sc-ion-buttons-ios-h{z-index:99}.sc-ion-buttons-ios-s ion-button{--padding-top:0;--padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.sc-ion-buttons-ios-s ion-button{--padding-top:3px;--padding-bottom:3px;--padding-start:5px;--padding-end:5px;-webkit-margin-start:2px;margin-inline-start:2px;-webkit-margin-end:2px;margin-inline-end:2px;min-height:32px}.sc-ion-buttons-ios-s .button-has-icon-only{--padding-top:0;--padding-bottom:0}.sc-ion-buttons-ios-s ion-button:not(.button-round){--border-radius:4px}.sc-ion-buttons-ios-h.ion-color.sc-ion-buttons-ios-s .button,.ion-color .sc-ion-buttons-ios-h.sc-ion-buttons-ios-s .button{--color:initial;--border-color:initial;--background-focused:var(--ion-color-contrast)}.sc-ion-buttons-ios-h.ion-color.sc-ion-buttons-ios-s .button-solid,.ion-color .sc-ion-buttons-ios-h.sc-ion-buttons-ios-s .button-solid{--background:var(--ion-color-contrast);--background-focused:#000;--background-focused-opacity:0.12;--background-activated:#000;--background-activated-opacity:0.12;--background-hover:var(--ion-color-base);--background-hover-opacity:0.45;--color:var(--ion-color-base);--color-focused:var(--ion-color-base)}.sc-ion-buttons-ios-h.ion-color.sc-ion-buttons-ios-s .button-clear,.ion-color .sc-ion-buttons-ios-h.sc-ion-buttons-ios-s .button-clear{--color-activated:var(--ion-color-contrast);--color-focused:var(--ion-color-contrast)}.sc-ion-buttons-ios-h.ion-color.sc-ion-buttons-ios-s .button-outline,.ion-color .sc-ion-buttons-ios-h.sc-ion-buttons-ios-s .button-outline{--color-activated:var(--ion-color-base);--color-focused:var(--ion-color-contrast);--background-activated:var(--ion-color-contrast)}.sc-ion-buttons-ios-s .button-clear,.sc-ion-buttons-ios-s .button-outline{--background-activated:transparent;--background-focused:currentColor;--background-hover:transparent}.sc-ion-buttons-ios-s .button-solid:not(.ion-color){--background-focused:#000;--background-focused-opacity:0.12;--background-activated:#000;--background-activated-opacity:0.12}.sc-ion-buttons-ios-s ion-icon[slot=start]{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-margin-end:0.3em;margin-inline-end:0.3em;font-size:1.41em;line-height:0.67}.sc-ion-buttons-ios-s ion-icon[slot=end]{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-margin-start:0.4em;margin-inline-start:0.4em;font-size:1.41em;line-height:0.67}.sc-ion-buttons-ios-s ion-icon[slot=icon-only]{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;font-size:1.65em;line-height:0.67}",md:".sc-ion-buttons-md-h{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.sc-ion-buttons-md-s ion-button{--padding-top:0;--padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.sc-ion-buttons-md-h{z-index:99}.sc-ion-buttons-md-s ion-button{--padding-top:0;--padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.sc-ion-buttons-md-s ion-button{--padding-top:3px;--padding-bottom:3px;--padding-start:8px;--padding-end:8px;--box-shadow:none;-webkit-margin-start:2px;margin-inline-start:2px;-webkit-margin-end:2px;margin-inline-end:2px;min-height:32px}.sc-ion-buttons-md-s .button-has-icon-only{--padding-top:0;--padding-bottom:0}.sc-ion-buttons-md-s ion-button:not(.button-round){--border-radius:2px}.sc-ion-buttons-md-h.ion-color.sc-ion-buttons-md-s .button,.ion-color .sc-ion-buttons-md-h.sc-ion-buttons-md-s .button{--color:initial;--color-focused:var(--ion-color-contrast);--color-hover:var(--ion-color-contrast);--background-activated:transparent;--background-focused:var(--ion-color-contrast);--background-hover:var(--ion-color-contrast)}.sc-ion-buttons-md-h.ion-color.sc-ion-buttons-md-s .button-solid,.ion-color .sc-ion-buttons-md-h.sc-ion-buttons-md-s .button-solid{--background:var(--ion-color-contrast);--background-activated:transparent;--background-focused:var(--ion-color-shade);--background-hover:var(--ion-color-base);--color:var(--ion-color-base);--color-focused:var(--ion-color-base);--color-hover:var(--ion-color-base)}.sc-ion-buttons-md-h.ion-color.sc-ion-buttons-md-s .button-outline,.ion-color .sc-ion-buttons-md-h.sc-ion-buttons-md-s .button-outline{--border-color:var(--ion-color-contrast)}.sc-ion-buttons-md-s .button-has-icon-only.button-clear{--padding-top:12px;--padding-end:12px;--padding-bottom:12px;--padding-start:12px;--border-radius:50%;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;width:3rem;height:3rem}.sc-ion-buttons-md-s .button{--background-hover:currentColor}.sc-ion-buttons-md-s .button-solid{--color:var(--ion-toolbar-background, var(--ion-background-color, #fff));--background:var(--ion-toolbar-color, var(--ion-text-color, #424242));--background-activated:transparent;--background-focused:currentColor}.sc-ion-buttons-md-s .button-outline{--color:initial;--background:transparent;--background-activated:transparent;--background-focused:currentColor;--background-hover:currentColor;--border-color:currentColor}.sc-ion-buttons-md-s .button-clear{--color:initial;--background:transparent;--background-activated:transparent;--background-focused:currentColor;--background-hover:currentColor}.sc-ion-buttons-md-s ion-icon[slot=start]{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-margin-end:0.3em;margin-inline-end:0.3em;font-size:1.4em}.sc-ion-buttons-md-s ion-icon[slot=end]{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-margin-start:0.4em;margin-inline-start:0.4em;font-size:1.4em}.sc-ion-buttons-md-s ion-icon[slot=icon-only]{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;font-size:1.8em}"};const L=class{constructor(t){o(this,t),this.ionScrollStart=r(this,"ionScrollStart",7),this.ionScroll=r(this,"ionScroll",7),this.ionScrollEnd=r(this,"ionScrollEnd",7),this.watchDog=null,this.isScrolling=!1,this.lastScroll=0,this.queued=!1,this.cTop=-1,this.cBottom=-1,this.isMainContent=!0,this.resizeTimeout=null,this.inheritedAttributes={},this.tabsElement=null,this.detail={scrollTop:0,scrollLeft:0,type:"scroll",event:void 0,startX:0,startY:0,startTime:0,currentX:0,currentY:0,velocityX:0,velocityY:0,deltaX:0,deltaY:0,currentTime:0,data:void 0,isScrolling:!0},this.color=void 0,this.fullscreen=!1,this.fixedSlotPlacement="after",this.forceOverscroll=void 0,this.scrollX=!1,this.scrollY=!0,this.scrollEvents=!1}componentWillLoad(){this.inheritedAttributes=h(this.el)}connectedCallback(){if(this.isMainContent=null===this.el.closest("ion-menu, ion-popover, ion-modal"),g(this.el)){const o=this.tabsElement=this.el.closest("ion-tabs");null!==o&&(this.tabsLoadCallback=()=>this.resize(),o.addEventListener("ionTabBarLoaded",this.tabsLoadCallback))}}disconnectedCallback(){if(this.onScrollEnd(),g(this.el)){const{tabsElement:o,tabsLoadCallback:t}=this;null!==o&&void 0!==t&&o.removeEventListener("ionTabBarLoaded",t),this.tabsElement=null,this.tabsLoadCallback=void 0}}onResize(){this.resizeTimeout&&(clearTimeout(this.resizeTimeout),this.resizeTimeout=null),this.resizeTimeout=setTimeout((()=>{null!==this.el.offsetParent&&this.resize()}),100)}shouldForceOverscroll(o){const{forceOverscroll:t}=this;return void 0===t?"ios"===o&&b("ios"):t}resize(){this.fullscreen?a((()=>this.readDimensions())):0===this.cTop&&0===this.cBottom||(this.cTop=this.cBottom=0,s(this))}readDimensions(){const o=M(this.el),t=Math.max(this.el.offsetTop,0),i=Math.max(o.offsetHeight-t-this.el.offsetHeight,0);(t!==this.cTop||i!==this.cBottom)&&(this.cTop=t,this.cBottom=i,s(this))}onScroll(o){const t=Date.now(),i=!this.isScrolling;this.lastScroll=t,i&&this.onScrollStart(),!this.queued&&this.scrollEvents&&(this.queued=!0,a((t=>{this.queued=!1,this.detail.event=o,_(this.detail,this.scrollEl,t,i),this.ionScroll.emit(this.detail)})))}async getScrollElement(){return this.scrollEl||await new Promise((o=>f(this.el,o))),Promise.resolve(this.scrollEl)}async getBackgroundElement(){return this.backgroundContentEl||await new Promise((o=>f(this.el,o))),Promise.resolve(this.backgroundContentEl)}scrollToTop(o=0){return this.scrollToPoint(void 0,0,o)}async scrollToBottom(o=0){const t=await this.getScrollElement();return this.scrollToPoint(void 0,t.scrollHeight-t.clientHeight,o)}async scrollByPoint(o,t,i){const n=await this.getScrollElement();return this.scrollToPoint(o+n.scrollLeft,t+n.scrollTop,i)}async scrollToPoint(o,t,i=0){const n=await this.getScrollElement();if(i<32)return null!=t&&(n.scrollTop=t),void(null!=o&&(n.scrollLeft=o));let e,r=0;const a=new Promise((o=>e=o)),s=n.scrollTop,l=n.scrollLeft,d=null!=t?t-s:0,c=null!=o?o-l:0,b=o=>{const t=Math.min(1,(o-r)/i)-1,a=Math.pow(t,3)+1;0!==d&&(n.scrollTop=Math.floor(a*d+s)),0!==c&&(n.scrollLeft=Math.floor(a*c+l)),a<1?requestAnimationFrame(b):e()};return requestAnimationFrame((o=>{r=o,b(o)})),a}onScrollStart(){this.isScrolling=!0,this.ionScrollStart.emit({isScrolling:!0}),this.watchDog&&clearInterval(this.watchDog),this.watchDog=setInterval((()=>{this.lastScroll<Date.now()-120&&this.onScrollEnd()}),100)}onScrollEnd(){this.watchDog&&clearInterval(this.watchDog),this.watchDog=null,this.isScrolling&&(this.isScrolling=!1,this.ionScrollEnd.emit({isScrolling:!1}))}render(){const{fixedSlotPlacement:o,inheritedAttributes:i,isMainContent:e,scrollX:r,scrollY:a,el:s}=this,l=x(s)?"rtl":"ltr",d=c(this),b=p(this,d),h=this.shouldForceOverscroll(b),g="ios"===d;return this.resize(),t(n,Object.assign({key:"0eca3101fd42bed7d5a946f0ce498980648300c6",role:e?"main":void 0,class:v(this.color,{[d]:!0,"content-sizing":k("ion-popover",this.el),overscroll:h,[`content-${l}`]:!0}),style:{"--offset-top":`${this.cTop}px`,"--offset-bottom":`${this.cBottom}px`}},i),t("div",{key:"c5ce6bdad3e93161808155e942cd755f9ecbbe74",ref:o=>this.backgroundContentEl=o,id:"background-content",part:"background"}),"before"===o?t("slot",{name:"fixed"}):null,t("div",{key:"25ff5de101b4ace7dcde37f5dbb82f70daf0f759",class:{"inner-scroll":!0,"scroll-x":r,"scroll-y":a,overscroll:(r||a)&&h},ref:o=>this.scrollEl=o,onScroll:this.scrollEvents?o=>this.onScroll(o):void 0,part:"scroll"},t("slot",{key:"98459fde64164bf6eeb32a550a56e5a6c9cef74c"})),g?t("div",{class:"transition-effect"},t("div",{class:"transition-cover"}),t("div",{class:"transition-shadow"})):null,"after"===o?t("slot",{name:"fixed"}):null)}get el(){return e(this)}},M=o=>{const t=o.closest("ion-tabs");if(t)return t;const n=i.get("appRootSelector","ion-app");return o.closest(`${n}, ion-page, .ion-page, page-inner, .popover-content`)||(o=>{var t;return o.parentElement?o.parentElement:(null===(t=o.parentNode)||void 0===t?void 0:t.host)?o.parentNode.host:null})(o)},_=(o,t,i,n)=>{const e=o.currentX,r=o.currentY,a=t.scrollLeft,s=t.scrollTop,l=i-o.currentTime;if(n&&(o.startTime=i,o.startX=a,o.startY=s,o.velocityX=o.velocityY=0),o.currentTime=i,o.currentX=o.scrollLeft=a,o.currentY=o.scrollTop=s,o.deltaX=a-o.startX,o.deltaY=s-o.startY,l>0&&l<100){const t=(s-r)/l;o.velocityX=(a-e)/l*.7+.3*o.velocityX,o.velocityY=.7*t+.3*o.velocityY}};L.style=':host{--background:var(--ion-background-color, #fff);--color:var(--ion-text-color, #000);--padding-top:0px;--padding-bottom:0px;--padding-start:0px;--padding-end:0px;--keyboard-offset:0px;--offset-top:0px;--offset-bottom:0px;--overflow:auto;display:block;position:relative;-ms-flex:1;flex:1;width:100%;height:100%;margin:0 !important;padding:0 !important;font-family:var(--ion-font-family, inherit);contain:size style}:host(.ion-color) .inner-scroll{background:var(--ion-color-base);color:var(--ion-color-contrast)}#background-content{right:0px;left:0px;top:calc(var(--offset-top) * -1);bottom:calc(var(--offset-bottom) * -1);position:absolute;background:var(--background)}.inner-scroll{right:0px;left:0px;top:calc(var(--offset-top) * -1);bottom:calc(var(--offset-bottom) * -1);-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:calc(var(--padding-top) + var(--offset-top));padding-bottom:calc(var(--padding-bottom) + var(--keyboard-offset) + var(--offset-bottom));position:absolute;color:var(--color);-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;-ms-touch-action:pan-x pan-y pinch-zoom;touch-action:pan-x pan-y pinch-zoom}.scroll-y,.scroll-x{-webkit-overflow-scrolling:touch;z-index:0;will-change:scroll-position}.scroll-y{overflow-y:var(--overflow);overscroll-behavior-y:contain}.scroll-x{overflow-x:var(--overflow);overscroll-behavior-x:contain}.overscroll::before,.overscroll::after{position:absolute;width:1px;height:1px;content:""}.overscroll::before{bottom:-1px}.overscroll::after{top:-1px}:host(.content-sizing){display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:0;contain:none}:host(.content-sizing) .inner-scroll{position:relative;top:0;bottom:0;margin-top:calc(var(--offset-top) * -1);margin-bottom:calc(var(--offset-bottom) * -1)}.transition-effect{display:none;position:absolute;width:100%;height:100vh;opacity:0;pointer-events:none}:host(.content-ltr) .transition-effect{left:-100%;}:host(.content-rtl) .transition-effect{right:-100%;}.transition-cover{position:absolute;right:0;width:100%;height:100%;background:black;opacity:0.1}.transition-shadow{display:block;position:absolute;width:100%;height:100%;-webkit-box-shadow:inset -9px 0 9px 0 rgba(0, 0, 100, 0.03);box-shadow:inset -9px 0 9px 0 rgba(0, 0, 100, 0.03)}:host(.content-ltr) .transition-shadow{right:0;}:host(.content-rtl) .transition-shadow{left:0;-webkit-transform:scaleX(-1);transform:scaleX(-1)}::slotted([slot=fixed]){position:absolute;-webkit-transform:translateZ(0);transform:translateZ(0)}';const A=(o,t)=>{a((()=>{const i=m(0,1-(o.scrollTop-(o.scrollHeight-o.clientHeight-10))/10,1);l((()=>{t.style.setProperty("--opacity-scale",i.toString())}))}))},P=class{constructor(t){o(this,t),this.keyboardCtrl=null,this.checkCollapsibleFooter=()=>{if("ios"!==c(this))return;const{collapse:o}=this,t="fade"===o;if(this.destroyCollapsibleFooter(),t){const o=i.get("appRootSelector","ion-app"),t=this.el.closest(`${o},ion-page,.ion-page,page-inner`),n=t?w(t):null;if(!n)return void y(this.el);this.setupFadeFooter(n)}},this.setupFadeFooter=async o=>{const t=this.scrollEl=await z(o);this.contentScrollCallback=()=>{A(t,this.el)},t.addEventListener("scroll",this.contentScrollCallback),A(t,this.el)},this.keyboardVisible=!1,this.collapse=void 0,this.translucent=!1}componentDidLoad(){this.checkCollapsibleFooter()}componentDidUpdate(){this.checkCollapsibleFooter()}async connectedCallback(){this.keyboardCtrl=await j((async(o,t)=>{!1===o&&void 0!==t&&await t,this.keyboardVisible=o}))}disconnectedCallback(){this.keyboardCtrl&&this.keyboardCtrl.destroy()}destroyCollapsibleFooter(){this.scrollEl&&this.contentScrollCallback&&(this.scrollEl.removeEventListener("scroll",this.contentScrollCallback),this.contentScrollCallback=void 0)}render(){const{translucent:o,collapse:i}=this,e=c(this),r=this.el.closest("ion-tabs"),a=null==r?void 0:r.querySelector(":scope > ion-tab-bar");return t(n,{key:"4d217c3986708145ae20c4702c0a6343c2300530",role:"contentinfo",class:{[e]:!0,[`footer-${e}`]:!0,"footer-translucent":o,[`footer-translucent-${e}`]:o,"footer-toolbar-padding":!(this.keyboardVisible||a&&"bottom"===a.slot),[`footer-collapse-${i}`]:void 0!==i}},"ios"===e&&o&&t("div",{key:"c17c1cc7f073186594604dbf366d7a1c31f7cb0f",class:"footer-background"}),t("slot",{key:"043d2fea09805fed312774970ef353eca579710a"}))}get el(){return e(this)}};P.style={ionic:"ion-footer{display:block;position:relative;-ms-flex-order:1;order:1;width:100%;z-index:10}ion-footer.footer-toolbar-padding ion-toolbar:last-of-type{padding-bottom:var(--ion-safe-area-bottom, 0)}.footer-md{-webkit-box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12)}.footer-md.ion-no-border{-webkit-box-shadow:none;box-shadow:none}",ios:"ion-footer{display:block;position:relative;-ms-flex-order:1;order:1;width:100%;z-index:10}ion-footer.footer-toolbar-padding ion-toolbar:last-of-type{padding-bottom:var(--ion-safe-area-bottom, 0)}.footer-ios ion-toolbar:first-of-type{--border-width:0.55px 0 0}@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))){.footer-background{right:0;left:0;top:0;bottom:0;position:absolute;-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}.footer-translucent-ios ion-toolbar{--opacity:0.8}}.footer-ios.ion-no-border ion-toolbar:first-of-type{--border-width:0}.footer-collapse-fade ion-toolbar{--opacity-scale:inherit}",md:"ion-footer{display:block;position:relative;-ms-flex-order:1;order:1;width:100%;z-index:10}ion-footer.footer-toolbar-padding ion-toolbar:last-of-type{padding-bottom:var(--ion-safe-area-bottom, 0)}.footer-md{-webkit-box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12)}.footer-md.ion-no-border{-webkit-box-shadow:none;box-shadow:none}"};const B=o=>{const t=document.querySelector(`${o}.ion-cloned-element`);if(null!==t)return t;const i=document.createElement(o);return i.classList.add("ion-cloned-element"),i.style.setProperty("display","none"),document.body.appendChild(i),i},D=o=>{if(!o)return;const t=o.querySelectorAll("ion-toolbar");return{el:o,toolbars:Array.from(t).map((o=>{const t=o.querySelector("ion-title");return{el:o,background:o.shadowRoot.querySelector(".toolbar-background"),ionTitleEl:t,innerTitleEl:t?t.shadowRoot.querySelector(".toolbar-title"):null,ionButtonsEl:Array.from(o.querySelectorAll("ion-buttons"))}}))}},I=(o,t)=>{"fade"!==o.collapse&&(void 0===t?o.style.removeProperty("--opacity-scale"):o.style.setProperty("--opacity-scale",t.toString()))},R=(o,t=!0)=>{const i=o.el;t?(i.classList.remove("header-collapse-condense-inactive"),i.removeAttribute("aria-hidden")):(i.classList.add("header-collapse-condense-inactive"),i.setAttribute("aria-hidden","true"))},W=(o,t,i)=>{a((()=>{const n=o.scrollTop,e=t.clientHeight,r=i?i.clientHeight:0;if(null!==i&&n<r)return t.style.setProperty("--opacity-scale","0"),void o.style.setProperty("clip-path",`inset(${e}px 0px 0px 0px)`);const a=m(0,(n-r)/10,1);l((()=>{o.style.removeProperty("clip-path"),t.style.setProperty("--opacity-scale",a.toString())}))}))},X=class{constructor(t){o(this,t),this.inheritedAttributes={},this.setupFadeHeader=async(o,t)=>{const i=this.scrollEl=await z(o);this.contentScrollCallback=()=>{W(this.scrollEl,this.el,t)},i.addEventListener("scroll",this.contentScrollCallback),W(this.scrollEl,this.el,t)},this.collapse=void 0,this.divider=!1,this.translucent=!1}componentWillLoad(){this.inheritedAttributes=h(this.el)}componentDidLoad(){this.checkCollapsibleHeader()}componentDidUpdate(){this.checkCollapsibleHeader()}disconnectedCallback(){this.destroyCollapsibleHeader()}async checkCollapsibleHeader(){if("ios"!==c(this))return;const{collapse:o}=this,t="condense"===o,n="fade"===o;this.destroyCollapsibleHeader();const e=i.get("appRootSelector","ion-app");if(t){const o=this.el.closest(`${e},ion-page,.ion-page,page-inner`),t=o?w(o):null;l((()=>{B("ion-title").size="large",B("ion-back-button")})),await this.setupCondenseHeader(t,o)}else if(n){const o=this.el.closest(`${e},ion-page,.ion-page,page-inner`),t=o?w(o):null;if(!t)return void y(this.el);const i=t.querySelector('ion-header[collapse="condense"]');await this.setupFadeHeader(t,i)}}destroyCollapsibleHeader(){this.intersectionObserver&&(this.intersectionObserver.disconnect(),this.intersectionObserver=void 0),this.scrollEl&&this.contentScrollCallback&&(this.scrollEl.removeEventListener("scroll",this.contentScrollCallback),this.contentScrollCallback=void 0),this.collapsibleMainHeader&&(this.collapsibleMainHeader.classList.remove("header-collapse-main"),this.collapsibleMainHeader=void 0)}async setupCondenseHeader(o,t){if(!o||!t)return void y(this.el);if("undefined"==typeof IntersectionObserver)return;this.scrollEl=await z(o);const i=t.querySelectorAll("ion-header");if(this.collapsibleMainHeader=Array.from(i).find((o=>"condense"!==o.collapse)),!this.collapsibleMainHeader)return;const n=D(this.collapsibleMainHeader),e=D(this.el);n&&e&&(R(n,!1),I(n.el,0),this.intersectionObserver=new IntersectionObserver((o=>{((o,t,i,n)=>{l((()=>{const e=n.scrollTop;((o,t,i)=>{if(!o[0].isIntersecting)return;const n=o[0].intersectionRatio>.9||i<=0?0:100*(1-o[0].intersectionRatio)/75;I(t.el,1===n?void 0:n)})(o,t,e);const r=o[0],a=r.intersectionRect,s=a.width*a.height,l=0===s&&0==r.rootBounds.width*r.rootBounds.height,d=Math.abs(a.left-r.boundingClientRect.left),c=Math.abs(a.right-r.boundingClientRect.right);l||s>0&&(d>=5||c>=5)||(r.isIntersecting?(R(t,!1),R(i)):(0===a.x&&0===a.y||0!==a.width&&0!==a.height)&&e>0&&(R(t),R(i,!1),I(t.el)))}))})(o,n,e,this.scrollEl)}),{root:o,threshold:[.25,.3,.4,.5,.6,.7,.8,.9,1]}),this.intersectionObserver.observe(e.toolbars[e.toolbars.length-1].el),this.contentScrollCallback=()=>{((o,t,i)=>{a((()=>{const n=m(1,1+-o.scrollTop/500,1.1);null===i.querySelector("ion-refresher.refresher-native")&&l((()=>{((o=[],t=1,i=!1)=>{o.forEach((o=>{const n=o.ionTitleEl,e=o.innerTitleEl;n&&"large"===n.size&&(e.style.transition=i?"all 0.2s ease-in-out":"",e.style.transform=`scale3d(${t}, ${t}, 1)`)}))})(t.toolbars,n)}))}))})(this.scrollEl,e,o)},this.scrollEl.addEventListener("scroll",this.contentScrollCallback),l((()=>{void 0!==this.collapsibleMainHeader&&this.collapsibleMainHeader.classList.add("header-collapse-main")})))}render(){const{translucent:o,inheritedAttributes:i,divider:e}=this,r=c(this),a=this.collapse||"none",s=k("ion-menu",this.el)?"none":"banner";return t(n,Object.assign({key:"acfb36bd8441f9add0e2b13f0f00cb0dbff1997e",role:s,class:{[r]:!0,[`header-${r}`]:!0,"header-translucent":this.translucent,[`header-collapse-${a}`]:!0,[`header-translucent-${r}`]:this.translucent,"header-divider":e}},i),"ios"===r&&o&&t("div",{key:"724237987614340e620c7247ad05d07aad5f21ab",class:"header-background"}),t("slot",{key:"27756e7e66029d34a83705bde894537c6895049f"}))}get el(){return e(this)}};X.style={ionic:"ion-header{display:block;position:relative;-ms-flex-order:-1;order:-1;width:100%}ion-header ion-toolbar:first-of-type{padding-top:var(--ion-safe-area-top, 0)}ion-header{-webkit-box-shadow:var(--ion-elevation-2, 0px 1px 5px 0px rgba(0, 0, 0, 0.05), 0px 8px 25px 0px rgba(0, 0, 0, 0.08));box-shadow:var(--ion-elevation-2, 0px 1px 5px 0px rgba(0, 0, 0, 0.05), 0px 8px 25px 0px rgba(0, 0, 0, 0.08));z-index:10}ion-header.header-divider{border-bottom:var(--ion-border-size-025, 1px) var(--ion-border-style-solid, solid) var(--ion-primitives-neutral-300, #cfcfcf)}ion-toolbar+ion-toolbar{--padding-start:var(--ion-space-400, 16px);--padding-end:var(--ion-space-400, 16px)}",ios:"ion-header{display:block;position:relative;-ms-flex-order:-1;order:-1;width:100%}ion-header ion-toolbar:first-of-type{padding-top:var(--ion-safe-area-top, 0)}ion-header{z-index:10}.header-ios ion-toolbar:last-of-type{--border-width:0 0 0.55px}@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))){.header-background{right:0;left:0;top:0;bottom:0;position:absolute;-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px)}.header-translucent-ios ion-toolbar{--opacity:0.8}.header-collapse-condense-inactive .header-background{-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px)}}.header-ios.ion-no-border ion-toolbar:last-of-type{--border-width:0}.header-collapse-fade ion-toolbar{--opacity-scale:inherit}.header-collapse-condense{z-index:9}.header-collapse-condense ion-toolbar{position:-webkit-sticky;position:sticky;top:0}.header-collapse-condense ion-toolbar:first-of-type{padding-top:0px;z-index:1}.header-collapse-condense ion-toolbar{--background:var(--ion-background-color, #fff);z-index:0}.header-collapse-condense ion-toolbar:last-of-type{--border-width:0px}.header-collapse-condense ion-toolbar ion-searchbar{padding-top:0px;padding-bottom:13px}.header-collapse-main{--opacity-scale:1}.header-collapse-main ion-toolbar{--opacity-scale:inherit}.header-collapse-main ion-toolbar.in-toolbar ion-title,.header-collapse-main ion-toolbar.in-toolbar ion-buttons{-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.header-collapse-condense-inactive:not(.header-collapse-condense) ion-toolbar.in-toolbar ion-title,.header-collapse-condense-inactive:not(.header-collapse-condense) ion-toolbar.in-toolbar ion-buttons.buttons-collapse{opacity:0;pointer-events:none}.header-collapse-condense-inactive.header-collapse-condense ion-toolbar.in-toolbar ion-title,.header-collapse-condense-inactive.header-collapse-condense ion-toolbar.in-toolbar ion-buttons.buttons-collapse{visibility:hidden}ion-header.header-ios:not(.header-collapse-main):has(~ion-content ion-header.header-ios[collapse=condense],~ion-content ion-header.header-ios.header-collapse-condense){opacity:0}",md:"ion-header{display:block;position:relative;-ms-flex-order:-1;order:-1;width:100%}ion-header ion-toolbar:first-of-type{padding-top:var(--ion-safe-area-top, 0)}ion-header{z-index:10}.header-md{-webkit-box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12)}.header-collapse-condense{display:none}.header-md.ion-no-border{-webkit-box-shadow:none;box-shadow:none}"};const H=class{constructor(t){o(this,t),this.ionNavWillLoad=r(this,"ionNavWillLoad",7),this.ionNavWillChange=r(this,"ionNavWillChange",3),this.ionNavDidChange=r(this,"ionNavDidChange",3),this.lockController=$(),this.gestureOrAnimationInProgress=!1,this.mode=p(this),this.delegate=void 0,this.animated=!0,this.animation=void 0,this.swipeHandler=void 0}swipeHandlerChanged(){this.gesture&&this.gesture.enable(void 0!==this.swipeHandler)}async connectedCallback(){const o=()=>{this.gestureOrAnimationInProgress=!0,this.swipeHandler&&this.swipeHandler.onStart()};this.gesture=(await import("./p-1037b7dd.js")).createSwipeBackGesture(this.el,(()=>!this.gestureOrAnimationInProgress&&!!this.swipeHandler&&this.swipeHandler.canStart()),(()=>o()),(o=>{var t;return null===(t=this.ani)||void 0===t?void 0:t.progressStep(o)}),((o,t,i)=>{if(this.ani){this.ani.onFinish((()=>{this.gestureOrAnimationInProgress=!1,this.swipeHandler&&this.swipeHandler.onEnd(o)}),{oneTimeCallback:!0});let n=o?-.001:.001;o?n+=C([0,0],[.32,.72],[0,1],[1,1],t)[0]:(this.ani.easing("cubic-bezier(1, 0, 0.68, 0.28)"),n+=C([0,0],[1,0],[.68,.28],[1,1],t)[0]),this.ani.progressEnd(o?1:0,n,i)}else this.gestureOrAnimationInProgress=!1})),this.swipeHandlerChanged()}componentWillLoad(){this.ionNavWillLoad.emit()}disconnectedCallback(){this.gesture&&(this.gesture.destroy(),this.gesture=void 0)}async commit(o,t,i){const n=await this.lockController.lock();let e=!1;try{e=await this.transition(o,t,i)}catch(o){console.error(o)}return n(),e}async setRouteId(o,t,i,n){return{changed:await this.setRoot(o,t,{duration:"root"===i?0:void 0,direction:"back"===i?"back":"forward",animationBuilder:n}),element:this.activeEl}}async getRouteId(){const o=this.activeEl;return o?{id:o.tagName,element:o,params:this.activeParams}:void 0}async setRoot(o,t,i){if(this.activeComponent===o&&u(t,this.activeParams))return!1;const n=this.activeEl,e=await Z(this.delegate,this.el,o,["ion-page","ion-page-invisible"],t);return this.activeComponent=o,this.activeEl=e,this.activeParams=t,await this.commit(e,n,i),await S(this.delegate,n),!0}async transition(o,t,n={}){if(t===o)return!1;this.ionNavWillChange.emit();const{el:e,mode:r}=this,a=this.animated&&i.getBoolean("animated",!0),s=n.animationBuilder||this.animation||i.get("navAnimation");return await T(Object.assign(Object.assign({mode:r,animated:a,enteringEl:o,leavingEl:t,baseEl:e,deepWait:g(e),progressCallback:n.progressAnimation?o=>{void 0===o||this.gestureOrAnimationInProgress?this.ani=o:(this.gestureOrAnimationInProgress=!0,o.onFinish((()=>{this.gestureOrAnimationInProgress=!1,this.swipeHandler&&this.swipeHandler.onEnd(!1)}),{oneTimeCallback:!0}),o.progressEnd(0,0,0))}:void 0},n),{animationBuilder:s})),this.ionNavDidChange.emit(),!0}render(){return t("slot",{key:"3ead75e18b3e5703d765dd5b69e4831ea750c141"})}get el(){return e(this)}static get watchers(){return{swipeHandler:["swipeHandlerChanged"]}}};H.style=":host{right:0;left:0;top:0;bottom:0;position:absolute;contain:layout size style;z-index:0}";const F=class{constructor(t){o(this,t),this.ionStyle=r(this,"ionStyle",7),this.color=void 0,this.size=void 0}sizeChanged(){this.emitStyle()}connectedCallback(){this.emitStyle()}emitStyle(){const o=this.getSize();this.ionStyle.emit({[`title-${o}`]:!0})}getSize(){return void 0!==this.size?this.size:"default"}render(){const o=c(this),i=this.getSize();return t(n,{key:"f381a740291cd926b40f52a3020fe3905f96fe1f",class:v(this.color,{[o]:!0,[`title-${i}`]:!0,"title-rtl":"rtl"===document.dir})},t("div",{key:"01169b8d89fe706b3d6700d60429963be41ccd8d",class:"toolbar-title"},t("slot",{key:"38222a860da0030c168c3adc8361796e1ba7598f"})))}get el(){return e(this)}static get watchers(){return{size:["sizeChanged"]}}};F.style={ionic:":host{--color:initial;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0);color:var(--color)}.toolbar-title{display:block;width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;pointer-events:auto}:host(.title-small) .toolbar-title{white-space:normal}:host{font-size:var(--ion-font-size-450, 1.125rem);font-weight:var(--ion-font-weight-medium, 500);letter-spacing:var(--ion-font-letter-spacing-0, 0%);line-height:var(--ion-font-line-height-700, 28px);text-decoration:none;text-transform:none;padding-left:0;padding-right:0;padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);-webkit-box-sizing:border-box;box-sizing:border-box;pointer-events:none}:host-context(ion-toolbar){top:0;position:absolute;width:100%;height:100%;-webkit-transform:translateZ(0);transform:translateZ(0);z-index:-1}:host-context(ion-toolbar){inset-inline-start:0}:host(.title-large){font-size:var(--ion-font-size-700, 1.75rem);font-weight:var(--ion-font-weight-medium, 500);letter-spacing:var(--ion-font-letter-spacing-0, 0%);line-height:var(--ion-font-line-height-900, 36px);text-decoration:none;text-transform:none}",ios:":host{--color:initial;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0);color:var(--color)}.toolbar-title{display:block;width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;pointer-events:auto}:host(.title-small) .toolbar-title{white-space:normal}:host(.ion-color){color:var(--ion-color-base)}:host{top:0;-webkit-padding-start:90px;padding-inline-start:90px;-webkit-padding-end:90px;padding-inline-end:90px;padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);position:absolute;width:100%;height:100%;-webkit-transform:translateZ(0);transform:translateZ(0);font-size:min(1.0625rem, 20.4px);font-weight:600;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;pointer-events:none}:host{inset-inline-start:0}:host(.title-small){-webkit-padding-start:9px;padding-inline-start:9px;-webkit-padding-end:9px;padding-inline-end:9px;padding-top:6px;padding-bottom:16px;position:relative;font-size:min(0.8125rem, 23.4px);font-weight:normal}:host(.title-large){-webkit-padding-start:12px;padding-inline-start:12px;-webkit-padding-end:12px;padding-inline-end:12px;padding-top:2px;padding-bottom:4px;-webkit-transform-origin:left center;transform-origin:left center;position:static;-ms-flex-align:end;align-items:flex-end;min-width:100%;font-size:min(2.125rem, 61.2px);font-weight:700;text-align:start}:host(.title-large.title-rtl){-webkit-transform-origin:right center;transform-origin:right center}:host(.title-large.ion-cloned-element){--color:var(--ion-text-color, #000);font-family:var(--ion-font-family)}:host(.title-large) .toolbar-title{-webkit-transform-origin:inherit;transform-origin:inherit;width:auto}:host-context([dir=rtl]):host(.title-large) .toolbar-title,:host-context([dir=rtl]).title-large .toolbar-title{-webkit-transform-origin:calc(100% - inherit);transform-origin:calc(100% - inherit)}@supports selector(:dir(rtl)){:host(.title-large:dir(rtl)) .toolbar-title{-webkit-transform-origin:calc(100% - inherit);transform-origin:calc(100% - inherit)}}",md:":host{--color:initial;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;-ms-flex-align:center;align-items:center;-webkit-transform:translateZ(0);transform:translateZ(0);color:var(--color)}.toolbar-title{display:block;width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;pointer-events:auto}:host(.title-small) .toolbar-title{white-space:normal}:host(.ion-color){color:var(--ion-color-base)}:host{-webkit-padding-start:20px;padding-inline-start:20px;-webkit-padding-end:20px;padding-inline-end:20px;padding-top:0;padding-bottom:0;font-size:1.25rem;font-weight:500;letter-spacing:0.0125em}:host(.title-small){width:100%;height:100%;font-size:0.9375rem;font-weight:normal}"};const Y=class{constructor(t){o(this,t),this.childrenStyles=new Map,this.color=void 0}componentWillLoad(){const o=Array.from(this.el.querySelectorAll("ion-buttons")),t=o.find((o=>"start"===o.slot));t&&t.classList.add("buttons-first-slot");const i=o.reverse(),n=i.find((o=>"end"===o.slot))||i.find((o=>"primary"===o.slot))||i.find((o=>"secondary"===o.slot));n&&n.classList.add("buttons-last-slot")}childrenStyle(o){o.stopPropagation();const t=o.target.tagName,i=o.detail,n={},e=this.childrenStyles.get(t)||{};let r=!1;Object.keys(i).forEach((o=>{const t=`toolbar-${o}`,a=i[o];a!==e[t]&&(r=!0),a&&(n[t]=!0)})),r&&(this.childrenStyles.set(t,n),s(this))}render(){const o=c(this),i={};return this.childrenStyles.forEach((o=>{Object.assign(i,o)})),t(n,{key:"0b157e806d08ed75667a8d4c824531274c636c3f",class:Object.assign(Object.assign({},i),v(this.color,{[o]:!0,"in-toolbar":k("ion-toolbar",this.el)}))},t("div",{key:"8413374c1b4f3d16afb265d89a2506c83983da11",class:"toolbar-background"}),t("div",{key:"da917701a03f82fe0030c68663381f99324dd9aa",class:"toolbar-container"},t("slot",{key:"89cbc4450b377901cd732dcef02303a41205f202",name:"start"}),t("slot",{key:"ee00a40995e755970cb9be8ccacaefbe394bca93",name:"secondary"}),t("div",{key:"ae653739005ac675f789a57a6c5ee6899d24c34b",class:"toolbar-content"},t("slot",{key:"e90829ef9c274f14bfd8e85834183d3498bd2825"})),t("slot",{key:"8f5106bb52b434a6760cf6f7848471ab99f2c80b",name:"primary"}),t("slot",{key:"9d20e5120164268411bd7e9e091ced61d24da5cc",name:"end"})))}get el(){return e(this)}};Y.style={ionic:":host{--border-width:0;--border-style:solid;--opacity:1;--opacity-scale:1;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:block;position:relative;width:100%;padding-right:var(--ion-safe-area-right);padding-left:var(--ion-safe-area-left);color:var(--color);contain:content;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-container{-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:-ms-flexbox;display:flex;position:relative;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;width:100%;min-height:var(--min-height);contain:content;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-background{right:0;left:0;top:0;bottom:0;position:absolute;-webkit-transform:translateZ(0);transform:translateZ(0);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);contain:strict;opacity:calc(var(--opacity) * var(--opacity-scale));pointer-events:none}::slotted(ion-progress-bar){right:0;left:0;bottom:0;position:absolute}:host{--background:var(--ion-primitives-base-white, #ffffff);--color:var(--ion-primitives-neutral-1200, #242424);--border-color:currentColor;--padding-top:var(--ion-space-200, 8px);--padding-bottom:var(--ion-space-200, 8px);--padding-start:var(--ion-space-200, 8px);--padding-end:var(--ion-space-200, 8px);--min-height:var(--ion-scale-1400, 56px)}.toolbar-container{gap:var(--ion-space-400, 16px)}.toolbar-content{-ms-flex:2;flex:2;-ms-flex-order:3;order:3;min-width:0}:host(.toolbar-searchbar) ::slotted(ion-searchbar){padding-left:0;padding-right:0;padding-top:0;padding-bottom:0}::slotted(ion-title){-webkit-padding-start:var(--padding-top);padding-inline-start:var(--padding-top);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}:host(.toolbar-title-default) ::slotted(ion-title){text-align:center}:host(.toolbar-title-large) ::slotted(ion-title){-webkit-padding-start:var(--ion-space-400, 16px);padding-inline-start:var(--ion-space-400, 16px);-webkit-padding-end:var(--ion-space-400, 16px);padding-inline-end:var(--ion-space-400, 16px)}::slotted([slot=secondary]){-ms-flex-order:2;order:2}::slotted([slot=primary]){-ms-flex-order:4;order:4;text-align:end}::slotted([slot=start]){-ms-flex-order:1;order:1}::slotted([slot=start]),::slotted([slot=end]){display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;gap:var(--ion-space-200, 8px)}::slotted([slot=end]){-ms-flex-pack:end;justify-content:end;-ms-flex-order:5;order:5;font-size:var(--ionic-font-size-600, 1.5rem)}",ios:":host{--border-width:0;--border-style:solid;--opacity:1;--opacity-scale:1;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:block;position:relative;width:100%;padding-right:var(--ion-safe-area-right);padding-left:var(--ion-safe-area-left);color:var(--color);contain:content;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-container{-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:-ms-flexbox;display:flex;position:relative;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;width:100%;min-height:var(--min-height);contain:content;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-background{right:0;left:0;top:0;bottom:0;position:absolute;-webkit-transform:translateZ(0);transform:translateZ(0);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);contain:strict;opacity:calc(var(--opacity) * var(--opacity-scale));pointer-events:none}::slotted(ion-progress-bar){right:0;left:0;bottom:0;position:absolute}:host{font-family:var(--ion-font-family, inherit);z-index:10}:host(.ion-color){color:var(--ion-color-contrast)}:host(.ion-color) .toolbar-background{background:var(--ion-color-base)}.toolbar-container{z-index:10}.toolbar-background{z-index:-1}:host{--background:var(--ion-toolbar-background, var(--ion-color-step-50, var(--ion-background-color-step-50, #f7f7f7)));--color:var(--ion-toolbar-color, var(--ion-text-color, #000));--border-color:var(--ion-toolbar-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, rgba(0, 0, 0, 0.2)))));--padding-top:3px;--padding-bottom:3px;--padding-start:4px;--padding-end:4px;--min-height:44px}.toolbar-content{-ms-flex:1;flex:1;-ms-flex-order:4;order:4;min-width:0}:host(.toolbar-segment) .toolbar-content{display:-ms-inline-flexbox;display:inline-flex}:host(.toolbar-searchbar) .toolbar-container{padding-top:0;padding-bottom:0}:host(.toolbar-searchbar) ::slotted(*){-ms-flex-item-align:start;align-self:start}:host(.toolbar-searchbar) ::slotted(ion-chip){margin-top:3px}::slotted(ion-buttons){min-height:38px}::slotted([slot=start]){-ms-flex-order:2;order:2}::slotted([slot=secondary]){-ms-flex-order:3;order:3}::slotted([slot=primary]){-ms-flex-order:5;order:5;text-align:end}::slotted([slot=end]){-ms-flex-order:6;order:6;text-align:end}:host(.toolbar-title-large) .toolbar-container{-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:start;align-items:flex-start}:host(.toolbar-title-large) .toolbar-content ion-title{-ms-flex:1;flex:1;-ms-flex-order:8;order:8;min-width:100%}",md:":host{--border-width:0;--border-style:solid;--opacity:1;--opacity-scale:1;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:block;position:relative;width:100%;padding-right:var(--ion-safe-area-right);padding-left:var(--ion-safe-area-left);color:var(--color);contain:content;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-container{-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:-ms-flexbox;display:flex;position:relative;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;width:100%;min-height:var(--min-height);contain:content;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.toolbar-background{right:0;left:0;top:0;bottom:0;position:absolute;-webkit-transform:translateZ(0);transform:translateZ(0);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);contain:strict;opacity:calc(var(--opacity) * var(--opacity-scale));pointer-events:none}::slotted(ion-progress-bar){right:0;left:0;bottom:0;position:absolute}:host{font-family:var(--ion-font-family, inherit);z-index:10}:host(.ion-color){color:var(--ion-color-contrast)}:host(.ion-color) .toolbar-background{background:var(--ion-color-base)}.toolbar-container{z-index:10}.toolbar-background{z-index:-1}:host{--background:var(--ion-toolbar-background, var(--ion-background-color, #fff));--color:var(--ion-toolbar-color, var(--ion-text-color, #424242));--border-color:var(--ion-toolbar-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, #c1c4cd))));--padding-top:0;--padding-bottom:0;--padding-start:0;--padding-end:0;--min-height:56px}.toolbar-content{-ms-flex:1;flex:1;-ms-flex-order:3;order:3;min-width:0;max-width:100%}::slotted(.buttons-first-slot){-webkit-margin-start:4px;margin-inline-start:4px}::slotted(.buttons-last-slot){-webkit-margin-end:4px;margin-inline-end:4px}::slotted([slot=start]){-ms-flex-order:2;order:2}::slotted([slot=secondary]){-ms-flex-order:4;order:4}::slotted([slot=primary]){-ms-flex-order:5;order:5;text-align:end}::slotted([slot=end]){-ms-flex-order:6;order:6;text-align:end}"};export{O as ion_app,E as ion_buttons,L as ion_content,P as ion_footer,X as ion_header,H as ion_router_outlet,F as ion_title,Y as ion_toolbar}
@@ -0,0 +1,4 @@
1
+ var __awaiter=this&&this.__awaiter||function(n,t,o,i){function e(n){return n instanceof o?n:new o((function(t){t(n)}))}return new(o||(o=Promise))((function(o,r){function a(n){try{c(i.next(n))}catch(n){r(n)}}function d(n){try{c(i["throw"](n))}catch(n){r(n)}}function c(n){n.done?o(n.value):e(n.value).then(a,d)}c((i=i.apply(n,t||[])).next())}))};var __generator=this&&this.__generator||function(n,t){var o={label:0,sent:function(){if(r[0]&1)throw r[1];return r[1]},trys:[],ops:[]},i,e,r,a;return a={next:d(0),throw:d(1),return:d(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function d(n){return function(t){return c([n,t])}}function c(d){if(i)throw new TypeError("Generator is already executing.");while(a&&(a=0,d[0]&&(o=0)),o)try{if(i=1,e&&(r=d[0]&2?e["return"]:d[0]?e["throw"]||((r=e["return"])&&r.call(e),0):e.next)&&!(r=r.call(e,d[1])).done)return r;if(e=0,r)d=[d[0]&2,r.value];switch(d[0]){case 0:case 1:r=d;break;case 4:o.label++;return{value:d[1],done:false};case 5:o.label++;e=d[1];d=[0];continue;case 7:d=o.ops.pop();o.trys.pop();continue;default:if(!(r=o.trys,r=r.length>0&&r[r.length-1])&&(d[0]===6||d[0]===2)){o=0;continue}if(d[0]===3&&(!r||d[1]>r[0]&&d[1]<r[3])){o.label=d[1];break}if(d[0]===6&&o.label<r[1]){o.label=r[1];r=d;break}if(r&&o.label<r[2]){o.label=r[2];o.ops.push(d);break}if(r[2])o.ops.pop();o.trys.pop();continue}d=t.call(n,o)}catch(n){d=[6,n];e=0}finally{i=r=0}if(d[0]&5)throw d[1];return{value:d[0]?d[1]:void 0,done:true}}};
2
+ /*!
3
+ * (C) Ionic http://ionicframework.com - MIT License
4
+ */System.register(["./p-aacc6ddd.system.js","./p-c248c88d.system.js","./p-b19a9aa9.system.js","./p-4609d030.system.js","./p-115d74cd.system.js","./p-70c6cd75.system.js"],(function(n){"use strict";var t,o,i,e,r,a,d,c,s,l,p,g,u;return{setters:[function(n){t=n.r;o=n.c;i=n.l;e=n.m;r=n.g},function(n){a=n.c},function(n){d=n.i},function(n){c=n.o;s=n.c;l=n.h},function(n){p=n.c;g=n.a},function(n){u=n.c}],execute:function(){var b=':host{--background:transparent;--color-focused:currentColor;--color-hover:currentColor;--icon-margin-top:0;--icon-margin-bottom:0;--icon-padding-top:0;--icon-padding-end:0;--icon-padding-bottom:0;--icon-padding-start:0;--margin-top:0;--margin-end:0;--margin-bottom:0;--margin-start:0;--min-width:auto;--min-height:auto;--padding-top:0;--padding-end:0;--padding-bottom:0;--padding-start:0;--opacity:1;--ripple-color:currentColor;--transition:background-color, opacity 100ms linear;display:none;min-width:var(--min-width);min-height:var(--min-height);color:var(--color);font-family:var(--ion-font-family, inherit);text-align:center;text-decoration:none;text-overflow:ellipsis;text-transform:none;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-font-kerning:none;font-kerning:none}ion-ripple-effect{color:var(--ripple-color)}:host(.ion-color) .button-native{color:var(--ion-color-base)}:host(.show-back-button){display:block}:host(.back-button-disabled){cursor:default;opacity:0.5;pointer-events:none}.button-native{border-radius:var(--border-radius);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-margin-start:var(--margin-start);margin-inline-start:var(--margin-start);-webkit-margin-end:var(--margin-end);margin-inline-end:var(--margin-end);margin-top:var(--margin-top);margin-bottom:var(--margin-bottom);-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;text-align:inherit;text-decoration:inherit;text-indent:inherit;text-overflow:inherit;text-transform:inherit;white-space:inherit;display:block;position:relative;width:100%;height:100%;min-height:inherit;-webkit-transition:var(--transition);transition:var(--transition);border:0;outline:none;background:var(--background);line-height:1;cursor:pointer;opacity:var(--opacity);overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.button-inner{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;z-index:1}ion-icon{-webkit-padding-start:var(--icon-padding-start);padding-inline-start:var(--icon-padding-start);-webkit-padding-end:var(--icon-padding-end);padding-inline-end:var(--icon-padding-end);padding-top:var(--icon-padding-top);padding-bottom:var(--icon-padding-bottom);-webkit-margin-start:var(--icon-margin-start);margin-inline-start:var(--icon-margin-start);-webkit-margin-end:var(--icon-margin-end);margin-inline-end:var(--icon-margin-end);margin-top:var(--icon-margin-top);margin-bottom:var(--icon-margin-bottom);display:inherit;font-size:var(--icon-font-size);font-weight:var(--icon-font-weight);pointer-events:none}:host(.ion-focused) .button-native{color:var(--color-focused)}:host(.ion-focused) .button-native::after{background:var(--background-focused);opacity:var(--background-focused-opacity)}.button-native::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}@media (any-hover: hover){:host(:hover) .button-native{color:var(--color-hover)}:host(:hover) .button-native::after{background:var(--background-hover);opacity:var(--background-hover-opacity)}}:host(.ion-color.ion-focused) .button-native{color:var(--ion-color-base)}@media (any-hover: hover){:host(.ion-color:hover) .button-native{color:var(--ion-color-base)}}:host(.in-toolbar:not(.in-toolbar-color)){color:var(--ion-toolbar-color, var(--color))}:host{--border-radius:4px;--background-focused:currentColor;--background-focused-opacity:0.12;--background-hover:currentColor;--background-hover-opacity:0.04;--color:currentColor;--icon-margin-end:0;--icon-margin-start:0;--icon-font-size:1.5rem;--icon-font-weight:normal;--min-height:32px;--min-width:44px;--padding-start:12px;--padding-end:12px;font-size:0.875rem;font-weight:500;text-transform:uppercase}:host(.back-button-has-icon-only){--border-radius:50%;min-width:48px;min-height:48px;aspect-ratio:1/1}.button-native{-webkit-box-shadow:none;box-shadow:none}.button-text{-webkit-padding-start:4px;padding-inline-start:4px;-webkit-padding-end:4px;padding-inline-end:4px;padding-top:0;padding-bottom:0}ion-icon{line-height:0.67;text-align:start}@media (any-hover: hover){:host(.ion-color:hover) .button-native::after{background:var(--ion-color-base)}}:host(.ion-color.ion-focused) .button-native::after{background:var(--ion-color-base)}';var h=b;var v=':host{--background:transparent;--color-focused:currentColor;--color-hover:currentColor;--icon-margin-top:0;--icon-margin-bottom:0;--icon-padding-top:0;--icon-padding-end:0;--icon-padding-bottom:0;--icon-padding-start:0;--margin-top:0;--margin-end:0;--margin-bottom:0;--margin-start:0;--min-width:auto;--min-height:auto;--padding-top:0;--padding-end:0;--padding-bottom:0;--padding-start:0;--opacity:1;--ripple-color:currentColor;--transition:background-color, opacity 100ms linear;display:none;min-width:var(--min-width);min-height:var(--min-height);color:var(--color);font-family:var(--ion-font-family, inherit);text-align:center;text-decoration:none;text-overflow:ellipsis;text-transform:none;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-font-kerning:none;font-kerning:none}ion-ripple-effect{color:var(--ripple-color)}:host(.ion-color) .button-native{color:var(--ion-color-base)}:host(.show-back-button){display:block}:host(.back-button-disabled){cursor:default;opacity:0.5;pointer-events:none}.button-native{border-radius:var(--border-radius);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-margin-start:var(--margin-start);margin-inline-start:var(--margin-start);-webkit-margin-end:var(--margin-end);margin-inline-end:var(--margin-end);margin-top:var(--margin-top);margin-bottom:var(--margin-bottom);-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;text-align:inherit;text-decoration:inherit;text-indent:inherit;text-overflow:inherit;text-transform:inherit;white-space:inherit;display:block;position:relative;width:100%;height:100%;min-height:inherit;-webkit-transition:var(--transition);transition:var(--transition);border:0;outline:none;background:var(--background);line-height:1;cursor:pointer;opacity:var(--opacity);overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.button-inner{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;z-index:1}ion-icon{-webkit-padding-start:var(--icon-padding-start);padding-inline-start:var(--icon-padding-start);-webkit-padding-end:var(--icon-padding-end);padding-inline-end:var(--icon-padding-end);padding-top:var(--icon-padding-top);padding-bottom:var(--icon-padding-bottom);-webkit-margin-start:var(--icon-margin-start);margin-inline-start:var(--icon-margin-start);-webkit-margin-end:var(--icon-margin-end);margin-inline-end:var(--icon-margin-end);margin-top:var(--icon-margin-top);margin-bottom:var(--icon-margin-bottom);display:inherit;font-size:var(--icon-font-size);font-weight:var(--icon-font-weight);pointer-events:none}:host(.ion-focused) .button-native{color:var(--color-focused)}:host(.ion-focused) .button-native::after{background:var(--background-focused);opacity:var(--background-focused-opacity)}.button-native::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}@media (any-hover: hover){:host(:hover) .button-native{color:var(--color-hover)}:host(:hover) .button-native::after{background:var(--background-hover);opacity:var(--background-hover-opacity)}}:host(.ion-color.ion-focused) .button-native{color:var(--ion-color-base)}@media (any-hover: hover){:host(.ion-color:hover) .button-native{color:var(--ion-color-base)}}:host(.in-toolbar:not(.in-toolbar-color)){color:var(--ion-toolbar-color, var(--color))}:host{--background-hover:transparent;--background-hover-opacity:1;--background-focused:currentColor;--background-focused-opacity:0.1;--border-radius:4px;--color:var(--ion-color-primary, #0054e9);--icon-margin-end:1px;--icon-margin-start:-4px;--icon-font-size:1.6em;--min-height:32px;font-size:clamp(17px, 1.0625rem, 21.998px)}.button-native{-webkit-transform:translateZ(0);transform:translateZ(0);overflow:visible;z-index:99}:host(.ion-activated) .button-native{opacity:0.4}@media (any-hover: hover){:host(:hover){opacity:0.6}}';var m=v;var f=':host{--background:transparent;--color-focused:currentColor;--color-hover:currentColor;--icon-margin-top:0;--icon-margin-bottom:0;--icon-padding-top:0;--icon-padding-end:0;--icon-padding-bottom:0;--icon-padding-start:0;--margin-top:0;--margin-end:0;--margin-bottom:0;--margin-start:0;--min-width:auto;--min-height:auto;--padding-top:0;--padding-end:0;--padding-bottom:0;--padding-start:0;--opacity:1;--ripple-color:currentColor;--transition:background-color, opacity 100ms linear;display:none;min-width:var(--min-width);min-height:var(--min-height);color:var(--color);font-family:var(--ion-font-family, inherit);text-align:center;text-decoration:none;text-overflow:ellipsis;text-transform:none;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-font-kerning:none;font-kerning:none}ion-ripple-effect{color:var(--ripple-color)}:host(.ion-color) .button-native{color:var(--ion-color-base)}:host(.show-back-button){display:block}:host(.back-button-disabled){cursor:default;opacity:0.5;pointer-events:none}.button-native{border-radius:var(--border-radius);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-margin-start:var(--margin-start);margin-inline-start:var(--margin-start);-webkit-margin-end:var(--margin-end);margin-inline-end:var(--margin-end);margin-top:var(--margin-top);margin-bottom:var(--margin-bottom);-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;text-align:inherit;text-decoration:inherit;text-indent:inherit;text-overflow:inherit;text-transform:inherit;white-space:inherit;display:block;position:relative;width:100%;height:100%;min-height:inherit;-webkit-transition:var(--transition);transition:var(--transition);border:0;outline:none;background:var(--background);line-height:1;cursor:pointer;opacity:var(--opacity);overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.button-inner{display:-ms-flexbox;display:flex;position:relative;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;z-index:1}ion-icon{-webkit-padding-start:var(--icon-padding-start);padding-inline-start:var(--icon-padding-start);-webkit-padding-end:var(--icon-padding-end);padding-inline-end:var(--icon-padding-end);padding-top:var(--icon-padding-top);padding-bottom:var(--icon-padding-bottom);-webkit-margin-start:var(--icon-margin-start);margin-inline-start:var(--icon-margin-start);-webkit-margin-end:var(--icon-margin-end);margin-inline-end:var(--icon-margin-end);margin-top:var(--icon-margin-top);margin-bottom:var(--icon-margin-bottom);display:inherit;font-size:var(--icon-font-size);font-weight:var(--icon-font-weight);pointer-events:none}:host(.ion-focused) .button-native{color:var(--color-focused)}:host(.ion-focused) .button-native::after{background:var(--background-focused);opacity:var(--background-focused-opacity)}.button-native::after{right:0;left:0;top:0;bottom:0;position:absolute;content:"";opacity:0}@media (any-hover: hover){:host(:hover) .button-native{color:var(--color-hover)}:host(:hover) .button-native::after{background:var(--background-hover);opacity:var(--background-hover-opacity)}}:host(.ion-color.ion-focused) .button-native{color:var(--ion-color-base)}@media (any-hover: hover){:host(.ion-color:hover) .button-native{color:var(--ion-color-base)}}:host(.in-toolbar:not(.in-toolbar-color)){color:var(--ion-toolbar-color, var(--color))}:host{--border-radius:4px;--background-focused:currentColor;--background-focused-opacity:0.12;--background-hover:currentColor;--background-hover-opacity:0.04;--color:currentColor;--icon-margin-end:0;--icon-margin-start:0;--icon-font-size:1.5rem;--icon-font-weight:normal;--min-height:32px;--min-width:44px;--padding-start:12px;--padding-end:12px;font-size:0.875rem;font-weight:500;text-transform:uppercase}:host(.back-button-has-icon-only){--border-radius:50%;min-width:48px;min-height:48px;aspect-ratio:1/1}.button-native{-webkit-box-shadow:none;box-shadow:none}.button-text{-webkit-padding-start:4px;padding-inline-start:4px;-webkit-padding-end:4px;padding-inline-end:4px;padding-top:0;padding-bottom:0}ion-icon{line-height:0.67;text-align:start}@media (any-hover: hover){:host(.ion-color:hover) .button-native::after{background:var(--ion-color-base)}}:host(.ion-color.ion-focused) .button-native::after{background:var(--ion-color-base)}';var k=f;var w=n("ion_back_button",function(){function n(n){var o=this;t(this,n);this.inheritedAttributes={};this.onClick=function(n){return __awaiter(o,void 0,void 0,(function(){var t,o;return __generator(this,(function(i){switch(i.label){case 0:t=this.el.closest("ion-nav");n.preventDefault();o=t;if(!o)return[3,2];return[4,t.canGoBack()];case 1:o=i.sent();i.label=2;case 2:if(o){return[2,t.pop({animationBuilder:this.routerAnimation,skipIfBusy:true})]}return[2,c(this.defaultHref,n,"back",this.routerAnimation)]}}))}))};this.color=undefined;this.defaultHref=undefined;this.disabled=false;this.icon=undefined;this.text=undefined;this.type="button";this.routerAnimation=undefined}n.prototype.componentWillLoad=function(){this.inheritedAttributes=d(this.el);if(this.defaultHref===undefined){this.defaultHref=o.get("backButtonDefaultHref")}};Object.defineProperty(n.prototype,"backButtonIcon",{get:function(){if(this.icon!=null){return this.icon}var n=u(this);var t={ios:p,ionic:a,md:g};var i=t[n]||t.md;return o.get("backButtonIcon",i)},enumerable:false,configurable:true});Object.defineProperty(n.prototype,"backButtonText",{get:function(){var n=u(this)==="ios"?"Back":null;return this.text!=null?this.text:o.get("backButtonText",n)},enumerable:false,configurable:true});Object.defineProperty(n.prototype,"hasIconOnly",{get:function(){return this.backButtonIcon&&!this.backButtonText},enumerable:false,configurable:true});Object.defineProperty(n.prototype,"rippleType",{get:function(){if(this.hasIconOnly){return"unbounded"}return"bounded"},enumerable:false,configurable:true});n.prototype.render=function(){var n;var t=this,o=t.color,r=t.defaultHref,a=t.disabled,d=t.type,c=t.hasIconOnly,p=t.backButtonIcon,g=t.backButtonText,b=t.icon,h=t.inheritedAttributes;var v=r!==undefined;var m=u(this);var f=h["aria-label"]||g||"back";return i(e,{key:"6b3723c6070e0ff19b312ed86ee642bdefebae2e",onClick:this.onClick,class:s(o,(n={},n[m]=true,n.button=true,n["back-button-disabled"]=a,n["back-button-has-icon-only"]=c,n["in-toolbar"]=l("ion-toolbar",this.el),n["in-toolbar-color"]=l("ion-toolbar[color]",this.el),n["ion-activatable"]=true,n["ion-focusable"]=true,n["show-back-button"]=v,n))},i("button",{key:"482b8e4d3d9485747d241f2bac1993cb2ab4aed6",type:d,disabled:a,class:"button-native",part:"native","aria-label":f},i("span",{key:"b5243414e42716903c86a08f2e8fa098d30cfdbe",class:"button-inner"},p&&i("ion-icon",{key:"fd6ad102d5fad6411c75005cb7bcc11c24a18bbb",part:"icon",icon:p,"aria-hidden":"true",lazy:false,"flip-rtl":b===undefined}),g&&i("span",{key:"7d39ac018ee158f46b9bdf886ae7ed4b15c88ed4",part:"text","aria-hidden":"true",class:"button-text"},g)),m==="md"&&i("ion-ripple-effect",{key:"12d543212f08222a4ba8f235b5c4a4be62284c01",type:this.rippleType})))};Object.defineProperty(n.prototype,"el",{get:function(){return r(this)},enumerable:false,configurable:true});return n}());w.style={ionic:h,ios:m,md:k}}}}));
@@ -1,4 +1,4 @@
1
1
  /*!
2
2
  * (C) Ionic http://ionicframework.com - MIT License
3
3
  */
4
- import{g as t}from"./p-c61cc894.js";var n,s;!function(t){t.Heavy="HEAVY",t.Medium="MEDIUM",t.Light="LIGHT"}(n||(n={})),function(t){t.Success="SUCCESS",t.Warning="WARNING",t.Error="ERROR"}(s||(s={}));const i={getEngine(){const n=t();if(null==n?void 0:n.isPluginAvailable("Haptics"))return n.Plugins.Haptics},available(){if(!this.getEngine())return!1;const n=t();return"web"!==(null==n?void 0:n.getPlatform())||"undefined"!=typeof navigator&&void 0!==navigator.vibrate},impact(t){const n=this.getEngine();n&&n.impact({style:t.style})},notification(t){const n=this.getEngine();n&&n.notification({type:t.type})},selection(){this.impact({style:n.Light})},selectionStart(){const t=this.getEngine();t&&t.selectionStart()},selectionChanged(){const t=this.getEngine();t&&t.selectionChanged()},selectionEnd(){const t=this.getEngine();t&&t.selectionEnd()}},o=()=>i.available(),e=()=>{o()&&i.selection()},a=()=>{o()&&i.selectionStart()},c=()=>{o()&&i.selectionChanged()},r=()=>{o()&&i.selectionEnd()},l=t=>{o()&&i.impact(t)};export{n as I,a,c as b,e as c,l as d,r as h}
4
+ import{g as t}from"./p-388ac217.js";var n,s;!function(t){t.Heavy="HEAVY",t.Medium="MEDIUM",t.Light="LIGHT"}(n||(n={})),function(t){t.Success="SUCCESS",t.Warning="WARNING",t.Error="ERROR"}(s||(s={}));const i={getEngine(){const n=t();if(null==n?void 0:n.isPluginAvailable("Haptics"))return n.Plugins.Haptics},available(){if(!this.getEngine())return!1;const n=t();return"web"!==(null==n?void 0:n.getPlatform())||"undefined"!=typeof navigator&&void 0!==navigator.vibrate},impact(t){const n=this.getEngine();n&&n.impact({style:t.style})},notification(t){const n=this.getEngine();n&&n.notification({type:t.type})},selection(){this.impact({style:n.Light})},selectionStart(){const t=this.getEngine();t&&t.selectionStart()},selectionChanged(){const t=this.getEngine();t&&t.selectionChanged()},selectionEnd(){const t=this.getEngine();t&&t.selectionEnd()}},o=()=>i.available(),e=()=>{o()&&i.selection()},a=()=>{o()&&i.selectionStart()},c=()=>{o()&&i.selectionChanged()},r=()=>{o()&&i.selectionEnd()},l=t=>{o()&&i.impact(t)};export{n as I,a,c as b,e as c,l as d,r as h}
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * (C) Ionic http://ionicframework.com - MIT License
3
+ */
4
+ import{w as o,d as r}from"./p-3ca5196c.js";import{c as i}from"./p-a9fd9d48.js";import{K as e,a as l}from"./p-4ed7dfdb.js";const n=o=>{if(void 0===r||o===l.None||void 0===o)return null;const e=i.get("appRootSelector","ion-app"),n=r.querySelector(e);return null!=n?n:r.body},s=o=>{const r=n(o);return null===r?0:r.clientHeight},t=async r=>{let i,l,t,a;const d=async()=>{const r=await e.getResizeMode(),n=void 0===r?void 0:r.mode;i=()=>{void 0===a&&(a=s(n)),t=!0,c(t,n)},l=()=>{t=!1,c(t,n)},null==o||o.addEventListener("keyboardWillShow",i),null==o||o.addEventListener("keyboardWillHide",l)},c=(o,i)=>{r&&r(o,u(i))},u=o=>{if(0===a||a===s(o))return;const r=n(o);return null!==r?new Promise((o=>{const i=new ResizeObserver((()=>{r.clientHeight===a&&(i.disconnect(),o())}));i.observe(r)})):void 0};return await d(),{init:d,destroy:()=>{null==o||o.removeEventListener("keyboardWillShow",i),null==o||o.removeEventListener("keyboardWillHide",l),i=l=void 0},isKeyboardVisible:()=>t}};export{t as c}