voyager-ionic-core 8.5.7 → 8.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2204) hide show
  1. package/components/action-sheet.js +46 -33
  2. package/components/alert.js +50 -35
  3. package/components/animation.js +2 -2
  4. package/components/backdrop.js +12 -5
  5. package/components/button-active.js +1 -1
  6. package/components/button.js +54 -30
  7. package/components/buttons.js +15 -5
  8. package/components/capacitor.js +1 -1
  9. package/components/checkbox.js +41 -17
  10. package/components/config.js +1 -1
  11. package/components/content.js +25 -6
  12. package/components/data.js +31 -6
  13. package/components/gesture-controller.js +1 -1
  14. package/components/haptic.js +1 -1
  15. package/components/hardware-back-button.js +2 -2
  16. package/components/header.js +13 -8
  17. package/components/helpers.js +3 -6
  18. package/components/icon.js +269 -201
  19. package/components/index.js +1 -1
  20. package/components/index2.js +1 -1
  21. package/components/index3.js +3 -5
  22. package/components/index4.js +1 -1
  23. package/components/index5.js +2 -2
  24. package/components/index6.js +28 -3
  25. package/components/index7.js +163 -27
  26. package/components/index8.js +1 -1
  27. package/components/index9.js +3 -163
  28. package/components/input-shims.js +25 -2
  29. package/components/input.utils.js +2 -2
  30. package/components/ion-accordion-group.js +21 -8
  31. package/components/ion-accordion.js +33 -15
  32. package/components/ion-app.js +8 -7
  33. package/components/ion-avatar.js +3 -5
  34. package/components/ion-back-button.js +13 -14
  35. package/components/ion-badge.js +3 -6
  36. package/components/ion-breadcrumb.js +23 -21
  37. package/components/ion-breadcrumbs.js +15 -11
  38. package/components/ion-card-content.js +3 -5
  39. package/components/ion-card-header.js +8 -6
  40. package/components/ion-card-subtitle.js +3 -6
  41. package/components/ion-card-title.js +3 -6
  42. package/components/ion-card.js +17 -12
  43. package/components/ion-chip.js +9 -6
  44. package/components/ion-col.js +2 -27
  45. package/components/ion-datetime-button.js +17 -15
  46. package/components/ion-datetime.js +231 -132
  47. package/components/ion-fab-button.js +38 -21
  48. package/components/ion-fab-list.js +8 -3
  49. package/components/ion-fab.js +11 -5
  50. package/components/ion-footer.js +14 -9
  51. package/components/ion-grid.js +5 -3
  52. package/components/ion-img.js +2 -7
  53. package/components/ion-infinite-scroll-content.js +3 -7
  54. package/components/ion-infinite-scroll.js +28 -7
  55. package/components/ion-input-otp.d.ts +11 -0
  56. package/components/ion-input-otp.js +684 -0
  57. package/components/ion-input-password-toggle.js +12 -14
  58. package/components/ion-input.js +82 -54
  59. package/components/ion-item-divider.js +12 -8
  60. package/components/ion-item-group.js +4 -6
  61. package/components/ion-item-option.js +17 -15
  62. package/components/ion-item-options.js +8 -6
  63. package/components/ion-item-sliding.js +9 -6
  64. package/components/ion-loading.js +44 -28
  65. package/components/ion-menu-button.js +18 -13
  66. package/components/ion-menu-toggle.js +12 -8
  67. package/components/ion-menu.js +54 -16
  68. package/components/ion-nav-link.js +8 -8
  69. package/components/ion-nav.js +10 -13
  70. package/components/ion-note.js +5 -8
  71. package/components/ion-picker-legacy.js +48 -28
  72. package/components/ion-progress-bar.js +22 -8
  73. package/components/ion-range.js +115 -32
  74. package/components/ion-refresher-content.js +3 -7
  75. package/components/ion-refresher.js +57 -9
  76. package/components/ion-reorder-group.js +27 -10
  77. package/components/ion-reorder.js +5 -7
  78. package/components/ion-route-redirect.js +0 -2
  79. package/components/ion-route.js +9 -7
  80. package/components/ion-router-link.js +10 -12
  81. package/components/ion-router-outlet.js +13 -11
  82. package/components/ion-router.js +20 -1
  83. package/components/ion-row.js +3 -4
  84. package/components/ion-searchbar.js +83 -36
  85. package/components/ion-segment-button.js +23 -14
  86. package/components/ion-segment-content.js +4 -5
  87. package/components/ion-segment-view.js +8 -8
  88. package/components/ion-segment.js +25 -14
  89. package/components/ion-select-option.js +6 -5
  90. package/components/ion-select.js +70 -36
  91. package/components/ion-skeleton-text.js +7 -5
  92. package/components/ion-split-pane.js +14 -9
  93. package/components/ion-tab-bar.js +10 -9
  94. package/components/ion-tab-button.js +13 -15
  95. package/components/ion-tab.js +6 -9
  96. package/components/ion-tabs.js +6 -7
  97. package/components/ion-text.js +4 -6
  98. package/components/ion-textarea.js +73 -37
  99. package/components/ion-thumbnail.js +3 -4
  100. package/components/ion-toast.js +63 -41
  101. package/components/ion-toggle.js +56 -25
  102. package/components/ionic-global.js +1 -1
  103. package/components/item.js +49 -22
  104. package/components/keyboard-controller.js +2 -2
  105. package/components/keyboard.js +134 -69
  106. package/components/keyboard2.js +69 -134
  107. package/components/label.js +5 -9
  108. package/components/list-header.js +5 -9
  109. package/components/list.js +7 -7
  110. package/components/modal.js +630 -217
  111. package/components/notch-controller.js +1 -1
  112. package/components/overlays.js +3 -3
  113. package/components/picker-column-option.js +21 -8
  114. package/components/picker-column.js +48 -15
  115. package/components/picker-column2.js +9 -12
  116. package/components/picker.js +3 -5
  117. package/components/popover.js +139 -46
  118. package/components/radio-group.js +12 -12
  119. package/components/radio.js +31 -17
  120. package/components/refresher.utils.js +2 -2
  121. package/components/ripple-effect.js +12 -4
  122. package/components/select-modal.js +7 -12
  123. package/components/select-popover.js +8 -11
  124. package/components/spinner.js +6 -7
  125. package/components/swipe-back.js +1 -1
  126. package/components/title.js +5 -9
  127. package/components/toolbar.js +5 -8
  128. package/css/core.css +1 -1
  129. package/css/core.css.map +1 -1
  130. package/css/display.css +1 -1
  131. package/css/display.css.map +1 -1
  132. package/css/flex-utils.css +1 -1
  133. package/css/flex-utils.css.map +1 -1
  134. package/css/global.bundle.css +1 -1
  135. package/css/global.bundle.css.map +1 -1
  136. package/css/ionic.bundle.css +1 -1
  137. package/css/ionic.bundle.css.map +1 -1
  138. package/css/structure.css +1 -1
  139. package/css/structure.css.map +1 -1
  140. package/css/utils.bundle.css +1 -1
  141. package/css/utils.bundle.css.map +1 -1
  142. package/dist/cjs/{animation-ab2d3449.js → animation-ZJ1lAkZD.js} +2 -2
  143. package/dist/cjs/{app-globals-ddceb1f4.js → app-globals-77ZfuXXk.js} +1 -1
  144. package/dist/cjs/{button-active-43e2b419.js → button-active-BzZenWWH.js} +3 -3
  145. package/dist/cjs/{capacitor-c04564bf.js → capacitor-DmA66EwP.js} +1 -1
  146. package/dist/cjs/{config-f6225ae7.js → config-CKhELRRu.js} +1 -1
  147. package/dist/cjs/{data-94e8d392.js → data-DW6ofvJ8.js} +30 -5
  148. package/dist/cjs/{framework-delegate-862d9d00.js → framework-delegate-WkyjrnCx.js} +1 -1
  149. package/dist/cjs/{gesture-controller-9436f482.js → gesture-controller-dtqlP_q4.js} +1 -1
  150. package/dist/cjs/{haptic-f6b37aa3.js → haptic-ClPPQ_PS.js} +1 -1
  151. package/dist/cjs/{hardware-back-button-3d2b1004.js → hardware-back-button-BxdNu76F.js} +2 -2
  152. package/dist/cjs/{helpers-8a48fdea.js → helpers-DgwmcYAu.js} +2 -5
  153. package/dist/cjs/{index-1eff7149.js → index-BzEyuIww.js} +6 -7
  154. package/dist/cjs/{index-ee07ed59.js → index-CAvQ7Tka.js} +3 -4
  155. package/dist/cjs/{index-31b07b9c.js → index-Cc5PNMyz.js} +3 -3
  156. package/dist/cjs/{index-a96d31ae.js → index-D24wggHR.js} +9 -9
  157. package/dist/cjs/{index-2e236a04.js → index-DNh170BW.js} +1710 -754
  158. package/dist/cjs/index-DqmRDbxg.js +58 -0
  159. package/dist/cjs/{index-dbe01e08.js → index-bGpoPC4u.js} +3 -3
  160. package/dist/cjs/index.cjs.js +19 -24
  161. package/dist/cjs/{input-shims-415be7ee.js → input-shims-CLI_OrmU.js} +29 -6
  162. package/dist/cjs/{input.utils-a7957fd6.js → input.utils-B2hZ5tX6.js} +3 -3
  163. package/dist/cjs/ion-accordion_2.cjs.entry.js +55 -27
  164. package/dist/cjs/ion-action-sheet.cjs.entry.js +57 -47
  165. package/dist/cjs/ion-alert.cjs.entry.js +63 -51
  166. package/dist/cjs/ion-app_8.cjs.entry.js +122 -90
  167. package/dist/cjs/ion-avatar_3.cjs.entry.js +9 -18
  168. package/dist/cjs/ion-back-button.cjs.entry.js +19 -23
  169. package/dist/cjs/ion-backdrop.cjs.entry.js +13 -9
  170. package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +38 -35
  171. package/dist/cjs/ion-button_2.cjs.entry.js +367 -280
  172. package/dist/cjs/ion-card_5.cjs.entry.js +32 -36
  173. package/dist/cjs/ion-checkbox.cjs.entry.js +44 -23
  174. package/dist/cjs/ion-chip.cjs.entry.js +11 -11
  175. package/dist/cjs/ion-col_3.cjs.entry.js +9 -36
  176. package/dist/cjs/ion-datetime-button.cjs.entry.js +23 -24
  177. package/dist/cjs/ion-datetime_3.cjs.entry.js +348 -236
  178. package/dist/cjs/ion-fab_3.cjs.entry.js +57 -32
  179. package/dist/cjs/ion-img.cjs.entry.js +4 -12
  180. package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +36 -22
  181. package/dist/cjs/ion-input-otp.cjs.entry.js +646 -0
  182. package/dist/cjs/ion-input-password-toggle.cjs.entry.js +17 -22
  183. package/dist/cjs/ion-input.cjs.entry.js +87 -62
  184. package/dist/cjs/ion-item-option_3.cjs.entry.js +38 -34
  185. package/dist/cjs/ion-item_8.cjs.entry.js +88 -72
  186. package/dist/cjs/ion-loading.cjs.entry.js +54 -41
  187. package/dist/cjs/ion-menu_3.cjs.entry.js +104 -60
  188. package/dist/cjs/ion-modal.cjs.entry.js +644 -234
  189. package/dist/cjs/ion-nav_2.cjs.entry.js +29 -35
  190. package/dist/cjs/ion-picker-column-option.cjs.entry.js +24 -14
  191. package/dist/cjs/ion-picker-column.cjs.entry.js +52 -22
  192. package/dist/cjs/ion-picker.cjs.entry.js +4 -9
  193. package/dist/cjs/ion-popover.cjs.entry.js +147 -57
  194. package/dist/cjs/ion-progress-bar.cjs.entry.js +25 -14
  195. package/dist/cjs/ion-radio_2.cjs.entry.js +46 -35
  196. package/dist/cjs/ion-range.cjs.entry.js +123 -43
  197. package/dist/cjs/ion-refresher_2.cjs.entry.js +74 -33
  198. package/dist/cjs/ion-reorder_2.cjs.entry.js +37 -25
  199. package/dist/cjs/ion-ripple-effect.cjs.entry.js +13 -8
  200. package/dist/cjs/ion-route_4.cjs.entry.js +53 -39
  201. package/dist/cjs/ion-searchbar.cjs.entry.js +90 -46
  202. package/dist/cjs/ion-segment-content.cjs.entry.js +4 -7
  203. package/dist/cjs/ion-segment-view.cjs.entry.js +8 -10
  204. package/dist/cjs/ion-segment_2.cjs.entry.js +54 -37
  205. package/dist/cjs/ion-select-modal.cjs.entry.js +15 -23
  206. package/dist/cjs/ion-select_3.cjs.entry.js +94 -65
  207. package/dist/cjs/ion-spinner.cjs.entry.js +11 -15
  208. package/dist/cjs/ion-split-pane.cjs.entry.js +16 -14
  209. package/dist/cjs/ion-tab-bar_2.cjs.entry.js +30 -34
  210. package/dist/cjs/ion-tab_2.cjs.entry.js +13 -20
  211. package/dist/cjs/ion-text.cjs.entry.js +6 -11
  212. package/dist/cjs/ion-textarea.cjs.entry.js +78 -45
  213. package/dist/cjs/ion-toast.cjs.entry.js +84 -65
  214. package/dist/cjs/ion-toggle.cjs.entry.js +63 -35
  215. package/dist/cjs/{ionic-global-6dea5a96.js → ionic-global-UI5YPSi-.js} +3 -4
  216. package/dist/cjs/ionic.cjs.js +8 -9
  217. package/dist/cjs/{ios.transition-a131cd4d.js → ios.transition-DEitrLlG.js} +5 -6
  218. package/dist/cjs/{keyboard-0272231f.js → keyboard-UuAS4D_9.js} +1 -1
  219. package/dist/cjs/{keyboard-controller-c05e747a.js → keyboard-controller-GXBiBRKS.js} +2 -2
  220. package/dist/cjs/{keyboard-af1bb365.js → keyboard-hHzlEQpk.js} +3 -3
  221. package/dist/cjs/loader.cjs.js +4 -7
  222. package/dist/cjs/{md.transition-e018ebe5.js → md.transition-BHtGC-Wg.js} +5 -6
  223. package/dist/cjs/{notch-controller-09b7f358.js → notch-controller-Bf5Rr4R5.js} +2 -2
  224. package/dist/cjs/{overlays-4c291a05.js → overlays-CglR7j-u.js} +7 -7
  225. package/dist/cjs/{status-tap-f1acefac.js → status-tap-D9YPr62n.js} +3 -4
  226. package/dist/cjs/{swipe-back-442ca3d7.js → swipe-back-Ck8mDs0g.js} +5 -5
  227. package/dist/collection/collection-manifest.json +3 -2
  228. package/dist/collection/components/accordion/accordion.js +43 -13
  229. package/dist/collection/components/accordion-group/accordion-group.js +35 -8
  230. package/dist/collection/components/action-sheet/action-sheet.js +95 -43
  231. package/dist/collection/components/alert/alert.js +104 -45
  232. package/dist/collection/components/app/app.js +8 -3
  233. package/dist/collection/components/back-button/back-button.js +30 -14
  234. package/dist/collection/components/backdrop/backdrop.js +18 -3
  235. package/dist/collection/components/badge/badge.js +3 -4
  236. package/dist/collection/components/breadcrumb/breadcrumb.js +57 -26
  237. package/dist/collection/components/breadcrumbs/breadcrumbs.js +24 -10
  238. package/dist/collection/components/button/button.js +97 -36
  239. package/dist/collection/components/buttons/buttons.js +15 -1
  240. package/dist/collection/components/card/card.js +44 -16
  241. package/dist/collection/components/card-header/card-header.js +11 -3
  242. package/dist/collection/components/card-subtitle/card-subtitle.js +3 -4
  243. package/dist/collection/components/card-title/card-title.js +3 -4
  244. package/dist/collection/components/checkbox/checkbox.js +74 -24
  245. package/dist/collection/components/chip/chip.js +15 -4
  246. package/dist/collection/components/col/col.js +72 -50
  247. package/dist/collection/components/content/content.js +43 -9
  248. package/dist/collection/components/datetime/datetime.ios.css +7 -2
  249. package/dist/collection/components/datetime/datetime.js +345 -153
  250. package/dist/collection/components/datetime/datetime.md.css +9 -3
  251. package/dist/collection/components/datetime/utils/data.js +29 -4
  252. package/dist/collection/components/datetime/utils/state.js +1 -0
  253. package/dist/collection/components/datetime-button/datetime-button.js +21 -11
  254. package/dist/collection/components/fab/fab.js +21 -6
  255. package/dist/collection/components/fab-button/fab-button.js +76 -28
  256. package/dist/collection/components/fab-list/fab-list.js +12 -2
  257. package/dist/collection/components/footer/footer.js +16 -5
  258. package/dist/collection/components/grid/grid.js +6 -1
  259. package/dist/collection/components/header/header.js +15 -4
  260. package/dist/collection/components/img/img.js +6 -6
  261. package/dist/collection/components/infinite-scroll/infinite-scroll.js +35 -7
  262. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +6 -4
  263. package/dist/collection/components/input/input.ios.css +1 -1
  264. package/dist/collection/components/input/input.js +178 -79
  265. package/dist/collection/components/input/input.md.css +1 -1
  266. package/dist/collection/components/input-otp/input-otp-interface.js +1 -0
  267. package/dist/collection/components/input-otp/input-otp.ios.css +381 -0
  268. package/dist/collection/components/input-otp/input-otp.js +1056 -0
  269. package/dist/collection/components/input-otp/input-otp.md.css +381 -0
  270. package/dist/collection/components/input-password-toggle/input-password-toggle.js +19 -11
  271. package/dist/collection/components/item/item.js +84 -28
  272. package/dist/collection/components/item-divider/item-divider.js +15 -5
  273. package/dist/collection/components/item-group/item-group.js +1 -1
  274. package/dist/collection/components/item-option/item-option.js +38 -18
  275. package/dist/collection/components/item-options/item-options.js +8 -2
  276. package/dist/collection/components/item-sliding/item-sliding.js +9 -3
  277. package/dist/collection/components/label/label.js +8 -6
  278. package/dist/collection/components/list/list.js +10 -4
  279. package/dist/collection/components/list-header/list-header.js +8 -8
  280. package/dist/collection/components/loading/loading.js +96 -40
  281. package/dist/collection/components/menu/menu.js +104 -29
  282. package/dist/collection/components/menu-button/menu-button.js +29 -12
  283. package/dist/collection/components/menu-toggle/menu-toggle.js +16 -7
  284. package/dist/collection/components/modal/animations/ios.enter.js +3 -43
  285. package/dist/collection/components/modal/animations/ios.leave.js +4 -26
  286. package/dist/collection/components/modal/animations/ios.transition.js +152 -0
  287. package/dist/collection/components/modal/animations/md.enter.js +2 -42
  288. package/dist/collection/components/modal/animations/md.leave.js +2 -24
  289. package/dist/collection/components/modal/gestures/sheet.js +122 -29
  290. package/dist/collection/components/modal/modal.ios.css +0 -10
  291. package/dist/collection/components/modal/modal.js +446 -69
  292. package/dist/collection/components/nav/nav.js +25 -12
  293. package/dist/collection/components/nav-link/nav-link.js +19 -9
  294. package/dist/collection/components/note/note.js +5 -6
  295. package/dist/collection/components/picker-column/picker-column.js +56 -14
  296. package/dist/collection/components/picker-column-option/picker-column-option.js +27 -6
  297. package/dist/collection/components/picker-legacy/picker.js +93 -33
  298. package/dist/collection/components/picker-legacy-column/picker-column.js +7 -5
  299. package/dist/collection/components/popover/popover.js +227 -70
  300. package/dist/collection/components/progress-bar/progress-bar.js +33 -7
  301. package/dist/collection/components/radio/radio.js +49 -19
  302. package/dist/collection/components/radio-group/radio-group.js +27 -13
  303. package/dist/collection/components/range/range.js +157 -39
  304. package/dist/collection/components/refresher/refresher.js +69 -7
  305. package/dist/collection/components/refresher-content/refresher-content.js +13 -9
  306. package/dist/collection/components/reorder/reorder.js +1 -1
  307. package/dist/collection/components/reorder-group/reorder-group.js +86 -9
  308. package/dist/collection/components/ripple-effect/ripple-effect.js +13 -2
  309. package/dist/collection/components/route/route.js +24 -9
  310. package/dist/collection/components/route-redirect/route-redirect.js +6 -6
  311. package/dist/collection/components/router/router.js +29 -3
  312. package/dist/collection/components/router-link/router-link.js +26 -14
  313. package/dist/collection/components/router-outlet/router-outlet.js +25 -9
  314. package/dist/collection/components/row/row.js +1 -1
  315. package/dist/collection/components/searchbar/searchbar.js +147 -54
  316. package/dist/collection/components/segment/segment.js +40 -15
  317. package/dist/collection/components/segment-button/segment-button.js +34 -13
  318. package/dist/collection/components/segment-content/segment-content.css +1 -0
  319. package/dist/collection/components/segment-content/segment-content.js +1 -1
  320. package/dist/collection/components/segment-view/segment-view.js +8 -4
  321. package/dist/collection/components/select/select.js +129 -49
  322. package/dist/collection/components/select-modal/select-modal.js +10 -5
  323. package/dist/collection/components/select-option/select-option.js +10 -4
  324. package/dist/collection/components/select-popover/select-popover.js +19 -9
  325. package/dist/collection/components/skeleton-text/skeleton-text.js +8 -3
  326. package/dist/collection/components/spinner/spinner.js +16 -8
  327. package/dist/collection/components/split-pane/split-pane.js +19 -6
  328. package/dist/collection/components/tab/tab.js +16 -9
  329. package/dist/collection/components/tab-bar/tab-bar.js +16 -7
  330. package/dist/collection/components/tab-button/tab-button.js +34 -18
  331. package/dist/collection/components/tabs/tabs.js +6 -4
  332. package/dist/collection/components/text/text.js +5 -6
  333. package/dist/collection/components/textarea/textarea.js +154 -59
  334. package/dist/collection/components/thumbnail/thumbnail.js +1 -1
  335. package/dist/collection/components/title/title.js +8 -8
  336. package/dist/collection/components/toast/toast.js +128 -55
  337. package/dist/collection/components/toggle/toggle.js +86 -28
  338. package/dist/collection/components/toolbar/toolbar.js +5 -4
  339. package/dist/collection/utils/input-shims/hacks/scroll-assist.js +23 -0
  340. package/dist/collection/utils/test/playwright/page/utils/set-content.js +20 -2
  341. package/dist/docs.d.ts +8 -0
  342. package/dist/docs.json +5522 -1831
  343. package/dist/esm/{animation-8b25e105.js → animation-BvhAtgca.js} +2 -2
  344. package/dist/esm/{app-globals-dbdbb3df.js → app-globals-CvLYUxE9.js} +1 -1
  345. package/dist/esm/{button-active-90f1dbc4.js → button-active-DBUPuLNw.js} +3 -3
  346. package/dist/esm/{capacitor-59395cbd.js → capacitor-CFERIeaU.js} +1 -1
  347. package/dist/esm/{config-9898ed97.js → config-Dx_6wPIJ.js} +1 -1
  348. package/dist/esm/{data-0d7ea6eb.js → data-CKHMWxfe.js} +31 -6
  349. package/dist/esm/{framework-delegate-56b467ad.js → framework-delegate-BLEBgH06.js} +1 -1
  350. package/dist/esm/{gesture-controller-314a54f6.js → gesture-controller-BTEOs1at.js} +1 -1
  351. package/dist/esm/{haptic-ac164e4c.js → haptic-DzAMWJuk.js} +2 -2
  352. package/dist/esm/{hardware-back-button-a7eb8233.js → hardware-back-button-Dhbd-23H.js} +2 -2
  353. package/dist/esm/{helpers-d94bc8ad.js → helpers-8KSQQGQy.js} +3 -6
  354. package/dist/esm/{index-527b9e34.js → index-4DxY6_gG.js} +1703 -735
  355. package/dist/esm/{index-9a17db3d.js → index-7UbSlv7N.js} +3 -3
  356. package/dist/esm/{index-be190feb.js → index-C6WeRr09.js} +3 -3
  357. package/dist/esm/{index-18f31305.js → index-CXSTcaAW.js} +6 -6
  358. package/dist/esm/{index-39782642.js → index-CfgBF1SE.js} +4 -6
  359. package/dist/esm/index-DV3sJJW8.js +32 -0
  360. package/dist/esm/{index-68c0d151.js → index-Dp7GXH1z.js} +4 -5
  361. package/dist/esm/index.js +17 -18
  362. package/dist/esm/{input-shims-279903e2.js → input-shims-C4KDnhxb.js} +29 -6
  363. package/dist/esm/{input.utils-40504d6d.js → input.utils-be4gBvVY.js} +3 -3
  364. package/dist/esm/ion-accordion_2.entry.js +53 -23
  365. package/dist/esm/ion-action-sheet.entry.js +57 -45
  366. package/dist/esm/ion-alert.entry.js +61 -47
  367. package/dist/esm/ion-app_8.entry.js +103 -69
  368. package/dist/esm/ion-avatar_3.entry.js +9 -16
  369. package/dist/esm/ion-back-button.entry.js +15 -17
  370. package/dist/esm/ion-backdrop.entry.js +13 -7
  371. package/dist/esm/ion-breadcrumb_2.entry.js +38 -33
  372. package/dist/esm/ion-button_2.entry.js +364 -275
  373. package/dist/esm/ion-card_5.entry.js +32 -34
  374. package/dist/esm/ion-checkbox.entry.js +44 -21
  375. package/dist/esm/ion-chip.entry.js +11 -9
  376. package/dist/esm/ion-col_3.entry.js +9 -34
  377. package/dist/esm/ion-datetime-button.entry.js +19 -18
  378. package/dist/esm/ion-datetime_3.entry.js +288 -174
  379. package/dist/esm/ion-fab_3.entry.js +57 -30
  380. package/dist/esm/ion-img.entry.js +4 -10
  381. package/dist/esm/ion-infinite-scroll_2.entry.js +34 -18
  382. package/dist/esm/ion-input-otp.entry.js +644 -0
  383. package/dist/esm/ion-input-password-toggle.entry.js +13 -16
  384. package/dist/esm/ion-input.entry.js +87 -60
  385. package/dist/esm/ion-item-option_3.entry.js +37 -31
  386. package/dist/esm/ion-item_8.entry.js +87 -69
  387. package/dist/esm/ion-loading.entry.js +52 -37
  388. package/dist/esm/ion-menu_3.entry.js +92 -46
  389. package/dist/esm/ion-modal.entry.js +637 -225
  390. package/dist/esm/ion-nav_2.entry.js +18 -22
  391. package/dist/esm/ion-picker-column-option.entry.js +24 -12
  392. package/dist/esm/ion-picker-column.entry.js +52 -20
  393. package/dist/esm/ion-picker.entry.js +4 -7
  394. package/dist/esm/ion-popover.entry.js +144 -52
  395. package/dist/esm/ion-progress-bar.entry.js +24 -11
  396. package/dist/esm/ion-radio_2.entry.js +46 -33
  397. package/dist/esm/ion-range.entry.js +118 -36
  398. package/dist/esm/ion-refresher_2.entry.js +69 -26
  399. package/dist/esm/ion-reorder_2.entry.js +37 -23
  400. package/dist/esm/ion-ripple-effect.entry.js +13 -6
  401. package/dist/esm/ion-route_4.entry.js +37 -21
  402. package/dist/esm/ion-searchbar.entry.js +87 -41
  403. package/dist/esm/ion-segment-content.entry.js +4 -5
  404. package/dist/esm/ion-segment-view.entry.js +8 -8
  405. package/dist/esm/ion-segment_2.entry.js +51 -32
  406. package/dist/esm/ion-select-modal.entry.js +15 -21
  407. package/dist/esm/ion-select_3.entry.js +91 -60
  408. package/dist/esm/ion-spinner.entry.js +9 -11
  409. package/dist/esm/ion-split-pane.entry.js +14 -10
  410. package/dist/esm/ion-tab-bar_2.entry.js +29 -31
  411. package/dist/esm/ion-tab_2.entry.js +11 -16
  412. package/dist/esm/ion-text.entry.js +6 -9
  413. package/dist/esm/ion-textarea.entry.js +78 -43
  414. package/dist/esm/ion-toast.entry.js +70 -49
  415. package/dist/esm/ion-toggle.entry.js +63 -33
  416. package/dist/esm/{ionic-global-b26f573e.js → ionic-global-CTSyufhF.js} +1 -2
  417. package/dist/esm/ionic.js +7 -7
  418. package/dist/esm/{ios.transition-4047cb68.js → ios.transition-eAEkgVAv.js} +5 -6
  419. package/dist/esm/{keyboard-73175e24.js → keyboard-CUw4ekVy.js} +1 -1
  420. package/dist/esm/{keyboard-controller-ec5c2bfa.js → keyboard-controller-BaaVITYt.js} +2 -2
  421. package/dist/esm/{keyboard-52278bd7.js → keyboard-ywgs5efA.js} +3 -3
  422. package/dist/esm/loader.js +5 -6
  423. package/dist/esm/{md.transition-30ce8d1b.js → md.transition-D8TeJ_Pz.js} +5 -6
  424. package/dist/esm/{notch-controller-1a1f7183.js → notch-controller-lb417-kU.js} +2 -2
  425. package/dist/esm/{overlays-d99dcb0a.js → overlays-ZX_4-t_r.js} +7 -7
  426. package/dist/esm/{status-tap-42a8af65.js → status-tap-pATNXEtr.js} +3 -4
  427. package/dist/esm/{swipe-back-04123e7c.js → swipe-back-tV63j0BI.js} +5 -5
  428. package/dist/html.html-data.json +377 -1
  429. package/dist/index.js +1 -1
  430. package/dist/ionic/index.esm.js +1 -1
  431. package/dist/ionic/ionic.esm.js +1 -1
  432. package/dist/ionic/p-0f396661.entry.js +4 -0
  433. package/dist/ionic/p-1191a2d9.entry.js +4 -0
  434. package/dist/ionic/p-1488b7cc.entry.js +4 -0
  435. package/dist/ionic/p-148bdf18.entry.js +4 -0
  436. package/dist/ionic/p-16116947.entry.js +4 -0
  437. package/dist/ionic/p-19f80390.entry.js +4 -0
  438. package/dist/ionic/p-1bbd0a23.entry.js +4 -0
  439. package/dist/ionic/p-1d5b934a.entry.js +4 -0
  440. package/dist/ionic/p-29032e49.entry.js +4 -0
  441. package/dist/ionic/p-2cb0f39f.entry.js +4 -0
  442. package/dist/ionic/p-349fc921.entry.js +4 -0
  443. package/dist/ionic/p-3624b640.entry.js +4 -0
  444. package/dist/ionic/p-36a54836.entry.js +4 -0
  445. package/dist/ionic/p-39ed3212.entry.js +4 -0
  446. package/dist/ionic/p-3e426ddc.entry.js +4 -0
  447. package/dist/ionic/p-4DxY6_gG.js +5 -0
  448. package/dist/ionic/p-504e4c9c.entry.js +4 -0
  449. package/dist/ionic/p-528af4e6.entry.js +4 -0
  450. package/dist/ionic/p-54dec9b1.entry.js +4 -0
  451. package/dist/ionic/p-5c976c00.entry.js +4 -0
  452. package/dist/ionic/p-6383afc2.entry.js +4 -0
  453. package/dist/ionic/p-6701ab96.entry.js +4 -0
  454. package/dist/ionic/p-6d26651e.entry.js +4 -0
  455. package/dist/ionic/p-7a53f04c.entry.js +4 -0
  456. package/dist/ionic/p-7bac2c5f.entry.js +4 -0
  457. package/dist/ionic/p-7da05504.entry.js +4 -0
  458. package/dist/ionic/p-7fa27903.entry.js +4 -0
  459. package/dist/ionic/p-8d96a0cd.entry.js +4 -0
  460. package/dist/ionic/p-91d6ccb0.entry.js +4 -0
  461. package/dist/ionic/p-982fe1c4.entry.js +4 -0
  462. package/dist/ionic/p-9ddf2620.entry.js +4 -0
  463. package/dist/ionic/p-9eeaBrnk.js +4 -0
  464. package/dist/ionic/{p-8d2d39d0.js → p-B1xocg0A.js} +1 -1
  465. package/dist/ionic/{p-2bb55ebc.js → p-B5MDSrGg.js} +1 -1
  466. package/dist/ionic/p-BB-JoKGB.js +4 -0
  467. package/dist/ionic/{p-0f5e6225.js → p-BHGXdud8.js} +1 -1
  468. package/dist/ionic/p-BhNEp2QP.js +4 -0
  469. package/dist/ionic/p-Br3vSlYh.js +4 -0
  470. package/dist/ionic/p-C-Cct-6D.js +4 -0
  471. package/dist/ionic/p-C87oPMMF.js +4 -0
  472. package/dist/ionic/{p-aded71ec.js → p-C8d2ebIg.js} +1 -1
  473. package/dist/ionic/p-CIGNaXM1.js +4 -0
  474. package/dist/ionic/{p-89b61afc.js → p-CKvCXMs9.js} +1 -1
  475. package/dist/ionic/{p-95001a19.js → p-CSwZyt05.js} +1 -1
  476. package/dist/ionic/p-CWvl4RPO.js +4 -0
  477. package/dist/ionic/p-Cl0B-RWe.js +4 -0
  478. package/dist/ionic/p-CtWGkNnJ.js +4 -0
  479. package/dist/ionic/p-CvaZMP6T.js +4 -0
  480. package/dist/ionic/{p-27281edd.js → p-D13Eaw-8.js} +1 -1
  481. package/dist/ionic/p-D2fQU_qK.js +4 -0
  482. package/dist/ionic/p-D2re3d9B.js +4 -0
  483. package/dist/ionic/p-DAfH9Iif.js +4 -0
  484. package/dist/ionic/p-DCuOL88l.js +4 -0
  485. package/dist/ionic/p-DJKvq7vb.js +4 -0
  486. package/dist/ionic/p-DV3sJJW8.js +4 -0
  487. package/dist/ionic/{p-ed005d9c.js → p-DiZPU8BH.js} +1 -1
  488. package/dist/ionic/p-Dm_oBkW1.js +4 -0
  489. package/dist/ionic/{p-10a1bddc.js → p-EnaLTYYj.js} +1 -1
  490. package/dist/ionic/p-LaGjiAVo.js +4 -0
  491. package/dist/ionic/p-a81be128.entry.js +4 -0
  492. package/dist/ionic/p-ab33ef20.entry.js +4 -0
  493. package/dist/ionic/p-ac2be9d6.entry.js +4 -0
  494. package/dist/ionic/p-ac434970.entry.js +4 -0
  495. package/dist/ionic/p-afeb9df6.entry.js +4 -0
  496. package/dist/ionic/p-bc9f9032.entry.js +4 -0
  497. package/dist/ionic/p-bf81a468.entry.js +4 -0
  498. package/dist/ionic/p-c0d58c8e.entry.js +4 -0
  499. package/dist/ionic/p-c5210d3e.entry.js +4 -0
  500. package/dist/ionic/p-c575e7ce.entry.js +4 -0
  501. package/dist/ionic/p-c836e1a2.entry.js +4 -0
  502. package/dist/ionic/p-cb335dbc.entry.js +4 -0
  503. package/dist/ionic/p-d04d66fc.entry.js +4 -0
  504. package/dist/ionic/p-d3df6032.entry.js +4 -0
  505. package/dist/ionic/p-dbba38cf.entry.js +4 -0
  506. package/dist/ionic/p-e6c465ff.entry.js +4 -0
  507. package/dist/ionic/p-ec76fec4.entry.js +4 -0
  508. package/dist/ionic/p-ee2e35a6.entry.js +4 -0
  509. package/dist/ionic/p-f2884bc2.entry.js +4 -0
  510. package/dist/ionic/p-f456d176.entry.js +4 -0
  511. package/dist/ionic/p-f7db572a.entry.js +4 -0
  512. package/dist/ionic/p-f9eb54ee.entry.js +4 -0
  513. package/dist/ionic/svg/accessibility-outline.svg +1 -1
  514. package/dist/ionic/svg/accessibility-sharp.svg +1 -1
  515. package/dist/ionic/svg/accessibility.svg +1 -1
  516. package/dist/ionic/svg/add-circle-outline.svg +1 -1
  517. package/dist/ionic/svg/add-circle-sharp.svg +1 -1
  518. package/dist/ionic/svg/add-circle.svg +1 -1
  519. package/dist/ionic/svg/add-outline.svg +1 -1
  520. package/dist/ionic/svg/add-sharp.svg +1 -1
  521. package/dist/ionic/svg/add.svg +1 -1
  522. package/dist/ionic/svg/airplane-outline.svg +1 -1
  523. package/dist/ionic/svg/airplane-sharp.svg +1 -1
  524. package/dist/ionic/svg/airplane.svg +1 -1
  525. package/dist/ionic/svg/alarm-outline.svg +1 -1
  526. package/dist/ionic/svg/alarm-sharp.svg +1 -1
  527. package/dist/ionic/svg/alarm.svg +1 -1
  528. package/dist/ionic/svg/albums-outline.svg +1 -1
  529. package/dist/ionic/svg/albums-sharp.svg +1 -1
  530. package/dist/ionic/svg/albums.svg +1 -1
  531. package/dist/ionic/svg/alert-circle-outline.svg +1 -1
  532. package/dist/ionic/svg/alert-circle-sharp.svg +1 -1
  533. package/dist/ionic/svg/alert-circle.svg +1 -1
  534. package/dist/ionic/svg/alert-outline.svg +1 -1
  535. package/dist/ionic/svg/alert-sharp.svg +1 -1
  536. package/dist/ionic/svg/alert.svg +1 -1
  537. package/dist/ionic/svg/american-football-outline.svg +1 -1
  538. package/dist/ionic/svg/american-football-sharp.svg +1 -1
  539. package/dist/ionic/svg/american-football.svg +1 -1
  540. package/dist/ionic/svg/analytics-outline.svg +1 -1
  541. package/dist/ionic/svg/analytics-sharp.svg +1 -1
  542. package/dist/ionic/svg/analytics.svg +1 -1
  543. package/dist/ionic/svg/aperture-outline.svg +1 -1
  544. package/dist/ionic/svg/aperture-sharp.svg +1 -1
  545. package/dist/ionic/svg/aperture.svg +1 -1
  546. package/dist/ionic/svg/apps-outline.svg +1 -1
  547. package/dist/ionic/svg/apps-sharp.svg +1 -1
  548. package/dist/ionic/svg/apps.svg +1 -1
  549. package/dist/ionic/svg/archive-outline.svg +1 -1
  550. package/dist/ionic/svg/archive-sharp.svg +1 -1
  551. package/dist/ionic/svg/archive.svg +1 -1
  552. package/dist/ionic/svg/arrow-back-circle-outline.svg +1 -1
  553. package/dist/ionic/svg/arrow-back-circle-sharp.svg +1 -1
  554. package/dist/ionic/svg/arrow-back-circle.svg +1 -1
  555. package/dist/ionic/svg/arrow-back-outline.svg +1 -1
  556. package/dist/ionic/svg/arrow-back-sharp.svg +1 -1
  557. package/dist/ionic/svg/arrow-back.svg +1 -1
  558. package/dist/ionic/svg/arrow-down-circle-outline.svg +1 -1
  559. package/dist/ionic/svg/arrow-down-circle-sharp.svg +1 -1
  560. package/dist/ionic/svg/arrow-down-circle.svg +1 -1
  561. package/dist/ionic/svg/arrow-down-left-box-outline.svg +1 -0
  562. package/dist/ionic/svg/arrow-down-left-box-sharp.svg +1 -0
  563. package/dist/ionic/svg/arrow-down-left-box.svg +1 -0
  564. package/dist/ionic/svg/arrow-down-outline.svg +1 -1
  565. package/dist/ionic/svg/arrow-down-right-box-outline.svg +1 -0
  566. package/dist/ionic/svg/arrow-down-right-box-sharp.svg +1 -0
  567. package/dist/ionic/svg/arrow-down-right-box.svg +1 -0
  568. package/dist/ionic/svg/arrow-down-sharp.svg +1 -1
  569. package/dist/ionic/svg/arrow-down.svg +1 -1
  570. package/dist/ionic/svg/arrow-forward-circle-outline.svg +1 -1
  571. package/dist/ionic/svg/arrow-forward-circle-sharp.svg +1 -1
  572. package/dist/ionic/svg/arrow-forward-circle.svg +1 -1
  573. package/dist/ionic/svg/arrow-forward-outline.svg +1 -1
  574. package/dist/ionic/svg/arrow-forward-sharp.svg +1 -1
  575. package/dist/ionic/svg/arrow-forward.svg +1 -1
  576. package/dist/ionic/svg/arrow-redo-circle-outline.svg +1 -1
  577. package/dist/ionic/svg/arrow-redo-circle-sharp.svg +1 -1
  578. package/dist/ionic/svg/arrow-redo-circle.svg +1 -1
  579. package/dist/ionic/svg/arrow-redo-outline.svg +1 -1
  580. package/dist/ionic/svg/arrow-redo-sharp.svg +1 -1
  581. package/dist/ionic/svg/arrow-redo.svg +1 -1
  582. package/dist/ionic/svg/arrow-undo-circle-outline.svg +1 -1
  583. package/dist/ionic/svg/arrow-undo-circle-sharp.svg +1 -1
  584. package/dist/ionic/svg/arrow-undo-circle.svg +1 -1
  585. package/dist/ionic/svg/arrow-undo-outline.svg +1 -1
  586. package/dist/ionic/svg/arrow-undo-sharp.svg +1 -1
  587. package/dist/ionic/svg/arrow-undo.svg +1 -1
  588. package/dist/ionic/svg/arrow-up-circle-outline.svg +1 -1
  589. package/dist/ionic/svg/arrow-up-circle-sharp.svg +1 -1
  590. package/dist/ionic/svg/arrow-up-circle.svg +1 -1
  591. package/dist/ionic/svg/arrow-up-left-box-outline.svg +1 -0
  592. package/dist/ionic/svg/arrow-up-left-box-sharp.svg +1 -0
  593. package/dist/ionic/svg/arrow-up-left-box.svg +1 -0
  594. package/dist/ionic/svg/arrow-up-outline.svg +1 -1
  595. package/dist/ionic/svg/arrow-up-right-box-outline.svg +1 -0
  596. package/dist/ionic/svg/arrow-up-right-box-sharp.svg +1 -0
  597. package/dist/ionic/svg/arrow-up-right-box.svg +1 -0
  598. package/dist/ionic/svg/arrow-up-sharp.svg +1 -1
  599. package/dist/ionic/svg/arrow-up.svg +1 -1
  600. package/dist/ionic/svg/at-circle-outline.svg +1 -1
  601. package/dist/ionic/svg/at-circle-sharp.svg +1 -1
  602. package/dist/ionic/svg/at-circle.svg +1 -1
  603. package/dist/ionic/svg/at-outline.svg +1 -1
  604. package/dist/ionic/svg/at-sharp.svg +1 -1
  605. package/dist/ionic/svg/at.svg +1 -1
  606. package/dist/ionic/svg/attach-outline.svg +1 -1
  607. package/dist/ionic/svg/attach-sharp.svg +1 -1
  608. package/dist/ionic/svg/attach.svg +1 -1
  609. package/dist/ionic/svg/backspace-outline.svg +1 -1
  610. package/dist/ionic/svg/backspace-sharp.svg +1 -1
  611. package/dist/ionic/svg/backspace.svg +1 -1
  612. package/dist/ionic/svg/bag-add-outline.svg +1 -1
  613. package/dist/ionic/svg/bag-add-sharp.svg +1 -1
  614. package/dist/ionic/svg/bag-add.svg +1 -1
  615. package/dist/ionic/svg/bag-check-outline.svg +1 -1
  616. package/dist/ionic/svg/bag-check-sharp.svg +1 -1
  617. package/dist/ionic/svg/bag-check.svg +1 -1
  618. package/dist/ionic/svg/bag-handle-outline.svg +1 -1
  619. package/dist/ionic/svg/bag-handle-sharp.svg +1 -1
  620. package/dist/ionic/svg/bag-handle.svg +1 -1
  621. package/dist/ionic/svg/bag-outline.svg +1 -1
  622. package/dist/ionic/svg/bag-remove-outline.svg +1 -1
  623. package/dist/ionic/svg/bag-remove-sharp.svg +1 -1
  624. package/dist/ionic/svg/bag-remove.svg +1 -1
  625. package/dist/ionic/svg/bag-sharp.svg +1 -1
  626. package/dist/ionic/svg/bag.svg +1 -1
  627. package/dist/ionic/svg/balloon-outline.svg +1 -1
  628. package/dist/ionic/svg/balloon-sharp.svg +1 -1
  629. package/dist/ionic/svg/balloon.svg +1 -1
  630. package/dist/ionic/svg/ban-outline.svg +1 -1
  631. package/dist/ionic/svg/ban-sharp.svg +1 -1
  632. package/dist/ionic/svg/ban.svg +1 -1
  633. package/dist/ionic/svg/bandage-outline.svg +1 -1
  634. package/dist/ionic/svg/bandage-sharp.svg +1 -1
  635. package/dist/ionic/svg/bandage.svg +1 -1
  636. package/dist/ionic/svg/bar-chart-outline.svg +1 -1
  637. package/dist/ionic/svg/bar-chart-sharp.svg +1 -1
  638. package/dist/ionic/svg/bar-chart.svg +1 -1
  639. package/dist/ionic/svg/barbell-outline.svg +1 -1
  640. package/dist/ionic/svg/barbell-sharp.svg +1 -1
  641. package/dist/ionic/svg/barbell.svg +1 -1
  642. package/dist/ionic/svg/barcode-outline.svg +1 -1
  643. package/dist/ionic/svg/barcode-sharp.svg +1 -1
  644. package/dist/ionic/svg/barcode.svg +1 -1
  645. package/dist/ionic/svg/baseball-outline.svg +1 -1
  646. package/dist/ionic/svg/baseball-sharp.svg +1 -1
  647. package/dist/ionic/svg/baseball.svg +1 -1
  648. package/dist/ionic/svg/basket-outline.svg +1 -1
  649. package/dist/ionic/svg/basket-sharp.svg +1 -1
  650. package/dist/ionic/svg/basket.svg +1 -1
  651. package/dist/ionic/svg/basketball-outline.svg +1 -1
  652. package/dist/ionic/svg/basketball-sharp.svg +1 -1
  653. package/dist/ionic/svg/basketball.svg +1 -1
  654. package/dist/ionic/svg/battery-charging-outline.svg +1 -1
  655. package/dist/ionic/svg/battery-charging-sharp.svg +1 -1
  656. package/dist/ionic/svg/battery-charging.svg +1 -1
  657. package/dist/ionic/svg/battery-dead-outline.svg +1 -1
  658. package/dist/ionic/svg/battery-dead-sharp.svg +1 -1
  659. package/dist/ionic/svg/battery-dead.svg +1 -1
  660. package/dist/ionic/svg/battery-full-outline.svg +1 -1
  661. package/dist/ionic/svg/battery-full-sharp.svg +1 -1
  662. package/dist/ionic/svg/battery-full.svg +1 -1
  663. package/dist/ionic/svg/battery-half-outline.svg +1 -1
  664. package/dist/ionic/svg/battery-half-sharp.svg +1 -1
  665. package/dist/ionic/svg/battery-half.svg +1 -1
  666. package/dist/ionic/svg/beaker-outline.svg +1 -1
  667. package/dist/ionic/svg/beaker-sharp.svg +1 -1
  668. package/dist/ionic/svg/beaker.svg +1 -1
  669. package/dist/ionic/svg/bed-outline.svg +1 -1
  670. package/dist/ionic/svg/bed-sharp.svg +1 -1
  671. package/dist/ionic/svg/bed.svg +1 -1
  672. package/dist/ionic/svg/beer-outline.svg +1 -1
  673. package/dist/ionic/svg/beer-sharp.svg +1 -1
  674. package/dist/ionic/svg/beer.svg +1 -1
  675. package/dist/ionic/svg/bicycle-outline.svg +1 -1
  676. package/dist/ionic/svg/bicycle-sharp.svg +1 -1
  677. package/dist/ionic/svg/bicycle.svg +1 -1
  678. package/dist/ionic/svg/binoculars-outline.svg +1 -0
  679. package/dist/ionic/svg/binoculars-sharp.svg +1 -0
  680. package/dist/ionic/svg/binoculars.svg +1 -0
  681. package/dist/ionic/svg/bluetooth-outline.svg +1 -1
  682. package/dist/ionic/svg/bluetooth-sharp.svg +1 -1
  683. package/dist/ionic/svg/bluetooth.svg +1 -1
  684. package/dist/ionic/svg/boat-outline.svg +1 -1
  685. package/dist/ionic/svg/boat-sharp.svg +1 -1
  686. package/dist/ionic/svg/boat.svg +1 -1
  687. package/dist/ionic/svg/body-outline.svg +1 -1
  688. package/dist/ionic/svg/body-sharp.svg +1 -1
  689. package/dist/ionic/svg/body.svg +1 -1
  690. package/dist/ionic/svg/bonfire-outline.svg +1 -1
  691. package/dist/ionic/svg/bonfire-sharp.svg +1 -1
  692. package/dist/ionic/svg/bonfire.svg +1 -1
  693. package/dist/ionic/svg/book-outline.svg +1 -1
  694. package/dist/ionic/svg/book-sharp.svg +1 -1
  695. package/dist/ionic/svg/book.svg +1 -1
  696. package/dist/ionic/svg/bookmark-outline.svg +1 -1
  697. package/dist/ionic/svg/bookmark-sharp.svg +1 -1
  698. package/dist/ionic/svg/bookmark.svg +1 -1
  699. package/dist/ionic/svg/bookmarks-outline.svg +1 -1
  700. package/dist/ionic/svg/bookmarks-sharp.svg +1 -1
  701. package/dist/ionic/svg/bookmarks.svg +1 -1
  702. package/dist/ionic/svg/bowling-ball-outline.svg +1 -1
  703. package/dist/ionic/svg/bowling-ball-sharp.svg +1 -1
  704. package/dist/ionic/svg/bowling-ball.svg +1 -1
  705. package/dist/ionic/svg/briefcase-outline.svg +1 -1
  706. package/dist/ionic/svg/briefcase-sharp.svg +1 -1
  707. package/dist/ionic/svg/briefcase.svg +1 -1
  708. package/dist/ionic/svg/browsers-outline.svg +1 -1
  709. package/dist/ionic/svg/browsers-sharp.svg +1 -1
  710. package/dist/ionic/svg/browsers.svg +1 -1
  711. package/dist/ionic/svg/brush-outline.svg +1 -1
  712. package/dist/ionic/svg/brush-sharp.svg +1 -1
  713. package/dist/ionic/svg/brush.svg +1 -1
  714. package/dist/ionic/svg/bug-outline.svg +1 -1
  715. package/dist/ionic/svg/bug-sharp.svg +1 -1
  716. package/dist/ionic/svg/bug.svg +1 -1
  717. package/dist/ionic/svg/build-outline.svg +1 -1
  718. package/dist/ionic/svg/build-sharp.svg +1 -1
  719. package/dist/ionic/svg/build.svg +1 -1
  720. package/dist/ionic/svg/bulb-outline.svg +1 -1
  721. package/dist/ionic/svg/bulb-sharp.svg +1 -1
  722. package/dist/ionic/svg/bulb.svg +1 -1
  723. package/dist/ionic/svg/bus-outline.svg +1 -1
  724. package/dist/ionic/svg/bus-sharp.svg +1 -1
  725. package/dist/ionic/svg/bus.svg +1 -1
  726. package/dist/ionic/svg/business-outline.svg +1 -1
  727. package/dist/ionic/svg/business-sharp.svg +1 -1
  728. package/dist/ionic/svg/business.svg +1 -1
  729. package/dist/ionic/svg/cafe-outline.svg +1 -1
  730. package/dist/ionic/svg/cafe-sharp.svg +1 -1
  731. package/dist/ionic/svg/cafe.svg +1 -1
  732. package/dist/ionic/svg/calculator-outline.svg +1 -1
  733. package/dist/ionic/svg/calculator-sharp.svg +1 -1
  734. package/dist/ionic/svg/calculator.svg +1 -1
  735. package/dist/ionic/svg/calendar-clear-outline.svg +1 -1
  736. package/dist/ionic/svg/calendar-clear-sharp.svg +1 -1
  737. package/dist/ionic/svg/calendar-clear.svg +1 -1
  738. package/dist/ionic/svg/calendar-number-outline.svg +1 -1
  739. package/dist/ionic/svg/calendar-number-sharp.svg +1 -1
  740. package/dist/ionic/svg/calendar-number.svg +1 -1
  741. package/dist/ionic/svg/calendar-outline.svg +1 -1
  742. package/dist/ionic/svg/calendar-sharp.svg +1 -1
  743. package/dist/ionic/svg/calendar.svg +1 -1
  744. package/dist/ionic/svg/call-outline.svg +1 -1
  745. package/dist/ionic/svg/call-sharp.svg +1 -1
  746. package/dist/ionic/svg/call.svg +1 -1
  747. package/dist/ionic/svg/camera-outline.svg +1 -1
  748. package/dist/ionic/svg/camera-reverse-outline.svg +1 -1
  749. package/dist/ionic/svg/camera-reverse-sharp.svg +1 -1
  750. package/dist/ionic/svg/camera-reverse.svg +1 -1
  751. package/dist/ionic/svg/camera-sharp.svg +1 -1
  752. package/dist/ionic/svg/camera.svg +1 -1
  753. package/dist/ionic/svg/car-outline.svg +1 -1
  754. package/dist/ionic/svg/car-sharp.svg +1 -1
  755. package/dist/ionic/svg/car-sport-outline.svg +1 -1
  756. package/dist/ionic/svg/car-sport-sharp.svg +1 -1
  757. package/dist/ionic/svg/car-sport.svg +1 -1
  758. package/dist/ionic/svg/car.svg +1 -1
  759. package/dist/ionic/svg/card-outline.svg +1 -1
  760. package/dist/ionic/svg/card-sharp.svg +1 -1
  761. package/dist/ionic/svg/card.svg +1 -1
  762. package/dist/ionic/svg/caret-back-circle-outline.svg +1 -1
  763. package/dist/ionic/svg/caret-back-circle-sharp.svg +1 -1
  764. package/dist/ionic/svg/caret-back-circle.svg +1 -1
  765. package/dist/ionic/svg/caret-back-outline.svg +1 -1
  766. package/dist/ionic/svg/caret-back-sharp.svg +1 -1
  767. package/dist/ionic/svg/caret-back.svg +1 -1
  768. package/dist/ionic/svg/caret-down-circle-outline.svg +1 -1
  769. package/dist/ionic/svg/caret-down-circle-sharp.svg +1 -1
  770. package/dist/ionic/svg/caret-down-circle.svg +1 -1
  771. package/dist/ionic/svg/caret-down-outline.svg +1 -1
  772. package/dist/ionic/svg/caret-down-sharp.svg +1 -1
  773. package/dist/ionic/svg/caret-down.svg +1 -1
  774. package/dist/ionic/svg/caret-forward-circle-outline.svg +1 -1
  775. package/dist/ionic/svg/caret-forward-circle-sharp.svg +1 -1
  776. package/dist/ionic/svg/caret-forward-circle.svg +1 -1
  777. package/dist/ionic/svg/caret-forward-outline.svg +1 -1
  778. package/dist/ionic/svg/caret-forward-sharp.svg +1 -1
  779. package/dist/ionic/svg/caret-forward.svg +1 -1
  780. package/dist/ionic/svg/caret-up-circle-outline.svg +1 -1
  781. package/dist/ionic/svg/caret-up-circle-sharp.svg +1 -1
  782. package/dist/ionic/svg/caret-up-circle.svg +1 -1
  783. package/dist/ionic/svg/caret-up-outline.svg +1 -1
  784. package/dist/ionic/svg/caret-up-sharp.svg +1 -1
  785. package/dist/ionic/svg/caret-up.svg +1 -1
  786. package/dist/ionic/svg/cart-outline.svg +1 -1
  787. package/dist/ionic/svg/cart-sharp.svg +1 -1
  788. package/dist/ionic/svg/cart.svg +1 -1
  789. package/dist/ionic/svg/cash-outline.svg +1 -1
  790. package/dist/ionic/svg/cash-sharp.svg +1 -1
  791. package/dist/ionic/svg/cash.svg +1 -1
  792. package/dist/ionic/svg/cellular-outline.svg +1 -1
  793. package/dist/ionic/svg/cellular-sharp.svg +1 -1
  794. package/dist/ionic/svg/cellular.svg +1 -1
  795. package/dist/ionic/svg/chatbox-ellipses-outline.svg +1 -1
  796. package/dist/ionic/svg/chatbox-ellipses-sharp.svg +1 -1
  797. package/dist/ionic/svg/chatbox-ellipses.svg +1 -1
  798. package/dist/ionic/svg/chatbox-outline.svg +1 -1
  799. package/dist/ionic/svg/chatbox-sharp.svg +1 -1
  800. package/dist/ionic/svg/chatbox.svg +1 -1
  801. package/dist/ionic/svg/chatbubble-ellipses-outline.svg +1 -1
  802. package/dist/ionic/svg/chatbubble-ellipses-sharp.svg +1 -1
  803. package/dist/ionic/svg/chatbubble-ellipses.svg +1 -1
  804. package/dist/ionic/svg/chatbubble-outline.svg +1 -1
  805. package/dist/ionic/svg/chatbubble-sharp.svg +1 -1
  806. package/dist/ionic/svg/chatbubble.svg +1 -1
  807. package/dist/ionic/svg/chatbubbles-outline.svg +1 -1
  808. package/dist/ionic/svg/chatbubbles-sharp.svg +1 -1
  809. package/dist/ionic/svg/chatbubbles.svg +1 -1
  810. package/dist/ionic/svg/checkbox-outline.svg +1 -1
  811. package/dist/ionic/svg/checkbox-sharp.svg +1 -1
  812. package/dist/ionic/svg/checkbox.svg +1 -1
  813. package/dist/ionic/svg/checkmark-circle-outline.svg +1 -1
  814. package/dist/ionic/svg/checkmark-circle-sharp.svg +1 -1
  815. package/dist/ionic/svg/checkmark-circle.svg +1 -1
  816. package/dist/ionic/svg/checkmark-done-circle-outline.svg +1 -1
  817. package/dist/ionic/svg/checkmark-done-circle-sharp.svg +1 -1
  818. package/dist/ionic/svg/checkmark-done-circle.svg +1 -1
  819. package/dist/ionic/svg/checkmark-done-outline.svg +1 -1
  820. package/dist/ionic/svg/checkmark-done-sharp.svg +1 -1
  821. package/dist/ionic/svg/checkmark-done.svg +1 -1
  822. package/dist/ionic/svg/checkmark-outline.svg +1 -1
  823. package/dist/ionic/svg/checkmark-sharp.svg +1 -1
  824. package/dist/ionic/svg/checkmark.svg +1 -1
  825. package/dist/ionic/svg/chevron-back-circle-outline.svg +1 -1
  826. package/dist/ionic/svg/chevron-back-circle-sharp.svg +1 -1
  827. package/dist/ionic/svg/chevron-back-circle.svg +1 -1
  828. package/dist/ionic/svg/chevron-back-outline.svg +1 -1
  829. package/dist/ionic/svg/chevron-back-sharp.svg +1 -1
  830. package/dist/ionic/svg/chevron-back.svg +1 -1
  831. package/dist/ionic/svg/chevron-collapse-outline.svg +1 -1
  832. package/dist/ionic/svg/chevron-collapse-sharp.svg +1 -1
  833. package/dist/ionic/svg/chevron-collapse.svg +1 -1
  834. package/dist/ionic/svg/chevron-down-circle-outline.svg +1 -1
  835. package/dist/ionic/svg/chevron-down-circle-sharp.svg +1 -1
  836. package/dist/ionic/svg/chevron-down-circle.svg +1 -1
  837. package/dist/ionic/svg/chevron-down-outline.svg +1 -1
  838. package/dist/ionic/svg/chevron-down-sharp.svg +1 -1
  839. package/dist/ionic/svg/chevron-down.svg +1 -1
  840. package/dist/ionic/svg/chevron-expand-outline.svg +1 -1
  841. package/dist/ionic/svg/chevron-expand-sharp.svg +1 -1
  842. package/dist/ionic/svg/chevron-expand.svg +1 -1
  843. package/dist/ionic/svg/chevron-forward-circle-outline.svg +1 -1
  844. package/dist/ionic/svg/chevron-forward-circle-sharp.svg +1 -1
  845. package/dist/ionic/svg/chevron-forward-circle.svg +1 -1
  846. package/dist/ionic/svg/chevron-forward-outline.svg +1 -1
  847. package/dist/ionic/svg/chevron-forward-sharp.svg +1 -1
  848. package/dist/ionic/svg/chevron-forward.svg +1 -1
  849. package/dist/ionic/svg/chevron-up-circle-outline.svg +1 -1
  850. package/dist/ionic/svg/chevron-up-circle-sharp.svg +1 -1
  851. package/dist/ionic/svg/chevron-up-circle.svg +1 -1
  852. package/dist/ionic/svg/chevron-up-outline.svg +1 -1
  853. package/dist/ionic/svg/chevron-up-sharp.svg +1 -1
  854. package/dist/ionic/svg/chevron-up.svg +1 -1
  855. package/dist/ionic/svg/clipboard-outline.svg +1 -1
  856. package/dist/ionic/svg/clipboard-sharp.svg +1 -1
  857. package/dist/ionic/svg/clipboard.svg +1 -1
  858. package/dist/ionic/svg/close-circle-outline.svg +1 -1
  859. package/dist/ionic/svg/close-circle-sharp.svg +1 -1
  860. package/dist/ionic/svg/close-circle.svg +1 -1
  861. package/dist/ionic/svg/close-outline.svg +1 -1
  862. package/dist/ionic/svg/close-sharp.svg +1 -1
  863. package/dist/ionic/svg/close.svg +1 -1
  864. package/dist/ionic/svg/cloud-circle-outline.svg +1 -1
  865. package/dist/ionic/svg/cloud-circle-sharp.svg +1 -1
  866. package/dist/ionic/svg/cloud-circle.svg +1 -1
  867. package/dist/ionic/svg/cloud-done-outline.svg +1 -1
  868. package/dist/ionic/svg/cloud-done-sharp.svg +1 -1
  869. package/dist/ionic/svg/cloud-done.svg +1 -1
  870. package/dist/ionic/svg/cloud-download-outline.svg +1 -1
  871. package/dist/ionic/svg/cloud-download-sharp.svg +1 -1
  872. package/dist/ionic/svg/cloud-download.svg +1 -1
  873. package/dist/ionic/svg/cloud-offline-outline.svg +1 -1
  874. package/dist/ionic/svg/cloud-offline-sharp.svg +1 -1
  875. package/dist/ionic/svg/cloud-offline.svg +1 -1
  876. package/dist/ionic/svg/cloud-outline.svg +1 -1
  877. package/dist/ionic/svg/cloud-sharp.svg +1 -1
  878. package/dist/ionic/svg/cloud-upload-outline.svg +1 -1
  879. package/dist/ionic/svg/cloud-upload-sharp.svg +1 -1
  880. package/dist/ionic/svg/cloud-upload.svg +1 -1
  881. package/dist/ionic/svg/cloud.svg +1 -1
  882. package/dist/ionic/svg/cloudy-night-outline.svg +1 -1
  883. package/dist/ionic/svg/cloudy-night-sharp.svg +1 -1
  884. package/dist/ionic/svg/cloudy-night.svg +1 -1
  885. package/dist/ionic/svg/cloudy-outline.svg +1 -1
  886. package/dist/ionic/svg/cloudy-sharp.svg +1 -1
  887. package/dist/ionic/svg/cloudy.svg +1 -1
  888. package/dist/ionic/svg/code-download-outline.svg +1 -1
  889. package/dist/ionic/svg/code-download-sharp.svg +1 -1
  890. package/dist/ionic/svg/code-download.svg +1 -1
  891. package/dist/ionic/svg/code-outline.svg +1 -1
  892. package/dist/ionic/svg/code-sharp.svg +1 -1
  893. package/dist/ionic/svg/code-slash-outline.svg +1 -1
  894. package/dist/ionic/svg/code-slash-sharp.svg +1 -1
  895. package/dist/ionic/svg/code-slash.svg +1 -1
  896. package/dist/ionic/svg/code-working-outline.svg +1 -1
  897. package/dist/ionic/svg/code-working-sharp.svg +1 -1
  898. package/dist/ionic/svg/code-working.svg +1 -1
  899. package/dist/ionic/svg/code.svg +1 -1
  900. package/dist/ionic/svg/cog-outline.svg +1 -1
  901. package/dist/ionic/svg/cog-sharp.svg +1 -1
  902. package/dist/ionic/svg/cog.svg +1 -1
  903. package/dist/ionic/svg/color-fill-outline.svg +1 -1
  904. package/dist/ionic/svg/color-fill-sharp.svg +1 -1
  905. package/dist/ionic/svg/color-fill.svg +1 -1
  906. package/dist/ionic/svg/color-filter-outline.svg +1 -1
  907. package/dist/ionic/svg/color-filter-sharp.svg +1 -1
  908. package/dist/ionic/svg/color-filter.svg +1 -1
  909. package/dist/ionic/svg/color-palette-outline.svg +1 -1
  910. package/dist/ionic/svg/color-palette-sharp.svg +1 -1
  911. package/dist/ionic/svg/color-palette.svg +1 -1
  912. package/dist/ionic/svg/color-wand-outline.svg +1 -1
  913. package/dist/ionic/svg/color-wand-sharp.svg +1 -1
  914. package/dist/ionic/svg/color-wand.svg +1 -1
  915. package/dist/ionic/svg/compass-outline.svg +1 -1
  916. package/dist/ionic/svg/compass-sharp.svg +1 -1
  917. package/dist/ionic/svg/compass.svg +1 -1
  918. package/dist/ionic/svg/construct-outline.svg +1 -1
  919. package/dist/ionic/svg/construct-sharp.svg +1 -1
  920. package/dist/ionic/svg/construct.svg +1 -1
  921. package/dist/ionic/svg/contract-outline.svg +1 -1
  922. package/dist/ionic/svg/contract-sharp.svg +1 -1
  923. package/dist/ionic/svg/contract.svg +1 -1
  924. package/dist/ionic/svg/contrast-outline.svg +1 -1
  925. package/dist/ionic/svg/contrast-sharp.svg +1 -1
  926. package/dist/ionic/svg/contrast.svg +1 -1
  927. package/dist/ionic/svg/copy-outline.svg +1 -1
  928. package/dist/ionic/svg/copy-sharp.svg +1 -1
  929. package/dist/ionic/svg/copy.svg +1 -1
  930. package/dist/ionic/svg/create-outline.svg +1 -1
  931. package/dist/ionic/svg/create-sharp.svg +1 -1
  932. package/dist/ionic/svg/create.svg +1 -1
  933. package/dist/ionic/svg/crop-outline.svg +1 -1
  934. package/dist/ionic/svg/crop-sharp.svg +1 -1
  935. package/dist/ionic/svg/crop.svg +1 -1
  936. package/dist/ionic/svg/cube-outline.svg +1 -1
  937. package/dist/ionic/svg/cube-sharp.svg +1 -1
  938. package/dist/ionic/svg/cube.svg +1 -1
  939. package/dist/ionic/svg/cut-outline.svg +1 -1
  940. package/dist/ionic/svg/cut-sharp.svg +1 -1
  941. package/dist/ionic/svg/cut.svg +1 -1
  942. package/dist/ionic/svg/desktop-outline.svg +1 -1
  943. package/dist/ionic/svg/desktop-sharp.svg +1 -1
  944. package/dist/ionic/svg/desktop.svg +1 -1
  945. package/dist/ionic/svg/diamond-outline.svg +1 -1
  946. package/dist/ionic/svg/diamond-sharp.svg +1 -1
  947. package/dist/ionic/svg/diamond.svg +1 -1
  948. package/dist/ionic/svg/dice-outline.svg +1 -1
  949. package/dist/ionic/svg/dice-sharp.svg +1 -1
  950. package/dist/ionic/svg/dice.svg +1 -1
  951. package/dist/ionic/svg/disc-outline.svg +1 -1
  952. package/dist/ionic/svg/disc-sharp.svg +1 -1
  953. package/dist/ionic/svg/disc.svg +1 -1
  954. package/dist/ionic/svg/document-attach-outline.svg +1 -1
  955. package/dist/ionic/svg/document-attach-sharp.svg +1 -1
  956. package/dist/ionic/svg/document-attach.svg +1 -1
  957. package/dist/ionic/svg/document-lock-outline.svg +1 -1
  958. package/dist/ionic/svg/document-lock-sharp.svg +1 -1
  959. package/dist/ionic/svg/document-lock.svg +1 -1
  960. package/dist/ionic/svg/document-outline.svg +1 -1
  961. package/dist/ionic/svg/document-sharp.svg +1 -1
  962. package/dist/ionic/svg/document-text-outline.svg +1 -1
  963. package/dist/ionic/svg/document-text-sharp.svg +1 -1
  964. package/dist/ionic/svg/document-text.svg +1 -1
  965. package/dist/ionic/svg/document.svg +1 -1
  966. package/dist/ionic/svg/documents-outline.svg +1 -1
  967. package/dist/ionic/svg/documents-sharp.svg +1 -1
  968. package/dist/ionic/svg/documents.svg +1 -1
  969. package/dist/ionic/svg/download-outline.svg +1 -1
  970. package/dist/ionic/svg/download-sharp.svg +1 -1
  971. package/dist/ionic/svg/download.svg +1 -1
  972. package/dist/ionic/svg/duplicate-outline.svg +1 -1
  973. package/dist/ionic/svg/duplicate-sharp.svg +1 -1
  974. package/dist/ionic/svg/duplicate.svg +1 -1
  975. package/dist/ionic/svg/ear-outline.svg +1 -1
  976. package/dist/ionic/svg/ear-sharp.svg +1 -1
  977. package/dist/ionic/svg/ear.svg +1 -1
  978. package/dist/ionic/svg/earth-outline.svg +1 -1
  979. package/dist/ionic/svg/earth-sharp.svg +1 -1
  980. package/dist/ionic/svg/earth.svg +1 -1
  981. package/dist/ionic/svg/easel-outline.svg +1 -1
  982. package/dist/ionic/svg/easel-sharp.svg +1 -1
  983. package/dist/ionic/svg/easel.svg +1 -1
  984. package/dist/ionic/svg/egg-outline.svg +1 -1
  985. package/dist/ionic/svg/egg-sharp.svg +1 -1
  986. package/dist/ionic/svg/egg.svg +1 -1
  987. package/dist/ionic/svg/ellipse-outline.svg +1 -1
  988. package/dist/ionic/svg/ellipse-sharp.svg +1 -1
  989. package/dist/ionic/svg/ellipse.svg +1 -1
  990. package/dist/ionic/svg/ellipsis-horizontal-circle-outline.svg +1 -1
  991. package/dist/ionic/svg/ellipsis-horizontal-circle-sharp.svg +1 -1
  992. package/dist/ionic/svg/ellipsis-horizontal-circle.svg +1 -1
  993. package/dist/ionic/svg/ellipsis-horizontal-outline.svg +1 -1
  994. package/dist/ionic/svg/ellipsis-horizontal-sharp.svg +1 -1
  995. package/dist/ionic/svg/ellipsis-horizontal.svg +1 -1
  996. package/dist/ionic/svg/ellipsis-vertical-circle-outline.svg +1 -1
  997. package/dist/ionic/svg/ellipsis-vertical-circle-sharp.svg +1 -1
  998. package/dist/ionic/svg/ellipsis-vertical-circle.svg +1 -1
  999. package/dist/ionic/svg/ellipsis-vertical-outline.svg +1 -1
  1000. package/dist/ionic/svg/ellipsis-vertical-sharp.svg +1 -1
  1001. package/dist/ionic/svg/ellipsis-vertical.svg +1 -1
  1002. package/dist/ionic/svg/enter-outline.svg +1 -1
  1003. package/dist/ionic/svg/enter-sharp.svg +1 -1
  1004. package/dist/ionic/svg/enter.svg +1 -1
  1005. package/dist/ionic/svg/exit-outline.svg +1 -1
  1006. package/dist/ionic/svg/exit-sharp.svg +1 -1
  1007. package/dist/ionic/svg/exit.svg +1 -1
  1008. package/dist/ionic/svg/expand-outline.svg +1 -1
  1009. package/dist/ionic/svg/expand-sharp.svg +1 -1
  1010. package/dist/ionic/svg/expand.svg +1 -1
  1011. package/dist/ionic/svg/extension-puzzle-outline.svg +1 -1
  1012. package/dist/ionic/svg/extension-puzzle-sharp.svg +1 -1
  1013. package/dist/ionic/svg/extension-puzzle.svg +1 -1
  1014. package/dist/ionic/svg/eye-off-outline.svg +1 -1
  1015. package/dist/ionic/svg/eye-off-sharp.svg +1 -1
  1016. package/dist/ionic/svg/eye-off.svg +1 -1
  1017. package/dist/ionic/svg/eye-outline.svg +1 -1
  1018. package/dist/ionic/svg/eye-sharp.svg +1 -1
  1019. package/dist/ionic/svg/eye.svg +1 -1
  1020. package/dist/ionic/svg/eyedrop-outline.svg +1 -1
  1021. package/dist/ionic/svg/eyedrop-sharp.svg +1 -1
  1022. package/dist/ionic/svg/eyedrop.svg +1 -1
  1023. package/dist/ionic/svg/fast-food-outline.svg +1 -1
  1024. package/dist/ionic/svg/fast-food-sharp.svg +1 -1
  1025. package/dist/ionic/svg/fast-food.svg +1 -1
  1026. package/dist/ionic/svg/female-outline.svg +1 -1
  1027. package/dist/ionic/svg/female-sharp.svg +1 -1
  1028. package/dist/ionic/svg/female.svg +1 -1
  1029. package/dist/ionic/svg/file-tray-full-outline.svg +1 -1
  1030. package/dist/ionic/svg/file-tray-full-sharp.svg +1 -1
  1031. package/dist/ionic/svg/file-tray-full.svg +1 -1
  1032. package/dist/ionic/svg/file-tray-outline.svg +1 -1
  1033. package/dist/ionic/svg/file-tray-sharp.svg +1 -1
  1034. package/dist/ionic/svg/file-tray-stacked-outline.svg +1 -1
  1035. package/dist/ionic/svg/file-tray-stacked-sharp.svg +1 -1
  1036. package/dist/ionic/svg/file-tray-stacked.svg +1 -1
  1037. package/dist/ionic/svg/file-tray.svg +1 -1
  1038. package/dist/ionic/svg/film-outline.svg +1 -1
  1039. package/dist/ionic/svg/film-sharp.svg +1 -1
  1040. package/dist/ionic/svg/film.svg +1 -1
  1041. package/dist/ionic/svg/filter-circle-outline.svg +1 -1
  1042. package/dist/ionic/svg/filter-circle-sharp.svg +1 -1
  1043. package/dist/ionic/svg/filter-circle.svg +1 -1
  1044. package/dist/ionic/svg/filter-outline.svg +1 -1
  1045. package/dist/ionic/svg/filter-sharp.svg +1 -1
  1046. package/dist/ionic/svg/filter.svg +1 -1
  1047. package/dist/ionic/svg/finger-print-outline.svg +1 -1
  1048. package/dist/ionic/svg/finger-print-sharp.svg +1 -1
  1049. package/dist/ionic/svg/finger-print.svg +1 -1
  1050. package/dist/ionic/svg/fish-outline.svg +1 -1
  1051. package/dist/ionic/svg/fish-sharp.svg +1 -1
  1052. package/dist/ionic/svg/fish.svg +1 -1
  1053. package/dist/ionic/svg/fitness-outline.svg +1 -1
  1054. package/dist/ionic/svg/fitness-sharp.svg +1 -1
  1055. package/dist/ionic/svg/fitness.svg +1 -1
  1056. package/dist/ionic/svg/flag-outline.svg +1 -1
  1057. package/dist/ionic/svg/flag-sharp.svg +1 -1
  1058. package/dist/ionic/svg/flag.svg +1 -1
  1059. package/dist/ionic/svg/flame-outline.svg +1 -1
  1060. package/dist/ionic/svg/flame-sharp.svg +1 -1
  1061. package/dist/ionic/svg/flame.svg +1 -1
  1062. package/dist/ionic/svg/flash-off-outline.svg +1 -1
  1063. package/dist/ionic/svg/flash-off-sharp.svg +1 -1
  1064. package/dist/ionic/svg/flash-off.svg +1 -1
  1065. package/dist/ionic/svg/flash-outline.svg +1 -1
  1066. package/dist/ionic/svg/flash-sharp.svg +1 -1
  1067. package/dist/ionic/svg/flash.svg +1 -1
  1068. package/dist/ionic/svg/flashlight-outline.svg +1 -1
  1069. package/dist/ionic/svg/flashlight-sharp.svg +1 -1
  1070. package/dist/ionic/svg/flashlight.svg +1 -1
  1071. package/dist/ionic/svg/flask-outline.svg +1 -1
  1072. package/dist/ionic/svg/flask-sharp.svg +1 -1
  1073. package/dist/ionic/svg/flask.svg +1 -1
  1074. package/dist/ionic/svg/flower-outline.svg +1 -1
  1075. package/dist/ionic/svg/flower-sharp.svg +1 -1
  1076. package/dist/ionic/svg/flower.svg +1 -1
  1077. package/dist/ionic/svg/folder-open-outline.svg +1 -1
  1078. package/dist/ionic/svg/folder-open-sharp.svg +1 -1
  1079. package/dist/ionic/svg/folder-open.svg +1 -1
  1080. package/dist/ionic/svg/folder-outline.svg +1 -1
  1081. package/dist/ionic/svg/folder-sharp.svg +1 -1
  1082. package/dist/ionic/svg/folder.svg +1 -1
  1083. package/dist/ionic/svg/football-outline.svg +1 -1
  1084. package/dist/ionic/svg/football-sharp.svg +1 -1
  1085. package/dist/ionic/svg/football.svg +1 -1
  1086. package/dist/ionic/svg/footsteps-outline.svg +1 -1
  1087. package/dist/ionic/svg/footsteps-sharp.svg +1 -1
  1088. package/dist/ionic/svg/footsteps.svg +1 -1
  1089. package/dist/ionic/svg/funnel-outline.svg +1 -1
  1090. package/dist/ionic/svg/funnel-sharp.svg +1 -1
  1091. package/dist/ionic/svg/funnel.svg +1 -1
  1092. package/dist/ionic/svg/game-controller-outline.svg +1 -1
  1093. package/dist/ionic/svg/game-controller-sharp.svg +1 -1
  1094. package/dist/ionic/svg/game-controller.svg +1 -1
  1095. package/dist/ionic/svg/gift-outline.svg +1 -1
  1096. package/dist/ionic/svg/gift-sharp.svg +1 -1
  1097. package/dist/ionic/svg/gift.svg +1 -1
  1098. package/dist/ionic/svg/git-branch-outline.svg +1 -1
  1099. package/dist/ionic/svg/git-branch-sharp.svg +1 -1
  1100. package/dist/ionic/svg/git-branch.svg +1 -1
  1101. package/dist/ionic/svg/git-commit-outline.svg +1 -1
  1102. package/dist/ionic/svg/git-commit-sharp.svg +1 -1
  1103. package/dist/ionic/svg/git-commit.svg +1 -1
  1104. package/dist/ionic/svg/git-compare-outline.svg +1 -1
  1105. package/dist/ionic/svg/git-compare-sharp.svg +1 -1
  1106. package/dist/ionic/svg/git-compare.svg +1 -1
  1107. package/dist/ionic/svg/git-merge-outline.svg +1 -1
  1108. package/dist/ionic/svg/git-merge-sharp.svg +1 -1
  1109. package/dist/ionic/svg/git-merge.svg +1 -1
  1110. package/dist/ionic/svg/git-network-outline.svg +1 -1
  1111. package/dist/ionic/svg/git-network-sharp.svg +1 -1
  1112. package/dist/ionic/svg/git-network.svg +1 -1
  1113. package/dist/ionic/svg/git-pull-request-outline.svg +1 -1
  1114. package/dist/ionic/svg/git-pull-request-sharp.svg +1 -1
  1115. package/dist/ionic/svg/git-pull-request.svg +1 -1
  1116. package/dist/ionic/svg/glasses-outline.svg +1 -1
  1117. package/dist/ionic/svg/glasses-sharp.svg +1 -1
  1118. package/dist/ionic/svg/glasses.svg +1 -1
  1119. package/dist/ionic/svg/globe-outline.svg +1 -1
  1120. package/dist/ionic/svg/globe-sharp.svg +1 -1
  1121. package/dist/ionic/svg/globe.svg +1 -1
  1122. package/dist/ionic/svg/golf-outline.svg +1 -1
  1123. package/dist/ionic/svg/golf-sharp.svg +1 -1
  1124. package/dist/ionic/svg/golf.svg +1 -1
  1125. package/dist/ionic/svg/grid-outline.svg +1 -1
  1126. package/dist/ionic/svg/grid-sharp.svg +1 -1
  1127. package/dist/ionic/svg/grid.svg +1 -1
  1128. package/dist/ionic/svg/hammer-outline.svg +1 -1
  1129. package/dist/ionic/svg/hammer-sharp.svg +1 -1
  1130. package/dist/ionic/svg/hammer.svg +1 -1
  1131. package/dist/ionic/svg/hand-left-outline.svg +1 -1
  1132. package/dist/ionic/svg/hand-left-sharp.svg +1 -1
  1133. package/dist/ionic/svg/hand-left.svg +1 -1
  1134. package/dist/ionic/svg/hand-right-outline.svg +1 -1
  1135. package/dist/ionic/svg/hand-right-sharp.svg +1 -1
  1136. package/dist/ionic/svg/hand-right.svg +1 -1
  1137. package/dist/ionic/svg/happy-outline.svg +1 -1
  1138. package/dist/ionic/svg/happy-sharp.svg +1 -1
  1139. package/dist/ionic/svg/happy.svg +1 -1
  1140. package/dist/ionic/svg/hardware-chip-outline.svg +1 -1
  1141. package/dist/ionic/svg/hardware-chip-sharp.svg +1 -1
  1142. package/dist/ionic/svg/hardware-chip.svg +1 -1
  1143. package/dist/ionic/svg/headset-outline.svg +1 -1
  1144. package/dist/ionic/svg/headset-sharp.svg +1 -1
  1145. package/dist/ionic/svg/headset.svg +1 -1
  1146. package/dist/ionic/svg/heart-circle-outline.svg +1 -1
  1147. package/dist/ionic/svg/heart-circle-sharp.svg +1 -1
  1148. package/dist/ionic/svg/heart-circle.svg +1 -1
  1149. package/dist/ionic/svg/heart-dislike-circle-outline.svg +1 -1
  1150. package/dist/ionic/svg/heart-dislike-circle-sharp.svg +1 -1
  1151. package/dist/ionic/svg/heart-dislike-circle.svg +1 -1
  1152. package/dist/ionic/svg/heart-dislike-outline.svg +1 -1
  1153. package/dist/ionic/svg/heart-dislike-sharp.svg +1 -1
  1154. package/dist/ionic/svg/heart-dislike.svg +1 -1
  1155. package/dist/ionic/svg/heart-half-outline.svg +1 -1
  1156. package/dist/ionic/svg/heart-half-sharp.svg +1 -1
  1157. package/dist/ionic/svg/heart-half.svg +1 -1
  1158. package/dist/ionic/svg/heart-outline.svg +1 -1
  1159. package/dist/ionic/svg/heart-sharp.svg +1 -1
  1160. package/dist/ionic/svg/heart.svg +1 -1
  1161. package/dist/ionic/svg/help-buoy-outline.svg +1 -1
  1162. package/dist/ionic/svg/help-buoy-sharp.svg +1 -1
  1163. package/dist/ionic/svg/help-buoy.svg +1 -1
  1164. package/dist/ionic/svg/help-circle-outline.svg +1 -1
  1165. package/dist/ionic/svg/help-circle-sharp.svg +1 -1
  1166. package/dist/ionic/svg/help-circle.svg +1 -1
  1167. package/dist/ionic/svg/help-outline.svg +1 -1
  1168. package/dist/ionic/svg/help-sharp.svg +1 -1
  1169. package/dist/ionic/svg/help.svg +1 -1
  1170. package/dist/ionic/svg/home-outline.svg +1 -1
  1171. package/dist/ionic/svg/home-sharp.svg +1 -1
  1172. package/dist/ionic/svg/home.svg +1 -1
  1173. package/dist/ionic/svg/hourglass-outline.svg +1 -1
  1174. package/dist/ionic/svg/hourglass-sharp.svg +1 -1
  1175. package/dist/ionic/svg/hourglass.svg +1 -1
  1176. package/dist/ionic/svg/ice-cream-outline.svg +1 -1
  1177. package/dist/ionic/svg/ice-cream-sharp.svg +1 -1
  1178. package/dist/ionic/svg/ice-cream.svg +1 -1
  1179. package/dist/ionic/svg/id-card-outline.svg +1 -1
  1180. package/dist/ionic/svg/id-card-sharp.svg +1 -1
  1181. package/dist/ionic/svg/id-card.svg +1 -1
  1182. package/dist/ionic/svg/image-outline.svg +1 -1
  1183. package/dist/ionic/svg/image-sharp.svg +1 -1
  1184. package/dist/ionic/svg/image.svg +1 -1
  1185. package/dist/ionic/svg/images-outline.svg +1 -1
  1186. package/dist/ionic/svg/images-sharp.svg +1 -1
  1187. package/dist/ionic/svg/images.svg +1 -1
  1188. package/dist/ionic/svg/infinite-outline.svg +1 -1
  1189. package/dist/ionic/svg/infinite-sharp.svg +1 -1
  1190. package/dist/ionic/svg/infinite.svg +1 -1
  1191. package/dist/ionic/svg/information-circle-outline.svg +1 -1
  1192. package/dist/ionic/svg/information-circle-sharp.svg +1 -1
  1193. package/dist/ionic/svg/information-circle.svg +1 -1
  1194. package/dist/ionic/svg/information-outline.svg +1 -1
  1195. package/dist/ionic/svg/information-sharp.svg +1 -1
  1196. package/dist/ionic/svg/information.svg +1 -1
  1197. package/dist/ionic/svg/invert-mode-outline.svg +1 -1
  1198. package/dist/ionic/svg/invert-mode-sharp.svg +1 -1
  1199. package/dist/ionic/svg/invert-mode.svg +1 -1
  1200. package/dist/ionic/svg/journal-outline.svg +1 -1
  1201. package/dist/ionic/svg/journal-sharp.svg +1 -1
  1202. package/dist/ionic/svg/journal.svg +1 -1
  1203. package/dist/ionic/svg/key-outline.svg +1 -1
  1204. package/dist/ionic/svg/key-sharp.svg +1 -1
  1205. package/dist/ionic/svg/key.svg +1 -1
  1206. package/dist/ionic/svg/keypad-outline.svg +1 -1
  1207. package/dist/ionic/svg/keypad-sharp.svg +1 -1
  1208. package/dist/ionic/svg/keypad.svg +1 -1
  1209. package/dist/ionic/svg/language-outline.svg +1 -1
  1210. package/dist/ionic/svg/language-sharp.svg +1 -1
  1211. package/dist/ionic/svg/language.svg +1 -1
  1212. package/dist/ionic/svg/laptop-outline.svg +1 -1
  1213. package/dist/ionic/svg/laptop-sharp.svg +1 -1
  1214. package/dist/ionic/svg/laptop.svg +1 -1
  1215. package/dist/ionic/svg/layers-outline.svg +1 -1
  1216. package/dist/ionic/svg/layers-sharp.svg +1 -1
  1217. package/dist/ionic/svg/layers.svg +1 -1
  1218. package/dist/ionic/svg/leaf-outline.svg +1 -1
  1219. package/dist/ionic/svg/leaf-sharp.svg +1 -1
  1220. package/dist/ionic/svg/leaf.svg +1 -1
  1221. package/dist/ionic/svg/library-outline.svg +1 -1
  1222. package/dist/ionic/svg/library-sharp.svg +1 -1
  1223. package/dist/ionic/svg/library.svg +1 -1
  1224. package/dist/ionic/svg/link-outline.svg +1 -1
  1225. package/dist/ionic/svg/link-sharp.svg +1 -1
  1226. package/dist/ionic/svg/link.svg +1 -1
  1227. package/dist/ionic/svg/list-circle-outline.svg +1 -1
  1228. package/dist/ionic/svg/list-circle-sharp.svg +1 -1
  1229. package/dist/ionic/svg/list-circle.svg +1 -1
  1230. package/dist/ionic/svg/list-outline.svg +1 -1
  1231. package/dist/ionic/svg/list-sharp.svg +1 -1
  1232. package/dist/ionic/svg/list.svg +1 -1
  1233. package/dist/ionic/svg/locate-outline.svg +1 -1
  1234. package/dist/ionic/svg/locate-sharp.svg +1 -1
  1235. package/dist/ionic/svg/locate.svg +1 -1
  1236. package/dist/ionic/svg/location-outline.svg +1 -1
  1237. package/dist/ionic/svg/location-sharp.svg +1 -1
  1238. package/dist/ionic/svg/location.svg +1 -1
  1239. package/dist/ionic/svg/lock-closed-outline.svg +1 -1
  1240. package/dist/ionic/svg/lock-closed-sharp.svg +1 -1
  1241. package/dist/ionic/svg/lock-closed.svg +1 -1
  1242. package/dist/ionic/svg/lock-open-outline.svg +1 -1
  1243. package/dist/ionic/svg/lock-open-sharp.svg +1 -1
  1244. package/dist/ionic/svg/lock-open.svg +1 -1
  1245. package/dist/ionic/svg/log-in-outline.svg +1 -1
  1246. package/dist/ionic/svg/log-in-sharp.svg +1 -1
  1247. package/dist/ionic/svg/log-in.svg +1 -1
  1248. package/dist/ionic/svg/log-out-outline.svg +1 -1
  1249. package/dist/ionic/svg/log-out-sharp.svg +1 -1
  1250. package/dist/ionic/svg/log-out.svg +1 -1
  1251. package/dist/ionic/svg/logo-alipay.svg +1 -1
  1252. package/dist/ionic/svg/logo-amazon.svg +1 -1
  1253. package/dist/ionic/svg/logo-amplify.svg +1 -1
  1254. package/dist/ionic/svg/logo-android.svg +1 -1
  1255. package/dist/ionic/svg/logo-angular.svg +1 -1
  1256. package/dist/ionic/svg/logo-appflow.svg +1 -0
  1257. package/dist/ionic/svg/logo-apple-appstore.svg +1 -1
  1258. package/dist/ionic/svg/logo-apple-ar.svg +1 -1
  1259. package/dist/ionic/svg/logo-apple.svg +1 -1
  1260. package/dist/ionic/svg/logo-behance.svg +1 -1
  1261. package/dist/ionic/svg/logo-bitbucket.svg +1 -1
  1262. package/dist/ionic/svg/logo-bitcoin.svg +1 -1
  1263. package/dist/ionic/svg/logo-buffer.svg +1 -1
  1264. package/dist/ionic/svg/logo-capacitor.svg +1 -1
  1265. package/dist/ionic/svg/logo-chrome.svg +1 -1
  1266. package/dist/ionic/svg/logo-closed-captioning.svg +1 -1
  1267. package/dist/ionic/svg/logo-codepen.svg +1 -1
  1268. package/dist/ionic/svg/logo-css3.svg +1 -1
  1269. package/dist/ionic/svg/logo-designernews.svg +1 -1
  1270. package/dist/ionic/svg/logo-deviantart.svg +1 -1
  1271. package/dist/ionic/svg/logo-discord.svg +1 -1
  1272. package/dist/ionic/svg/logo-docker.svg +1 -1
  1273. package/dist/ionic/svg/logo-dribbble.svg +1 -1
  1274. package/dist/ionic/svg/logo-dropbox.svg +1 -1
  1275. package/dist/ionic/svg/logo-edge.svg +1 -1
  1276. package/dist/ionic/svg/logo-electron.svg +1 -1
  1277. package/dist/ionic/svg/logo-euro.svg +1 -1
  1278. package/dist/ionic/svg/logo-facebook.svg +1 -1
  1279. package/dist/ionic/svg/logo-figma.svg +1 -1
  1280. package/dist/ionic/svg/logo-firebase.svg +1 -1
  1281. package/dist/ionic/svg/logo-firefox.svg +1 -1
  1282. package/dist/ionic/svg/logo-flickr.svg +1 -1
  1283. package/dist/ionic/svg/logo-foursquare.svg +1 -1
  1284. package/dist/ionic/svg/logo-github.svg +1 -1
  1285. package/dist/ionic/svg/logo-gitlab.svg +1 -1
  1286. package/dist/ionic/svg/logo-google-playstore.svg +1 -1
  1287. package/dist/ionic/svg/logo-google.svg +1 -1
  1288. package/dist/ionic/svg/logo-hackernews.svg +1 -1
  1289. package/dist/ionic/svg/logo-html5.svg +1 -1
  1290. package/dist/ionic/svg/logo-instagram.svg +1 -1
  1291. package/dist/ionic/svg/logo-ionic.svg +1 -1
  1292. package/dist/ionic/svg/logo-ionitron.svg +1 -1
  1293. package/dist/ionic/svg/logo-javascript.svg +1 -1
  1294. package/dist/ionic/svg/logo-laravel.svg +1 -1
  1295. package/dist/ionic/svg/logo-linkedin.svg +1 -1
  1296. package/dist/ionic/svg/logo-markdown.svg +1 -1
  1297. package/dist/ionic/svg/logo-mastodon.svg +1 -1
  1298. package/dist/ionic/svg/logo-medium.svg +1 -1
  1299. package/dist/ionic/svg/logo-microsoft.svg +1 -1
  1300. package/dist/ionic/svg/logo-no-smoking.svg +1 -1
  1301. package/dist/ionic/svg/logo-nodejs.svg +1 -1
  1302. package/dist/ionic/svg/logo-npm.svg +1 -1
  1303. package/dist/ionic/svg/logo-octocat.svg +1 -1
  1304. package/dist/ionic/svg/logo-paypal.svg +1 -1
  1305. package/dist/ionic/svg/logo-pinterest.svg +1 -1
  1306. package/dist/ionic/svg/logo-playstation.svg +1 -1
  1307. package/dist/ionic/svg/logo-pwa.svg +1 -1
  1308. package/dist/ionic/svg/logo-python.svg +1 -1
  1309. package/dist/ionic/svg/logo-react.svg +1 -1
  1310. package/dist/ionic/svg/logo-reddit.svg +1 -1
  1311. package/dist/ionic/svg/logo-rss.svg +1 -1
  1312. package/dist/ionic/svg/logo-sass.svg +1 -1
  1313. package/dist/ionic/svg/logo-skype.svg +1 -1
  1314. package/dist/ionic/svg/logo-slack.svg +1 -1
  1315. package/dist/ionic/svg/logo-snapchat.svg +1 -1
  1316. package/dist/ionic/svg/logo-soundcloud.svg +1 -1
  1317. package/dist/ionic/svg/logo-stackoverflow.svg +1 -1
  1318. package/dist/ionic/svg/logo-steam.svg +1 -1
  1319. package/dist/ionic/svg/logo-stencil.svg +1 -1
  1320. package/dist/ionic/svg/logo-tableau.svg +1 -1
  1321. package/dist/ionic/svg/logo-threads.svg +1 -0
  1322. package/dist/ionic/svg/logo-tiktok.svg +1 -1
  1323. package/dist/ionic/svg/logo-trapeze.svg +1 -0
  1324. package/dist/ionic/svg/logo-tumblr.svg +1 -1
  1325. package/dist/ionic/svg/logo-tux.svg +1 -1
  1326. package/dist/ionic/svg/logo-twitch.svg +1 -1
  1327. package/dist/ionic/svg/logo-twitter.svg +1 -1
  1328. package/dist/ionic/svg/logo-usd.svg +1 -1
  1329. package/dist/ionic/svg/logo-venmo.svg +1 -1
  1330. package/dist/ionic/svg/logo-vercel.svg +1 -1
  1331. package/dist/ionic/svg/logo-vimeo.svg +1 -1
  1332. package/dist/ionic/svg/logo-vk.svg +1 -1
  1333. package/dist/ionic/svg/logo-vue.svg +1 -1
  1334. package/dist/ionic/svg/logo-web-component.svg +1 -1
  1335. package/dist/ionic/svg/logo-wechat.svg +1 -1
  1336. package/dist/ionic/svg/logo-whatsapp.svg +1 -1
  1337. package/dist/ionic/svg/logo-windows.svg +1 -1
  1338. package/dist/ionic/svg/logo-wordpress.svg +1 -1
  1339. package/dist/ionic/svg/logo-x.svg +1 -0
  1340. package/dist/ionic/svg/logo-xbox.svg +1 -1
  1341. package/dist/ionic/svg/logo-xing.svg +1 -1
  1342. package/dist/ionic/svg/logo-yahoo.svg +1 -1
  1343. package/dist/ionic/svg/logo-yen.svg +1 -1
  1344. package/dist/ionic/svg/logo-youtube.svg +1 -1
  1345. package/dist/ionic/svg/magnet-outline.svg +1 -1
  1346. package/dist/ionic/svg/magnet-sharp.svg +1 -1
  1347. package/dist/ionic/svg/magnet.svg +1 -1
  1348. package/dist/ionic/svg/mail-open-outline.svg +1 -1
  1349. package/dist/ionic/svg/mail-open-sharp.svg +1 -1
  1350. package/dist/ionic/svg/mail-open.svg +1 -1
  1351. package/dist/ionic/svg/mail-outline.svg +1 -1
  1352. package/dist/ionic/svg/mail-sharp.svg +1 -1
  1353. package/dist/ionic/svg/mail-unread-outline.svg +1 -1
  1354. package/dist/ionic/svg/mail-unread-sharp.svg +1 -1
  1355. package/dist/ionic/svg/mail-unread.svg +1 -1
  1356. package/dist/ionic/svg/mail.svg +1 -1
  1357. package/dist/ionic/svg/male-female-outline.svg +1 -1
  1358. package/dist/ionic/svg/male-female-sharp.svg +1 -1
  1359. package/dist/ionic/svg/male-female.svg +1 -1
  1360. package/dist/ionic/svg/male-outline.svg +1 -1
  1361. package/dist/ionic/svg/male-sharp.svg +1 -1
  1362. package/dist/ionic/svg/male.svg +1 -1
  1363. package/dist/ionic/svg/man-outline.svg +1 -1
  1364. package/dist/ionic/svg/man-sharp.svg +1 -1
  1365. package/dist/ionic/svg/man.svg +1 -1
  1366. package/dist/ionic/svg/map-outline.svg +1 -1
  1367. package/dist/ionic/svg/map-sharp.svg +1 -1
  1368. package/dist/ionic/svg/map.svg +1 -1
  1369. package/dist/ionic/svg/medal-outline.svg +1 -1
  1370. package/dist/ionic/svg/medal-sharp.svg +1 -1
  1371. package/dist/ionic/svg/medal.svg +1 -1
  1372. package/dist/ionic/svg/medical-outline.svg +1 -1
  1373. package/dist/ionic/svg/medical-sharp.svg +1 -1
  1374. package/dist/ionic/svg/medical.svg +1 -1
  1375. package/dist/ionic/svg/medkit-outline.svg +1 -1
  1376. package/dist/ionic/svg/medkit-sharp.svg +1 -1
  1377. package/dist/ionic/svg/medkit.svg +1 -1
  1378. package/dist/ionic/svg/megaphone-outline.svg +1 -1
  1379. package/dist/ionic/svg/megaphone-sharp.svg +1 -1
  1380. package/dist/ionic/svg/megaphone.svg +1 -1
  1381. package/dist/ionic/svg/menu-outline.svg +1 -1
  1382. package/dist/ionic/svg/menu-sharp.svg +1 -1
  1383. package/dist/ionic/svg/menu.svg +1 -1
  1384. package/dist/ionic/svg/mic-circle-outline.svg +1 -1
  1385. package/dist/ionic/svg/mic-circle-sharp.svg +1 -1
  1386. package/dist/ionic/svg/mic-circle.svg +1 -1
  1387. package/dist/ionic/svg/mic-off-circle-outline.svg +1 -1
  1388. package/dist/ionic/svg/mic-off-circle-sharp.svg +1 -1
  1389. package/dist/ionic/svg/mic-off-circle.svg +1 -1
  1390. package/dist/ionic/svg/mic-off-outline.svg +1 -1
  1391. package/dist/ionic/svg/mic-off-sharp.svg +1 -1
  1392. package/dist/ionic/svg/mic-off.svg +1 -1
  1393. package/dist/ionic/svg/mic-outline.svg +1 -1
  1394. package/dist/ionic/svg/mic-sharp.svg +1 -1
  1395. package/dist/ionic/svg/mic.svg +1 -1
  1396. package/dist/ionic/svg/moon-outline.svg +1 -1
  1397. package/dist/ionic/svg/moon-sharp.svg +1 -1
  1398. package/dist/ionic/svg/moon.svg +1 -1
  1399. package/dist/ionic/svg/move-outline.svg +1 -1
  1400. package/dist/ionic/svg/move-sharp.svg +1 -1
  1401. package/dist/ionic/svg/move.svg +1 -1
  1402. package/dist/ionic/svg/musical-note-outline.svg +1 -1
  1403. package/dist/ionic/svg/musical-note-sharp.svg +1 -1
  1404. package/dist/ionic/svg/musical-note.svg +1 -1
  1405. package/dist/ionic/svg/musical-notes-outline.svg +1 -1
  1406. package/dist/ionic/svg/musical-notes-sharp.svg +1 -1
  1407. package/dist/ionic/svg/musical-notes.svg +1 -1
  1408. package/dist/ionic/svg/navigate-circle-outline.svg +1 -1
  1409. package/dist/ionic/svg/navigate-circle-sharp.svg +1 -1
  1410. package/dist/ionic/svg/navigate-circle.svg +1 -1
  1411. package/dist/ionic/svg/navigate-outline.svg +1 -1
  1412. package/dist/ionic/svg/navigate-sharp.svg +1 -1
  1413. package/dist/ionic/svg/navigate.svg +1 -1
  1414. package/dist/ionic/svg/newspaper-outline.svg +1 -1
  1415. package/dist/ionic/svg/newspaper-sharp.svg +1 -1
  1416. package/dist/ionic/svg/newspaper.svg +1 -1
  1417. package/dist/ionic/svg/notifications-circle-outline.svg +1 -1
  1418. package/dist/ionic/svg/notifications-circle-sharp.svg +1 -1
  1419. package/dist/ionic/svg/notifications-circle.svg +1 -1
  1420. package/dist/ionic/svg/notifications-off-circle-outline.svg +1 -1
  1421. package/dist/ionic/svg/notifications-off-circle-sharp.svg +1 -1
  1422. package/dist/ionic/svg/notifications-off-circle.svg +1 -1
  1423. package/dist/ionic/svg/notifications-off-outline.svg +1 -1
  1424. package/dist/ionic/svg/notifications-off-sharp.svg +1 -1
  1425. package/dist/ionic/svg/notifications-off.svg +1 -1
  1426. package/dist/ionic/svg/notifications-outline.svg +1 -1
  1427. package/dist/ionic/svg/notifications-sharp.svg +1 -1
  1428. package/dist/ionic/svg/notifications.svg +1 -1
  1429. package/dist/ionic/svg/nuclear-outline.svg +1 -1
  1430. package/dist/ionic/svg/nuclear-sharp.svg +1 -1
  1431. package/dist/ionic/svg/nuclear.svg +1 -1
  1432. package/dist/ionic/svg/nutrition-outline.svg +1 -1
  1433. package/dist/ionic/svg/nutrition-sharp.svg +1 -1
  1434. package/dist/ionic/svg/nutrition.svg +1 -1
  1435. package/dist/ionic/svg/open-outline.svg +1 -1
  1436. package/dist/ionic/svg/open-sharp.svg +1 -1
  1437. package/dist/ionic/svg/open.svg +1 -1
  1438. package/dist/ionic/svg/options-outline.svg +1 -1
  1439. package/dist/ionic/svg/options-sharp.svg +1 -1
  1440. package/dist/ionic/svg/options.svg +1 -1
  1441. package/dist/ionic/svg/paper-plane-outline.svg +1 -1
  1442. package/dist/ionic/svg/paper-plane-sharp.svg +1 -1
  1443. package/dist/ionic/svg/paper-plane.svg +1 -1
  1444. package/dist/ionic/svg/partly-sunny-outline.svg +1 -1
  1445. package/dist/ionic/svg/partly-sunny-sharp.svg +1 -1
  1446. package/dist/ionic/svg/partly-sunny.svg +1 -1
  1447. package/dist/ionic/svg/pause-circle-outline.svg +1 -1
  1448. package/dist/ionic/svg/pause-circle-sharp.svg +1 -1
  1449. package/dist/ionic/svg/pause-circle.svg +1 -1
  1450. package/dist/ionic/svg/pause-outline.svg +1 -1
  1451. package/dist/ionic/svg/pause-sharp.svg +1 -1
  1452. package/dist/ionic/svg/pause.svg +1 -1
  1453. package/dist/ionic/svg/paw-outline.svg +1 -1
  1454. package/dist/ionic/svg/paw-sharp.svg +1 -1
  1455. package/dist/ionic/svg/paw.svg +1 -1
  1456. package/dist/ionic/svg/pencil-outline.svg +1 -1
  1457. package/dist/ionic/svg/pencil-sharp.svg +1 -1
  1458. package/dist/ionic/svg/pencil.svg +1 -1
  1459. package/dist/ionic/svg/people-circle-outline.svg +1 -1
  1460. package/dist/ionic/svg/people-circle-sharp.svg +1 -1
  1461. package/dist/ionic/svg/people-circle.svg +1 -1
  1462. package/dist/ionic/svg/people-outline.svg +1 -1
  1463. package/dist/ionic/svg/people-sharp.svg +1 -1
  1464. package/dist/ionic/svg/people.svg +1 -1
  1465. package/dist/ionic/svg/person-add-outline.svg +1 -1
  1466. package/dist/ionic/svg/person-add-sharp.svg +1 -1
  1467. package/dist/ionic/svg/person-add.svg +1 -1
  1468. package/dist/ionic/svg/person-circle-outline.svg +1 -1
  1469. package/dist/ionic/svg/person-circle-sharp.svg +1 -1
  1470. package/dist/ionic/svg/person-circle.svg +1 -1
  1471. package/dist/ionic/svg/person-outline.svg +1 -1
  1472. package/dist/ionic/svg/person-remove-outline.svg +1 -1
  1473. package/dist/ionic/svg/person-remove-sharp.svg +1 -1
  1474. package/dist/ionic/svg/person-remove.svg +1 -1
  1475. package/dist/ionic/svg/person-sharp.svg +1 -1
  1476. package/dist/ionic/svg/person.svg +1 -1
  1477. package/dist/ionic/svg/phone-landscape-outline.svg +1 -1
  1478. package/dist/ionic/svg/phone-landscape-sharp.svg +1 -1
  1479. package/dist/ionic/svg/phone-landscape.svg +1 -1
  1480. package/dist/ionic/svg/phone-portrait-outline.svg +1 -1
  1481. package/dist/ionic/svg/phone-portrait-sharp.svg +1 -1
  1482. package/dist/ionic/svg/phone-portrait.svg +1 -1
  1483. package/dist/ionic/svg/pie-chart-outline.svg +1 -1
  1484. package/dist/ionic/svg/pie-chart-sharp.svg +1 -1
  1485. package/dist/ionic/svg/pie-chart.svg +1 -1
  1486. package/dist/ionic/svg/pin-outline.svg +1 -1
  1487. package/dist/ionic/svg/pin-sharp.svg +1 -1
  1488. package/dist/ionic/svg/pin.svg +1 -1
  1489. package/dist/ionic/svg/pint-outline.svg +1 -1
  1490. package/dist/ionic/svg/pint-sharp.svg +1 -1
  1491. package/dist/ionic/svg/pint.svg +1 -1
  1492. package/dist/ionic/svg/pizza-outline.svg +1 -1
  1493. package/dist/ionic/svg/pizza-sharp.svg +1 -1
  1494. package/dist/ionic/svg/pizza.svg +1 -1
  1495. package/dist/ionic/svg/planet-outline.svg +1 -1
  1496. package/dist/ionic/svg/planet-sharp.svg +1 -1
  1497. package/dist/ionic/svg/planet.svg +1 -1
  1498. package/dist/ionic/svg/play-back-circle-outline.svg +1 -1
  1499. package/dist/ionic/svg/play-back-circle-sharp.svg +1 -1
  1500. package/dist/ionic/svg/play-back-circle.svg +1 -1
  1501. package/dist/ionic/svg/play-back-outline.svg +1 -1
  1502. package/dist/ionic/svg/play-back-sharp.svg +1 -1
  1503. package/dist/ionic/svg/play-back.svg +1 -1
  1504. package/dist/ionic/svg/play-circle-outline.svg +1 -1
  1505. package/dist/ionic/svg/play-circle-sharp.svg +1 -1
  1506. package/dist/ionic/svg/play-circle.svg +1 -1
  1507. package/dist/ionic/svg/play-forward-circle-outline.svg +1 -1
  1508. package/dist/ionic/svg/play-forward-circle-sharp.svg +1 -1
  1509. package/dist/ionic/svg/play-forward-circle.svg +1 -1
  1510. package/dist/ionic/svg/play-forward-outline.svg +1 -1
  1511. package/dist/ionic/svg/play-forward-sharp.svg +1 -1
  1512. package/dist/ionic/svg/play-forward.svg +1 -1
  1513. package/dist/ionic/svg/play-outline.svg +1 -1
  1514. package/dist/ionic/svg/play-sharp.svg +1 -1
  1515. package/dist/ionic/svg/play-skip-back-circle-outline.svg +1 -1
  1516. package/dist/ionic/svg/play-skip-back-circle-sharp.svg +1 -1
  1517. package/dist/ionic/svg/play-skip-back-circle.svg +1 -1
  1518. package/dist/ionic/svg/play-skip-back-outline.svg +1 -1
  1519. package/dist/ionic/svg/play-skip-back-sharp.svg +1 -1
  1520. package/dist/ionic/svg/play-skip-back.svg +1 -1
  1521. package/dist/ionic/svg/play-skip-forward-circle-outline.svg +1 -1
  1522. package/dist/ionic/svg/play-skip-forward-circle-sharp.svg +1 -1
  1523. package/dist/ionic/svg/play-skip-forward-circle.svg +1 -1
  1524. package/dist/ionic/svg/play-skip-forward-outline.svg +1 -1
  1525. package/dist/ionic/svg/play-skip-forward-sharp.svg +1 -1
  1526. package/dist/ionic/svg/play-skip-forward.svg +1 -1
  1527. package/dist/ionic/svg/play.svg +1 -1
  1528. package/dist/ionic/svg/podium-outline.svg +1 -1
  1529. package/dist/ionic/svg/podium-sharp.svg +1 -1
  1530. package/dist/ionic/svg/podium.svg +1 -1
  1531. package/dist/ionic/svg/power-outline.svg +1 -1
  1532. package/dist/ionic/svg/power-sharp.svg +1 -1
  1533. package/dist/ionic/svg/power.svg +1 -1
  1534. package/dist/ionic/svg/pricetag-outline.svg +1 -1
  1535. package/dist/ionic/svg/pricetag-sharp.svg +1 -1
  1536. package/dist/ionic/svg/pricetag.svg +1 -1
  1537. package/dist/ionic/svg/pricetags-outline.svg +1 -1
  1538. package/dist/ionic/svg/pricetags-sharp.svg +1 -1
  1539. package/dist/ionic/svg/pricetags.svg +1 -1
  1540. package/dist/ionic/svg/print-outline.svg +1 -1
  1541. package/dist/ionic/svg/print-sharp.svg +1 -1
  1542. package/dist/ionic/svg/print.svg +1 -1
  1543. package/dist/ionic/svg/prism-outline.svg +1 -1
  1544. package/dist/ionic/svg/prism-sharp.svg +1 -1
  1545. package/dist/ionic/svg/prism.svg +1 -1
  1546. package/dist/ionic/svg/pulse-outline.svg +1 -1
  1547. package/dist/ionic/svg/pulse-sharp.svg +1 -1
  1548. package/dist/ionic/svg/pulse.svg +1 -1
  1549. package/dist/ionic/svg/push-outline.svg +1 -1
  1550. package/dist/ionic/svg/push-sharp.svg +1 -1
  1551. package/dist/ionic/svg/push.svg +1 -1
  1552. package/dist/ionic/svg/qr-code-outline.svg +1 -1
  1553. package/dist/ionic/svg/qr-code-sharp.svg +1 -1
  1554. package/dist/ionic/svg/qr-code.svg +1 -1
  1555. package/dist/ionic/svg/radio-button-off-outline.svg +1 -1
  1556. package/dist/ionic/svg/radio-button-off-sharp.svg +1 -1
  1557. package/dist/ionic/svg/radio-button-off.svg +1 -1
  1558. package/dist/ionic/svg/radio-button-on-outline.svg +1 -1
  1559. package/dist/ionic/svg/radio-button-on-sharp.svg +1 -1
  1560. package/dist/ionic/svg/radio-button-on.svg +1 -1
  1561. package/dist/ionic/svg/radio-outline.svg +1 -1
  1562. package/dist/ionic/svg/radio-sharp.svg +1 -1
  1563. package/dist/ionic/svg/radio.svg +1 -1
  1564. package/dist/ionic/svg/rainy-outline.svg +1 -1
  1565. package/dist/ionic/svg/rainy-sharp.svg +1 -1
  1566. package/dist/ionic/svg/rainy.svg +1 -1
  1567. package/dist/ionic/svg/reader-outline.svg +1 -1
  1568. package/dist/ionic/svg/reader-sharp.svg +1 -1
  1569. package/dist/ionic/svg/reader.svg +1 -1
  1570. package/dist/ionic/svg/receipt-outline.svg +1 -1
  1571. package/dist/ionic/svg/receipt-sharp.svg +1 -1
  1572. package/dist/ionic/svg/receipt.svg +1 -1
  1573. package/dist/ionic/svg/recording-outline.svg +1 -1
  1574. package/dist/ionic/svg/recording-sharp.svg +1 -1
  1575. package/dist/ionic/svg/recording.svg +1 -1
  1576. package/dist/ionic/svg/refresh-circle-outline.svg +1 -1
  1577. package/dist/ionic/svg/refresh-circle-sharp.svg +1 -1
  1578. package/dist/ionic/svg/refresh-circle.svg +1 -1
  1579. package/dist/ionic/svg/refresh-outline.svg +1 -1
  1580. package/dist/ionic/svg/refresh-sharp.svg +1 -1
  1581. package/dist/ionic/svg/refresh.svg +1 -1
  1582. package/dist/ionic/svg/reload-circle-outline.svg +1 -1
  1583. package/dist/ionic/svg/reload-circle-sharp.svg +1 -1
  1584. package/dist/ionic/svg/reload-circle.svg +1 -1
  1585. package/dist/ionic/svg/reload-outline.svg +1 -1
  1586. package/dist/ionic/svg/reload-sharp.svg +1 -1
  1587. package/dist/ionic/svg/reload.svg +1 -1
  1588. package/dist/ionic/svg/remove-circle-outline.svg +1 -1
  1589. package/dist/ionic/svg/remove-circle-sharp.svg +1 -1
  1590. package/dist/ionic/svg/remove-circle.svg +1 -1
  1591. package/dist/ionic/svg/remove-outline.svg +1 -1
  1592. package/dist/ionic/svg/remove-sharp.svg +1 -1
  1593. package/dist/ionic/svg/remove.svg +1 -1
  1594. package/dist/ionic/svg/reorder-four-outline.svg +1 -1
  1595. package/dist/ionic/svg/reorder-four-sharp.svg +1 -1
  1596. package/dist/ionic/svg/reorder-four.svg +1 -1
  1597. package/dist/ionic/svg/reorder-three-outline.svg +1 -1
  1598. package/dist/ionic/svg/reorder-three-sharp.svg +1 -1
  1599. package/dist/ionic/svg/reorder-three.svg +1 -1
  1600. package/dist/ionic/svg/reorder-two-outline.svg +1 -1
  1601. package/dist/ionic/svg/reorder-two-sharp.svg +1 -1
  1602. package/dist/ionic/svg/reorder-two.svg +1 -1
  1603. package/dist/ionic/svg/repeat-outline.svg +1 -1
  1604. package/dist/ionic/svg/repeat-sharp.svg +1 -1
  1605. package/dist/ionic/svg/repeat.svg +1 -1
  1606. package/dist/ionic/svg/resize-outline.svg +1 -1
  1607. package/dist/ionic/svg/resize-sharp.svg +1 -1
  1608. package/dist/ionic/svg/resize.svg +1 -1
  1609. package/dist/ionic/svg/restaurant-outline.svg +1 -1
  1610. package/dist/ionic/svg/restaurant-sharp.svg +1 -1
  1611. package/dist/ionic/svg/restaurant.svg +1 -1
  1612. package/dist/ionic/svg/return-down-back-outline.svg +1 -1
  1613. package/dist/ionic/svg/return-down-back-sharp.svg +1 -1
  1614. package/dist/ionic/svg/return-down-back.svg +1 -1
  1615. package/dist/ionic/svg/return-down-forward-outline.svg +1 -1
  1616. package/dist/ionic/svg/return-down-forward-sharp.svg +1 -1
  1617. package/dist/ionic/svg/return-down-forward.svg +1 -1
  1618. package/dist/ionic/svg/return-up-back-outline.svg +1 -1
  1619. package/dist/ionic/svg/return-up-back-sharp.svg +1 -1
  1620. package/dist/ionic/svg/return-up-back.svg +1 -1
  1621. package/dist/ionic/svg/return-up-forward-outline.svg +1 -1
  1622. package/dist/ionic/svg/return-up-forward-sharp.svg +1 -1
  1623. package/dist/ionic/svg/return-up-forward.svg +1 -1
  1624. package/dist/ionic/svg/ribbon-outline.svg +1 -1
  1625. package/dist/ionic/svg/ribbon-sharp.svg +1 -1
  1626. package/dist/ionic/svg/ribbon.svg +1 -1
  1627. package/dist/ionic/svg/rocket-outline.svg +1 -1
  1628. package/dist/ionic/svg/rocket-sharp.svg +1 -1
  1629. package/dist/ionic/svg/rocket.svg +1 -1
  1630. package/dist/ionic/svg/rose-outline.svg +1 -1
  1631. package/dist/ionic/svg/rose-sharp.svg +1 -1
  1632. package/dist/ionic/svg/rose.svg +1 -1
  1633. package/dist/ionic/svg/sad-outline.svg +1 -1
  1634. package/dist/ionic/svg/sad-sharp.svg +1 -1
  1635. package/dist/ionic/svg/sad.svg +1 -1
  1636. package/dist/ionic/svg/save-outline.svg +1 -1
  1637. package/dist/ionic/svg/save-sharp.svg +1 -1
  1638. package/dist/ionic/svg/save.svg +1 -1
  1639. package/dist/ionic/svg/scale-outline.svg +1 -1
  1640. package/dist/ionic/svg/scale-sharp.svg +1 -1
  1641. package/dist/ionic/svg/scale.svg +1 -1
  1642. package/dist/ionic/svg/scan-circle-outline.svg +1 -1
  1643. package/dist/ionic/svg/scan-circle-sharp.svg +1 -1
  1644. package/dist/ionic/svg/scan-circle.svg +1 -1
  1645. package/dist/ionic/svg/scan-outline.svg +1 -1
  1646. package/dist/ionic/svg/scan-sharp.svg +1 -1
  1647. package/dist/ionic/svg/scan.svg +1 -1
  1648. package/dist/ionic/svg/school-outline.svg +1 -1
  1649. package/dist/ionic/svg/school-sharp.svg +1 -1
  1650. package/dist/ionic/svg/school.svg +1 -1
  1651. package/dist/ionic/svg/search-circle-outline.svg +1 -1
  1652. package/dist/ionic/svg/search-circle-sharp.svg +1 -1
  1653. package/dist/ionic/svg/search-circle.svg +1 -1
  1654. package/dist/ionic/svg/search-outline.svg +1 -1
  1655. package/dist/ionic/svg/search-sharp.svg +1 -1
  1656. package/dist/ionic/svg/search.svg +1 -1
  1657. package/dist/ionic/svg/send-outline.svg +1 -1
  1658. package/dist/ionic/svg/send-sharp.svg +1 -1
  1659. package/dist/ionic/svg/send.svg +1 -1
  1660. package/dist/ionic/svg/server-outline.svg +1 -1
  1661. package/dist/ionic/svg/server-sharp.svg +1 -1
  1662. package/dist/ionic/svg/server.svg +1 -1
  1663. package/dist/ionic/svg/settings-outline.svg +1 -1
  1664. package/dist/ionic/svg/settings-sharp.svg +1 -1
  1665. package/dist/ionic/svg/settings.svg +1 -1
  1666. package/dist/ionic/svg/shapes-outline.svg +1 -1
  1667. package/dist/ionic/svg/shapes-sharp.svg +1 -1
  1668. package/dist/ionic/svg/shapes.svg +1 -1
  1669. package/dist/ionic/svg/share-outline.svg +1 -1
  1670. package/dist/ionic/svg/share-sharp.svg +1 -1
  1671. package/dist/ionic/svg/share-social-outline.svg +1 -1
  1672. package/dist/ionic/svg/share-social-sharp.svg +1 -1
  1673. package/dist/ionic/svg/share-social.svg +1 -1
  1674. package/dist/ionic/svg/share.svg +1 -1
  1675. package/dist/ionic/svg/shield-checkmark-outline.svg +1 -1
  1676. package/dist/ionic/svg/shield-checkmark-sharp.svg +1 -1
  1677. package/dist/ionic/svg/shield-checkmark.svg +1 -1
  1678. package/dist/ionic/svg/shield-half-outline.svg +1 -1
  1679. package/dist/ionic/svg/shield-half-sharp.svg +1 -1
  1680. package/dist/ionic/svg/shield-half.svg +1 -1
  1681. package/dist/ionic/svg/shield-outline.svg +1 -1
  1682. package/dist/ionic/svg/shield-sharp.svg +1 -1
  1683. package/dist/ionic/svg/shield.svg +1 -1
  1684. package/dist/ionic/svg/shirt-outline.svg +1 -1
  1685. package/dist/ionic/svg/shirt-sharp.svg +1 -1
  1686. package/dist/ionic/svg/shirt.svg +1 -1
  1687. package/dist/ionic/svg/shuffle-outline.svg +1 -1
  1688. package/dist/ionic/svg/shuffle-sharp.svg +1 -1
  1689. package/dist/ionic/svg/shuffle.svg +1 -1
  1690. package/dist/ionic/svg/skull-outline.svg +1 -1
  1691. package/dist/ionic/svg/skull-sharp.svg +1 -1
  1692. package/dist/ionic/svg/skull.svg +1 -1
  1693. package/dist/ionic/svg/snow-outline.svg +1 -1
  1694. package/dist/ionic/svg/snow-sharp.svg +1 -1
  1695. package/dist/ionic/svg/snow.svg +1 -1
  1696. package/dist/ionic/svg/sparkles-outline.svg +1 -1
  1697. package/dist/ionic/svg/sparkles-sharp.svg +1 -1
  1698. package/dist/ionic/svg/sparkles.svg +1 -1
  1699. package/dist/ionic/svg/speedometer-outline.svg +1 -1
  1700. package/dist/ionic/svg/speedometer-sharp.svg +1 -1
  1701. package/dist/ionic/svg/speedometer.svg +1 -1
  1702. package/dist/ionic/svg/square-outline.svg +1 -1
  1703. package/dist/ionic/svg/square-sharp.svg +1 -1
  1704. package/dist/ionic/svg/square.svg +1 -1
  1705. package/dist/ionic/svg/star-half-outline.svg +1 -1
  1706. package/dist/ionic/svg/star-half-sharp.svg +1 -1
  1707. package/dist/ionic/svg/star-half.svg +1 -1
  1708. package/dist/ionic/svg/star-outline.svg +1 -1
  1709. package/dist/ionic/svg/star-sharp.svg +1 -1
  1710. package/dist/ionic/svg/star.svg +1 -1
  1711. package/dist/ionic/svg/stats-chart-outline.svg +1 -1
  1712. package/dist/ionic/svg/stats-chart-sharp.svg +1 -1
  1713. package/dist/ionic/svg/stats-chart.svg +1 -1
  1714. package/dist/ionic/svg/stop-circle-outline.svg +1 -1
  1715. package/dist/ionic/svg/stop-circle-sharp.svg +1 -1
  1716. package/dist/ionic/svg/stop-circle.svg +1 -1
  1717. package/dist/ionic/svg/stop-outline.svg +1 -1
  1718. package/dist/ionic/svg/stop-sharp.svg +1 -1
  1719. package/dist/ionic/svg/stop.svg +1 -1
  1720. package/dist/ionic/svg/stopwatch-outline.svg +1 -1
  1721. package/dist/ionic/svg/stopwatch-sharp.svg +1 -1
  1722. package/dist/ionic/svg/stopwatch.svg +1 -1
  1723. package/dist/ionic/svg/storefront-outline.svg +1 -1
  1724. package/dist/ionic/svg/storefront-sharp.svg +1 -1
  1725. package/dist/ionic/svg/storefront.svg +1 -1
  1726. package/dist/ionic/svg/subway-outline.svg +1 -1
  1727. package/dist/ionic/svg/subway-sharp.svg +1 -1
  1728. package/dist/ionic/svg/subway.svg +1 -1
  1729. package/dist/ionic/svg/sunny-outline.svg +1 -1
  1730. package/dist/ionic/svg/sunny-sharp.svg +1 -1
  1731. package/dist/ionic/svg/sunny.svg +1 -1
  1732. package/dist/ionic/svg/swap-horizontal-outline.svg +1 -1
  1733. package/dist/ionic/svg/swap-horizontal-sharp.svg +1 -1
  1734. package/dist/ionic/svg/swap-horizontal.svg +1 -1
  1735. package/dist/ionic/svg/swap-vertical-outline.svg +1 -1
  1736. package/dist/ionic/svg/swap-vertical-sharp.svg +1 -1
  1737. package/dist/ionic/svg/swap-vertical.svg +1 -1
  1738. package/dist/ionic/svg/sync-circle-outline.svg +1 -1
  1739. package/dist/ionic/svg/sync-circle-sharp.svg +1 -1
  1740. package/dist/ionic/svg/sync-circle.svg +1 -1
  1741. package/dist/ionic/svg/sync-outline.svg +1 -1
  1742. package/dist/ionic/svg/sync-sharp.svg +1 -1
  1743. package/dist/ionic/svg/sync.svg +1 -1
  1744. package/dist/ionic/svg/tablet-landscape-outline.svg +1 -1
  1745. package/dist/ionic/svg/tablet-landscape-sharp.svg +1 -1
  1746. package/dist/ionic/svg/tablet-landscape.svg +1 -1
  1747. package/dist/ionic/svg/tablet-portrait-outline.svg +1 -1
  1748. package/dist/ionic/svg/tablet-portrait-sharp.svg +1 -1
  1749. package/dist/ionic/svg/tablet-portrait.svg +1 -1
  1750. package/dist/ionic/svg/telescope-outline.svg +1 -1
  1751. package/dist/ionic/svg/telescope-sharp.svg +1 -1
  1752. package/dist/ionic/svg/telescope.svg +1 -1
  1753. package/dist/ionic/svg/tennisball-outline.svg +1 -1
  1754. package/dist/ionic/svg/tennisball-sharp.svg +1 -1
  1755. package/dist/ionic/svg/tennisball.svg +1 -1
  1756. package/dist/ionic/svg/terminal-outline.svg +1 -1
  1757. package/dist/ionic/svg/terminal-sharp.svg +1 -1
  1758. package/dist/ionic/svg/terminal.svg +1 -1
  1759. package/dist/ionic/svg/text-outline.svg +1 -1
  1760. package/dist/ionic/svg/text-sharp.svg +1 -1
  1761. package/dist/ionic/svg/text.svg +1 -1
  1762. package/dist/ionic/svg/thermometer-outline.svg +1 -1
  1763. package/dist/ionic/svg/thermometer-sharp.svg +1 -1
  1764. package/dist/ionic/svg/thermometer.svg +1 -1
  1765. package/dist/ionic/svg/thumbs-down-outline.svg +1 -1
  1766. package/dist/ionic/svg/thumbs-down-sharp.svg +1 -1
  1767. package/dist/ionic/svg/thumbs-down.svg +1 -1
  1768. package/dist/ionic/svg/thumbs-up-outline.svg +1 -1
  1769. package/dist/ionic/svg/thumbs-up-sharp.svg +1 -1
  1770. package/dist/ionic/svg/thumbs-up.svg +1 -1
  1771. package/dist/ionic/svg/thunderstorm-outline.svg +1 -1
  1772. package/dist/ionic/svg/thunderstorm-sharp.svg +1 -1
  1773. package/dist/ionic/svg/thunderstorm.svg +1 -1
  1774. package/dist/ionic/svg/ticket-outline.svg +1 -1
  1775. package/dist/ionic/svg/ticket-sharp.svg +1 -1
  1776. package/dist/ionic/svg/ticket.svg +1 -1
  1777. package/dist/ionic/svg/time-outline.svg +1 -1
  1778. package/dist/ionic/svg/time-sharp.svg +1 -1
  1779. package/dist/ionic/svg/time.svg +1 -1
  1780. package/dist/ionic/svg/timer-outline.svg +1 -1
  1781. package/dist/ionic/svg/timer-sharp.svg +1 -1
  1782. package/dist/ionic/svg/timer.svg +1 -1
  1783. package/dist/ionic/svg/today-outline.svg +1 -1
  1784. package/dist/ionic/svg/today-sharp.svg +1 -1
  1785. package/dist/ionic/svg/today.svg +1 -1
  1786. package/dist/ionic/svg/toggle-outline.svg +1 -1
  1787. package/dist/ionic/svg/toggle-sharp.svg +1 -1
  1788. package/dist/ionic/svg/toggle.svg +1 -1
  1789. package/dist/ionic/svg/trail-sign-outline.svg +1 -1
  1790. package/dist/ionic/svg/trail-sign-sharp.svg +1 -1
  1791. package/dist/ionic/svg/trail-sign.svg +1 -1
  1792. package/dist/ionic/svg/train-outline.svg +1 -1
  1793. package/dist/ionic/svg/train-sharp.svg +1 -1
  1794. package/dist/ionic/svg/train.svg +1 -1
  1795. package/dist/ionic/svg/transgender-outline.svg +1 -1
  1796. package/dist/ionic/svg/transgender-sharp.svg +1 -1
  1797. package/dist/ionic/svg/transgender.svg +1 -1
  1798. package/dist/ionic/svg/trash-bin-outline.svg +1 -1
  1799. package/dist/ionic/svg/trash-bin-sharp.svg +1 -1
  1800. package/dist/ionic/svg/trash-bin.svg +1 -1
  1801. package/dist/ionic/svg/trash-outline.svg +1 -1
  1802. package/dist/ionic/svg/trash-sharp.svg +1 -1
  1803. package/dist/ionic/svg/trash.svg +1 -1
  1804. package/dist/ionic/svg/trending-down-outline.svg +1 -1
  1805. package/dist/ionic/svg/trending-down-sharp.svg +1 -1
  1806. package/dist/ionic/svg/trending-down.svg +1 -1
  1807. package/dist/ionic/svg/trending-up-outline.svg +1 -1
  1808. package/dist/ionic/svg/trending-up-sharp.svg +1 -1
  1809. package/dist/ionic/svg/trending-up.svg +1 -1
  1810. package/dist/ionic/svg/triangle-outline.svg +1 -1
  1811. package/dist/ionic/svg/triangle-sharp.svg +1 -1
  1812. package/dist/ionic/svg/triangle.svg +1 -1
  1813. package/dist/ionic/svg/trophy-outline.svg +1 -1
  1814. package/dist/ionic/svg/trophy-sharp.svg +1 -1
  1815. package/dist/ionic/svg/trophy.svg +1 -1
  1816. package/dist/ionic/svg/tv-outline.svg +1 -1
  1817. package/dist/ionic/svg/tv-sharp.svg +1 -1
  1818. package/dist/ionic/svg/tv.svg +1 -1
  1819. package/dist/ionic/svg/umbrella-outline.svg +1 -1
  1820. package/dist/ionic/svg/umbrella-sharp.svg +1 -1
  1821. package/dist/ionic/svg/umbrella.svg +1 -1
  1822. package/dist/ionic/svg/unlink-outline.svg +1 -1
  1823. package/dist/ionic/svg/unlink-sharp.svg +1 -1
  1824. package/dist/ionic/svg/unlink.svg +1 -1
  1825. package/dist/ionic/svg/videocam-off-outline.svg +1 -1
  1826. package/dist/ionic/svg/videocam-off-sharp.svg +1 -1
  1827. package/dist/ionic/svg/videocam-off.svg +1 -1
  1828. package/dist/ionic/svg/videocam-outline.svg +1 -1
  1829. package/dist/ionic/svg/videocam-sharp.svg +1 -1
  1830. package/dist/ionic/svg/videocam.svg +1 -1
  1831. package/dist/ionic/svg/volume-high-outline.svg +1 -1
  1832. package/dist/ionic/svg/volume-high-sharp.svg +1 -1
  1833. package/dist/ionic/svg/volume-high.svg +1 -1
  1834. package/dist/ionic/svg/volume-low-outline.svg +1 -1
  1835. package/dist/ionic/svg/volume-low-sharp.svg +1 -1
  1836. package/dist/ionic/svg/volume-low.svg +1 -1
  1837. package/dist/ionic/svg/volume-medium-outline.svg +1 -1
  1838. package/dist/ionic/svg/volume-medium-sharp.svg +1 -1
  1839. package/dist/ionic/svg/volume-medium.svg +1 -1
  1840. package/dist/ionic/svg/volume-mute-outline.svg +1 -1
  1841. package/dist/ionic/svg/volume-mute-sharp.svg +1 -1
  1842. package/dist/ionic/svg/volume-mute.svg +1 -1
  1843. package/dist/ionic/svg/volume-off-outline.svg +1 -1
  1844. package/dist/ionic/svg/volume-off-sharp.svg +1 -1
  1845. package/dist/ionic/svg/volume-off.svg +1 -1
  1846. package/dist/ionic/svg/walk-outline.svg +1 -1
  1847. package/dist/ionic/svg/walk-sharp.svg +1 -1
  1848. package/dist/ionic/svg/walk.svg +1 -1
  1849. package/dist/ionic/svg/wallet-outline.svg +1 -1
  1850. package/dist/ionic/svg/wallet-sharp.svg +1 -1
  1851. package/dist/ionic/svg/wallet.svg +1 -1
  1852. package/dist/ionic/svg/warning-outline.svg +1 -1
  1853. package/dist/ionic/svg/warning-sharp.svg +1 -1
  1854. package/dist/ionic/svg/warning.svg +1 -1
  1855. package/dist/ionic/svg/watch-outline.svg +1 -1
  1856. package/dist/ionic/svg/watch-sharp.svg +1 -1
  1857. package/dist/ionic/svg/watch.svg +1 -1
  1858. package/dist/ionic/svg/water-outline.svg +1 -1
  1859. package/dist/ionic/svg/water-sharp.svg +1 -1
  1860. package/dist/ionic/svg/water.svg +1 -1
  1861. package/dist/ionic/svg/wifi-outline.svg +1 -1
  1862. package/dist/ionic/svg/wifi-sharp.svg +1 -1
  1863. package/dist/ionic/svg/wifi.svg +1 -1
  1864. package/dist/ionic/svg/wine-outline.svg +1 -1
  1865. package/dist/ionic/svg/wine-sharp.svg +1 -1
  1866. package/dist/ionic/svg/wine.svg +1 -1
  1867. package/dist/ionic/svg/woman-outline.svg +1 -1
  1868. package/dist/ionic/svg/woman-sharp.svg +1 -1
  1869. package/dist/ionic/svg/woman.svg +1 -1
  1870. package/dist/types/components/action-sheet/action-sheet.d.ts +5 -6
  1871. package/dist/types/components/alert/alert.d.ts +5 -6
  1872. package/dist/types/components/app/app.d.ts +2 -0
  1873. package/dist/types/components/button/button.d.ts +11 -0
  1874. package/dist/types/components/datetime/datetime-interface.d.ts +12 -3
  1875. package/dist/types/components/datetime/datetime.d.ts +12 -0
  1876. package/dist/types/components/datetime/utils/data.d.ts +3 -1
  1877. package/dist/types/components/datetime/utils/manipulation.d.ts +1 -0
  1878. package/dist/types/components/input-otp/input-otp-interface.d.ts +21 -0
  1879. package/dist/types/components/input-otp/input-otp.d.ts +272 -0
  1880. package/dist/types/components/item/item.d.ts +4 -0
  1881. package/dist/types/components/loading/loading.d.ts +5 -6
  1882. package/dist/types/components/menu/menu.d.ts +25 -3
  1883. package/dist/types/components/modal/animations/ios.transition.d.ts +14 -0
  1884. package/dist/types/components/modal/modal.d.ts +36 -6
  1885. package/dist/types/components/popover/popover.d.ts +6 -5
  1886. package/dist/types/components/range/range.d.ts +2 -0
  1887. package/dist/types/components/reorder-group/reorder-group-interface.d.ts +17 -0
  1888. package/dist/types/components/reorder-group/reorder-group.d.ts +24 -4
  1889. package/dist/types/components/router/router.d.ts +1 -0
  1890. package/dist/types/components/router/utils/interface.d.ts +1 -4
  1891. package/dist/types/components/searchbar/searchbar.d.ts +1 -3
  1892. package/dist/types/components/toast/toast.d.ts +4 -5
  1893. package/dist/types/components.d.ts +837 -23
  1894. package/dist/types/interface.d.ts +8 -2
  1895. package/dist/types/stencil-public-runtime.d.ts +37 -2
  1896. package/dist/types/utils/element-interface.d.ts +10 -0
  1897. package/dist/types/utils/test/playwright/playwright-declarations.d.ts +5 -0
  1898. package/hydrate/index.d.ts +44 -7
  1899. package/hydrate/index.js +6783 -2909
  1900. package/hydrate/index.mjs +6782 -2908
  1901. package/loader/cdn.js +1 -2
  1902. package/loader/index.cjs.js +1 -2
  1903. package/loader/index.es2017.js +0 -1
  1904. package/loader/index.js +1 -2
  1905. package/package.json +7 -7
  1906. package/dist/cjs/index-073c7cdc.js +0 -57
  1907. package/dist/cjs/index-cc858e97.js +0 -129
  1908. package/dist/esm/index-cfd9c1f2.js +0 -121
  1909. package/dist/esm/index-e2cf2ceb.js +0 -31
  1910. package/dist/esm/polyfills/core-js.js +0 -11
  1911. package/dist/esm/polyfills/dom.js +0 -79
  1912. package/dist/esm/polyfills/es5-html-element.js +0 -1
  1913. package/dist/esm/polyfills/index.js +0 -34
  1914. package/dist/esm/polyfills/system.js +0 -6
  1915. package/dist/esm-es5/animation-8b25e105.js +0 -4
  1916. package/dist/esm-es5/app-globals-dbdbb3df.js +0 -4
  1917. package/dist/esm-es5/button-active-90f1dbc4.js +0 -4
  1918. package/dist/esm-es5/capacitor-59395cbd.js +0 -4
  1919. package/dist/esm-es5/compare-with-utils-a96ff2ea.js +0 -4
  1920. package/dist/esm-es5/config-9898ed97.js +0 -4
  1921. package/dist/esm-es5/cubic-bezier-fe2083dc.js +0 -4
  1922. package/dist/esm-es5/data-0d7ea6eb.js +0 -4
  1923. package/dist/esm-es5/dir-babeabeb.js +0 -4
  1924. package/dist/esm-es5/focus-visible-dd40d69f.js +0 -4
  1925. package/dist/esm-es5/framework-delegate-56b467ad.js +0 -4
  1926. package/dist/esm-es5/gesture-controller-314a54f6.js +0 -4
  1927. package/dist/esm-es5/haptic-ac164e4c.js +0 -4
  1928. package/dist/esm-es5/hardware-back-button-a7eb8233.js +0 -4
  1929. package/dist/esm-es5/helpers-d94bc8ad.js +0 -4
  1930. package/dist/esm-es5/index-18f31305.js +0 -4
  1931. package/dist/esm-es5/index-39782642.js +0 -4
  1932. package/dist/esm-es5/index-527b9e34.js +0 -5
  1933. package/dist/esm-es5/index-68c0d151.js +0 -4
  1934. package/dist/esm-es5/index-9a17db3d.js +0 -4
  1935. package/dist/esm-es5/index-a5d50daf.js +0 -4
  1936. package/dist/esm-es5/index-be190feb.js +0 -4
  1937. package/dist/esm-es5/index-cfd9c1f2.js +0 -5
  1938. package/dist/esm-es5/index-e2cf2ceb.js +0 -4
  1939. package/dist/esm-es5/index.js +0 -4
  1940. package/dist/esm-es5/input-shims-279903e2.js +0 -4
  1941. package/dist/esm-es5/input.utils-40504d6d.js +0 -4
  1942. package/dist/esm-es5/ion-accordion_2.entry.js +0 -4
  1943. package/dist/esm-es5/ion-action-sheet.entry.js +0 -4
  1944. package/dist/esm-es5/ion-alert.entry.js +0 -4
  1945. package/dist/esm-es5/ion-app_8.entry.js +0 -4
  1946. package/dist/esm-es5/ion-avatar_3.entry.js +0 -4
  1947. package/dist/esm-es5/ion-back-button.entry.js +0 -4
  1948. package/dist/esm-es5/ion-backdrop.entry.js +0 -4
  1949. package/dist/esm-es5/ion-breadcrumb_2.entry.js +0 -4
  1950. package/dist/esm-es5/ion-button_2.entry.js +0 -4
  1951. package/dist/esm-es5/ion-card_5.entry.js +0 -4
  1952. package/dist/esm-es5/ion-checkbox.entry.js +0 -4
  1953. package/dist/esm-es5/ion-chip.entry.js +0 -4
  1954. package/dist/esm-es5/ion-col_3.entry.js +0 -4
  1955. package/dist/esm-es5/ion-datetime-button.entry.js +0 -4
  1956. package/dist/esm-es5/ion-datetime_3.entry.js +0 -4
  1957. package/dist/esm-es5/ion-fab_3.entry.js +0 -4
  1958. package/dist/esm-es5/ion-img.entry.js +0 -4
  1959. package/dist/esm-es5/ion-infinite-scroll_2.entry.js +0 -4
  1960. package/dist/esm-es5/ion-input-password-toggle.entry.js +0 -4
  1961. package/dist/esm-es5/ion-input.entry.js +0 -4
  1962. package/dist/esm-es5/ion-item-option_3.entry.js +0 -4
  1963. package/dist/esm-es5/ion-item_8.entry.js +0 -4
  1964. package/dist/esm-es5/ion-loading.entry.js +0 -4
  1965. package/dist/esm-es5/ion-menu_3.entry.js +0 -4
  1966. package/dist/esm-es5/ion-modal.entry.js +0 -4
  1967. package/dist/esm-es5/ion-nav_2.entry.js +0 -4
  1968. package/dist/esm-es5/ion-picker-column-option.entry.js +0 -4
  1969. package/dist/esm-es5/ion-picker-column.entry.js +0 -4
  1970. package/dist/esm-es5/ion-picker.entry.js +0 -4
  1971. package/dist/esm-es5/ion-popover.entry.js +0 -4
  1972. package/dist/esm-es5/ion-progress-bar.entry.js +0 -4
  1973. package/dist/esm-es5/ion-radio_2.entry.js +0 -4
  1974. package/dist/esm-es5/ion-range.entry.js +0 -4
  1975. package/dist/esm-es5/ion-refresher_2.entry.js +0 -4
  1976. package/dist/esm-es5/ion-reorder_2.entry.js +0 -4
  1977. package/dist/esm-es5/ion-ripple-effect.entry.js +0 -4
  1978. package/dist/esm-es5/ion-route_4.entry.js +0 -4
  1979. package/dist/esm-es5/ion-searchbar.entry.js +0 -4
  1980. package/dist/esm-es5/ion-segment-content.entry.js +0 -4
  1981. package/dist/esm-es5/ion-segment-view.entry.js +0 -4
  1982. package/dist/esm-es5/ion-segment_2.entry.js +0 -4
  1983. package/dist/esm-es5/ion-select-modal.entry.js +0 -4
  1984. package/dist/esm-es5/ion-select_3.entry.js +0 -4
  1985. package/dist/esm-es5/ion-spinner.entry.js +0 -4
  1986. package/dist/esm-es5/ion-split-pane.entry.js +0 -4
  1987. package/dist/esm-es5/ion-tab-bar_2.entry.js +0 -4
  1988. package/dist/esm-es5/ion-tab_2.entry.js +0 -4
  1989. package/dist/esm-es5/ion-text.entry.js +0 -4
  1990. package/dist/esm-es5/ion-textarea.entry.js +0 -4
  1991. package/dist/esm-es5/ion-toast.entry.js +0 -4
  1992. package/dist/esm-es5/ion-toggle.entry.js +0 -4
  1993. package/dist/esm-es5/ionic-global-b26f573e.js +0 -4
  1994. package/dist/esm-es5/ionic.js +0 -4
  1995. package/dist/esm-es5/ios.transition-4047cb68.js +0 -4
  1996. package/dist/esm-es5/keyboard-52278bd7.js +0 -4
  1997. package/dist/esm-es5/keyboard-73175e24.js +0 -4
  1998. package/dist/esm-es5/keyboard-controller-ec5c2bfa.js +0 -4
  1999. package/dist/esm-es5/loader.js +0 -4
  2000. package/dist/esm-es5/lock-controller-316928be.js +0 -4
  2001. package/dist/esm-es5/md.transition-30ce8d1b.js +0 -4
  2002. package/dist/esm-es5/notch-controller-1a1f7183.js +0 -4
  2003. package/dist/esm-es5/overlays-d99dcb0a.js +0 -4
  2004. package/dist/esm-es5/spinner-configs-964f7cf3.js +0 -4
  2005. package/dist/esm-es5/status-tap-42a8af65.js +0 -4
  2006. package/dist/esm-es5/swipe-back-04123e7c.js +0 -4
  2007. package/dist/esm-es5/theme-01f3f29c.js +0 -4
  2008. package/dist/esm-es5/watch-options-c2911ace.js +0 -4
  2009. package/dist/ionic/ionic.js +0 -127
  2010. package/dist/ionic/p-00023f5a.system.js +0 -4
  2011. package/dist/ionic/p-012c3ceb.system.js +0 -4
  2012. package/dist/ionic/p-03480b95.system.entry.js +0 -4
  2013. package/dist/ionic/p-08cef0b1.entry.js +0 -4
  2014. package/dist/ionic/p-08e01816.system.js +0 -4
  2015. package/dist/ionic/p-0af640d6.entry.js +0 -4
  2016. package/dist/ionic/p-105b2e8b.entry.js +0 -4
  2017. package/dist/ionic/p-117d0013.system.entry.js +0 -4
  2018. package/dist/ionic/p-11dca959.entry.js +0 -4
  2019. package/dist/ionic/p-12193821.system.js +0 -4
  2020. package/dist/ionic/p-12830298.system.entry.js +0 -4
  2021. package/dist/ionic/p-14154301.system.entry.js +0 -4
  2022. package/dist/ionic/p-1706b406.system.entry.js +0 -4
  2023. package/dist/ionic/p-17e21141.js +0 -4
  2024. package/dist/ionic/p-19494658.system.entry.js +0 -4
  2025. package/dist/ionic/p-1966a13c.system.js +0 -4
  2026. package/dist/ionic/p-1974d5b2.system.js +0 -4
  2027. package/dist/ionic/p-1a7df1c3.system.js +0 -4
  2028. package/dist/ionic/p-1a81ac09.system.js +0 -4
  2029. package/dist/ionic/p-1b9c59ab.js +0 -4
  2030. package/dist/ionic/p-1d307396.system.js +0 -4
  2031. package/dist/ionic/p-1dfc11b3.system.js +0 -4
  2032. package/dist/ionic/p-1e4371bd.js +0 -4
  2033. package/dist/ionic/p-1e955a45.system.js +0 -4
  2034. package/dist/ionic/p-200fc491.js +0 -4
  2035. package/dist/ionic/p-20d469d0.system.js +0 -4
  2036. package/dist/ionic/p-21891ead.js +0 -4
  2037. package/dist/ionic/p-2233344a.system.js +0 -4
  2038. package/dist/ionic/p-2469240b.entry.js +0 -4
  2039. package/dist/ionic/p-24a6c8a3.system.entry.js +0 -4
  2040. package/dist/ionic/p-257fb777.entry.js +0 -4
  2041. package/dist/ionic/p-25b10f81.js +0 -4
  2042. package/dist/ionic/p-2b7827c7.js +0 -4
  2043. package/dist/ionic/p-2bff0e69.system.entry.js +0 -4
  2044. package/dist/ionic/p-31dc303d.entry.js +0 -4
  2045. package/dist/ionic/p-3535d6b5.entry.js +0 -4
  2046. package/dist/ionic/p-35cdfd77.system.entry.js +0 -4
  2047. package/dist/ionic/p-393ffcc2.entry.js +0 -4
  2048. package/dist/ionic/p-39fa7dd1.system.entry.js +0 -4
  2049. package/dist/ionic/p-3a30f31b.system.entry.js +0 -4
  2050. package/dist/ionic/p-3e1e14d9.system.js +0 -4
  2051. package/dist/ionic/p-42f08b26.system.entry.js +0 -4
  2052. package/dist/ionic/p-4609d030.system.js +0 -4
  2053. package/dist/ionic/p-481e0885.entry.js +0 -4
  2054. package/dist/ionic/p-4a5be299.system.entry.js +0 -4
  2055. package/dist/ionic/p-4c667fce.js +0 -4
  2056. package/dist/ionic/p-4cf4172e.entry.js +0 -4
  2057. package/dist/ionic/p-4da92dac.entry.js +0 -4
  2058. package/dist/ionic/p-4ed5db19.system.js +0 -4
  2059. package/dist/ionic/p-4f255d5a.system.js +0 -4
  2060. package/dist/ionic/p-50cb2e8b.system.entry.js +0 -4
  2061. package/dist/ionic/p-57957c0f.entry.js +0 -4
  2062. package/dist/ionic/p-57d6e18e.entry.js +0 -4
  2063. package/dist/ionic/p-57e55ecb.system.js +0 -4
  2064. package/dist/ionic/p-5b67b447.js +0 -4
  2065. package/dist/ionic/p-5c9feddc.system.entry.js +0 -4
  2066. package/dist/ionic/p-5fac20aa.system.entry.js +0 -4
  2067. package/dist/ionic/p-612096e6.system.entry.js +0 -4
  2068. package/dist/ionic/p-6201c4ba.entry.js +0 -4
  2069. package/dist/ionic/p-625248d0.system.js +0 -4
  2070. package/dist/ionic/p-663413be.system.js +0 -4
  2071. package/dist/ionic/p-6636a436.js +0 -4
  2072. package/dist/ionic/p-66a5d6a8.js +0 -5
  2073. package/dist/ionic/p-66df5468.system.entry.js +0 -4
  2074. package/dist/ionic/p-67077d48.entry.js +0 -4
  2075. package/dist/ionic/p-67cacd6d.entry.js +0 -4
  2076. package/dist/ionic/p-6835ebdd.system.entry.js +0 -4
  2077. package/dist/ionic/p-6b8530f5.system.entry.js +0 -4
  2078. package/dist/ionic/p-6c474e87.entry.js +0 -4
  2079. package/dist/ionic/p-6dd86ff5.system.entry.js +0 -4
  2080. package/dist/ionic/p-6ec0c94a.entry.js +0 -4
  2081. package/dist/ionic/p-6f832afe.system.entry.js +0 -4
  2082. package/dist/ionic/p-707408c5.system.entry.js +0 -4
  2083. package/dist/ionic/p-712c0131.entry.js +0 -4
  2084. package/dist/ionic/p-721f43f9.entry.js +0 -4
  2085. package/dist/ionic/p-7445a2e5.system.js +0 -4
  2086. package/dist/ionic/p-7611ede3.system.entry.js +0 -4
  2087. package/dist/ionic/p-781e2dbb.system.js +0 -4
  2088. package/dist/ionic/p-792919fd.system.js +0 -4
  2089. package/dist/ionic/p-7b8c12c3.entry.js +0 -4
  2090. package/dist/ionic/p-7c5c7ae1.system.entry.js +0 -4
  2091. package/dist/ionic/p-7e3e6ed2.entry.js +0 -4
  2092. package/dist/ionic/p-7ffedf77.system.entry.js +0 -4
  2093. package/dist/ionic/p-809483ac.js +0 -4
  2094. package/dist/ionic/p-81904a80.entry.js +0 -4
  2095. package/dist/ionic/p-84096b45.system.js +0 -4
  2096. package/dist/ionic/p-8450f761.entry.js +0 -4
  2097. package/dist/ionic/p-8460d95a.entry.js +0 -4
  2098. package/dist/ionic/p-85b01465.js +0 -4
  2099. package/dist/ionic/p-865fe95c.entry.js +0 -4
  2100. package/dist/ionic/p-8674af94.entry.js +0 -4
  2101. package/dist/ionic/p-890a4ee2.entry.js +0 -4
  2102. package/dist/ionic/p-891553d8.entry.js +0 -4
  2103. package/dist/ionic/p-8985cdb6.system.js +0 -4
  2104. package/dist/ionic/p-8b050e84.system.js +0 -4
  2105. package/dist/ionic/p-8dacf4e2.entry.js +0 -4
  2106. package/dist/ionic/p-8ededb41.js +0 -4
  2107. package/dist/ionic/p-94551927.js +0 -4
  2108. package/dist/ionic/p-965287fb.system.entry.js +0 -4
  2109. package/dist/ionic/p-979d4f5c.system.js +0 -4
  2110. package/dist/ionic/p-98fd942b.system.entry.js +0 -4
  2111. package/dist/ionic/p-9df5043e.system.entry.js +0 -4
  2112. package/dist/ionic/p-9e753482.system.entry.js +0 -4
  2113. package/dist/ionic/p-a0fd2fe5.system.entry.js +0 -4
  2114. package/dist/ionic/p-a2c6a9c8.entry.js +0 -4
  2115. package/dist/ionic/p-a2dd5b69.system.entry.js +0 -4
  2116. package/dist/ionic/p-a4866e3e.system.js +0 -4
  2117. package/dist/ionic/p-a5dbe0ff.system.entry.js +0 -4
  2118. package/dist/ionic/p-a7a97bf4.system.entry.js +0 -4
  2119. package/dist/ionic/p-a835aca8.entry.js +0 -4
  2120. package/dist/ionic/p-a83e3290.system.js +0 -4
  2121. package/dist/ionic/p-a93873de.system.js +0 -4
  2122. package/dist/ionic/p-aad57e35.entry.js +0 -4
  2123. package/dist/ionic/p-ab7337e1.entry.js +0 -4
  2124. package/dist/ionic/p-abe101da.system.js +0 -4
  2125. package/dist/ionic/p-ad592db9.entry.js +0 -4
  2126. package/dist/ionic/p-ae039072.entry.js +0 -4
  2127. package/dist/ionic/p-aebfab05.system.entry.js +0 -4
  2128. package/dist/ionic/p-b06ac4a5.system.js +0 -4
  2129. package/dist/ionic/p-b2e7eda0.system.entry.js +0 -4
  2130. package/dist/ionic/p-b445ff65.entry.js +0 -4
  2131. package/dist/ionic/p-b4d17da0.system.entry.js +0 -4
  2132. package/dist/ionic/p-b5432d15.entry.js +0 -4
  2133. package/dist/ionic/p-b6d324f0.js +0 -4
  2134. package/dist/ionic/p-b7b1d91a.js +0 -4
  2135. package/dist/ionic/p-b8050298.system.entry.js +0 -4
  2136. package/dist/ionic/p-b904cfe2.system.entry.js +0 -4
  2137. package/dist/ionic/p-b9c793d4.entry.js +0 -4
  2138. package/dist/ionic/p-bafc3eae.system.entry.js +0 -4
  2139. package/dist/ionic/p-bf184319.system.entry.js +0 -4
  2140. package/dist/ionic/p-bfb763d0.system.entry.js +0 -4
  2141. package/dist/ionic/p-c16443a8.system.js +0 -4
  2142. package/dist/ionic/p-c1b7d311.system.entry.js +0 -4
  2143. package/dist/ionic/p-c2160d8c.entry.js +0 -4
  2144. package/dist/ionic/p-c468af8a.system.js +0 -4
  2145. package/dist/ionic/p-c5b77054.entry.js +0 -4
  2146. package/dist/ionic/p-c5bfa3e9.entry.js +0 -4
  2147. package/dist/ionic/p-c61cc894.js +0 -4
  2148. package/dist/ionic/p-cad82569.entry.js +0 -4
  2149. package/dist/ionic/p-d16fab3f.entry.js +0 -4
  2150. package/dist/ionic/p-d1eb2d7f.entry.js +0 -4
  2151. package/dist/ionic/p-d382f09c.system.js +0 -4
  2152. package/dist/ionic/p-d8d84afa.system.js +0 -4
  2153. package/dist/ionic/p-d984c1ab.system.entry.js +0 -4
  2154. package/dist/ionic/p-da2b833b.js +0 -4
  2155. package/dist/ionic/p-dabe3bd4.js +0 -4
  2156. package/dist/ionic/p-df069a0d.entry.js +0 -4
  2157. package/dist/ionic/p-e1678e42.entry.js +0 -4
  2158. package/dist/ionic/p-e6068998.system.entry.js +0 -4
  2159. package/dist/ionic/p-e673a0a2.system.js +0 -4
  2160. package/dist/ionic/p-e727e32d.system.entry.js +0 -4
  2161. package/dist/ionic/p-e8245753.entry.js +0 -4
  2162. package/dist/ionic/p-e887b6a9.system.js +0 -4
  2163. package/dist/ionic/p-f08a92cc.js +0 -4
  2164. package/dist/ionic/p-f08dfb19.entry.js +0 -4
  2165. package/dist/ionic/p-f0c9f8e3.system.entry.js +0 -4
  2166. package/dist/ionic/p-f0ef39ab.entry.js +0 -4
  2167. package/dist/ionic/p-f11a9436.system.js +0 -5
  2168. package/dist/ionic/p-f22490a7.system.entry.js +0 -4
  2169. package/dist/ionic/p-f6bb9be7.system.entry.js +0 -4
  2170. package/dist/ionic/p-f6e7d104.system.js +0 -4
  2171. package/dist/ionic/p-f725bf9e.system.js +0 -4
  2172. package/dist/ionic/p-f9a87db2.system.entry.js +0 -4
  2173. package/dist/ionic/p-fa3f4b96.system.js +0 -4
  2174. package/dist/ionic/p-fe063952.system.entry.js +0 -4
  2175. package/dist/node_modules/ionicons/dist/collection/components/icon/icon.css +0 -144
  2176. package/loader/package.json +0 -11
  2177. /package/dist/cjs/{compare-with-utils-df1001d7.js → compare-with-utils-DSicavqM.js} +0 -0
  2178. /package/dist/cjs/{cubic-bezier-f2dccc53.js → cubic-bezier-DAjy1V-e.js} +0 -0
  2179. /package/dist/cjs/{dir-94c21456.js → dir-Cn0z1rJH.js} +0 -0
  2180. /package/dist/cjs/{focus-visible-7a0ce04f.js → focus-visible-CCvKiLh3.js} +0 -0
  2181. /package/dist/cjs/{index-c8d52405.js → index-DkNv4J_i.js} +0 -0
  2182. /package/dist/cjs/{lock-controller-6585a42a.js → lock-controller-aDB9wrEf.js} +0 -0
  2183. /package/dist/cjs/{spinner-configs-282fd50a.js → spinner-configs-DxHKnd3-.js} +0 -0
  2184. /package/dist/cjs/{theme-d1c573d2.js → theme-CeDs6Hcv.js} +0 -0
  2185. /package/dist/cjs/{watch-options-f5f3e158.js → watch-options-CviOsrTS.js} +0 -0
  2186. /package/dist/esm/{compare-with-utils-a96ff2ea.js → compare-with-utils-sObYyvOy.js} +0 -0
  2187. /package/dist/esm/{cubic-bezier-fe2083dc.js → cubic-bezier-hHmYLOfE.js} +0 -0
  2188. /package/dist/esm/{dir-babeabeb.js → dir-C53feagD.js} +0 -0
  2189. /package/dist/esm/{focus-visible-dd40d69f.js → focus-visible-BmVRXR1y.js} +0 -0
  2190. /package/dist/esm/{index-a5d50daf.js → index-ZjP4CjeZ.js} +0 -0
  2191. /package/dist/esm/{lock-controller-316928be.js → lock-controller-B-hirT0v.js} +0 -0
  2192. /package/dist/esm/{spinner-configs-964f7cf3.js → spinner-configs-D4RIp70E.js} +0 -0
  2193. /package/dist/esm/{theme-01f3f29c.js → theme-DiVJyqlX.js} +0 -0
  2194. /package/dist/esm/{watch-options-c2911ace.js → watch-options-Dtdm8lKC.js} +0 -0
  2195. /package/dist/ionic/{p-ccd02320.js → p-B-hirT0v.js} +0 -0
  2196. /package/dist/ionic/{p-9b97df10.js → p-BTEOs1at.js} +0 -0
  2197. /package/dist/ionic/{p-d47265c8.js → p-BmVRXR1y.js} +0 -0
  2198. /package/dist/ionic/{p-fb813dab.js → p-C53feagD.js} +0 -0
  2199. /package/dist/ionic/{p-f0c2a614.js → p-D4RIp70E.js} +0 -0
  2200. /package/dist/ionic/{p-47794def.js → p-DiVJyqlX.js} +0 -0
  2201. /package/dist/ionic/{p-459d13d5.js → p-Dtdm8lKC.js} +0 -0
  2202. /package/dist/ionic/{p-7b30edcc.js → p-ZjP4CjeZ.js} +0 -0
  2203. /package/dist/ionic/{p-2408c236.js → p-hHmYLOfE.js} +0 -0
  2204. /package/dist/ionic/{p-de756e5c.js → p-sObYyvOy.js} +0 -0
@@ -3,31 +3,128 @@
3
3
  */
4
4
  'use strict';
5
5
 
6
- function _interopNamespace(e) {
7
- if (e && e.__esModule) return e;
8
- var n = Object.create(null);
9
- if (e) {
10
- Object.keys(e).forEach(function (k) {
11
- if (k !== 'default') {
12
- var d = Object.getOwnPropertyDescriptor(e, k);
13
- Object.defineProperty(n, k, d.get ? d : {
14
- enumerable: true,
15
- get: function () {
16
- return e[k];
17
- }
18
- });
19
- }
20
- });
21
- }
22
- n['default'] = e;
23
- return Object.freeze(n);
6
+ const NAMESPACE = 'ionic';
7
+ const BUILD = /* ionic */ { experimentalSlotFixes: true, hydratedSelectorName: "hydrated", lazyLoad: true, shadowDom: true, slotRelocation: true, updatable: true};
8
+
9
+ // TODO(FW-2832): types
10
+ class Config {
11
+ constructor() {
12
+ this.m = new Map();
13
+ }
14
+ reset(configObj) {
15
+ this.m = new Map(Object.entries(configObj));
16
+ }
17
+ get(key, fallback) {
18
+ const value = this.m.get(key);
19
+ return value !== undefined ? value : fallback;
20
+ }
21
+ getBoolean(key, fallback = false) {
22
+ const val = this.m.get(key);
23
+ if (val === undefined) {
24
+ return fallback;
25
+ }
26
+ if (typeof val === 'string') {
27
+ return val === 'true';
28
+ }
29
+ return !!val;
30
+ }
31
+ getNumber(key, fallback) {
32
+ const val = parseFloat(this.m.get(key));
33
+ return isNaN(val) ? (fallback !== undefined ? fallback : NaN) : val;
34
+ }
35
+ set(key, value) {
36
+ this.m.set(key, value);
37
+ }
24
38
  }
39
+ const config = /*@__PURE__*/ new Config();
40
+ const configFromSession = (win) => {
41
+ try {
42
+ const configStr = win.sessionStorage.getItem(IONIC_SESSION_KEY);
43
+ return configStr !== null ? JSON.parse(configStr) : {};
44
+ }
45
+ catch (e) {
46
+ return {};
47
+ }
48
+ };
49
+ const saveConfig = (win, c) => {
50
+ try {
51
+ win.sessionStorage.setItem(IONIC_SESSION_KEY, JSON.stringify(c));
52
+ }
53
+ catch (e) {
54
+ return;
55
+ }
56
+ };
57
+ const configFromURL = (win) => {
58
+ const configObj = {};
59
+ win.location.search
60
+ .slice(1)
61
+ .split('&')
62
+ .map((entry) => entry.split('='))
63
+ .map(([key, value]) => {
64
+ try {
65
+ return [decodeURIComponent(key), decodeURIComponent(value)];
66
+ }
67
+ catch (e) {
68
+ return ['', ''];
69
+ }
70
+ })
71
+ .filter(([key]) => startsWith(key, IONIC_PREFIX))
72
+ .map(([key, value]) => [key.slice(IONIC_PREFIX.length), value])
73
+ .forEach(([key, value]) => {
74
+ configObj[key] = value;
75
+ });
76
+ return configObj;
77
+ };
78
+ const startsWith = (input, search) => {
79
+ return input.substr(0, search.length) === search;
80
+ };
81
+ const IONIC_PREFIX = 'ionic:';
82
+ const IONIC_SESSION_KEY = 'ionic-persist-config';
25
83
 
26
- const NAMESPACE = 'ionic';
27
- const BUILD = /* ionic */ { allRenderFn: false, appendChildSlotFix: true, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: true, cmpDidLoad: true, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: true, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: true, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: true, element: false, event: true, experimentalScopedSlotChanges: true, experimentalSlotFixes: true, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: true, hostListenerTargetDocument: true, hostListenerTargetParent: false, hostListenerTargetWindow: true, hotModuleReplacement: false, hydrateClientSide: true, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: true, mode: true, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: true, propNumber: true, propString: true, reflect: true, scoped: true, scopedSlotTextContentFix: true, scriptDataOpts: false, shadowDelegatesFocus: true, shadowDom: true, slot: true, slotChildNodesFix: true, slotRelocation: true, state: true, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: true, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: true, vdomText: true, vdomXlink: true, watchCallback: true };
84
+ exports.LogLevel = void 0;
85
+ (function (LogLevel) {
86
+ LogLevel["OFF"] = "OFF";
87
+ LogLevel["ERROR"] = "ERROR";
88
+ LogLevel["WARN"] = "WARN";
89
+ })(exports.LogLevel || (exports.LogLevel = {}));
90
+ /**
91
+ * Logs a warning to the console with an Ionic prefix
92
+ * to indicate the library that is warning the developer.
93
+ *
94
+ * @param message - The string message to be logged to the console.
95
+ */
96
+ const printIonWarning = (message, ...params) => {
97
+ const logLevel = config.get('logLevel', exports.LogLevel.WARN);
98
+ if ([exports.LogLevel.WARN].includes(logLevel)) {
99
+ return console.warn(`[Ionic Warning]: ${message}`, ...params);
100
+ }
101
+ };
102
+ /**
103
+ * Logs an error to the console with an Ionic prefix
104
+ * to indicate the library that is warning the developer.
105
+ *
106
+ * @param message - The string message to be logged to the console.
107
+ * @param params - Additional arguments to supply to the console.error.
108
+ */
109
+ const printIonError = (message, ...params) => {
110
+ const logLevel = config.get('logLevel', exports.LogLevel.ERROR);
111
+ if ([exports.LogLevel.ERROR, exports.LogLevel.WARN].includes(logLevel)) {
112
+ return console.error(`[Ionic Error]: ${message}`, ...params);
113
+ }
114
+ };
115
+ /**
116
+ * Prints an error informing developers that an implementation requires an element to be used
117
+ * within a specific selector.
118
+ *
119
+ * @param el The web component element this is requiring the element.
120
+ * @param targetSelectors The selector or selectors that were not found.
121
+ */
122
+ const printRequiredElementError = (el, ...targetSelectors) => {
123
+ return console.error(`<${el.tagName.toLowerCase()}> must be used inside ${targetSelectors.join(' or ')}.`);
124
+ };
28
125
 
29
126
  /*
30
- Stencil Client Platform v4.20.0 | MIT Licensed | https://stenciljs.com
127
+ Stencil Client Platform v4.36.2 | MIT Licensed | https://stenciljs.com
31
128
  */
32
129
  var __defProp = Object.defineProperty;
33
130
  var __export = (target, all) => {
@@ -35,14 +132,47 @@ var __export = (target, all) => {
35
132
  __defProp(target, name, { get: all[name], enumerable: true });
36
133
  };
37
134
  var Build = {
38
- isDev: false,
39
- isBrowser: true,
40
- isServer: false,
41
- isTesting: false
42
- };
43
- var hostRefs = /* @__PURE__ */ new WeakMap();
44
- var getHostRef = (ref) => hostRefs.get(ref);
45
- var registerInstance = (lazyInstance, hostRef) => hostRefs.set(hostRef.$lazyInstance$ = lazyInstance, hostRef);
135
+ isBrowser: true};
136
+
137
+ // src/utils/constants.ts
138
+ var SVG_NS = "http://www.w3.org/2000/svg";
139
+ var HTML_NS = "http://www.w3.org/1999/xhtml";
140
+ var PrimitiveType = /* @__PURE__ */ ((PrimitiveType2) => {
141
+ PrimitiveType2["Undefined"] = "undefined";
142
+ PrimitiveType2["Null"] = "null";
143
+ PrimitiveType2["String"] = "string";
144
+ PrimitiveType2["Number"] = "number";
145
+ PrimitiveType2["SpecialNumber"] = "number";
146
+ PrimitiveType2["Boolean"] = "boolean";
147
+ PrimitiveType2["BigInt"] = "bigint";
148
+ return PrimitiveType2;
149
+ })(PrimitiveType || {});
150
+ var NonPrimitiveType = /* @__PURE__ */ ((NonPrimitiveType2) => {
151
+ NonPrimitiveType2["Array"] = "array";
152
+ NonPrimitiveType2["Date"] = "date";
153
+ NonPrimitiveType2["Map"] = "map";
154
+ NonPrimitiveType2["Object"] = "object";
155
+ NonPrimitiveType2["RegularExpression"] = "regexp";
156
+ NonPrimitiveType2["Set"] = "set";
157
+ NonPrimitiveType2["Channel"] = "channel";
158
+ NonPrimitiveType2["Symbol"] = "symbol";
159
+ return NonPrimitiveType2;
160
+ })(NonPrimitiveType || {});
161
+ var TYPE_CONSTANT = "type";
162
+ var VALUE_CONSTANT = "value";
163
+ var SERIALIZED_PREFIX = "serialized:";
164
+
165
+ // src/client/client-host-ref.ts
166
+ var getHostRef = (ref) => {
167
+ if (ref.__stencil__getHostRef) {
168
+ return ref.__stencil__getHostRef();
169
+ }
170
+ return void 0;
171
+ };
172
+ var registerInstance = (lazyInstance, hostRef) => {
173
+ lazyInstance.__stencil__getHostRef = () => hostRef;
174
+ hostRef.$lazyInstance$ = lazyInstance;
175
+ };
46
176
  var registerHost = (hostElement, cmpMeta) => {
47
177
  const hostRef = {
48
178
  $flags$: 0,
@@ -58,7 +188,9 @@ var registerHost = (hostElement, cmpMeta) => {
58
188
  hostElement["s-p"] = [];
59
189
  hostElement["s-rc"] = [];
60
190
  }
61
- return hostRefs.set(hostElement, hostRef);
191
+ const ref = hostRef;
192
+ hostElement.__stencil__getHostRef = () => ref;
193
+ return ref;
62
194
  };
63
195
  var isMemberInElement = (elm, memberName) => memberName in elm;
64
196
  var consoleError = (e, el) => (0, console.error)(e, el);
@@ -76,18 +208,23 @@ var loadModule = (cmpMeta, hostRef, hmrVersionId) => {
76
208
  return module[exportName];
77
209
  }
78
210
  /*!__STENCIL_STATIC_IMPORT_SWITCH__*/
79
- return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
211
+ return import(
80
212
  /* @vite-ignore */
81
213
  /* webpackInclude: /\.entry\.js$/ */
82
214
  /* webpackExclude: /\.system\.entry\.js$/ */
83
215
  /* webpackMode: "lazy" */
84
216
  `./${bundleId}.entry.js${""}`
85
- )); }).then((importedModule) => {
86
- {
87
- cmpModules.set(bundleId, importedModule);
217
+ ).then(
218
+ (importedModule) => {
219
+ {
220
+ cmpModules.set(bundleId, importedModule);
221
+ }
222
+ return importedModule[exportName];
223
+ },
224
+ (e) => {
225
+ consoleError(e, hostRef.$hostElement$);
88
226
  }
89
- return importedModule[exportName];
90
- }, consoleError);
227
+ );
91
228
  };
92
229
 
93
230
  // src/client/client-style.ts
@@ -99,6 +236,7 @@ var CONTENT_REF_ID = "r";
99
236
  var ORG_LOCATION_ID = "o";
100
237
  var SLOT_NODE_ID = "s";
101
238
  var TEXT_NODE_ID = "t";
239
+ var COMMENT_NODE_ID = "c";
102
240
  var HYDRATE_ID = "s-id";
103
241
  var HYDRATED_STYLE_ID = "sty-id";
104
242
  var HYDRATE_CHILD_ID = "c-id";
@@ -106,7 +244,6 @@ var HYDRATED_CSS = "{visibility:hidden}.hydrated{visibility:inherit}";
106
244
  var SLOT_FB_CSS = "slot-fb{display:contents}slot-fb[hidden]{display:none}";
107
245
  var XLINK_NS = "http://www.w3.org/1999/xlink";
108
246
  var win = typeof window !== "undefined" ? window : {};
109
- var doc = win.document || { head: {} };
110
247
  var H = win.HTMLElement || class {
111
248
  };
112
249
  var plt = {
@@ -120,9 +257,10 @@ var plt = {
120
257
  };
121
258
  var supportsShadow = BUILD.shadowDom;
122
259
  var supportsListenerOptions = /* @__PURE__ */ (() => {
260
+ var _a;
123
261
  let supportsListenerOptions2 = false;
124
262
  try {
125
- doc.addEventListener(
263
+ (_a = win.document) == null ? void 0 : _a.addEventListener(
126
264
  "e",
127
265
  null,
128
266
  Object.defineProperty({}, "passive", {
@@ -144,6 +282,7 @@ var supportsConstructableStylesheets = /* @__PURE__ */ (() => {
144
282
  }
145
283
  return false;
146
284
  })() ;
285
+ var supportsMutableAdoptedStyleSheets = supportsConstructableStylesheets ? /* @__PURE__ */ (() => !!win.document && Object.getOwnPropertyDescriptor(win.document.adoptedStyleSheets, "length").writable)() : false;
147
286
  var queuePending = false;
148
287
  var queueDomReads = [];
149
288
  var queueDomWrites = [];
@@ -187,24 +326,119 @@ var getAssetPath = (path) => {
187
326
  return assetUrl.origin !== win.location.origin ? assetUrl.href : assetUrl.pathname;
188
327
  };
189
328
 
190
- // src/utils/constants.ts
191
- var EMPTY_OBJ = {};
192
- var SVG_NS = "http://www.w3.org/2000/svg";
193
- var HTML_NS = "http://www.w3.org/1999/xhtml";
194
-
195
329
  // src/utils/helpers.ts
196
- var isDef = (v) => v != null;
330
+ var isDef = (v) => v != null && v !== void 0;
197
331
  var isComplexType = (o) => {
198
332
  o = typeof o;
199
333
  return o === "object" || o === "function";
200
334
  };
201
335
 
202
336
  // src/utils/query-nonce-meta-tag-content.ts
203
- function queryNonceMetaTagContent(doc2) {
337
+ function queryNonceMetaTagContent(doc) {
204
338
  var _a, _b, _c;
205
- return (_c = (_b = (_a = doc2.head) == null ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) == null ? void 0 : _b.getAttribute("content")) != null ? _c : void 0;
339
+ return (_c = (_b = (_a = doc.head) == null ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) == null ? void 0 : _b.getAttribute("content")) != null ? _c : void 0;
206
340
  }
207
341
 
342
+ // src/utils/regular-expression.ts
343
+ var escapeRegExpSpecialCharacters = (text) => {
344
+ return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
345
+ };
346
+
347
+ // src/utils/remote-value.ts
348
+ var RemoteValue = class _RemoteValue {
349
+ /**
350
+ * Deserializes a LocalValue serialized object back to its original JavaScript representation
351
+ *
352
+ * @param serialized The serialized LocalValue object
353
+ * @returns The original JavaScript value/object
354
+ */
355
+ static fromLocalValue(serialized) {
356
+ const type = serialized[TYPE_CONSTANT];
357
+ const value = VALUE_CONSTANT in serialized ? serialized[VALUE_CONSTANT] : void 0;
358
+ switch (type) {
359
+ case "string" /* String */:
360
+ return value;
361
+ case "boolean" /* Boolean */:
362
+ return value;
363
+ case "bigint" /* BigInt */:
364
+ return BigInt(value);
365
+ case "undefined" /* Undefined */:
366
+ return void 0;
367
+ case "null" /* Null */:
368
+ return null;
369
+ case "number" /* Number */:
370
+ if (value === "NaN") return NaN;
371
+ if (value === "-0") return -0;
372
+ if (value === "Infinity") return Infinity;
373
+ if (value === "-Infinity") return -Infinity;
374
+ return value;
375
+ case "array" /* Array */:
376
+ return value.map((item) => _RemoteValue.fromLocalValue(item));
377
+ case "date" /* Date */:
378
+ return new Date(value);
379
+ case "map" /* Map */:
380
+ const map2 = /* @__PURE__ */ new Map();
381
+ for (const [key, val] of value) {
382
+ const deserializedKey = typeof key === "object" && key !== null ? _RemoteValue.fromLocalValue(key) : key;
383
+ const deserializedValue = _RemoteValue.fromLocalValue(val);
384
+ map2.set(deserializedKey, deserializedValue);
385
+ }
386
+ return map2;
387
+ case "object" /* Object */:
388
+ const obj = {};
389
+ for (const [key, val] of value) {
390
+ obj[key] = _RemoteValue.fromLocalValue(val);
391
+ }
392
+ return obj;
393
+ case "regexp" /* RegularExpression */:
394
+ const { pattern, flags } = value;
395
+ return new RegExp(pattern, flags);
396
+ case "set" /* Set */:
397
+ const set = /* @__PURE__ */ new Set();
398
+ for (const item of value) {
399
+ set.add(_RemoteValue.fromLocalValue(item));
400
+ }
401
+ return set;
402
+ case "symbol" /* Symbol */:
403
+ return Symbol(value);
404
+ default:
405
+ throw new Error(`Unsupported type: ${type}`);
406
+ }
407
+ }
408
+ /**
409
+ * Utility method to deserialize multiple LocalValues at once
410
+ *
411
+ * @param serializedValues Array of serialized LocalValue objects
412
+ * @returns Array of deserialized JavaScript values
413
+ */
414
+ static fromLocalValueArray(serializedValues) {
415
+ return serializedValues.map((value) => _RemoteValue.fromLocalValue(value));
416
+ }
417
+ /**
418
+ * Verifies if the given object matches the structure of a serialized LocalValue
419
+ *
420
+ * @param obj Object to verify
421
+ * @returns boolean indicating if the object has LocalValue structure
422
+ */
423
+ static isLocalValueObject(obj) {
424
+ if (typeof obj !== "object" || obj === null) {
425
+ return false;
426
+ }
427
+ if (!obj.hasOwnProperty(TYPE_CONSTANT)) {
428
+ return false;
429
+ }
430
+ const type = obj[TYPE_CONSTANT];
431
+ const hasTypeProperty = Object.values({ ...PrimitiveType, ...NonPrimitiveType }).includes(type);
432
+ if (!hasTypeProperty) {
433
+ return false;
434
+ }
435
+ if (type !== "null" /* Null */ && type !== "undefined" /* Undefined */) {
436
+ return obj.hasOwnProperty(VALUE_CONSTANT);
437
+ }
438
+ return true;
439
+ }
440
+ };
441
+
208
442
  // src/utils/result.ts
209
443
  var result_exports = {};
210
444
  __export(result_exports, {
@@ -253,6 +487,553 @@ var unwrapErr = (result) => {
253
487
  throw result.value;
254
488
  }
255
489
  };
490
+
491
+ // src/utils/serialize.ts
492
+ function deserializeProperty(value) {
493
+ if (typeof value !== "string" || !value.startsWith(SERIALIZED_PREFIX)) {
494
+ return value;
495
+ }
496
+ return RemoteValue.fromLocalValue(JSON.parse(atob(value.slice(SERIALIZED_PREFIX.length))));
497
+ }
498
+
499
+ // src/utils/style.ts
500
+ function createStyleSheetIfNeededAndSupported(styles2) {
501
+ return void 0;
502
+ }
503
+
504
+ // src/utils/shadow-root.ts
505
+ var globalStyleSheet;
506
+ function createShadowRoot(cmpMeta) {
507
+ var _a;
508
+ const shadowRoot = this.attachShadow({
509
+ mode: "open",
510
+ delegatesFocus: !!(cmpMeta.$flags$ & 16 /* shadowDelegatesFocus */)
511
+ }) ;
512
+ if (globalStyleSheet === void 0) globalStyleSheet = (_a = createStyleSheetIfNeededAndSupported()) != null ? _a : null;
513
+ if (globalStyleSheet) {
514
+ if (supportsMutableAdoptedStyleSheets) {
515
+ shadowRoot.adoptedStyleSheets.push(globalStyleSheet);
516
+ } else {
517
+ shadowRoot.adoptedStyleSheets = [...shadowRoot.adoptedStyleSheets, globalStyleSheet];
518
+ }
519
+ }
520
+ }
521
+ var updateFallbackSlotVisibility = (elm) => {
522
+ const childNodes = internalCall(elm, "childNodes");
523
+ if (elm.tagName && elm.tagName.includes("-") && elm["s-cr"] && elm.tagName !== "SLOT-FB") {
524
+ getHostSlotNodes(childNodes, elm.tagName).forEach((slotNode) => {
525
+ if (slotNode.nodeType === 1 /* ElementNode */ && slotNode.tagName === "SLOT-FB") {
526
+ if (getSlotChildSiblings(slotNode, getSlotName(slotNode), false).length) {
527
+ slotNode.hidden = true;
528
+ } else {
529
+ slotNode.hidden = false;
530
+ }
531
+ }
532
+ });
533
+ }
534
+ let i2 = 0;
535
+ for (i2 = 0; i2 < childNodes.length; i2++) {
536
+ const childNode = childNodes[i2];
537
+ if (childNode.nodeType === 1 /* ElementNode */ && internalCall(childNode, "childNodes").length) {
538
+ updateFallbackSlotVisibility(childNode);
539
+ }
540
+ }
541
+ };
542
+ var getSlottedChildNodes = (childNodes) => {
543
+ const result = [];
544
+ for (let i2 = 0; i2 < childNodes.length; i2++) {
545
+ const slottedNode = childNodes[i2]["s-nr"] || void 0;
546
+ if (slottedNode && slottedNode.isConnected) {
547
+ result.push(slottedNode);
548
+ }
549
+ }
550
+ return result;
551
+ };
552
+ function getHostSlotNodes(childNodes, hostName, slotName) {
553
+ let i2 = 0;
554
+ let slottedNodes = [];
555
+ let childNode;
556
+ for (; i2 < childNodes.length; i2++) {
557
+ childNode = childNodes[i2];
558
+ if (childNode["s-sr"] && (!hostName || childNode["s-hn"] === hostName) && (slotName === void 0 || getSlotName(childNode) === slotName)) {
559
+ slottedNodes.push(childNode);
560
+ if (typeof slotName !== "undefined") return slottedNodes;
561
+ }
562
+ slottedNodes = [...slottedNodes, ...getHostSlotNodes(childNode.childNodes, hostName, slotName)];
563
+ }
564
+ return slottedNodes;
565
+ }
566
+ var getSlotChildSiblings = (slot, slotName, includeSlot = true) => {
567
+ const childNodes = [];
568
+ if (includeSlot && slot["s-sr"] || !slot["s-sr"]) childNodes.push(slot);
569
+ let node = slot;
570
+ while (node = node.nextSibling) {
571
+ if (getSlotName(node) === slotName && (includeSlot || !node["s-sr"])) childNodes.push(node);
572
+ }
573
+ return childNodes;
574
+ };
575
+ var isNodeLocatedInSlot = (nodeToRelocate, slotName) => {
576
+ if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
577
+ if (nodeToRelocate.getAttribute("slot") === null && slotName === "") {
578
+ return true;
579
+ }
580
+ if (nodeToRelocate.getAttribute("slot") === slotName) {
581
+ return true;
582
+ }
583
+ return false;
584
+ }
585
+ if (nodeToRelocate["s-sn"] === slotName) {
586
+ return true;
587
+ }
588
+ return slotName === "";
589
+ };
590
+ var addSlotRelocateNode = (newChild, slotNode, prepend, position) => {
591
+ if (newChild["s-ol"] && newChild["s-ol"].isConnected) {
592
+ return;
593
+ }
594
+ const slottedNodeLocation = document.createTextNode("");
595
+ slottedNodeLocation["s-nr"] = newChild;
596
+ if (!slotNode["s-cr"] || !slotNode["s-cr"].parentNode) return;
597
+ const parent = slotNode["s-cr"].parentNode;
598
+ const appendMethod = prepend ? internalCall(parent, "prepend") : internalCall(parent, "appendChild");
599
+ if (typeof position !== "undefined") {
600
+ slottedNodeLocation["s-oo"] = position;
601
+ const childNodes = internalCall(parent, "childNodes");
602
+ const slotRelocateNodes = [slottedNodeLocation];
603
+ childNodes.forEach((n) => {
604
+ if (n["s-nr"]) slotRelocateNodes.push(n);
605
+ });
606
+ slotRelocateNodes.sort((a, b) => {
607
+ if (!a["s-oo"] || a["s-oo"] < (b["s-oo"] || 0)) return -1;
608
+ else if (!b["s-oo"] || b["s-oo"] < a["s-oo"]) return 1;
609
+ return 0;
610
+ });
611
+ slotRelocateNodes.forEach((n) => appendMethod.call(parent, n));
612
+ } else {
613
+ appendMethod.call(parent, slottedNodeLocation);
614
+ }
615
+ newChild["s-ol"] = slottedNodeLocation;
616
+ newChild["s-sh"] = slotNode["s-hn"];
617
+ };
618
+ var getSlotName = (node) => typeof node["s-sn"] === "string" ? node["s-sn"] : node.nodeType === 1 && node.getAttribute("slot") || void 0;
619
+ function patchSlotNode(node) {
620
+ if (node.assignedElements || node.assignedNodes || !node["s-sr"]) return;
621
+ const assignedFactory = (elementsOnly) => (function(opts) {
622
+ const toReturn = [];
623
+ const slotName = this["s-sn"];
624
+ if (opts == null ? void 0 : opts.flatten) {
625
+ console.error(`
626
+ Flattening is not supported for Stencil non-shadow slots.
627
+ You can use \`.childNodes\` to nested slot fallback content.
628
+ If you have a particular use case, please open an issue on the Stencil repo.
629
+ `);
630
+ }
631
+ const parent = this["s-cr"].parentElement;
632
+ const slottedNodes = parent.__childNodes ? parent.childNodes : getSlottedChildNodes(parent.childNodes);
633
+ slottedNodes.forEach((n) => {
634
+ if (slotName === getSlotName(n)) {
635
+ toReturn.push(n);
636
+ }
637
+ });
638
+ if (elementsOnly) {
639
+ return toReturn.filter((n) => n.nodeType === 1 /* ElementNode */);
640
+ }
641
+ return toReturn;
642
+ }).bind(node);
643
+ node.assignedElements = assignedFactory(true);
644
+ node.assignedNodes = assignedFactory(false);
645
+ }
646
+ function dispatchSlotChangeEvent(elm) {
647
+ elm.dispatchEvent(new CustomEvent("slotchange", { bubbles: false, cancelable: false, composed: false }));
648
+ }
649
+ function findSlotFromSlottedNode(slottedNode, parentHost) {
650
+ var _a;
651
+ parentHost = parentHost || ((_a = slottedNode["s-ol"]) == null ? void 0 : _a.parentElement);
652
+ if (!parentHost) return { slotNode: null, slotName: "" };
653
+ const slotName = slottedNode["s-sn"] = getSlotName(slottedNode) || "";
654
+ const childNodes = internalCall(parentHost, "childNodes");
655
+ const slotNode = getHostSlotNodes(childNodes, parentHost.tagName, slotName)[0];
656
+ return { slotNode, slotName };
657
+ }
658
+
659
+ // src/runtime/dom-extras.ts
660
+ var patchPseudoShadowDom = (hostElementPrototype) => {
661
+ patchCloneNode(hostElementPrototype);
662
+ patchSlotAppendChild(hostElementPrototype);
663
+ patchSlotAppend(hostElementPrototype);
664
+ patchSlotPrepend(hostElementPrototype);
665
+ patchSlotInsertAdjacentElement(hostElementPrototype);
666
+ patchSlotInsertAdjacentHTML(hostElementPrototype);
667
+ patchSlotInsertAdjacentText(hostElementPrototype);
668
+ patchInsertBefore(hostElementPrototype);
669
+ patchTextContent(hostElementPrototype);
670
+ patchChildSlotNodes(hostElementPrototype);
671
+ patchSlotRemoveChild(hostElementPrototype);
672
+ };
673
+ var patchCloneNode = (HostElementPrototype) => {
674
+ const orgCloneNode = HostElementPrototype.cloneNode;
675
+ HostElementPrototype.cloneNode = function(deep) {
676
+ const srcNode = this;
677
+ const isShadowDom = srcNode.shadowRoot && supportsShadow ;
678
+ const clonedNode = orgCloneNode.call(srcNode, isShadowDom ? deep : false);
679
+ if (!isShadowDom && deep) {
680
+ let i2 = 0;
681
+ let slotted, nonStencilNode;
682
+ const stencilPrivates = [
683
+ "s-id",
684
+ "s-cr",
685
+ "s-lr",
686
+ "s-rc",
687
+ "s-sc",
688
+ "s-p",
689
+ "s-cn",
690
+ "s-sr",
691
+ "s-sn",
692
+ "s-hn",
693
+ "s-ol",
694
+ "s-nr",
695
+ "s-si",
696
+ "s-rf",
697
+ "s-scs"
698
+ ];
699
+ const childNodes = this.__childNodes || this.childNodes;
700
+ for (; i2 < childNodes.length; i2++) {
701
+ slotted = childNodes[i2]["s-nr"];
702
+ nonStencilNode = stencilPrivates.every((privateField) => !childNodes[i2][privateField]);
703
+ if (slotted) {
704
+ if (clonedNode.__appendChild) {
705
+ clonedNode.__appendChild(slotted.cloneNode(true));
706
+ } else {
707
+ clonedNode.appendChild(slotted.cloneNode(true));
708
+ }
709
+ }
710
+ if (nonStencilNode) {
711
+ clonedNode.appendChild(childNodes[i2].cloneNode(true));
712
+ }
713
+ }
714
+ }
715
+ return clonedNode;
716
+ };
717
+ };
718
+ var patchSlotAppendChild = (HostElementPrototype) => {
719
+ HostElementPrototype.__appendChild = HostElementPrototype.appendChild;
720
+ HostElementPrototype.appendChild = function(newChild) {
721
+ const { slotName, slotNode } = findSlotFromSlottedNode(newChild, this);
722
+ if (slotNode) {
723
+ addSlotRelocateNode(newChild, slotNode);
724
+ const slotChildNodes = getSlotChildSiblings(slotNode, slotName);
725
+ const appendAfter = slotChildNodes[slotChildNodes.length - 1];
726
+ const parent = internalCall(appendAfter, "parentNode");
727
+ const insertedNode = internalCall(parent, "insertBefore")(newChild, appendAfter.nextSibling);
728
+ dispatchSlotChangeEvent(slotNode);
729
+ updateFallbackSlotVisibility(this);
730
+ return insertedNode;
731
+ }
732
+ return this.__appendChild(newChild);
733
+ };
734
+ };
735
+ var patchSlotRemoveChild = (ElementPrototype) => {
736
+ ElementPrototype.__removeChild = ElementPrototype.removeChild;
737
+ ElementPrototype.removeChild = function(toRemove) {
738
+ if (toRemove && typeof toRemove["s-sn"] !== "undefined") {
739
+ const childNodes = this.__childNodes || this.childNodes;
740
+ const slotNode = getHostSlotNodes(childNodes, this.tagName, toRemove["s-sn"]);
741
+ if (slotNode && toRemove.isConnected) {
742
+ toRemove.remove();
743
+ updateFallbackSlotVisibility(this);
744
+ return;
745
+ }
746
+ }
747
+ return this.__removeChild(toRemove);
748
+ };
749
+ };
750
+ var patchSlotPrepend = (HostElementPrototype) => {
751
+ HostElementPrototype.__prepend = HostElementPrototype.prepend;
752
+ HostElementPrototype.prepend = function(...newChildren) {
753
+ newChildren.forEach((newChild) => {
754
+ if (typeof newChild === "string") {
755
+ newChild = this.ownerDocument.createTextNode(newChild);
756
+ }
757
+ const slotName = (newChild["s-sn"] = getSlotName(newChild)) || "";
758
+ const childNodes = internalCall(this, "childNodes");
759
+ const slotNode = getHostSlotNodes(childNodes, this.tagName, slotName)[0];
760
+ if (slotNode) {
761
+ addSlotRelocateNode(newChild, slotNode, true);
762
+ const slotChildNodes = getSlotChildSiblings(slotNode, slotName);
763
+ const appendAfter = slotChildNodes[0];
764
+ const parent = internalCall(appendAfter, "parentNode");
765
+ const toReturn = internalCall(parent, "insertBefore")(newChild, internalCall(appendAfter, "nextSibling"));
766
+ dispatchSlotChangeEvent(slotNode);
767
+ return toReturn;
768
+ }
769
+ if (newChild.nodeType === 1 && !!newChild.getAttribute("slot")) {
770
+ newChild.hidden = true;
771
+ }
772
+ return HostElementPrototype.__prepend(newChild);
773
+ });
774
+ };
775
+ };
776
+ var patchSlotAppend = (HostElementPrototype) => {
777
+ HostElementPrototype.__append = HostElementPrototype.append;
778
+ HostElementPrototype.append = function(...newChildren) {
779
+ newChildren.forEach((newChild) => {
780
+ if (typeof newChild === "string") {
781
+ newChild = this.ownerDocument.createTextNode(newChild);
782
+ }
783
+ this.appendChild(newChild);
784
+ });
785
+ };
786
+ };
787
+ var patchSlotInsertAdjacentHTML = (HostElementPrototype) => {
788
+ const originalInsertAdjacentHtml = HostElementPrototype.insertAdjacentHTML;
789
+ HostElementPrototype.insertAdjacentHTML = function(position, text) {
790
+ if (position !== "afterbegin" && position !== "beforeend") {
791
+ return originalInsertAdjacentHtml.call(this, position, text);
792
+ }
793
+ const container = this.ownerDocument.createElement("_");
794
+ let node;
795
+ container.innerHTML = text;
796
+ if (position === "afterbegin") {
797
+ while (node = container.firstChild) {
798
+ this.prepend(node);
799
+ }
800
+ } else if (position === "beforeend") {
801
+ while (node = container.firstChild) {
802
+ this.append(node);
803
+ }
804
+ }
805
+ };
806
+ };
807
+ var patchSlotInsertAdjacentText = (HostElementPrototype) => {
808
+ HostElementPrototype.insertAdjacentText = function(position, text) {
809
+ this.insertAdjacentHTML(position, text);
810
+ };
811
+ };
812
+ var patchInsertBefore = (HostElementPrototype) => {
813
+ const eleProto = HostElementPrototype;
814
+ if (eleProto.__insertBefore) return;
815
+ eleProto.__insertBefore = HostElementPrototype.insertBefore;
816
+ HostElementPrototype.insertBefore = function(newChild, currentChild) {
817
+ const { slotName, slotNode } = findSlotFromSlottedNode(newChild, this);
818
+ const slottedNodes = this.__childNodes ? this.childNodes : getSlottedChildNodes(this.childNodes);
819
+ if (slotNode) {
820
+ let found = false;
821
+ slottedNodes.forEach((childNode) => {
822
+ if (childNode === currentChild || currentChild === null) {
823
+ found = true;
824
+ if (currentChild === null || slotName !== currentChild["s-sn"]) {
825
+ this.appendChild(newChild);
826
+ return;
827
+ }
828
+ if (slotName === currentChild["s-sn"]) {
829
+ addSlotRelocateNode(newChild, slotNode);
830
+ const parent = internalCall(currentChild, "parentNode");
831
+ internalCall(parent, "insertBefore")(newChild, currentChild);
832
+ dispatchSlotChangeEvent(slotNode);
833
+ }
834
+ return;
835
+ }
836
+ });
837
+ if (found) return newChild;
838
+ }
839
+ const parentNode = currentChild == null ? void 0 : currentChild.__parentNode;
840
+ if (parentNode && !this.isSameNode(parentNode)) {
841
+ return this.appendChild(newChild);
842
+ }
843
+ return this.__insertBefore(newChild, currentChild);
844
+ };
845
+ };
846
+ var patchSlotInsertAdjacentElement = (HostElementPrototype) => {
847
+ const originalInsertAdjacentElement = HostElementPrototype.insertAdjacentElement;
848
+ HostElementPrototype.insertAdjacentElement = function(position, element) {
849
+ if (position !== "afterbegin" && position !== "beforeend") {
850
+ return originalInsertAdjacentElement.call(this, position, element);
851
+ }
852
+ if (position === "afterbegin") {
853
+ this.prepend(element);
854
+ return element;
855
+ } else if (position === "beforeend") {
856
+ this.append(element);
857
+ return element;
858
+ }
859
+ return element;
860
+ };
861
+ };
862
+ var patchTextContent = (hostElementPrototype) => {
863
+ patchHostOriginalAccessor("textContent", hostElementPrototype);
864
+ Object.defineProperty(hostElementPrototype, "textContent", {
865
+ get: function() {
866
+ let text = "";
867
+ const childNodes = this.__childNodes ? this.childNodes : getSlottedChildNodes(this.childNodes);
868
+ childNodes.forEach((node) => text += node.textContent || "");
869
+ return text;
870
+ },
871
+ set: function(value) {
872
+ const childNodes = this.__childNodes ? this.childNodes : getSlottedChildNodes(this.childNodes);
873
+ childNodes.forEach((node) => {
874
+ if (node["s-ol"]) node["s-ol"].remove();
875
+ node.remove();
876
+ });
877
+ this.insertAdjacentHTML("beforeend", value);
878
+ }
879
+ });
880
+ };
881
+ var patchChildSlotNodes = (elm) => {
882
+ class FakeNodeList extends Array {
883
+ item(n) {
884
+ return this[n];
885
+ }
886
+ }
887
+ patchHostOriginalAccessor("children", elm);
888
+ Object.defineProperty(elm, "children", {
889
+ get() {
890
+ return this.childNodes.filter((n) => n.nodeType === 1);
891
+ }
892
+ });
893
+ Object.defineProperty(elm, "childElementCount", {
894
+ get() {
895
+ return this.children.length;
896
+ }
897
+ });
898
+ patchHostOriginalAccessor("firstChild", elm);
899
+ Object.defineProperty(elm, "firstChild", {
900
+ get() {
901
+ return this.childNodes[0];
902
+ }
903
+ });
904
+ patchHostOriginalAccessor("lastChild", elm);
905
+ Object.defineProperty(elm, "lastChild", {
906
+ get() {
907
+ return this.childNodes[this.childNodes.length - 1];
908
+ }
909
+ });
910
+ patchHostOriginalAccessor("childNodes", elm);
911
+ Object.defineProperty(elm, "childNodes", {
912
+ get() {
913
+ const result = new FakeNodeList();
914
+ result.push(...getSlottedChildNodes(this.__childNodes));
915
+ return result;
916
+ }
917
+ });
918
+ };
919
+ var patchSlottedNode = (node) => {
920
+ if (!node || node.__nextSibling !== void 0 || !globalThis.Node) return;
921
+ patchNextSibling(node);
922
+ patchPreviousSibling(node);
923
+ patchParentNode(node);
924
+ if (node.nodeType === Node.ELEMENT_NODE) {
925
+ patchNextElementSibling(node);
926
+ patchPreviousElementSibling(node);
927
+ }
928
+ };
929
+ var patchNextSibling = (node) => {
930
+ if (!node || node.__nextSibling) return;
931
+ patchHostOriginalAccessor("nextSibling", node);
932
+ Object.defineProperty(node, "nextSibling", {
933
+ get: function() {
934
+ var _a;
935
+ const parentNodes = (_a = this["s-ol"]) == null ? void 0 : _a.parentNode.childNodes;
936
+ const index = parentNodes == null ? void 0 : parentNodes.indexOf(this);
937
+ if (parentNodes && index > -1) {
938
+ return parentNodes[index + 1];
939
+ }
940
+ return this.__nextSibling;
941
+ }
942
+ });
943
+ };
944
+ var patchNextElementSibling = (element) => {
945
+ if (!element || element.__nextElementSibling) return;
946
+ patchHostOriginalAccessor("nextElementSibling", element);
947
+ Object.defineProperty(element, "nextElementSibling", {
948
+ get: function() {
949
+ var _a;
950
+ const parentEles = (_a = this["s-ol"]) == null ? void 0 : _a.parentNode.children;
951
+ const index = parentEles == null ? void 0 : parentEles.indexOf(this);
952
+ if (parentEles && index > -1) {
953
+ return parentEles[index + 1];
954
+ }
955
+ return this.__nextElementSibling;
956
+ }
957
+ });
958
+ };
959
+ var patchPreviousSibling = (node) => {
960
+ if (!node || node.__previousSibling) return;
961
+ patchHostOriginalAccessor("previousSibling", node);
962
+ Object.defineProperty(node, "previousSibling", {
963
+ get: function() {
964
+ var _a;
965
+ const parentNodes = (_a = this["s-ol"]) == null ? void 0 : _a.parentNode.childNodes;
966
+ const index = parentNodes == null ? void 0 : parentNodes.indexOf(this);
967
+ if (parentNodes && index > -1) {
968
+ return parentNodes[index - 1];
969
+ }
970
+ return this.__previousSibling;
971
+ }
972
+ });
973
+ };
974
+ var patchPreviousElementSibling = (element) => {
975
+ if (!element || element.__previousElementSibling) return;
976
+ patchHostOriginalAccessor("previousElementSibling", element);
977
+ Object.defineProperty(element, "previousElementSibling", {
978
+ get: function() {
979
+ var _a;
980
+ const parentNodes = (_a = this["s-ol"]) == null ? void 0 : _a.parentNode.children;
981
+ const index = parentNodes == null ? void 0 : parentNodes.indexOf(this);
982
+ if (parentNodes && index > -1) {
983
+ return parentNodes[index - 1];
984
+ }
985
+ return this.__previousElementSibling;
986
+ }
987
+ });
988
+ };
989
+ var patchParentNode = (node) => {
990
+ if (!node || node.__parentNode) return;
991
+ patchHostOriginalAccessor("parentNode", node);
992
+ Object.defineProperty(node, "parentNode", {
993
+ get: function() {
994
+ var _a;
995
+ return ((_a = this["s-ol"]) == null ? void 0 : _a.parentNode) || this.__parentNode;
996
+ },
997
+ set: function(value) {
998
+ this.__parentNode = value;
999
+ }
1000
+ });
1001
+ };
1002
+ var validElementPatches = ["children", "nextElementSibling", "previousElementSibling"];
1003
+ var validNodesPatches = [
1004
+ "childNodes",
1005
+ "firstChild",
1006
+ "lastChild",
1007
+ "nextSibling",
1008
+ "previousSibling",
1009
+ "textContent",
1010
+ "parentNode"
1011
+ ];
1012
+ function patchHostOriginalAccessor(accessorName, node) {
1013
+ if (!globalThis.Node || !globalThis.Element) {
1014
+ return;
1015
+ }
1016
+ let accessor;
1017
+ if (validElementPatches.includes(accessorName)) {
1018
+ accessor = Object.getOwnPropertyDescriptor(Element.prototype, accessorName);
1019
+ } else if (validNodesPatches.includes(accessorName)) {
1020
+ accessor = Object.getOwnPropertyDescriptor(Node.prototype, accessorName);
1021
+ }
1022
+ if (!accessor) {
1023
+ accessor = Object.getOwnPropertyDescriptor(node, accessorName);
1024
+ }
1025
+ if (accessor) Object.defineProperty(node, "__" + accessorName, accessor);
1026
+ }
1027
+ function internalCall(node, method) {
1028
+ if ("__" + method in node) {
1029
+ const toReturn = node["__" + method];
1030
+ if (typeof toReturn !== "function") return toReturn;
1031
+ return toReturn.bind(node);
1032
+ } else {
1033
+ if (typeof node[method] !== "function") return node[method];
1034
+ return node[method].bind(node);
1035
+ }
1036
+ }
256
1037
  var createTime = (fnName, tagName = "") => {
257
1038
  {
258
1039
  return () => {
@@ -260,11 +1041,130 @@ var createTime = (fnName, tagName = "") => {
260
1041
  };
261
1042
  }
262
1043
  };
263
- var uniqueTime = (key, measureText) => {
264
- {
265
- return () => {
266
- return;
267
- };
1044
+ var uniqueTime = (key, measureText) => {
1045
+ {
1046
+ return () => {
1047
+ return;
1048
+ };
1049
+ }
1050
+ };
1051
+ var rootAppliedStyles = /* @__PURE__ */ new WeakMap();
1052
+ var registerStyle = (scopeId2, cssText, allowCS) => {
1053
+ let style = styles.get(scopeId2);
1054
+ if (supportsConstructableStylesheets && allowCS) {
1055
+ style = style || new CSSStyleSheet();
1056
+ if (typeof style === "string") {
1057
+ style = cssText;
1058
+ } else {
1059
+ style.replaceSync(cssText);
1060
+ }
1061
+ } else {
1062
+ style = cssText;
1063
+ }
1064
+ styles.set(scopeId2, style);
1065
+ };
1066
+ var addStyle = (styleContainerNode, cmpMeta, mode) => {
1067
+ var _a;
1068
+ const scopeId2 = getScopeId(cmpMeta, mode);
1069
+ const style = styles.get(scopeId2);
1070
+ if (!win.document) {
1071
+ return scopeId2;
1072
+ }
1073
+ styleContainerNode = styleContainerNode.nodeType === 11 /* DocumentFragment */ ? styleContainerNode : win.document;
1074
+ if (style) {
1075
+ if (typeof style === "string") {
1076
+ styleContainerNode = styleContainerNode.head || styleContainerNode;
1077
+ let appliedStyles = rootAppliedStyles.get(styleContainerNode);
1078
+ let styleElm;
1079
+ if (!appliedStyles) {
1080
+ rootAppliedStyles.set(styleContainerNode, appliedStyles = /* @__PURE__ */ new Set());
1081
+ }
1082
+ if (!appliedStyles.has(scopeId2)) {
1083
+ if (styleContainerNode.host && (styleElm = styleContainerNode.querySelector(`[${HYDRATED_STYLE_ID}="${scopeId2}"]`))) {
1084
+ styleElm.innerHTML = style;
1085
+ } else {
1086
+ styleElm = win.document.createElement("style");
1087
+ styleElm.innerHTML = style;
1088
+ const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(win.document);
1089
+ if (nonce != null) {
1090
+ styleElm.setAttribute("nonce", nonce);
1091
+ }
1092
+ if (!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */)) {
1093
+ if (styleContainerNode.nodeName === "HEAD") {
1094
+ const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
1095
+ const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
1096
+ styleContainerNode.insertBefore(
1097
+ styleElm,
1098
+ (referenceNode2 == null ? void 0 : referenceNode2.parentNode) === styleContainerNode ? referenceNode2 : null
1099
+ );
1100
+ } else if ("host" in styleContainerNode) {
1101
+ if (supportsConstructableStylesheets) {
1102
+ const stylesheet = new CSSStyleSheet();
1103
+ stylesheet.replaceSync(style);
1104
+ if (supportsMutableAdoptedStyleSheets) {
1105
+ styleContainerNode.adoptedStyleSheets.unshift(stylesheet);
1106
+ } else {
1107
+ styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
1108
+ }
1109
+ } else {
1110
+ const existingStyleContainer = styleContainerNode.querySelector("style");
1111
+ if (existingStyleContainer) {
1112
+ existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
1113
+ } else {
1114
+ styleContainerNode.prepend(styleElm);
1115
+ }
1116
+ }
1117
+ } else {
1118
+ styleContainerNode.append(styleElm);
1119
+ }
1120
+ }
1121
+ if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
1122
+ styleContainerNode.insertBefore(styleElm, null);
1123
+ }
1124
+ }
1125
+ if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
1126
+ styleElm.innerHTML += SLOT_FB_CSS;
1127
+ }
1128
+ if (appliedStyles) {
1129
+ appliedStyles.add(scopeId2);
1130
+ }
1131
+ }
1132
+ } else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
1133
+ if (supportsMutableAdoptedStyleSheets) {
1134
+ styleContainerNode.adoptedStyleSheets.push(style);
1135
+ } else {
1136
+ styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
1137
+ }
1138
+ }
1139
+ }
1140
+ return scopeId2;
1141
+ };
1142
+ var attachStyles = (hostRef) => {
1143
+ const cmpMeta = hostRef.$cmpMeta$;
1144
+ const elm = hostRef.$hostElement$;
1145
+ const flags = cmpMeta.$flags$;
1146
+ const endAttachStyles = createTime("attachStyles", cmpMeta.$tagName$);
1147
+ const scopeId2 = addStyle(
1148
+ elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
1149
+ cmpMeta,
1150
+ hostRef.$modeName$
1151
+ );
1152
+ if (flags & 10 /* needsScopedEncapsulation */) {
1153
+ elm["s-sc"] = scopeId2;
1154
+ elm.classList.add(scopeId2 + "-h");
1155
+ }
1156
+ endAttachStyles();
1157
+ };
1158
+ var getScopeId = (cmp, mode) => "sc-" + (mode && cmp.$flags$ & 32 /* hasMode */ ? cmp.$tagName$ + "-" + mode : cmp.$tagName$);
1159
+ var convertScopedToShadow = (css) => css.replace(/\/\*!@([^\/]+)\*\/[^\{]+\{/g, "$1{");
1160
+ var hydrateScopedToShadow = () => {
1161
+ if (!win.document) {
1162
+ return;
1163
+ }
1164
+ const styles2 = win.document.querySelectorAll(`[${HYDRATED_STYLE_ID}]`);
1165
+ let i2 = 0;
1166
+ for (; i2 < styles2.length; i2++) {
1167
+ registerStyle(styles2[i2].getAttribute(HYDRATED_STYLE_ID), convertScopedToShadow(styles2[i2].innerHTML), true);
268
1168
  }
269
1169
  };
270
1170
  var h = (nodeName, vnodeData, ...children) => {
@@ -381,54 +1281,189 @@ var convertToPrivate = (node) => {
381
1281
 
382
1282
  // src/runtime/client-hydrate.ts
383
1283
  var initializeClientHydrate = (hostElm, tagName, hostId, hostRef) => {
1284
+ var _a, _b, _c;
384
1285
  const endHydrate = createTime("hydrateClient", tagName);
385
1286
  const shadowRoot = hostElm.shadowRoot;
386
1287
  const childRenderNodes = [];
387
1288
  const slotNodes = [];
1289
+ const slottedNodes = [];
388
1290
  const shadowRootNodes = shadowRoot ? [] : null;
389
- const vnode = hostRef.$vnode$ = newVNode(tagName, null);
390
- if (!plt.$orgLocNodes$) {
391
- initializeDocumentHydrate(doc.body, plt.$orgLocNodes$ = /* @__PURE__ */ new Map());
1291
+ const vnode = newVNode(tagName, null);
1292
+ vnode.$elm$ = hostElm;
1293
+ const members = Object.entries(((_a = hostRef.$cmpMeta$) == null ? void 0 : _a.$members$) || {});
1294
+ members.forEach(([memberName, [memberFlags, metaAttributeName]]) => {
1295
+ var _b2;
1296
+ if (!(memberFlags & 31 /* Prop */)) {
1297
+ return;
1298
+ }
1299
+ const attributeName = metaAttributeName || memberName;
1300
+ const attrVal = hostElm.getAttribute(attributeName);
1301
+ if (attrVal !== null) {
1302
+ const attrPropVal = parsePropertyValue(
1303
+ attrVal,
1304
+ memberFlags);
1305
+ (_b2 = hostRef == null ? void 0 : hostRef.$instanceValues$) == null ? void 0 : _b2.set(memberName, attrPropVal);
1306
+ }
1307
+ });
1308
+ let scopeId2;
1309
+ {
1310
+ const cmpMeta = hostRef.$cmpMeta$;
1311
+ if (cmpMeta && cmpMeta.$flags$ & 10 /* needsScopedEncapsulation */ && hostElm["s-sc"]) {
1312
+ scopeId2 = hostElm["s-sc"];
1313
+ hostElm.classList.add(scopeId2 + "-h");
1314
+ } else if (hostElm["s-sc"]) {
1315
+ delete hostElm["s-sc"];
1316
+ }
1317
+ }
1318
+ if (win.document && (!plt.$orgLocNodes$ || !plt.$orgLocNodes$.size)) {
1319
+ initializeDocumentHydrate(win.document.body, plt.$orgLocNodes$ = /* @__PURE__ */ new Map());
392
1320
  }
393
1321
  hostElm[HYDRATE_ID] = hostId;
394
1322
  hostElm.removeAttribute(HYDRATE_ID);
395
- clientHydrate(vnode, childRenderNodes, slotNodes, shadowRootNodes, hostElm, hostElm, hostId);
396
- childRenderNodes.map((c) => {
397
- const orgLocationId = c.$hostId$ + "." + c.$nodeId$;
1323
+ hostRef.$vnode$ = clientHydrate(
1324
+ vnode,
1325
+ childRenderNodes,
1326
+ slotNodes,
1327
+ shadowRootNodes,
1328
+ hostElm,
1329
+ hostElm,
1330
+ hostId,
1331
+ slottedNodes
1332
+ );
1333
+ let crIndex = 0;
1334
+ const crLength = childRenderNodes.length;
1335
+ let childRenderNode;
1336
+ for (crIndex; crIndex < crLength; crIndex++) {
1337
+ childRenderNode = childRenderNodes[crIndex];
1338
+ const orgLocationId = childRenderNode.$hostId$ + "." + childRenderNode.$nodeId$;
398
1339
  const orgLocationNode = plt.$orgLocNodes$.get(orgLocationId);
399
- const node = c.$elm$;
400
- if (orgLocationNode && supportsShadow && orgLocationNode["s-en"] === "") {
401
- orgLocationNode.parentNode.insertBefore(node, orgLocationNode.nextSibling);
402
- }
1340
+ const node = childRenderNode.$elm$;
403
1341
  if (!shadowRoot) {
404
- node["s-hn"] = tagName;
405
- if (orgLocationNode) {
406
- node["s-ol"] = orgLocationNode;
407
- node["s-ol"]["s-nr"] = node;
1342
+ node["s-hn"] = tagName.toUpperCase();
1343
+ if (childRenderNode.$tag$ === "slot") {
1344
+ node["s-cr"] = hostElm["s-cr"];
1345
+ }
1346
+ } else if (((_b = childRenderNode.$tag$) == null ? void 0 : _b.toString().includes("-")) && childRenderNode.$tag$ !== "slot-fb" && !childRenderNode.$elm$.shadowRoot) {
1347
+ const cmpMeta = getHostRef(childRenderNode.$elm$);
1348
+ if (cmpMeta) {
1349
+ const scopeId3 = getScopeId(
1350
+ cmpMeta.$cmpMeta$,
1351
+ childRenderNode.$elm$.getAttribute("s-mode")
1352
+ );
1353
+ const styleSheet = win.document.querySelector(`style[sty-id="${scopeId3}"]`);
1354
+ if (styleSheet) {
1355
+ hostElm.shadowRoot.append(styleSheet.cloneNode(true));
1356
+ }
408
1357
  }
409
1358
  }
410
- plt.$orgLocNodes$.delete(orgLocationId);
411
- });
412
- if (shadowRoot) {
413
- shadowRootNodes.map((shadowRootNode) => {
414
- if (shadowRootNode) {
415
- shadowRoot.appendChild(shadowRootNode);
1359
+ if (childRenderNode.$tag$ === "slot") {
1360
+ childRenderNode.$name$ = childRenderNode.$elm$["s-sn"] || childRenderNode.$elm$["name"] || null;
1361
+ if (childRenderNode.$children$) {
1362
+ childRenderNode.$flags$ |= 2 /* isSlotFallback */;
1363
+ if (!childRenderNode.$elm$.childNodes.length) {
1364
+ childRenderNode.$children$.forEach((c) => {
1365
+ childRenderNode.$elm$.appendChild(c.$elm$);
1366
+ });
1367
+ }
1368
+ } else {
1369
+ childRenderNode.$flags$ |= 1 /* isSlotReference */;
1370
+ }
1371
+ }
1372
+ if (orgLocationNode && orgLocationNode.isConnected) {
1373
+ if (orgLocationNode.parentElement.shadowRoot && orgLocationNode["s-en"] === "") {
1374
+ orgLocationNode.parentNode.insertBefore(node, orgLocationNode.nextSibling);
1375
+ }
1376
+ orgLocationNode.parentNode.removeChild(orgLocationNode);
1377
+ if (!shadowRoot) {
1378
+ node["s-oo"] = parseInt(childRenderNode.$nodeId$);
1379
+ }
1380
+ }
1381
+ if (orgLocationNode && !orgLocationNode["s-id"]) {
1382
+ plt.$orgLocNodes$.delete(orgLocationId);
1383
+ }
1384
+ }
1385
+ const hosts = [];
1386
+ const snLen = slottedNodes.length;
1387
+ let snIndex = 0;
1388
+ let slotGroup;
1389
+ let snGroupIdx;
1390
+ let snGroupLen;
1391
+ let slottedItem;
1392
+ for (snIndex; snIndex < snLen; snIndex++) {
1393
+ slotGroup = slottedNodes[snIndex];
1394
+ if (!slotGroup || !slotGroup.length) continue;
1395
+ snGroupLen = slotGroup.length;
1396
+ snGroupIdx = 0;
1397
+ for (snGroupIdx; snGroupIdx < snGroupLen; snGroupIdx++) {
1398
+ slottedItem = slotGroup[snGroupIdx];
1399
+ if (!hosts[slottedItem.hostId]) {
1400
+ hosts[slottedItem.hostId] = plt.$orgLocNodes$.get(slottedItem.hostId);
1401
+ }
1402
+ if (!hosts[slottedItem.hostId]) continue;
1403
+ const hostEle = hosts[slottedItem.hostId];
1404
+ if (hostEle.shadowRoot && slottedItem.node.parentElement !== hostEle) {
1405
+ hostEle.appendChild(slottedItem.node);
1406
+ }
1407
+ if (!hostEle.shadowRoot || !shadowRoot) {
1408
+ if (!slottedItem.slot["s-cr"]) {
1409
+ slottedItem.slot["s-cr"] = hostEle["s-cr"];
1410
+ if (!slottedItem.slot["s-cr"] && hostEle.shadowRoot) {
1411
+ slottedItem.slot["s-cr"] = hostEle;
1412
+ } else {
1413
+ slottedItem.slot["s-cr"] = (hostEle.__childNodes || hostEle.childNodes)[0];
1414
+ }
1415
+ }
1416
+ addSlotRelocateNode(slottedItem.node, slottedItem.slot, false, slottedItem.node["s-oo"]);
1417
+ if (((_c = slottedItem.node.parentElement) == null ? void 0 : _c.shadowRoot) && slottedItem.node["getAttribute"] && slottedItem.node.getAttribute("slot")) {
1418
+ slottedItem.node.removeAttribute("slot");
1419
+ }
1420
+ {
1421
+ patchSlottedNode(slottedItem.node);
1422
+ }
416
1423
  }
1424
+ }
1425
+ }
1426
+ if (scopeId2 && slotNodes.length) {
1427
+ slotNodes.forEach((slot) => {
1428
+ slot.$elm$.parentElement.classList.add(scopeId2 + "-s");
417
1429
  });
418
1430
  }
1431
+ if (shadowRoot) {
1432
+ let rnIdex = 0;
1433
+ const rnLen = shadowRootNodes.length;
1434
+ if (rnLen) {
1435
+ for (rnIdex; rnIdex < rnLen; rnIdex++) {
1436
+ const node = shadowRootNodes[rnIdex];
1437
+ if (node) {
1438
+ shadowRoot.appendChild(node);
1439
+ }
1440
+ }
1441
+ Array.from(hostElm.childNodes).forEach((node) => {
1442
+ if (typeof node["s-en"] !== "string" && typeof node["s-sn"] !== "string") {
1443
+ if (node.nodeType === 1 /* ElementNode */ && node.slot && node.hidden) {
1444
+ node.removeAttribute("hidden");
1445
+ } else if (node.nodeType === 8 /* CommentNode */ && !node.nodeValue || node.nodeType === 3 /* TextNode */ && !node.wholeText.trim()) {
1446
+ node.parentNode.removeChild(node);
1447
+ }
1448
+ }
1449
+ });
1450
+ }
1451
+ }
1452
+ hostRef.$hostElement$ = hostElm;
419
1453
  endHydrate();
420
1454
  };
421
- var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes, hostElm, node, hostId) => {
1455
+ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes, hostElm, node, hostId, slottedNodes = []) => {
422
1456
  let childNodeType;
423
1457
  let childIdSplt;
424
1458
  let childVNode;
425
1459
  let i2;
1460
+ const scopeId2 = hostElm["s-sc"];
426
1461
  if (node.nodeType === 1 /* ElementNode */) {
427
1462
  childNodeType = node.getAttribute(HYDRATE_CHILD_ID);
428
1463
  if (childNodeType) {
429
1464
  childIdSplt = childNodeType.split(".");
430
1465
  if (childIdSplt[0] === hostId || childIdSplt[0] === "0") {
431
- childVNode = {
1466
+ childVNode = createSimpleVNode({
432
1467
  $flags$: 0,
433
1468
  $hostId$: childIdSplt[0],
434
1469
  $nodeId$: childIdSplt[1],
@@ -436,18 +1471,43 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
436
1471
  $index$: childIdSplt[3],
437
1472
  $tag$: node.tagName.toLowerCase(),
438
1473
  $elm$: node,
439
- $attrs$: null,
440
- $children$: null,
441
- $key$: null,
442
- $name$: null,
443
- $text$: null
444
- };
1474
+ // If we don't add the initial classes to the VNode, the first `vdom-render.ts` patch
1475
+ // won't try to reconcile them. Classes set on the node will be blown away.
1476
+ $attrs$: { class: node.className || "" }
1477
+ });
445
1478
  childRenderNodes.push(childVNode);
446
1479
  node.removeAttribute(HYDRATE_CHILD_ID);
447
1480
  if (!parentVNode.$children$) {
448
1481
  parentVNode.$children$ = [];
449
1482
  }
450
- parentVNode.$children$[childVNode.$index$] = childVNode;
1483
+ if (scopeId2 && childIdSplt[0] === hostId) {
1484
+ node["s-si"] = scopeId2;
1485
+ childVNode.$attrs$.class += " " + scopeId2;
1486
+ }
1487
+ const slotName = childVNode.$elm$.getAttribute("s-sn");
1488
+ if (typeof slotName === "string") {
1489
+ if (childVNode.$tag$ === "slot-fb") {
1490
+ addSlot(
1491
+ slotName,
1492
+ childIdSplt[2],
1493
+ childVNode,
1494
+ node,
1495
+ parentVNode,
1496
+ childRenderNodes,
1497
+ slotNodes,
1498
+ shadowRootNodes,
1499
+ slottedNodes
1500
+ );
1501
+ if (scopeId2) {
1502
+ node.classList.add(scopeId2);
1503
+ }
1504
+ }
1505
+ childVNode.$elm$["s-sn"] = slotName;
1506
+ childVNode.$elm$.removeAttribute("s-sn");
1507
+ }
1508
+ if (childVNode.$index$ !== void 0) {
1509
+ parentVNode.$children$[childVNode.$index$] = childVNode;
1510
+ }
451
1511
  parentVNode = childVNode;
452
1512
  if (shadowRootNodes && childVNode.$depth$ === "0") {
453
1513
  shadowRootNodes[childVNode.$index$] = childVNode.$elm$;
@@ -463,31 +1523,33 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
463
1523
  shadowRootNodes,
464
1524
  hostElm,
465
1525
  node.shadowRoot.childNodes[i2],
466
- hostId
1526
+ hostId,
1527
+ slottedNodes
467
1528
  );
468
1529
  }
469
1530
  }
470
- for (i2 = node.childNodes.length - 1; i2 >= 0; i2--) {
1531
+ const nonShadowNodes = node.__childNodes || node.childNodes;
1532
+ for (i2 = nonShadowNodes.length - 1; i2 >= 0; i2--) {
471
1533
  clientHydrate(
472
1534
  parentVNode,
473
1535
  childRenderNodes,
474
1536
  slotNodes,
475
1537
  shadowRootNodes,
476
1538
  hostElm,
477
- node.childNodes[i2],
478
- hostId
1539
+ nonShadowNodes[i2],
1540
+ hostId,
1541
+ slottedNodes
479
1542
  );
480
1543
  }
481
1544
  } else if (node.nodeType === 8 /* CommentNode */) {
482
1545
  childIdSplt = node.nodeValue.split(".");
483
1546
  if (childIdSplt[1] === hostId || childIdSplt[1] === "0") {
484
1547
  childNodeType = childIdSplt[0];
485
- childVNode = {
486
- $flags$: 0,
1548
+ childVNode = createSimpleVNode({
487
1549
  $hostId$: childIdSplt[1],
488
1550
  $nodeId$: childIdSplt[2],
489
1551
  $depth$: childIdSplt[3],
490
- $index$: childIdSplt[4],
1552
+ $index$: childIdSplt[4] || "0",
491
1553
  $elm$: node,
492
1554
  $attrs$: null,
493
1555
  $children$: null,
@@ -495,46 +1557,43 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
495
1557
  $name$: null,
496
1558
  $tag$: null,
497
1559
  $text$: null
498
- };
1560
+ });
499
1561
  if (childNodeType === TEXT_NODE_ID) {
500
- childVNode.$elm$ = node.nextSibling;
1562
+ childVNode.$elm$ = findCorrespondingNode(node, 3 /* TextNode */);
501
1563
  if (childVNode.$elm$ && childVNode.$elm$.nodeType === 3 /* TextNode */) {
502
1564
  childVNode.$text$ = childVNode.$elm$.textContent;
503
1565
  childRenderNodes.push(childVNode);
504
1566
  node.remove();
505
- if (!parentVNode.$children$) {
506
- parentVNode.$children$ = [];
1567
+ if (hostId === childVNode.$hostId$) {
1568
+ if (!parentVNode.$children$) {
1569
+ parentVNode.$children$ = [];
1570
+ }
1571
+ parentVNode.$children$[childVNode.$index$] = childVNode;
507
1572
  }
508
- parentVNode.$children$[childVNode.$index$] = childVNode;
509
1573
  if (shadowRootNodes && childVNode.$depth$ === "0") {
510
1574
  shadowRootNodes[childVNode.$index$] = childVNode.$elm$;
511
1575
  }
512
1576
  }
1577
+ } else if (childNodeType === COMMENT_NODE_ID) {
1578
+ childVNode.$elm$ = findCorrespondingNode(node, 8 /* CommentNode */);
1579
+ if (childVNode.$elm$ && childVNode.$elm$.nodeType === 8 /* CommentNode */) {
1580
+ childRenderNodes.push(childVNode);
1581
+ node.remove();
1582
+ }
513
1583
  } else if (childVNode.$hostId$ === hostId) {
514
1584
  if (childNodeType === SLOT_NODE_ID) {
515
- childVNode.$tag$ = "slot";
516
- if (childIdSplt[5]) {
517
- node["s-sn"] = childVNode.$name$ = childIdSplt[5];
518
- } else {
519
- node["s-sn"] = "";
520
- }
521
- node["s-sr"] = true;
522
- if (shadowRootNodes) {
523
- childVNode.$elm$ = doc.createElement(childVNode.$tag$);
524
- if (childVNode.$name$) {
525
- childVNode.$elm$.setAttribute("name", childVNode.$name$);
526
- }
527
- node.parentNode.insertBefore(childVNode.$elm$, node);
528
- node.remove();
529
- if (childVNode.$depth$ === "0") {
530
- shadowRootNodes[childVNode.$index$] = childVNode.$elm$;
531
- }
532
- }
533
- slotNodes.push(childVNode);
534
- if (!parentVNode.$children$) {
535
- parentVNode.$children$ = [];
536
- }
537
- parentVNode.$children$[childVNode.$index$] = childVNode;
1585
+ const slotName = node["s-sn"] = childIdSplt[5] || "";
1586
+ addSlot(
1587
+ slotName,
1588
+ childIdSplt[2],
1589
+ childVNode,
1590
+ node,
1591
+ parentVNode,
1592
+ childRenderNodes,
1593
+ slotNodes,
1594
+ shadowRootNodes,
1595
+ slottedNodes
1596
+ );
538
1597
  } else if (childNodeType === CONTENT_REF_ID) {
539
1598
  if (shadowRootNodes) {
540
1599
  node.remove();
@@ -550,18 +1609,28 @@ var clientHydrate = (parentVNode, childRenderNodes, slotNodes, shadowRootNodes,
550
1609
  vnode.$elm$ = node;
551
1610
  vnode.$index$ = "0";
552
1611
  parentVNode.$children$ = [vnode];
1612
+ } else {
1613
+ if (node.nodeType === 3 /* TextNode */ && !node.wholeText.trim() && !node["s-nr"]) {
1614
+ node.remove();
1615
+ }
553
1616
  }
1617
+ return parentVNode;
554
1618
  };
555
1619
  var initializeDocumentHydrate = (node, orgLocNodes) => {
556
1620
  if (node.nodeType === 1 /* ElementNode */) {
1621
+ const componentId = node[HYDRATE_ID] || node.getAttribute(HYDRATE_ID);
1622
+ if (componentId) {
1623
+ orgLocNodes.set(componentId, node);
1624
+ }
557
1625
  let i2 = 0;
558
1626
  if (node.shadowRoot) {
559
1627
  for (; i2 < node.shadowRoot.childNodes.length; i2++) {
560
1628
  initializeDocumentHydrate(node.shadowRoot.childNodes[i2], orgLocNodes);
561
1629
  }
562
1630
  }
563
- for (i2 = 0; i2 < node.childNodes.length; i2++) {
564
- initializeDocumentHydrate(node.childNodes[i2], orgLocNodes);
1631
+ const nonShadowNodes = node.__childNodes || node.childNodes;
1632
+ for (i2 = 0; i2 < nonShadowNodes.length; i2++) {
1633
+ initializeDocumentHydrate(nonShadowNodes[i2], orgLocNodes);
565
1634
  }
566
1635
  } else if (node.nodeType === 8 /* CommentNode */) {
567
1636
  const childIdSplt = node.nodeValue.split(".");
@@ -572,18 +1641,118 @@ var initializeDocumentHydrate = (node, orgLocNodes) => {
572
1641
  }
573
1642
  }
574
1643
  };
1644
+ var createSimpleVNode = (vnode) => {
1645
+ const defaultVNode = {
1646
+ $flags$: 0,
1647
+ $hostId$: null,
1648
+ $nodeId$: null,
1649
+ $depth$: null,
1650
+ $index$: "0",
1651
+ $elm$: null,
1652
+ $attrs$: null,
1653
+ $children$: null,
1654
+ $key$: null,
1655
+ $name$: null,
1656
+ $tag$: null,
1657
+ $text$: null
1658
+ };
1659
+ return { ...defaultVNode, ...vnode };
1660
+ };
1661
+ function addSlot(slotName, slotId, childVNode, node, parentVNode, childRenderNodes, slotNodes, shadowRootNodes, slottedNodes) {
1662
+ node["s-sr"] = true;
1663
+ childVNode.$name$ = slotName || null;
1664
+ childVNode.$tag$ = "slot";
1665
+ const parentNodeId = (parentVNode == null ? void 0 : parentVNode.$elm$) ? parentVNode.$elm$["s-id"] || parentVNode.$elm$.getAttribute("s-id") : "";
1666
+ if (shadowRootNodes && win.document) {
1667
+ const slot = childVNode.$elm$ = win.document.createElement(childVNode.$tag$);
1668
+ if (childVNode.$name$) {
1669
+ childVNode.$elm$.setAttribute("name", slotName);
1670
+ }
1671
+ if (parentVNode.$elm$.shadowRoot && parentNodeId && parentNodeId !== childVNode.$hostId$) {
1672
+ internalCall(parentVNode.$elm$, "insertBefore")(slot, internalCall(parentVNode.$elm$, "children")[0]);
1673
+ } else {
1674
+ internalCall(internalCall(node, "parentNode"), "insertBefore")(slot, node);
1675
+ }
1676
+ addSlottedNodes(slottedNodes, slotId, slotName, node, childVNode.$hostId$);
1677
+ node.remove();
1678
+ if (childVNode.$depth$ === "0") {
1679
+ shadowRootNodes[childVNode.$index$] = childVNode.$elm$;
1680
+ }
1681
+ } else {
1682
+ const slot = childVNode.$elm$;
1683
+ const shouldMove = parentNodeId && parentNodeId !== childVNode.$hostId$ && parentVNode.$elm$.shadowRoot;
1684
+ addSlottedNodes(slottedNodes, slotId, slotName, node, shouldMove ? parentNodeId : childVNode.$hostId$);
1685
+ patchSlotNode(node);
1686
+ if (shouldMove) {
1687
+ parentVNode.$elm$.insertBefore(slot, parentVNode.$elm$.children[0]);
1688
+ }
1689
+ }
1690
+ childRenderNodes.push(childVNode);
1691
+ slotNodes.push(childVNode);
1692
+ if (!parentVNode.$children$) {
1693
+ parentVNode.$children$ = [];
1694
+ }
1695
+ parentVNode.$children$[childVNode.$index$] = childVNode;
1696
+ }
1697
+ var addSlottedNodes = (slottedNodes, slotNodeId, slotName, slotNode, hostId) => {
1698
+ var _a, _b;
1699
+ let slottedNode = slotNode.nextSibling;
1700
+ slottedNodes[slotNodeId] = slottedNodes[slotNodeId] || [];
1701
+ if (!slottedNode || ((_a = slottedNode.nodeValue) == null ? void 0 : _a.startsWith(SLOT_NODE_ID + "."))) return;
1702
+ do {
1703
+ if (slottedNode && ((slottedNode["getAttribute"] && slottedNode.getAttribute("slot") || slottedNode["s-sn"]) === slotName || slotName === "" && !slottedNode["s-sn"] && (!slottedNode["getAttribute"] || !slottedNode.getAttribute("slot")) && (slottedNode.nodeType === 8 /* CommentNode */ || slottedNode.nodeType === 3 /* TextNode */))) {
1704
+ slottedNode["s-sn"] = slotName;
1705
+ slottedNodes[slotNodeId].push({ slot: slotNode, node: slottedNode, hostId });
1706
+ }
1707
+ slottedNode = slottedNode == null ? void 0 : slottedNode.nextSibling;
1708
+ } while (slottedNode && !((_b = slottedNode.nodeValue) == null ? void 0 : _b.startsWith(SLOT_NODE_ID + ".")));
1709
+ };
1710
+ var findCorrespondingNode = (node, type) => {
1711
+ let sibling = node;
1712
+ do {
1713
+ sibling = sibling.nextSibling;
1714
+ } while (sibling && (sibling.nodeType !== type || !sibling.nodeValue));
1715
+ return sibling;
1716
+ };
1717
+ var createSupportsRuleRe = (selector) => {
1718
+ const safeSelector2 = escapeRegExpSpecialCharacters(selector);
1719
+ return new RegExp(
1720
+ // First capture group: match any context before the selector that's not inside @supports selector()
1721
+ // Using negative lookahead to avoid matching inside @supports selector(...) condition
1722
+ `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
1723
+ "g"
1724
+ );
1725
+ };
1726
+ createSupportsRuleRe("::slotted");
1727
+ createSupportsRuleRe(":host");
1728
+ createSupportsRuleRe(":host-context");
575
1729
 
576
1730
  // src/runtime/mode.ts
577
1731
  var computeMode = (elm) => modeResolutionChain.map((h2) => h2(elm)).find((m) => !!m);
578
1732
  var setMode = (handler) => modeResolutionChain.push(handler);
579
- var getMode = (ref) => getHostRef(ref).$modeName$;
580
- var parsePropertyValue = (propValue, propType) => {
1733
+ var getMode = (ref) => {
1734
+ var _a;
1735
+ return (_a = getHostRef(ref)) == null ? void 0 : _a.$modeName$;
1736
+ };
1737
+ var parsePropertyValue = (propValue, propType, isFormAssociated) => {
1738
+ if (typeof propValue === "string" && propValue.startsWith(SERIALIZED_PREFIX)) {
1739
+ propValue = deserializeProperty(propValue);
1740
+ return propValue;
1741
+ }
1742
+ if (typeof propValue === "string" && (propType & 16 /* Unknown */ || propType & 8 /* Any */) && (propValue.startsWith("{") && propValue.endsWith("}") || propValue.startsWith("[") && propValue.endsWith("]"))) {
1743
+ try {
1744
+ return JSON.parse(propValue);
1745
+ } catch (e) {
1746
+ }
1747
+ }
581
1748
  if (propValue != null && !isComplexType(propValue)) {
582
1749
  if (propType & 4 /* Boolean */) {
583
- return propValue === "false" ? false : propValue === "" || !!propValue;
1750
+ {
1751
+ return propValue === "false" ? false : propValue === "" || !!propValue;
1752
+ }
584
1753
  }
585
1754
  if (propType & 2 /* Number */) {
586
- return parseFloat(propValue);
1755
+ return typeof propValue === "string" ? parseFloat(propValue) : typeof propValue === "number" ? propValue : NaN;
587
1756
  }
588
1757
  if (propType & 1 /* String */) {
589
1758
  return String(propValue);
@@ -592,7 +1761,10 @@ var parsePropertyValue = (propValue, propType) => {
592
1761
  }
593
1762
  return propValue;
594
1763
  };
595
- var getElement = (ref) => getHostRef(ref).$hostElement$ ;
1764
+ var getElement = (ref) => {
1765
+ var _a;
1766
+ return (_a = getHostRef(ref)) == null ? void 0 : _a.$hostElement$ ;
1767
+ };
596
1768
 
597
1769
  // src/runtime/event-emitter.ts
598
1770
  var createEvent = (ref, name, flags) => {
@@ -613,205 +1785,160 @@ var emitEvent = (elm, name, opts) => {
613
1785
  elm.dispatchEvent(ev);
614
1786
  return ev;
615
1787
  };
616
- var rootAppliedStyles = /* @__PURE__ */ new WeakMap();
617
- var registerStyle = (scopeId2, cssText, allowCS) => {
618
- let style = styles.get(scopeId2);
619
- if (supportsConstructableStylesheets && allowCS) {
620
- style = style || new CSSStyleSheet();
621
- if (typeof style === "string") {
622
- style = cssText;
623
- } else {
624
- style.replaceSync(cssText);
625
- }
626
- } else {
627
- style = cssText;
628
- }
629
- styles.set(scopeId2, style);
630
- };
631
- var addStyle = (styleContainerNode, cmpMeta, mode) => {
632
- var _a;
633
- const scopeId2 = getScopeId(cmpMeta, mode);
634
- const style = styles.get(scopeId2);
635
- styleContainerNode = styleContainerNode.nodeType === 11 /* DocumentFragment */ ? styleContainerNode : doc;
636
- if (style) {
637
- if (typeof style === "string") {
638
- styleContainerNode = styleContainerNode.head || styleContainerNode;
639
- let appliedStyles = rootAppliedStyles.get(styleContainerNode);
640
- let styleElm;
641
- if (!appliedStyles) {
642
- rootAppliedStyles.set(styleContainerNode, appliedStyles = /* @__PURE__ */ new Set());
643
- }
644
- if (!appliedStyles.has(scopeId2)) {
645
- if (styleContainerNode.host && (styleElm = styleContainerNode.querySelector(`[${HYDRATED_STYLE_ID}="${scopeId2}"]`))) {
646
- styleElm.innerHTML = style;
647
- } else {
648
- styleElm = doc.createElement("style");
649
- styleElm.innerHTML = style;
650
- const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(doc);
651
- if (nonce != null) {
652
- styleElm.setAttribute("nonce", nonce);
653
- }
654
- const injectStyle = (
655
- /**
656
- * we render a scoped component
657
- */
658
- !(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) || /**
659
- * we are using shadow dom and render the style tag within the shadowRoot
660
- */
661
- cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD"
662
- );
663
- if (injectStyle) {
664
- styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
665
- }
666
- }
667
- if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
668
- styleElm.innerHTML += SLOT_FB_CSS;
669
- }
670
- if (appliedStyles) {
671
- appliedStyles.add(scopeId2);
672
- }
673
- }
674
- } else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
675
- styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
676
- }
677
- }
678
- return scopeId2;
679
- };
680
- var attachStyles = (hostRef) => {
681
- const cmpMeta = hostRef.$cmpMeta$;
682
- const elm = hostRef.$hostElement$;
683
- const flags = cmpMeta.$flags$;
684
- const endAttachStyles = createTime("attachStyles", cmpMeta.$tagName$);
685
- const scopeId2 = addStyle(
686
- elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
687
- cmpMeta,
688
- hostRef.$modeName$
689
- );
690
- if (flags & 10 /* needsScopedEncapsulation */ && flags & 2 /* scopedCssEncapsulation */) {
691
- elm["s-sc"] = scopeId2;
692
- elm.classList.add(scopeId2 + "-h");
693
- if (flags & 2 /* scopedCssEncapsulation */) {
694
- elm.classList.add(scopeId2 + "-s");
695
- }
1788
+ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
1789
+ if (oldValue === newValue) {
1790
+ return;
696
1791
  }
697
- endAttachStyles();
698
- };
699
- var getScopeId = (cmp, mode) => "sc-" + (mode && cmp.$flags$ & 32 /* hasMode */ ? cmp.$tagName$ + "-" + mode : cmp.$tagName$);
700
- var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
701
- if (oldValue !== newValue) {
702
- let isProp = isMemberInElement(elm, memberName);
703
- let ln = memberName.toLowerCase();
704
- if (memberName === "class") {
705
- const classList = elm.classList;
706
- const oldClasses = parseClassList(oldValue);
707
- const newClasses = parseClassList(newValue);
1792
+ let isProp = isMemberInElement(elm, memberName);
1793
+ let ln = memberName.toLowerCase();
1794
+ if (memberName === "class") {
1795
+ const classList = elm.classList;
1796
+ const oldClasses = parseClassList(oldValue);
1797
+ let newClasses = parseClassList(newValue);
1798
+ if ((elm["s-si"] || elm["s-sc"]) && initialRender) {
1799
+ const scopeId2 = elm["s-sc"] || elm["s-si"];
1800
+ newClasses.push(scopeId2);
1801
+ oldClasses.forEach((c) => {
1802
+ if (c.startsWith(scopeId2)) newClasses.push(c);
1803
+ });
1804
+ newClasses = [...new Set(newClasses)].filter((c) => c);
1805
+ classList.add(...newClasses);
1806
+ } else {
708
1807
  classList.remove(...oldClasses.filter((c) => c && !newClasses.includes(c)));
709
1808
  classList.add(...newClasses.filter((c) => c && !oldClasses.includes(c)));
710
- } else if (memberName === "style") {
711
- {
712
- for (const prop in oldValue) {
713
- if (!newValue || newValue[prop] == null) {
714
- if (prop.includes("-")) {
715
- elm.style.removeProperty(prop);
716
- } else {
717
- elm.style[prop] = "";
718
- }
719
- }
720
- }
721
- }
722
- for (const prop in newValue) {
723
- if (!oldValue || newValue[prop] !== oldValue[prop]) {
1809
+ }
1810
+ } else if (memberName === "style") {
1811
+ {
1812
+ for (const prop in oldValue) {
1813
+ if (!newValue || newValue[prop] == null) {
724
1814
  if (prop.includes("-")) {
725
- elm.style.setProperty(prop, newValue[prop]);
1815
+ elm.style.removeProperty(prop);
726
1816
  } else {
727
- elm.style[prop] = newValue[prop];
1817
+ elm.style[prop] = "";
728
1818
  }
729
1819
  }
730
1820
  }
731
- } else if (memberName === "key") ; else if (memberName === "ref") {
732
- if (newValue) {
733
- newValue(elm);
734
- }
735
- } else if ((!isProp ) && memberName[0] === "o" && memberName[1] === "n") {
736
- if (memberName[2] === "-") {
737
- memberName = memberName.slice(3);
738
- } else if (isMemberInElement(win, ln)) {
739
- memberName = ln.slice(2);
740
- } else {
741
- memberName = ln[2] + memberName.slice(3);
742
- }
743
- if (oldValue || newValue) {
744
- const capture = memberName.endsWith(CAPTURE_EVENT_SUFFIX);
745
- memberName = memberName.replace(CAPTURE_EVENT_REGEX, "");
746
- if (oldValue) {
747
- plt.rel(elm, memberName, oldValue, capture);
748
- }
749
- if (newValue) {
750
- plt.ael(elm, memberName, newValue, capture);
1821
+ }
1822
+ for (const prop in newValue) {
1823
+ if (!oldValue || newValue[prop] !== oldValue[prop]) {
1824
+ if (prop.includes("-")) {
1825
+ elm.style.setProperty(prop, newValue[prop]);
1826
+ } else {
1827
+ elm.style[prop] = newValue[prop];
751
1828
  }
752
1829
  }
1830
+ }
1831
+ } else if (memberName === "key") ; else if (memberName === "ref") {
1832
+ if (newValue) {
1833
+ newValue(elm);
1834
+ }
1835
+ } else if ((!isProp ) && memberName[0] === "o" && memberName[1] === "n") {
1836
+ if (memberName[2] === "-") {
1837
+ memberName = memberName.slice(3);
1838
+ } else if (isMemberInElement(win, ln)) {
1839
+ memberName = ln.slice(2);
753
1840
  } else {
754
- const isComplex = isComplexType(newValue);
755
- if ((isProp || isComplex && newValue !== null) && !isSvg) {
756
- try {
757
- if (!elm.tagName.includes("-")) {
758
- const n = newValue == null ? "" : newValue;
759
- if (memberName === "list") {
760
- isProp = false;
761
- } else if (oldValue == null || elm[memberName] != n) {
1841
+ memberName = ln[2] + memberName.slice(3);
1842
+ }
1843
+ if (oldValue || newValue) {
1844
+ const capture = memberName.endsWith(CAPTURE_EVENT_SUFFIX);
1845
+ memberName = memberName.replace(CAPTURE_EVENT_REGEX, "");
1846
+ if (oldValue) {
1847
+ plt.rel(elm, memberName, oldValue, capture);
1848
+ }
1849
+ if (newValue) {
1850
+ plt.ael(elm, memberName, newValue, capture);
1851
+ }
1852
+ }
1853
+ } else {
1854
+ const isComplex = isComplexType(newValue);
1855
+ if ((isProp || isComplex && newValue !== null) && !isSvg) {
1856
+ try {
1857
+ if (!elm.tagName.includes("-")) {
1858
+ const n = newValue == null ? "" : newValue;
1859
+ if (memberName === "list") {
1860
+ isProp = false;
1861
+ } else if (oldValue == null || elm[memberName] != n) {
1862
+ if (typeof elm.__lookupSetter__(memberName) === "function") {
762
1863
  elm[memberName] = n;
1864
+ } else {
1865
+ elm.setAttribute(memberName, n);
763
1866
  }
764
- } else {
765
- elm[memberName] = newValue;
766
1867
  }
767
- } catch (e) {
1868
+ } else if (elm[memberName] !== newValue) {
1869
+ elm[memberName] = newValue;
768
1870
  }
1871
+ } catch (e) {
769
1872
  }
770
- let xlink = false;
771
- {
772
- if (ln !== (ln = ln.replace(/^xlink\:?/, ""))) {
773
- memberName = ln;
774
- xlink = true;
775
- }
1873
+ }
1874
+ let xlink = false;
1875
+ {
1876
+ if (ln !== (ln = ln.replace(/^xlink\:?/, ""))) {
1877
+ memberName = ln;
1878
+ xlink = true;
776
1879
  }
777
- if (newValue == null || newValue === false) {
778
- if (newValue !== false || elm.getAttribute(memberName) === "") {
779
- if (xlink) {
780
- elm.removeAttributeNS(XLINK_NS, memberName);
781
- } else {
782
- elm.removeAttribute(memberName);
783
- }
784
- }
785
- } else if ((!isProp || flags & 4 /* isHost */ || isSvg) && !isComplex) {
786
- newValue = newValue === true ? "" : newValue;
1880
+ }
1881
+ if (newValue == null || newValue === false) {
1882
+ if (newValue !== false || elm.getAttribute(memberName) === "") {
787
1883
  if (xlink) {
788
- elm.setAttributeNS(XLINK_NS, memberName, newValue);
1884
+ elm.removeAttributeNS(XLINK_NS, memberName);
789
1885
  } else {
790
- elm.setAttribute(memberName, newValue);
1886
+ elm.removeAttribute(memberName);
791
1887
  }
792
1888
  }
1889
+ } else if ((!isProp || flags & 4 /* isHost */ || isSvg) && !isComplex && elm.nodeType === 1 /* ElementNode */) {
1890
+ newValue = newValue === true ? "" : newValue;
1891
+ if (xlink) {
1892
+ elm.setAttributeNS(XLINK_NS, memberName, newValue);
1893
+ } else {
1894
+ elm.setAttribute(memberName, newValue);
1895
+ }
793
1896
  }
794
1897
  }
795
1898
  };
796
1899
  var parseClassListRegex = /\s/;
797
- var parseClassList = (value) => !value ? [] : value.split(parseClassListRegex);
1900
+ var parseClassList = (value) => {
1901
+ if (typeof value === "object" && value && "baseVal" in value) {
1902
+ value = value.baseVal;
1903
+ }
1904
+ if (!value || typeof value !== "string") {
1905
+ return [];
1906
+ }
1907
+ return value.split(parseClassListRegex);
1908
+ };
798
1909
  var CAPTURE_EVENT_SUFFIX = "Capture";
799
1910
  var CAPTURE_EVENT_REGEX = new RegExp(CAPTURE_EVENT_SUFFIX + "$");
800
1911
 
801
1912
  // src/runtime/vdom/update-element.ts
802
- var updateElement = (oldVnode, newVnode, isSvgMode2) => {
1913
+ var updateElement = (oldVnode, newVnode, isSvgMode2, isInitialRender) => {
803
1914
  const elm = newVnode.$elm$.nodeType === 11 /* DocumentFragment */ && newVnode.$elm$.host ? newVnode.$elm$.host : newVnode.$elm$;
804
- const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || EMPTY_OBJ;
805
- const newVnodeAttrs = newVnode.$attrs$ || EMPTY_OBJ;
1915
+ const oldVnodeAttrs = oldVnode && oldVnode.$attrs$ || {};
1916
+ const newVnodeAttrs = newVnode.$attrs$ || {};
806
1917
  {
807
1918
  for (const memberName of sortedAttrNames(Object.keys(oldVnodeAttrs))) {
808
1919
  if (!(memberName in newVnodeAttrs)) {
809
- setAccessor(elm, memberName, oldVnodeAttrs[memberName], void 0, isSvgMode2, newVnode.$flags$);
1920
+ setAccessor(
1921
+ elm,
1922
+ memberName,
1923
+ oldVnodeAttrs[memberName],
1924
+ void 0,
1925
+ isSvgMode2,
1926
+ newVnode.$flags$,
1927
+ isInitialRender
1928
+ );
810
1929
  }
811
1930
  }
812
1931
  }
813
1932
  for (const memberName of sortedAttrNames(Object.keys(newVnodeAttrs))) {
814
- setAccessor(elm, memberName, oldVnodeAttrs[memberName], newVnodeAttrs[memberName], isSvgMode2, newVnode.$flags$);
1933
+ setAccessor(
1934
+ elm,
1935
+ memberName,
1936
+ oldVnodeAttrs[memberName],
1937
+ newVnodeAttrs[memberName],
1938
+ isSvgMode2,
1939
+ newVnode.$flags$,
1940
+ isInitialRender
1941
+ );
815
1942
  }
816
1943
  };
817
1944
  function sortedAttrNames(attrNames) {
@@ -832,7 +1959,7 @@ var useNativeShadowDom = false;
832
1959
  var checkSlotFallbackVisibility = false;
833
1960
  var checkSlotRelocate = false;
834
1961
  var isSvgMode = false;
835
- var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
1962
+ var createElm = (oldParentVNode, newParentVNode, childIndex) => {
836
1963
  var _a;
837
1964
  const newVNode2 = newParentVNode.$children$[childIndex];
838
1965
  let i2 = 0;
@@ -842,9 +1969,6 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
842
1969
  if (!useNativeShadowDom) {
843
1970
  checkSlotRelocate = true;
844
1971
  if (newVNode2.$tag$ === "slot") {
845
- if (scopeId) {
846
- parentElm.classList.add(scopeId + "-s");
847
- }
848
1972
  newVNode2.$flags$ |= newVNode2.$children$ ? (
849
1973
  // slot element has fallback content
850
1974
  // still create an element that "mocks" the slot element
@@ -858,14 +1982,22 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
858
1982
  }
859
1983
  }
860
1984
  if (newVNode2.$text$ !== null) {
861
- elm = newVNode2.$elm$ = doc.createTextNode(newVNode2.$text$);
1985
+ elm = newVNode2.$elm$ = win.document.createTextNode(newVNode2.$text$);
862
1986
  } else if (newVNode2.$flags$ & 1 /* isSlotReference */) {
863
- elm = newVNode2.$elm$ = doc.createTextNode("");
1987
+ elm = newVNode2.$elm$ = win.document.createTextNode("");
1988
+ {
1989
+ updateElement(null, newVNode2, isSvgMode);
1990
+ }
864
1991
  } else {
865
1992
  if (!isSvgMode) {
866
1993
  isSvgMode = newVNode2.$tag$ === "svg";
867
1994
  }
868
- elm = newVNode2.$elm$ = doc.createElementNS(
1995
+ if (!win.document) {
1996
+ throw new Error(
1997
+ "You are trying to render a Stencil component in an environment that doesn't support the DOM. Make sure to populate the [`window`](https://developer.mozilla.org/en-US/docs/Web/API/Window/window) object before rendering a component."
1998
+ );
1999
+ }
2000
+ elm = newVNode2.$elm$ = win.document.createElementNS(
869
2001
  isSvgMode ? SVG_NS : HTML_NS,
870
2002
  !useNativeShadowDom && BUILD.slotRelocation && newVNode2.$flags$ & 2 /* isSlotFallback */ ? "slot-fb" : newVNode2.$tag$
871
2003
  ) ;
@@ -875,17 +2007,12 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
875
2007
  {
876
2008
  updateElement(null, newVNode2, isSvgMode);
877
2009
  }
878
- const rootNode = elm.getRootNode();
879
- const isElementWithinShadowRoot = !rootNode.querySelector("body");
880
- if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
2010
+ if (isDef(scopeId) && elm["s-si"] !== scopeId) {
881
2011
  elm.classList.add(elm["s-si"] = scopeId);
882
2012
  }
883
- {
884
- updateElementScopeIds(elm, parentElm);
885
- }
886
2013
  if (newVNode2.$children$) {
887
2014
  for (i2 = 0; i2 < newVNode2.$children$.length; ++i2) {
888
- childNode = createElm(oldParentVNode, newVNode2, i2, elm);
2015
+ childNode = createElm(oldParentVNode, newVNode2, i2);
889
2016
  if (childNode) {
890
2017
  elm.appendChild(childNode);
891
2018
  }
@@ -906,12 +2033,16 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
906
2033
  elm["s-cr"] = contentRef;
907
2034
  elm["s-sn"] = newVNode2.$name$ || "";
908
2035
  elm["s-rf"] = (_a = newVNode2.$attrs$) == null ? void 0 : _a.ref;
2036
+ patchSlotNode(elm);
909
2037
  oldVNode = oldParentVNode && oldParentVNode.$children$ && oldParentVNode.$children$[childIndex];
910
2038
  if (oldVNode && oldVNode.$tag$ === newVNode2.$tag$ && oldParentVNode.$elm$) {
911
2039
  {
912
2040
  relocateToHostRoot(oldParentVNode.$elm$);
913
2041
  }
914
2042
  }
2043
+ {
2044
+ addRemoveSlotScopedClass(contentRef, elm, newParentVNode.$elm$, oldParentVNode == null ? void 0 : oldParentVNode.$elm$);
2045
+ }
915
2046
  }
916
2047
  }
917
2048
  return elm;
@@ -920,8 +2051,12 @@ var relocateToHostRoot = (parentElm) => {
920
2051
  plt.$flags$ |= 1 /* isTmpDisconnected */;
921
2052
  const host = parentElm.closest(hostTagName.toLowerCase());
922
2053
  if (host != null) {
923
- const contentRefNode = Array.from(host.childNodes).find((ref) => ref["s-cr"]);
924
- const childNodeArray = Array.from(parentElm.childNodes);
2054
+ const contentRefNode = Array.from(host.__childNodes || host.childNodes).find(
2055
+ (ref) => ref["s-cr"]
2056
+ );
2057
+ const childNodeArray = Array.from(
2058
+ parentElm.__childNodes || parentElm.childNodes
2059
+ );
925
2060
  for (const childNode of contentRefNode ? childNodeArray.reverse() : childNodeArray) {
926
2061
  if (childNode["s-sh"] != null) {
927
2062
  insertBefore(host, childNode, contentRefNode != null ? contentRefNode : null);
@@ -930,11 +2065,11 @@ var relocateToHostRoot = (parentElm) => {
930
2065
  }
931
2066
  }
932
2067
  }
933
- plt.$flags$ &= ~1 /* isTmpDisconnected */;
2068
+ plt.$flags$ &= -2 /* isTmpDisconnected */;
934
2069
  };
935
2070
  var putBackInOriginalLocation = (parentElm, recursive) => {
936
2071
  plt.$flags$ |= 1 /* isTmpDisconnected */;
937
- const oldSlotChildNodes = Array.from(parentElm.childNodes);
2072
+ const oldSlotChildNodes = Array.from(parentElm.__childNodes || parentElm.childNodes);
938
2073
  if (parentElm["s-sr"] && BUILD.experimentalSlotFixes) {
939
2074
  let node = parentElm;
940
2075
  while (node = node.nextSibling) {
@@ -946,7 +2081,7 @@ var putBackInOriginalLocation = (parentElm, recursive) => {
946
2081
  for (let i2 = oldSlotChildNodes.length - 1; i2 >= 0; i2--) {
947
2082
  const childNode = oldSlotChildNodes[i2];
948
2083
  if (childNode["s-hn"] !== hostTagName && childNode["s-ol"]) {
949
- insertBefore(parentReferenceNode(childNode), childNode, referenceNode(childNode));
2084
+ insertBefore(referenceNode(childNode).parentNode, childNode, referenceNode(childNode));
950
2085
  childNode["s-ol"].remove();
951
2086
  childNode["s-ol"] = void 0;
952
2087
  childNode["s-sh"] = void 0;
@@ -956,7 +2091,7 @@ var putBackInOriginalLocation = (parentElm, recursive) => {
956
2091
  putBackInOriginalLocation(childNode, recursive);
957
2092
  }
958
2093
  }
959
- plt.$flags$ &= ~1 /* isTmpDisconnected */;
2094
+ plt.$flags$ &= -2 /* isTmpDisconnected */;
960
2095
  };
961
2096
  var addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) => {
962
2097
  let containerElm = parentElm["s-cr"] && parentElm["s-cr"].parentNode || parentElm;
@@ -966,7 +2101,7 @@ var addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) => {
966
2101
  }
967
2102
  for (; startIdx <= endIdx; ++startIdx) {
968
2103
  if (vnodes[startIdx]) {
969
- childNode = createElm(null, parentVNode, startIdx, parentElm);
2104
+ childNode = createElm(null, parentVNode, startIdx);
970
2105
  if (childNode) {
971
2106
  vnodes[startIdx].$elm$ = childNode;
972
2107
  insertBefore(containerElm, childNode, referenceNode(before) );
@@ -1053,7 +2188,7 @@ var updateChildren = (parentElm, oldCh, newVNode2, newCh, isInitialRender = fals
1053
2188
  if (idxInOld >= 0) {
1054
2189
  elmToMove = oldCh[idxInOld];
1055
2190
  if (elmToMove.$tag$ !== newStartVnode.$tag$) {
1056
- node = createElm(oldCh && oldCh[newStartIdx], newVNode2, idxInOld, parentElm);
2191
+ node = createElm(oldCh && oldCh[newStartIdx], newVNode2, idxInOld);
1057
2192
  } else {
1058
2193
  patch(elmToMove, newStartVnode, isInitialRender);
1059
2194
  oldCh[idxInOld] = void 0;
@@ -1061,12 +2196,16 @@ var updateChildren = (parentElm, oldCh, newVNode2, newCh, isInitialRender = fals
1061
2196
  }
1062
2197
  newStartVnode = newCh[++newStartIdx];
1063
2198
  } else {
1064
- node = createElm(oldCh && oldCh[newStartIdx], newVNode2, newStartIdx, parentElm);
2199
+ node = createElm(oldCh && oldCh[newStartIdx], newVNode2, newStartIdx);
1065
2200
  newStartVnode = newCh[++newStartIdx];
1066
2201
  }
1067
2202
  if (node) {
1068
2203
  {
1069
- insertBefore(parentReferenceNode(oldStartVnode.$elm$), node, referenceNode(oldStartVnode.$elm$));
2204
+ insertBefore(
2205
+ referenceNode(oldStartVnode.$elm$).parentNode,
2206
+ node,
2207
+ referenceNode(oldStartVnode.$elm$)
2208
+ );
1070
2209
  }
1071
2210
  }
1072
2211
  }
@@ -1087,28 +2226,19 @@ var updateChildren = (parentElm, oldCh, newVNode2, newCh, isInitialRender = fals
1087
2226
  var isSameVnode = (leftVNode, rightVNode, isInitialRender = false) => {
1088
2227
  if (leftVNode.$tag$ === rightVNode.$tag$) {
1089
2228
  if (leftVNode.$tag$ === "slot") {
1090
- if (
1091
- // The component gets hydrated and no VDOM has been initialized.
1092
- // Here the comparison can't happen as $name$ property is not set for `leftNode`.
1093
- "$nodeId$" in leftVNode && isInitialRender && // `leftNode` is not from type HTMLComment which would cause many
1094
- // hydration comments to be removed
1095
- leftVNode.$elm$.nodeType !== 8
1096
- ) {
1097
- return false;
1098
- }
1099
2229
  return leftVNode.$name$ === rightVNode.$name$;
1100
2230
  }
1101
2231
  if (!isInitialRender) {
1102
2232
  return leftVNode.$key$ === rightVNode.$key$;
1103
2233
  }
2234
+ if (isInitialRender && !leftVNode.$key$ && rightVNode.$key$) {
2235
+ leftVNode.$key$ = rightVNode.$key$;
2236
+ }
1104
2237
  return true;
1105
2238
  }
1106
2239
  return false;
1107
2240
  };
1108
- var referenceNode = (node) => {
1109
- return node && node["s-ol"] || node;
1110
- };
1111
- var parentReferenceNode = (node) => (node["s-ol"] ? node["s-ol"] : node).parentNode;
2241
+ var referenceNode = (node) => node && node["s-ol"] || node;
1112
2242
  var patch = (oldVNode, newVNode2, isInitialRender = false) => {
1113
2243
  const elm = newVNode2.$elm$ = oldVNode.$elm$;
1114
2244
  const oldChildren = oldVNode.$children$;
@@ -1126,9 +2256,8 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
1126
2256
  newVNode2.$elm$["s-sn"] = newVNode2.$name$ || "";
1127
2257
  relocateToHostRoot(newVNode2.$elm$.parentElement);
1128
2258
  }
1129
- } else {
1130
- updateElement(oldVNode, newVNode2, isSvgMode);
1131
2259
  }
2260
+ updateElement(oldVNode, newVNode2, isSvgMode, isInitialRender);
1132
2261
  }
1133
2262
  if (oldChildren !== null && newChildren !== null) {
1134
2263
  updateChildren(elm, oldChildren, newVNode2, newChildren, isInitialRender);
@@ -1142,6 +2271,8 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
1142
2271
  !isInitialRender && BUILD.updatable && oldChildren !== null
1143
2272
  ) {
1144
2273
  removeVnodes(oldChildren, 0, oldChildren.length - 1);
2274
+ } else if (isInitialRender && BUILD.updatable && oldChildren !== null && newChildren === null) {
2275
+ newVNode2.$children$ = oldChildren;
1145
2276
  }
1146
2277
  if (isSvgMode && tag === "svg") {
1147
2278
  isSvgMode = false;
@@ -1152,41 +2283,15 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
1152
2283
  elm.data = text;
1153
2284
  }
1154
2285
  };
1155
- var updateFallbackSlotVisibility = (elm) => {
1156
- const childNodes = elm.childNodes;
1157
- for (const childNode of childNodes) {
1158
- if (childNode.nodeType === 1 /* ElementNode */) {
1159
- if (childNode["s-sr"]) {
1160
- const slotName = childNode["s-sn"];
1161
- childNode.hidden = false;
1162
- for (const siblingNode of childNodes) {
1163
- if (siblingNode !== childNode) {
1164
- if (siblingNode["s-hn"] !== childNode["s-hn"] || slotName !== "") {
1165
- if (siblingNode.nodeType === 1 /* ElementNode */ && (slotName === siblingNode.getAttribute("slot") || slotName === siblingNode["s-sn"]) || siblingNode.nodeType === 3 /* TextNode */ && slotName === siblingNode["s-sn"]) {
1166
- childNode.hidden = true;
1167
- break;
1168
- }
1169
- } else {
1170
- if (siblingNode.nodeType === 1 /* ElementNode */ || siblingNode.nodeType === 3 /* TextNode */ && siblingNode.textContent.trim() !== "") {
1171
- childNode.hidden = true;
1172
- break;
1173
- }
1174
- }
1175
- }
1176
- }
1177
- }
1178
- updateFallbackSlotVisibility(childNode);
1179
- }
1180
- }
1181
- };
1182
2286
  var relocateNodes = [];
1183
2287
  var markSlotContentForRelocation = (elm) => {
1184
2288
  let node;
1185
2289
  let hostContentNodes;
1186
2290
  let j;
1187
- for (const childNode of elm.childNodes) {
2291
+ const children = elm.__childNodes || elm.childNodes;
2292
+ for (const childNode of children) {
1188
2293
  if (childNode["s-sr"] && (node = childNode["s-cr"]) && node.parentNode) {
1189
- hostContentNodes = node.parentNode.childNodes;
2294
+ hostContentNodes = node.parentNode.__childNodes || node.parentNode.childNodes;
1190
2295
  const slotName = childNode["s-sn"];
1191
2296
  for (j = hostContentNodes.length - 1; j >= 0; j--) {
1192
2297
  node = hostContentNodes[j];
@@ -1228,21 +2333,6 @@ var markSlotContentForRelocation = (elm) => {
1228
2333
  }
1229
2334
  }
1230
2335
  };
1231
- var isNodeLocatedInSlot = (nodeToRelocate, slotName) => {
1232
- if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
1233
- if (nodeToRelocate.getAttribute("slot") === null && slotName === "") {
1234
- return true;
1235
- }
1236
- if (nodeToRelocate.getAttribute("slot") === slotName) {
1237
- return true;
1238
- }
1239
- return false;
1240
- }
1241
- if (nodeToRelocate["s-sn"] === slotName) {
1242
- return true;
1243
- }
1244
- return slotName === "";
1245
- };
1246
2336
  var nullifyVNodeRefs = (vNode) => {
1247
2337
  {
1248
2338
  vNode.$attrs$ && vNode.$attrs$.ref && vNode.$attrs$.ref(null);
@@ -1250,44 +2340,51 @@ var nullifyVNodeRefs = (vNode) => {
1250
2340
  }
1251
2341
  };
1252
2342
  var insertBefore = (parent, newNode, reference) => {
1253
- const inserted = parent == null ? void 0 : parent.insertBefore(newNode, reference);
1254
- {
1255
- updateElementScopeIds(newNode, parent);
1256
- }
1257
- return inserted;
1258
- };
1259
- var findScopeIds = (element) => {
1260
- const scopeIds = [];
1261
- if (element) {
1262
- scopeIds.push(
1263
- ...element["s-scs"] || [],
1264
- element["s-si"],
1265
- element["s-sc"],
1266
- ...findScopeIds(element.parentElement)
1267
- );
2343
+ if (typeof newNode["s-sn"] === "string" && !!newNode["s-sr"] && !!newNode["s-cr"]) {
2344
+ addRemoveSlotScopedClass(newNode["s-cr"], newNode, parent, newNode.parentElement);
2345
+ } else if (typeof newNode["s-sn"] === "string") {
2346
+ if (parent.getRootNode().nodeType !== 11 /* DOCUMENT_FRAGMENT_NODE */) {
2347
+ patchParentNode(newNode);
2348
+ }
2349
+ parent.insertBefore(newNode, reference);
2350
+ const { slotNode } = findSlotFromSlottedNode(newNode);
2351
+ if (slotNode) dispatchSlotChangeEvent(slotNode);
2352
+ return newNode;
2353
+ }
2354
+ if (parent.__insertBefore) {
2355
+ return parent.__insertBefore(newNode, reference);
2356
+ } else {
2357
+ return parent == null ? void 0 : parent.insertBefore(newNode, reference);
1268
2358
  }
1269
- return scopeIds;
1270
2359
  };
1271
- var updateElementScopeIds = (element, parent, iterateChildNodes = false) => {
1272
- var _a;
1273
- if (element && parent && element.nodeType === 1 /* ElementNode */) {
1274
- const scopeIds = new Set(findScopeIds(parent).filter(Boolean));
1275
- if (scopeIds.size) {
1276
- (_a = element.classList) == null ? void 0 : _a.add(...element["s-scs"] = [...scopeIds]);
1277
- if (element["s-ol"] || iterateChildNodes) {
1278
- for (const childNode of Array.from(element.childNodes)) {
1279
- updateElementScopeIds(childNode, element, true);
2360
+ function addRemoveSlotScopedClass(reference, slotNode, newParent, oldParent) {
2361
+ var _a, _b;
2362
+ let scopeId2;
2363
+ if (reference && typeof slotNode["s-sn"] === "string" && !!slotNode["s-sr"] && reference.parentNode && reference.parentNode["s-sc"] && (scopeId2 = slotNode["s-si"] || reference.parentNode["s-sc"])) {
2364
+ const scopeName = slotNode["s-sn"];
2365
+ const hostName = slotNode["s-hn"];
2366
+ (_a = newParent.classList) == null ? void 0 : _a.add(scopeId2 + "-s");
2367
+ if (oldParent && ((_b = oldParent.classList) == null ? void 0 : _b.contains(scopeId2 + "-s"))) {
2368
+ let child = (oldParent.__childNodes || oldParent.childNodes)[0];
2369
+ let found = false;
2370
+ while (child) {
2371
+ if (child["s-sn"] !== scopeName && child["s-hn"] === hostName && !!child["s-sr"]) {
2372
+ found = true;
2373
+ break;
1280
2374
  }
2375
+ child = child.nextSibling;
1281
2376
  }
2377
+ if (!found) oldParent.classList.remove(scopeId2 + "-s");
1282
2378
  }
1283
2379
  }
1284
- };
2380
+ }
1285
2381
  var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1286
2382
  var _a, _b, _c, _d, _e;
1287
2383
  const hostElm = hostRef.$hostElement$;
1288
2384
  const cmpMeta = hostRef.$cmpMeta$;
1289
2385
  const oldVNode = hostRef.$vnode$ || newVNode(null, null);
1290
- const rootVnode = isHost(renderFnResults) ? renderFnResults : h(null, null, renderFnResults);
2386
+ const isHostElement = isHost(renderFnResults);
2387
+ const rootVnode = isHostElement ? renderFnResults : h(null, null, renderFnResults);
1291
2388
  hostTagName = hostElm.tagName;
1292
2389
  if (cmpMeta.$attrsToReflect$) {
1293
2390
  rootVnode.$attrs$ = rootVnode.$attrs$ || {};
@@ -1309,7 +2406,7 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1309
2406
  {
1310
2407
  scopeId = hostElm["s-sc"];
1311
2408
  }
1312
- useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
2409
+ useNativeShadowDom = !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && !(cmpMeta.$flags$ & 128 /* shadowNeedsScopedCss */);
1313
2410
  {
1314
2411
  contentRef = hostElm["s-cr"];
1315
2412
  checkSlotFallbackVisibility = false;
@@ -1321,8 +2418,8 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1321
2418
  markSlotContentForRelocation(rootVnode.$elm$);
1322
2419
  for (const relocateData of relocateNodes) {
1323
2420
  const nodeToRelocate = relocateData.$nodeToRelocate$;
1324
- if (!nodeToRelocate["s-ol"]) {
1325
- const orgLocationNode = doc.createTextNode("");
2421
+ if (!nodeToRelocate["s-ol"] && win.document) {
2422
+ const orgLocationNode = win.document.createTextNode("");
1326
2423
  orgLocationNode["s-nr"] = nodeToRelocate;
1327
2424
  insertBefore(nodeToRelocate.parentNode, nodeToRelocate["s-ol"] = orgLocationNode, nodeToRelocate);
1328
2425
  }
@@ -1333,11 +2430,11 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1333
2430
  if (slotRefNode) {
1334
2431
  const parentNodeRef = slotRefNode.parentNode;
1335
2432
  let insertBeforeNode = slotRefNode.nextSibling;
1336
- if (insertBeforeNode && insertBeforeNode.nodeType === 1 /* ElementNode */) {
2433
+ if ((insertBeforeNode && insertBeforeNode.nodeType === 1 /* ElementNode */)) {
1337
2434
  let orgLocationNode = (_a = nodeToRelocate["s-ol"]) == null ? void 0 : _a.previousSibling;
1338
2435
  while (orgLocationNode) {
1339
2436
  let refNode = (_b = orgLocationNode["s-nr"]) != null ? _b : null;
1340
- if (refNode && refNode["s-sn"] === nodeToRelocate["s-sn"] && parentNodeRef === refNode.parentNode) {
2437
+ if (refNode && refNode["s-sn"] === nodeToRelocate["s-sn"] && parentNodeRef === (refNode.__parentNode || refNode.parentNode)) {
1341
2438
  refNode = refNode.nextSibling;
1342
2439
  while (refNode === nodeToRelocate || (refNode == null ? void 0 : refNode["s-sr"])) {
1343
2440
  refNode = refNode == null ? void 0 : refNode.nextSibling;
@@ -1350,15 +2447,17 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1350
2447
  orgLocationNode = orgLocationNode.previousSibling;
1351
2448
  }
1352
2449
  }
1353
- if (!insertBeforeNode && parentNodeRef !== nodeToRelocate.parentNode || nodeToRelocate.nextSibling !== insertBeforeNode) {
2450
+ const parent = nodeToRelocate.__parentNode || nodeToRelocate.parentNode;
2451
+ const nextSibling = nodeToRelocate.__nextSibling || nodeToRelocate.nextSibling;
2452
+ if (!insertBeforeNode && parentNodeRef !== parent || nextSibling !== insertBeforeNode) {
1354
2453
  if (nodeToRelocate !== insertBeforeNode) {
1355
2454
  insertBefore(parentNodeRef, nodeToRelocate, insertBeforeNode);
1356
- if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
2455
+ if (nodeToRelocate.nodeType === 1 /* ElementNode */ && nodeToRelocate.tagName !== "SLOT-FB") {
1357
2456
  nodeToRelocate.hidden = (_c = nodeToRelocate["s-ih"]) != null ? _c : false;
1358
2457
  }
1359
2458
  }
1360
2459
  }
1361
- nodeToRelocate && typeof slotRefNode["s-rf"] === "function" && slotRefNode["s-rf"](nodeToRelocate);
2460
+ nodeToRelocate && typeof slotRefNode["s-rf"] === "function" && slotRefNode["s-rf"](slotRefNode);
1362
2461
  } else {
1363
2462
  if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
1364
2463
  if (isInitialLoad) {
@@ -1372,11 +2471,12 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1372
2471
  if (checkSlotFallbackVisibility) {
1373
2472
  updateFallbackSlotVisibility(rootVnode.$elm$);
1374
2473
  }
1375
- plt.$flags$ &= ~1 /* isTmpDisconnected */;
2474
+ plt.$flags$ &= -2 /* isTmpDisconnected */;
1376
2475
  relocateNodes.length = 0;
1377
2476
  }
1378
2477
  if (cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
1379
- for (const childNode of rootVnode.$elm$.childNodes) {
2478
+ const children = rootVnode.$elm$.__childNodes || rootVnode.$elm$.childNodes;
2479
+ for (const childNode of children) {
1380
2480
  if (childNode["s-hn"] !== hostTagName && !childNode["s-sh"]) {
1381
2481
  if (isInitialLoad && childNode["s-ih"] == null) {
1382
2482
  childNode["s-ih"] = (_e = childNode.hidden) != null ? _e : false;
@@ -1391,7 +2491,14 @@ var renderVdom = (hostRef, renderFnResults, isInitialLoad = false) => {
1391
2491
  // src/runtime/update-component.ts
1392
2492
  var attachToAncestor = (hostRef, ancestorComponent) => {
1393
2493
  if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent["s-p"]) {
1394
- ancestorComponent["s-p"].push(new Promise((r) => hostRef.$onRenderResolve$ = r));
2494
+ const index = ancestorComponent["s-p"].push(
2495
+ new Promise(
2496
+ (r) => hostRef.$onRenderResolve$ = () => {
2497
+ ancestorComponent["s-p"].splice(index - 1, 1);
2498
+ r();
2499
+ }
2500
+ )
2501
+ );
1395
2502
  }
1396
2503
  };
1397
2504
  var scheduleUpdate = (hostRef, isInitialLoad) => {
@@ -1404,6 +2511,12 @@ var scheduleUpdate = (hostRef, isInitialLoad) => {
1404
2511
  }
1405
2512
  attachToAncestor(hostRef, hostRef.$ancestorComponent$);
1406
2513
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
2514
+ if (isInitialLoad) {
2515
+ queueMicrotask(() => {
2516
+ dispatch();
2517
+ });
2518
+ return;
2519
+ }
1407
2520
  return writeTask(dispatch) ;
1408
2521
  };
1409
2522
  var dispatchHooks = (hostRef, isInitialLoad) => {
@@ -1420,17 +2533,15 @@ var dispatchHooks = (hostRef, isInitialLoad) => {
1420
2533
  {
1421
2534
  hostRef.$flags$ |= 256 /* isListenReady */;
1422
2535
  if (hostRef.$queuedListeners$) {
1423
- hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event));
2536
+ hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event, elm));
1424
2537
  hostRef.$queuedListeners$ = void 0;
1425
2538
  }
1426
2539
  }
1427
- {
1428
- maybePromise = safeCall(instance, "componentWillLoad");
1429
- }
1430
- }
1431
- {
1432
- maybePromise = enqueue(maybePromise, () => safeCall(instance, "componentWillRender"));
2540
+ maybePromise = safeCall(instance, "componentWillLoad", void 0, elm);
2541
+ } else {
2542
+ maybePromise = safeCall(instance, "componentWillUpdate", void 0, elm);
1433
2543
  }
2544
+ maybePromise = enqueue(maybePromise, () => safeCall(instance, "componentWillRender", void 0, elm));
1434
2545
  endSchedule();
1435
2546
  return enqueue(maybePromise, () => updateComponent(hostRef, instance, isInitialLoad));
1436
2547
  };
@@ -1473,7 +2584,7 @@ var callRender = (hostRef, instance, elm, isInitialLoad) => {
1473
2584
  try {
1474
2585
  instance = instance.render && instance.render();
1475
2586
  {
1476
- hostRef.$flags$ &= ~16 /* isQueuedForUpdate */;
2587
+ hostRef.$flags$ &= -17 /* isQueuedForUpdate */;
1477
2588
  }
1478
2589
  {
1479
2590
  hostRef.$flags$ |= 2 /* hasRendered */;
@@ -1496,17 +2607,13 @@ var postUpdateComponent = (hostRef) => {
1496
2607
  const endPostUpdate = createTime("postUpdate", tagName);
1497
2608
  const instance = hostRef.$lazyInstance$ ;
1498
2609
  const ancestorComponent = hostRef.$ancestorComponent$;
1499
- {
1500
- safeCall(instance, "componentDidRender");
1501
- }
2610
+ safeCall(instance, "componentDidRender", void 0, elm);
1502
2611
  if (!(hostRef.$flags$ & 64 /* hasLoadedComponent */)) {
1503
2612
  hostRef.$flags$ |= 64 /* hasLoadedComponent */;
1504
2613
  {
1505
2614
  addHydratedFlag(elm);
1506
2615
  }
1507
- {
1508
- safeCall(instance, "componentDidLoad");
1509
- }
2616
+ safeCall(instance, "componentDidLoad", void 0, elm);
1510
2617
  endPostUpdate();
1511
2618
  {
1512
2619
  hostRef.$onReadyResolve$(elm);
@@ -1515,9 +2622,7 @@ var postUpdateComponent = (hostRef) => {
1515
2622
  }
1516
2623
  }
1517
2624
  } else {
1518
- {
1519
- safeCall(instance, "componentDidUpdate");
1520
- }
2625
+ safeCall(instance, "componentDidUpdate", void 0, elm);
1521
2626
  endPostUpdate();
1522
2627
  }
1523
2628
  {
@@ -1531,13 +2636,14 @@ var postUpdateComponent = (hostRef) => {
1531
2636
  if (hostRef.$flags$ & 512 /* needsRerender */) {
1532
2637
  nextTick(() => scheduleUpdate(hostRef, false));
1533
2638
  }
1534
- hostRef.$flags$ &= ~(4 /* isWaitingForChildren */ | 512 /* needsRerender */);
2639
+ hostRef.$flags$ &= -517;
1535
2640
  }
1536
2641
  };
1537
2642
  var forceUpdate = (ref) => {
2643
+ var _a;
1538
2644
  {
1539
2645
  const hostRef = getHostRef(ref);
1540
- const isConnected = hostRef.$hostElement$.isConnected;
2646
+ const isConnected = (_a = hostRef == null ? void 0 : hostRef.$hostElement$) == null ? void 0 : _a.isConnected;
1541
2647
  if (isConnected && (hostRef.$flags$ & (2 /* hasRendered */ | 16 /* isQueuedForUpdate */)) === 2 /* hasRendered */) {
1542
2648
  scheduleUpdate(hostRef, false);
1543
2649
  }
@@ -1545,17 +2651,20 @@ var forceUpdate = (ref) => {
1545
2651
  }
1546
2652
  };
1547
2653
  var appDidLoad = (who) => {
2654
+ var _a;
2655
+ nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
1548
2656
  {
1549
- addHydratedFlag(doc.documentElement);
2657
+ if ((_a = plt.$orgLocNodes$) == null ? void 0 : _a.size) {
2658
+ plt.$orgLocNodes$.clear();
2659
+ }
1550
2660
  }
1551
- nextTick(() => emitEvent(win, "appload", { detail: { namespace: NAMESPACE } }));
1552
2661
  };
1553
- var safeCall = (instance, method, arg) => {
2662
+ var safeCall = (instance, method, arg, elm) => {
1554
2663
  if (instance && instance[method]) {
1555
2664
  try {
1556
2665
  return instance[method](arg);
1557
2666
  } catch (e) {
1558
- consoleError(e);
2667
+ consoleError(e, elm);
1559
2668
  }
1560
2669
  }
1561
2670
  return void 0;
@@ -1569,16 +2678,21 @@ var addHydratedFlag = (elm) => {
1569
2678
  var getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
1570
2679
  var setValue = (ref, propName, newVal, cmpMeta) => {
1571
2680
  const hostRef = getHostRef(ref);
2681
+ if (!hostRef) {
2682
+ return;
2683
+ }
1572
2684
  if (!hostRef) {
1573
2685
  throw new Error(
1574
- `Couldn't find host element for "${cmpMeta.$tagName$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/ionic-team/stencil/issues/5457).`
2686
+ `Couldn't find host element for "${cmpMeta.$tagName$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`
1575
2687
  );
1576
2688
  }
1577
2689
  const elm = hostRef.$hostElement$ ;
1578
2690
  const oldVal = hostRef.$instanceValues$.get(propName);
1579
2691
  const flags = hostRef.$flags$;
1580
2692
  const instance = hostRef.$lazyInstance$ ;
1581
- newVal = parsePropertyValue(newVal, cmpMeta.$members$[propName][0]);
2693
+ newVal = parsePropertyValue(
2694
+ newVal,
2695
+ cmpMeta.$members$[propName][0]);
1582
2696
  const areBothNaN = Number.isNaN(oldVal) && Number.isNaN(newVal);
1583
2697
  const didValueChange = newVal !== oldVal && !areBothNaN;
1584
2698
  if ((!(flags & 8 /* isConstructingInstance */) || oldVal === void 0) && didValueChange) {
@@ -1597,6 +2711,11 @@ var setValue = (ref, propName, newVal, cmpMeta) => {
1597
2711
  }
1598
2712
  }
1599
2713
  if ((flags & (2 /* hasRendered */ | 16 /* isQueuedForUpdate */)) === 2 /* hasRendered */) {
2714
+ if (instance.componentShouldUpdate) {
2715
+ if (instance.componentShouldUpdate(newVal, oldVal, propName) === false) {
2716
+ return;
2717
+ }
2718
+ }
1600
2719
  scheduleUpdate(hostRef, false);
1601
2720
  }
1602
2721
  }
@@ -1614,15 +2733,77 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1614
2733
  const members = Object.entries((_a = cmpMeta.$members$) != null ? _a : {});
1615
2734
  members.map(([memberName, [memberFlags]]) => {
1616
2735
  if ((memberFlags & 31 /* Prop */ || (flags & 2 /* proxyState */) && memberFlags & 32 /* State */)) {
2736
+ const { get: origGetter, set: origSetter } = Object.getOwnPropertyDescriptor(prototype, memberName) || {};
2737
+ if (origGetter) cmpMeta.$members$[memberName][0] |= 2048 /* Getter */;
2738
+ if (origSetter) cmpMeta.$members$[memberName][0] |= 4096 /* Setter */;
2739
+ if (flags & 1 /* isElementConstructor */ || !origGetter) {
2740
+ Object.defineProperty(prototype, memberName, {
2741
+ get() {
2742
+ {
2743
+ if ((cmpMeta.$members$[memberName][0] & 2048 /* Getter */) === 0) {
2744
+ return getValue(this, memberName);
2745
+ }
2746
+ const ref = getHostRef(this);
2747
+ const instance = ref ? ref.$lazyInstance$ : prototype;
2748
+ if (!instance) return;
2749
+ return instance[memberName];
2750
+ }
2751
+ },
2752
+ configurable: true,
2753
+ enumerable: true
2754
+ });
2755
+ }
1617
2756
  Object.defineProperty(prototype, memberName, {
1618
- get() {
1619
- return getValue(this, memberName);
1620
- },
1621
2757
  set(newValue) {
1622
- setValue(this, memberName, newValue, cmpMeta);
1623
- },
1624
- configurable: true,
1625
- enumerable: true
2758
+ const ref = getHostRef(this);
2759
+ if (!ref) {
2760
+ return;
2761
+ }
2762
+ if (origSetter) {
2763
+ const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
2764
+ if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
2765
+ newValue = ref.$instanceValues$.get(memberName);
2766
+ } else if (!ref.$instanceValues$.get(memberName) && currentValue) {
2767
+ ref.$instanceValues$.set(memberName, currentValue);
2768
+ }
2769
+ origSetter.apply(this, [
2770
+ parsePropertyValue(
2771
+ newValue,
2772
+ memberFlags)
2773
+ ]);
2774
+ newValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
2775
+ setValue(this, memberName, newValue, cmpMeta);
2776
+ return;
2777
+ }
2778
+ {
2779
+ if ((flags & 1 /* isElementConstructor */) === 0 || (cmpMeta.$members$[memberName][0] & 4096 /* Setter */) === 0) {
2780
+ setValue(this, memberName, newValue, cmpMeta);
2781
+ if (flags & 1 /* isElementConstructor */ && !ref.$lazyInstance$) {
2782
+ ref.$onReadyPromise$.then(() => {
2783
+ if (cmpMeta.$members$[memberName][0] & 4096 /* Setter */ && ref.$lazyInstance$[memberName] !== ref.$instanceValues$.get(memberName)) {
2784
+ ref.$lazyInstance$[memberName] = newValue;
2785
+ }
2786
+ });
2787
+ }
2788
+ return;
2789
+ }
2790
+ const setterSetVal = () => {
2791
+ const currentValue = ref.$lazyInstance$[memberName];
2792
+ if (!ref.$instanceValues$.get(memberName) && currentValue) {
2793
+ ref.$instanceValues$.set(memberName, currentValue);
2794
+ }
2795
+ ref.$lazyInstance$[memberName] = parsePropertyValue(
2796
+ newValue,
2797
+ memberFlags);
2798
+ setValue(this, memberName, ref.$lazyInstance$[memberName], cmpMeta);
2799
+ };
2800
+ if (ref.$lazyInstance$) {
2801
+ setterSetVal();
2802
+ } else {
2803
+ ref.$onReadyPromise$.then(() => setterSetVal());
2804
+ }
2805
+ }
2806
+ }
1626
2807
  });
1627
2808
  } else if (flags & 1 /* isElementConstructor */ && memberFlags & 64 /* Method */) {
1628
2809
  Object.defineProperty(prototype, memberName, {
@@ -1643,7 +2824,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1643
2824
  plt.jmp(() => {
1644
2825
  var _a2;
1645
2826
  const propName = attrNameToPropName.get(attrName);
1646
- if (this.hasOwnProperty(propName)) {
2827
+ if (this.hasOwnProperty(propName) && BUILD.lazyLoad) {
1647
2828
  newValue = this[propName];
1648
2829
  delete this[propName];
1649
2830
  } else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && // cast type to number to avoid TS compiler issues
@@ -1652,7 +2833,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1652
2833
  } else if (propName == null) {
1653
2834
  const hostRef = getHostRef(this);
1654
2835
  const flags2 = hostRef == null ? void 0 : hostRef.$flags$;
1655
- if (flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
2836
+ if (hostRef && flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
1656
2837
  const instance = hostRef.$lazyInstance$ ;
1657
2838
  const entry = (_a2 = cmpMeta.$watchers$) == null ? void 0 : _a2[attrName];
1658
2839
  entry == null ? void 0 : entry.forEach((callbackName) => {
@@ -1663,7 +2844,11 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
1663
2844
  }
1664
2845
  return;
1665
2846
  }
1666
- this[propName] = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
2847
+ const propDesc = Object.getOwnPropertyDescriptor(prototype, propName);
2848
+ newValue = newValue === null && typeof this[propName] === "boolean" ? false : newValue;
2849
+ if (newValue !== this[propName] && (!propDesc.get || !!propDesc.set)) {
2850
+ this[propName] = newValue;
2851
+ }
1667
2852
  });
1668
2853
  };
1669
2854
  Cstr.observedAttributes = Array.from(
@@ -1692,7 +2877,7 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1692
2877
  hostRef.$flags$ |= 32 /* hasInitializedComponent */;
1693
2878
  const bundleId = cmpMeta.$lazyBundleId$;
1694
2879
  if (bundleId) {
1695
- const CstrImport = loadModule(cmpMeta);
2880
+ const CstrImport = loadModule(cmpMeta, hostRef);
1696
2881
  if (CstrImport && "then" in CstrImport) {
1697
2882
  const endLoad = uniqueTime();
1698
2883
  Cstr = await CstrImport;
@@ -1717,16 +2902,16 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1717
2902
  try {
1718
2903
  new Cstr(hostRef);
1719
2904
  } catch (e) {
1720
- consoleError(e);
2905
+ consoleError(e, elm);
1721
2906
  }
1722
2907
  {
1723
- hostRef.$flags$ &= ~8 /* isConstructingInstance */;
2908
+ hostRef.$flags$ &= -9 /* isConstructingInstance */;
1724
2909
  }
1725
2910
  {
1726
2911
  hostRef.$flags$ |= 128 /* isWatchReady */;
1727
2912
  }
1728
2913
  endNewInstance();
1729
- fireConnectedCallback(hostRef.$lazyInstance$);
2914
+ fireConnectedCallback(hostRef.$lazyInstance$, elm);
1730
2915
  } else {
1731
2916
  Cstr = elm.constructor;
1732
2917
  const cmpTag = elm.localName;
@@ -1758,9 +2943,9 @@ var initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
1758
2943
  schedule();
1759
2944
  }
1760
2945
  };
1761
- var fireConnectedCallback = (instance) => {
2946
+ var fireConnectedCallback = (instance, elm) => {
1762
2947
  {
1763
- safeCall(instance, "connectedCallback");
2948
+ safeCall(instance, "connectedCallback", void 0, elm);
1764
2949
  }
1765
2950
  };
1766
2951
 
@@ -1768,6 +2953,9 @@ var fireConnectedCallback = (instance) => {
1768
2953
  var connectedCallback = (elm) => {
1769
2954
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1770
2955
  const hostRef = getHostRef(elm);
2956
+ if (!hostRef) {
2957
+ return;
2958
+ }
1771
2959
  const cmpMeta = hostRef.$cmpMeta$;
1772
2960
  const endConnected = createTime("connectedCallback", cmpMeta.$tagName$);
1773
2961
  if (!(hostRef.$flags$ & 1 /* hasConnected */)) {
@@ -1779,6 +2967,9 @@ var connectedCallback = (elm) => {
1779
2967
  if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
1780
2968
  const scopeId2 = addStyle(elm.shadowRoot, cmpMeta, elm.getAttribute("s-mode")) ;
1781
2969
  elm.classList.remove(scopeId2 + "-h", scopeId2 + "-s");
2970
+ } else if (cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
2971
+ const scopeId2 = getScopeId(cmpMeta, elm.getAttribute("s-mode") );
2972
+ elm["s-sc"] = scopeId2;
1782
2973
  }
1783
2974
  initializeClientHydrate(elm, cmpMeta.$tagName$, hostId, hostRef);
1784
2975
  }
@@ -1813,342 +3004,77 @@ var connectedCallback = (elm) => {
1813
3004
  } else {
1814
3005
  addHostEventListeners(elm, hostRef, cmpMeta.$listeners$);
1815
3006
  if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
1816
- fireConnectedCallback(hostRef.$lazyInstance$);
3007
+ fireConnectedCallback(hostRef.$lazyInstance$, elm);
1817
3008
  } else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
1818
- hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$));
3009
+ hostRef.$onReadyPromise$.then(() => fireConnectedCallback(hostRef.$lazyInstance$, elm));
1819
3010
  }
1820
3011
  }
1821
3012
  endConnected();
1822
3013
  }
1823
3014
  };
1824
3015
  var setContentReference = (elm) => {
1825
- const contentRefElm = elm["s-cr"] = doc.createComment(
3016
+ if (!win.document) {
3017
+ return;
3018
+ }
3019
+ const contentRefElm = elm["s-cr"] = win.document.createComment(
1826
3020
  ""
1827
3021
  );
1828
3022
  contentRefElm["s-cn"] = true;
1829
3023
  insertBefore(elm, contentRefElm, elm.firstChild);
1830
3024
  };
1831
- var disconnectInstance = (instance) => {
3025
+ var disconnectInstance = (instance, elm) => {
1832
3026
  {
1833
- safeCall(instance, "disconnectedCallback");
3027
+ safeCall(instance, "disconnectedCallback", void 0, elm || instance);
1834
3028
  }
1835
3029
  };
1836
3030
  var disconnectedCallback = async (elm) => {
1837
3031
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1838
3032
  const hostRef = getHostRef(elm);
1839
3033
  {
1840
- if (hostRef.$rmListeners$) {
3034
+ if (hostRef == null ? void 0 : hostRef.$rmListeners$) {
1841
3035
  hostRef.$rmListeners$.map((rmListener) => rmListener());
1842
3036
  hostRef.$rmListeners$ = void 0;
1843
3037
  }
1844
3038
  }
1845
3039
  if (hostRef == null ? void 0 : hostRef.$lazyInstance$) {
1846
- disconnectInstance(hostRef.$lazyInstance$);
3040
+ disconnectInstance(hostRef.$lazyInstance$, elm);
1847
3041
  } else if (hostRef == null ? void 0 : hostRef.$onReadyPromise$) {
1848
- hostRef.$onReadyPromise$.then(() => disconnectInstance(hostRef.$lazyInstance$));
1849
- }
1850
- }
1851
- };
1852
- var patchPseudoShadowDom = (hostElementPrototype, descriptorPrototype) => {
1853
- patchCloneNode(hostElementPrototype);
1854
- patchSlotAppendChild(hostElementPrototype);
1855
- patchSlotAppend(hostElementPrototype);
1856
- patchSlotPrepend(hostElementPrototype);
1857
- patchSlotInsertAdjacentElement(hostElementPrototype);
1858
- patchSlotInsertAdjacentHTML(hostElementPrototype);
1859
- patchSlotInsertAdjacentText(hostElementPrototype);
1860
- patchTextContent(hostElementPrototype);
1861
- patchChildSlotNodes(hostElementPrototype, descriptorPrototype);
1862
- patchSlotRemoveChild(hostElementPrototype);
1863
- };
1864
- var patchCloneNode = (HostElementPrototype) => {
1865
- const orgCloneNode = HostElementPrototype.cloneNode;
1866
- HostElementPrototype.cloneNode = function(deep) {
1867
- const srcNode = this;
1868
- const isShadowDom = srcNode.shadowRoot && supportsShadow ;
1869
- const clonedNode = orgCloneNode.call(srcNode, isShadowDom ? deep : false);
1870
- if (!isShadowDom && deep) {
1871
- let i2 = 0;
1872
- let slotted, nonStencilNode;
1873
- const stencilPrivates = [
1874
- "s-id",
1875
- "s-cr",
1876
- "s-lr",
1877
- "s-rc",
1878
- "s-sc",
1879
- "s-p",
1880
- "s-cn",
1881
- "s-sr",
1882
- "s-sn",
1883
- "s-hn",
1884
- "s-ol",
1885
- "s-nr",
1886
- "s-si",
1887
- "s-rf",
1888
- "s-scs"
1889
- ];
1890
- for (; i2 < srcNode.childNodes.length; i2++) {
1891
- slotted = srcNode.childNodes[i2]["s-nr"];
1892
- nonStencilNode = stencilPrivates.every((privateField) => !srcNode.childNodes[i2][privateField]);
1893
- if (slotted) {
1894
- if (clonedNode.__appendChild) {
1895
- clonedNode.__appendChild(slotted.cloneNode(true));
1896
- } else {
1897
- clonedNode.appendChild(slotted.cloneNode(true));
1898
- }
1899
- }
1900
- if (nonStencilNode) {
1901
- clonedNode.appendChild(srcNode.childNodes[i2].cloneNode(true));
1902
- }
1903
- }
1904
- }
1905
- return clonedNode;
1906
- };
1907
- };
1908
- var patchSlotAppendChild = (HostElementPrototype) => {
1909
- HostElementPrototype.__appendChild = HostElementPrototype.appendChild;
1910
- HostElementPrototype.appendChild = function(newChild) {
1911
- const slotName = newChild["s-sn"] = getSlotName(newChild);
1912
- const slotNode = getHostSlotNode(this.childNodes, slotName, this.tagName);
1913
- if (slotNode) {
1914
- const slotChildNodes = getHostSlotChildNodes(slotNode, slotName);
1915
- const appendAfter = slotChildNodes[slotChildNodes.length - 1];
1916
- const insertedNode = insertBefore(appendAfter.parentNode, newChild, appendAfter.nextSibling);
1917
- updateFallbackSlotVisibility(this);
1918
- return insertedNode;
1919
- }
1920
- return this.__appendChild(newChild);
1921
- };
1922
- };
1923
- var patchSlotRemoveChild = (ElementPrototype) => {
1924
- ElementPrototype.__removeChild = ElementPrototype.removeChild;
1925
- ElementPrototype.removeChild = function(toRemove) {
1926
- if (toRemove && typeof toRemove["s-sn"] !== "undefined") {
1927
- const slotNode = getHostSlotNode(this.childNodes, toRemove["s-sn"], this.tagName);
1928
- if (slotNode) {
1929
- const slotChildNodes = getHostSlotChildNodes(slotNode, toRemove["s-sn"]);
1930
- const existingNode = slotChildNodes.find((n) => n === toRemove);
1931
- if (existingNode) {
1932
- existingNode.remove();
1933
- updateFallbackSlotVisibility(this);
1934
- return;
1935
- }
1936
- }
1937
- }
1938
- return this.__removeChild(toRemove);
1939
- };
1940
- };
1941
- var patchSlotPrepend = (HostElementPrototype) => {
1942
- const originalPrepend = HostElementPrototype.prepend;
1943
- HostElementPrototype.prepend = function(...newChildren) {
1944
- newChildren.forEach((newChild) => {
1945
- if (typeof newChild === "string") {
1946
- newChild = this.ownerDocument.createTextNode(newChild);
1947
- }
1948
- const slotName = newChild["s-sn"] = getSlotName(newChild);
1949
- const slotNode = getHostSlotNode(this.childNodes, slotName, this.tagName);
1950
- if (slotNode) {
1951
- const slotPlaceholder = document.createTextNode("");
1952
- slotPlaceholder["s-nr"] = newChild;
1953
- slotNode["s-cr"].parentNode.__appendChild(slotPlaceholder);
1954
- newChild["s-ol"] = slotPlaceholder;
1955
- const slotChildNodes = getHostSlotChildNodes(slotNode, slotName);
1956
- const appendAfter = slotChildNodes[0];
1957
- return insertBefore(appendAfter.parentNode, newChild, appendAfter.nextSibling);
1958
- }
1959
- if (newChild.nodeType === 1 && !!newChild.getAttribute("slot")) {
1960
- newChild.hidden = true;
1961
- }
1962
- return originalPrepend.call(this, newChild);
1963
- });
1964
- };
1965
- };
1966
- var patchSlotAppend = (HostElementPrototype) => {
1967
- HostElementPrototype.append = function(...newChildren) {
1968
- newChildren.forEach((newChild) => {
1969
- if (typeof newChild === "string") {
1970
- newChild = this.ownerDocument.createTextNode(newChild);
1971
- }
1972
- this.appendChild(newChild);
1973
- });
1974
- };
1975
- };
1976
- var patchSlotInsertAdjacentHTML = (HostElementPrototype) => {
1977
- const originalInsertAdjacentHtml = HostElementPrototype.insertAdjacentHTML;
1978
- HostElementPrototype.insertAdjacentHTML = function(position, text) {
1979
- if (position !== "afterbegin" && position !== "beforeend") {
1980
- return originalInsertAdjacentHtml.call(this, position, text);
1981
- }
1982
- const container = this.ownerDocument.createElement("_");
1983
- let node;
1984
- container.innerHTML = text;
1985
- if (position === "afterbegin") {
1986
- while (node = container.firstChild) {
1987
- this.prepend(node);
1988
- }
1989
- } else if (position === "beforeend") {
1990
- while (node = container.firstChild) {
1991
- this.append(node);
1992
- }
1993
- }
1994
- };
1995
- };
1996
- var patchSlotInsertAdjacentText = (HostElementPrototype) => {
1997
- HostElementPrototype.insertAdjacentText = function(position, text) {
1998
- this.insertAdjacentHTML(position, text);
1999
- };
2000
- };
2001
- var patchSlotInsertAdjacentElement = (HostElementPrototype) => {
2002
- const originalInsertAdjacentElement = HostElementPrototype.insertAdjacentElement;
2003
- HostElementPrototype.insertAdjacentElement = function(position, element) {
2004
- if (position !== "afterbegin" && position !== "beforeend") {
2005
- return originalInsertAdjacentElement.call(this, position, element);
2006
- }
2007
- if (position === "afterbegin") {
2008
- this.prepend(element);
2009
- return element;
2010
- } else if (position === "beforeend") {
2011
- this.append(element);
2012
- return element;
2013
- }
2014
- return element;
2015
- };
2016
- };
2017
- var patchTextContent = (hostElementPrototype) => {
2018
- const descriptor = Object.getOwnPropertyDescriptor(Node.prototype, "textContent");
2019
- Object.defineProperty(hostElementPrototype, "__textContent", descriptor);
2020
- {
2021
- Object.defineProperty(hostElementPrototype, "textContent", {
2022
- // To mimic shadow root behavior, we need to return the text content of all
2023
- // nodes in a slot reference node
2024
- get() {
2025
- const slotRefNodes = getAllChildSlotNodes(this.childNodes);
2026
- const textContent = slotRefNodes.map((node) => {
2027
- var _a, _b;
2028
- const text = [];
2029
- let slotContent = node.nextSibling;
2030
- while (slotContent && slotContent["s-sn"] === node["s-sn"]) {
2031
- if (slotContent.nodeType === 3 /* TEXT_NODE */ || slotContent.nodeType === 1 /* ELEMENT_NODE */) {
2032
- text.push((_b = (_a = slotContent.textContent) == null ? void 0 : _a.trim()) != null ? _b : "");
2033
- }
2034
- slotContent = slotContent.nextSibling;
2035
- }
2036
- return text.filter((ref) => ref !== "").join(" ");
2037
- }).filter((text) => text !== "").join(" ");
2038
- return " " + textContent + " ";
2039
- },
2040
- // To mimic shadow root behavior, we need to overwrite all nodes in a slot
2041
- // reference node. If a default slot reference node exists, the text content will be
2042
- // placed there. Otherwise, the new text node will be hidden
2043
- set(value) {
2044
- const slotRefNodes = getAllChildSlotNodes(this.childNodes);
2045
- slotRefNodes.forEach((node) => {
2046
- let slotContent = node.nextSibling;
2047
- while (slotContent && slotContent["s-sn"] === node["s-sn"]) {
2048
- const tmp = slotContent;
2049
- slotContent = slotContent.nextSibling;
2050
- tmp.remove();
2051
- }
2052
- if (node["s-sn"] === "") {
2053
- const textNode = this.ownerDocument.createTextNode(value);
2054
- textNode["s-sn"] = "";
2055
- insertBefore(node.parentElement, textNode, node.nextSibling);
2056
- } else {
2057
- node.remove();
2058
- }
2059
- });
2060
- }
2061
- });
2062
- }
2063
- };
2064
- var patchChildSlotNodes = (elm, cmpMeta) => {
2065
- class FakeNodeList extends Array {
2066
- item(n) {
2067
- return this[n];
2068
- }
2069
- }
2070
- if (cmpMeta.$flags$ & 8 /* needsShadowDomShim */) {
2071
- const childNodesFn = elm.__lookupGetter__("childNodes");
2072
- Object.defineProperty(elm, "children", {
2073
- get() {
2074
- return this.childNodes.map((n) => n.nodeType === 1);
2075
- }
2076
- });
2077
- Object.defineProperty(elm, "childElementCount", {
2078
- get() {
2079
- return elm.children.length;
2080
- }
2081
- });
2082
- Object.defineProperty(elm, "childNodes", {
2083
- get() {
2084
- const childNodes = childNodesFn.call(this);
2085
- if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0 && getHostRef(this).$flags$ & 2 /* hasRendered */) {
2086
- const result = new FakeNodeList();
2087
- for (let i2 = 0; i2 < childNodes.length; i2++) {
2088
- const slot = childNodes[i2]["s-nr"];
2089
- if (slot) {
2090
- result.push(slot);
2091
- }
2092
- }
2093
- return result;
2094
- }
2095
- return FakeNodeList.from(childNodes);
2096
- }
2097
- });
2098
- }
2099
- };
2100
- var getAllChildSlotNodes = (childNodes) => {
2101
- const slotRefNodes = [];
2102
- for (const childNode of Array.from(childNodes)) {
2103
- if (childNode["s-sr"]) {
2104
- slotRefNodes.push(childNode);
3042
+ hostRef.$onReadyPromise$.then(() => disconnectInstance(hostRef.$lazyInstance$, elm));
2105
3043
  }
2106
- slotRefNodes.push(...getAllChildSlotNodes(childNode.childNodes));
2107
3044
  }
2108
- return slotRefNodes;
2109
- };
2110
- var getSlotName = (node) => node["s-sn"] || node.nodeType === 1 && node.getAttribute("slot") || "";
2111
- var getHostSlotNode = (childNodes, slotName, hostName) => {
2112
- let i2 = 0;
2113
- let childNode;
2114
- for (; i2 < childNodes.length; i2++) {
2115
- childNode = childNodes[i2];
2116
- if (childNode["s-sr"] && childNode["s-sn"] === slotName && childNode["s-hn"] === hostName) {
2117
- return childNode;
2118
- }
2119
- childNode = getHostSlotNode(childNode.childNodes, slotName, hostName);
2120
- if (childNode) {
2121
- return childNode;
2122
- }
3045
+ if (rootAppliedStyles.has(elm)) {
3046
+ rootAppliedStyles.delete(elm);
2123
3047
  }
2124
- return null;
2125
- };
2126
- var getHostSlotChildNodes = (n, slotName) => {
2127
- const childNodes = [n];
2128
- while ((n = n.nextSibling) && n["s-sn"] === slotName) {
2129
- childNodes.push(n);
3048
+ if (elm.shadowRoot && rootAppliedStyles.has(elm.shadowRoot)) {
3049
+ rootAppliedStyles.delete(elm.shadowRoot);
2130
3050
  }
2131
- return childNodes;
2132
3051
  };
2133
3052
 
2134
3053
  // src/runtime/bootstrap-lazy.ts
2135
3054
  var bootstrapLazy = (lazyBundles, options = {}) => {
2136
3055
  var _a;
3056
+ if (!win.document) {
3057
+ console.warn("Stencil: No document found. Skipping bootstrapping lazy components.");
3058
+ return;
3059
+ }
2137
3060
  const endBootstrap = createTime();
2138
3061
  const cmpTags = [];
2139
3062
  const exclude = options.exclude || [];
2140
3063
  const customElements2 = win.customElements;
2141
- const head = doc.head;
3064
+ const head = win.document.head;
2142
3065
  const metaCharset = /* @__PURE__ */ head.querySelector("meta[charset]");
2143
- const dataStyles = /* @__PURE__ */ doc.createElement("style");
3066
+ const dataStyles = /* @__PURE__ */ win.document.createElement("style");
2144
3067
  const deferredConnectedCallbacks = [];
2145
3068
  let appLoadFallback;
2146
3069
  let isBootstrapping = true;
2147
3070
  Object.assign(plt, options);
2148
- plt.$resourcesUrl$ = new URL(options.resourcesUrl || "./", doc.baseURI).href;
3071
+ plt.$resourcesUrl$ = new URL(options.resourcesUrl || "./", win.document.baseURI).href;
2149
3072
  {
2150
3073
  plt.$flags$ |= 2 /* appLoaded */;
2151
3074
  }
3075
+ {
3076
+ hydrateScopedToShadow();
3077
+ }
2152
3078
  let hasSlotRelocation = false;
2153
3079
  lazyBundles.map((lazyBundle) => {
2154
3080
  lazyBundle[1].map((compactMeta) => {
@@ -2185,12 +3111,7 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
2185
3111
  if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) {
2186
3112
  {
2187
3113
  if (!self.shadowRoot) {
2188
- {
2189
- self.attachShadow({
2190
- mode: "open",
2191
- delegatesFocus: !!(cmpMeta.$flags$ & 16 /* shadowDelegatesFocus */)
2192
- });
2193
- }
3114
+ createShadowRoot.call(self, cmpMeta);
2194
3115
  } else {
2195
3116
  if (self.shadowRoot.mode !== "open") {
2196
3117
  throw new Error(
@@ -2203,6 +3124,9 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
2203
3124
  }
2204
3125
  connectedCallback() {
2205
3126
  const hostRef = getHostRef(this);
3127
+ if (!hostRef) {
3128
+ return;
3129
+ }
2206
3130
  if (!this.hasRegisteredEventListeners) {
2207
3131
  this.hasRegisteredEventListeners = true;
2208
3132
  addHostEventListeners(this, hostRef, cmpMeta.$listeners$);
@@ -2219,14 +3143,29 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
2219
3143
  }
2220
3144
  disconnectedCallback() {
2221
3145
  plt.jmp(() => disconnectedCallback(this));
3146
+ plt.raf(() => {
3147
+ var _a3;
3148
+ const hostRef = getHostRef(this);
3149
+ if (!hostRef) {
3150
+ return;
3151
+ }
3152
+ const i2 = deferredConnectedCallbacks.findIndex((host) => host === this);
3153
+ if (i2 > -1) {
3154
+ deferredConnectedCallbacks.splice(i2, 1);
3155
+ }
3156
+ if (((_a3 = hostRef == null ? void 0 : hostRef.$vnode$) == null ? void 0 : _a3.$elm$) instanceof Node && !hostRef.$vnode$.$elm$.isConnected) {
3157
+ delete hostRef.$vnode$.$elm$;
3158
+ }
3159
+ });
2222
3160
  }
2223
3161
  componentOnReady() {
2224
- return getHostRef(this).$onReadyPromise$;
3162
+ var _a3;
3163
+ return (_a3 = getHostRef(this)) == null ? void 0 : _a3.$onReadyPromise$;
2225
3164
  }
2226
3165
  };
2227
- {
2228
- if (cmpMeta.$flags$ & 2 /* scopedCssEncapsulation */) {
2229
- patchPseudoShadowDom(HostElement.prototype, cmpMeta);
3166
+ if (!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) && cmpMeta.$flags$ & 256 /* hasRenderFn */) {
3167
+ {
3168
+ patchPseudoShadowDom(HostElement.prototype);
2230
3169
  }
2231
3170
  }
2232
3171
  cmpMeta.$lazyBundleId$ = lazyBundle[0];
@@ -2248,7 +3187,7 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
2248
3187
  }
2249
3188
  if (dataStyles.innerHTML.length) {
2250
3189
  dataStyles.setAttribute("data-styles", "");
2251
- const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(doc);
3190
+ const nonce = (_a = plt.$nonce$) != null ? _a : queryNonceMetaTagContent(win.document);
2252
3191
  if (nonce != null) {
2253
3192
  dataStyles.setAttribute("nonce", nonce);
2254
3193
  }
@@ -2265,10 +3204,13 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
2265
3204
  }
2266
3205
  endBootstrap();
2267
3206
  };
3207
+
3208
+ // src/runtime/fragment.ts
3209
+ var Fragment = (_, children) => children;
2268
3210
  var addHostEventListeners = (elm, hostRef, listeners, attachParentListeners) => {
2269
- if (listeners) {
3211
+ if (listeners && win.document) {
2270
3212
  listeners.map(([flags, name, method]) => {
2271
- const target = getHostListenerTarget(elm, flags) ;
3213
+ const target = getHostListenerTarget(win.document, elm, flags) ;
2272
3214
  const handler = hostListenerProxy(hostRef, method);
2273
3215
  const opts = hostListenerOpts(flags);
2274
3216
  plt.ael(target, name, handler, opts);
@@ -2287,13 +3229,19 @@ var hostListenerProxy = (hostRef, methodName) => (ev) => {
2287
3229
  }
2288
3230
  }
2289
3231
  } catch (e) {
2290
- consoleError(e);
3232
+ consoleError(e, hostRef.$hostElement$);
2291
3233
  }
2292
3234
  };
2293
- var getHostListenerTarget = (elm, flags) => {
2294
- if (flags & 4 /* TargetDocument */) return doc;
2295
- if (flags & 8 /* TargetWindow */) return win;
2296
- if (flags & 16 /* TargetBody */) return doc.body;
3235
+ var getHostListenerTarget = (doc, elm, flags) => {
3236
+ if (flags & 4 /* TargetDocument */) {
3237
+ return doc;
3238
+ }
3239
+ if (flags & 8 /* TargetWindow */) {
3240
+ return win;
3241
+ }
3242
+ if (flags & 16 /* TargetBody */) {
3243
+ return doc.body;
3244
+ }
2297
3245
  return elm;
2298
3246
  };
2299
3247
  var hostListenerOpts = (flags) => supportsListenerOptions ? {
@@ -2305,18 +3253,26 @@ var hostListenerOpts = (flags) => supportsListenerOptions ? {
2305
3253
  var setNonce = (nonce) => plt.$nonce$ = nonce;
2306
3254
 
2307
3255
  exports.Build = Build;
3256
+ exports.Fragment = Fragment;
2308
3257
  exports.H = H;
2309
3258
  exports.Host = Host;
2310
3259
  exports.bootstrapLazy = bootstrapLazy;
3260
+ exports.config = config;
3261
+ exports.configFromSession = configFromSession;
3262
+ exports.configFromURL = configFromURL;
2311
3263
  exports.createEvent = createEvent;
2312
3264
  exports.forceUpdate = forceUpdate;
2313
3265
  exports.getAssetPath = getAssetPath;
2314
3266
  exports.getElement = getElement;
2315
3267
  exports.getMode = getMode;
2316
3268
  exports.h = h;
3269
+ exports.printIonError = printIonError;
3270
+ exports.printIonWarning = printIonWarning;
3271
+ exports.printRequiredElementError = printRequiredElementError;
2317
3272
  exports.promiseResolve = promiseResolve;
2318
3273
  exports.readTask = readTask;
2319
3274
  exports.registerInstance = registerInstance;
3275
+ exports.saveConfig = saveConfig;
2320
3276
  exports.setMode = setMode;
2321
3277
  exports.setNonce = setNonce;
2322
3278
  exports.writeTask = writeTask;