@ionic/angular 8.8.9-dev.11781098612.122c6758 → 8.8.9-dev.11781201980.1b6e8398

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 (244) hide show
  1. package/README.md +1 -1
  2. package/app-initialize.d.ts +3 -0
  3. package/common/directives/control-value-accessors/index.d.ts +1 -0
  4. package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
  5. package/common/directives/navigation/back-button.d.ts +23 -0
  6. package/common/directives/navigation/nav-params.d.ts +45 -0
  7. package/common/directives/navigation/nav.d.ts +21 -0
  8. package/common/directives/navigation/router-link-delegate.d.ts +60 -0
  9. package/common/directives/navigation/router-outlet.d.ts +104 -0
  10. package/common/directives/navigation/stack-controller.d.ts +42 -0
  11. package/common/directives/navigation/stack-utils.d.ts +38 -0
  12. package/common/directives/navigation/tabs.d.ts +83 -0
  13. package/common/index.d.ts +22 -0
  14. package/common/overlays/modal.d.ts +62 -0
  15. package/common/overlays/popover.d.ts +46 -0
  16. package/common/providers/angular-delegate.d.ts +28 -0
  17. package/common/providers/config.d.ts +11 -0
  18. package/common/providers/dom-controller.d.ts +16 -0
  19. package/common/providers/menu-controller.d.ts +78 -0
  20. package/common/providers/nav-controller.d.ts +116 -0
  21. package/common/providers/platform.d.ts +174 -0
  22. package/common/types/interfaces.d.ts +8 -0
  23. package/common/types/ionic-lifecycle-hooks.d.ts +27 -0
  24. package/common/types/overlay-options.d.ts +16 -0
  25. package/common/utils/overlay.d.ts +21 -0
  26. package/common/utils/proxy.d.ts +8 -0
  27. package/common/utils/routing.d.ts +28 -0
  28. package/common/utils/util.d.ts +1 -0
  29. package/css/core.css +1 -1
  30. package/css/core.css.map +1 -1
  31. package/css/display.css +1 -1
  32. package/css/display.css.map +1 -1
  33. package/css/flex-utils.css +1 -1
  34. package/css/flex-utils.css.map +1 -1
  35. package/css/float-elements.css.map +1 -1
  36. package/css/global.bundle.css.map +1 -1
  37. package/css/ionic/bundle.ionic.css +1 -0
  38. package/css/ionic/bundle.ionic.css.map +1 -0
  39. package/css/ionic/core.ionic.css +1 -0
  40. package/css/ionic/core.ionic.css.map +1 -0
  41. package/css/ionic/global.bundle.ionic.css +1 -0
  42. package/css/ionic/global.bundle.ionic.css.map +1 -0
  43. package/css/ionic/ionic-swiper.ionic.css +1 -0
  44. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  45. package/css/ionic/link.ionic.css +1 -0
  46. package/css/ionic/link.ionic.css.map +1 -0
  47. package/css/ionic/structure.ionic.css +1 -0
  48. package/css/ionic/structure.ionic.css.map +1 -0
  49. package/css/ionic/typography.ionic.css +1 -0
  50. package/css/ionic/typography.ionic.css.map +1 -0
  51. package/css/ionic/utils.bundle.ionic.css +1 -0
  52. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  53. package/css/ionic-swiper.css +1 -1
  54. package/css/ionic-swiper.css.map +1 -1
  55. package/css/ionic.bundle.css +1 -1
  56. package/css/ionic.bundle.css.map +1 -1
  57. package/css/normalize.css.map +1 -1
  58. package/css/padding.css.map +1 -1
  59. package/css/palettes/dark.always.css.map +1 -1
  60. package/css/palettes/dark.class.css.map +1 -1
  61. package/css/palettes/dark.system.css.map +1 -1
  62. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  63. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  64. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  65. package/css/palettes/high-contrast.always.css.map +1 -1
  66. package/css/palettes/high-contrast.class.css.map +1 -1
  67. package/css/palettes/high-contrast.system.css.map +1 -1
  68. package/css/structure.css.map +1 -1
  69. package/css/text-alignment.css.map +1 -1
  70. package/css/text-transformation.css.map +1 -1
  71. package/css/typography.css.map +1 -1
  72. package/css/utils.bundle.css +1 -1
  73. package/css/utils.bundle.css.map +1 -1
  74. package/directives/angular-component-lib/utils.d.ts +9 -0
  75. package/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  76. package/directives/control-value-accessors/index.d.ts +4 -0
  77. package/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
  78. package/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
  79. package/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  80. package/directives/navigation/ion-back-button.d.ts +9 -0
  81. package/directives/navigation/ion-nav.d.ts +8 -0
  82. package/directives/navigation/ion-router-outlet.d.ts +25 -0
  83. package/directives/navigation/ion-tabs.d.ts +13 -0
  84. package/directives/navigation/router-link-delegate.d.ts +16 -0
  85. package/directives/overlays/modal.d.ts +6 -0
  86. package/directives/overlays/popover.d.ts +6 -0
  87. package/directives/proxies-list.d.ts +2 -0
  88. package/{types/ionic-angular.d.ts → directives/proxies.d.ts} +478 -703
  89. package/directives/validators/index.d.ts +2 -0
  90. package/directives/validators/max-validator.d.ts +12 -0
  91. package/directives/validators/min-validator.d.ts +12 -0
  92. package/esm2022/app-initialize.mjs +29 -0
  93. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  94. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  95. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  96. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  97. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  98. package/esm2022/common/directives/navigation/router-link-delegate.mjs +156 -0
  99. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  100. package/esm2022/common/directives/navigation/stack-controller.mjs +280 -0
  101. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  102. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  103. package/esm2022/common/index.mjs +20 -0
  104. package/esm2022/common/ionic-angular-common.mjs +5 -0
  105. package/esm2022/common/overlays/modal.mjs +103 -0
  106. package/esm2022/common/overlays/popover.mjs +91 -0
  107. package/esm2022/common/providers/angular-delegate.mjs +203 -0
  108. package/esm2022/common/providers/config.mjs +45 -0
  109. package/esm2022/common/providers/dom-controller.mjs +45 -0
  110. package/esm2022/common/providers/menu-controller.mjs +114 -0
  111. package/esm2022/common/providers/nav-controller.mjs +235 -0
  112. package/esm2022/common/providers/platform.mjs +258 -0
  113. package/esm2022/common/types/interfaces.mjs +2 -0
  114. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  115. package/esm2022/common/types/overlay-options.mjs +2 -0
  116. package/esm2022/common/utils/overlay.mjs +26 -0
  117. package/esm2022/common/utils/proxy.mjs +47 -0
  118. package/esm2022/common/utils/routing.mjs +55 -0
  119. package/esm2022/common/utils/util.mjs +10 -0
  120. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  121. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  122. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  123. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  124. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  125. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  126. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  127. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  128. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  129. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  130. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  131. package/esm2022/directives/overlays/modal.mjs +22 -0
  132. package/esm2022/directives/overlays/popover.mjs +18 -0
  133. package/esm2022/directives/proxies-list.mjs +93 -0
  134. package/esm2022/directives/proxies.mjs +2465 -0
  135. package/esm2022/directives/validators/index.mjs +3 -0
  136. package/esm2022/directives/validators/max-validator.mjs +27 -0
  137. package/esm2022/directives/validators/min-validator.mjs +27 -0
  138. package/esm2022/index.mjs +32 -0
  139. package/esm2022/ionic-angular.mjs +5 -0
  140. package/esm2022/ionic-module.mjs +111 -0
  141. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  142. package/esm2022/providers/alert-controller.mjs +19 -0
  143. package/esm2022/providers/animation-controller.mjs +38 -0
  144. package/esm2022/providers/gesture-controller.mjs +33 -0
  145. package/esm2022/providers/loading-controller.mjs +19 -0
  146. package/esm2022/providers/menu-controller.mjs +19 -0
  147. package/esm2022/providers/modal-controller.mjs +26 -0
  148. package/esm2022/providers/picker-controller.mjs +22 -0
  149. package/esm2022/providers/popover-controller.mjs +19 -0
  150. package/esm2022/providers/toast-controller.mjs +19 -0
  151. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  152. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  153. package/esm2022/standalone/directives/datetime.mjs +95 -0
  154. package/esm2022/standalone/directives/icon.mjs +35 -0
  155. package/esm2022/standalone/directives/index.mjs +13 -0
  156. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  157. package/esm2022/standalone/directives/input.mjs +113 -0
  158. package/esm2022/standalone/directives/proxies.mjs +2356 -0
  159. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  160. package/esm2022/standalone/directives/range.mjs +78 -0
  161. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  162. package/esm2022/standalone/directives/segment.mjs +60 -0
  163. package/esm2022/standalone/directives/select.mjs +84 -0
  164. package/esm2022/standalone/directives/textarea.mjs +91 -0
  165. package/esm2022/standalone/directives/toggle.mjs +76 -0
  166. package/esm2022/standalone/index.mjs +25 -0
  167. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  168. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  169. package/esm2022/standalone/navigation/nav.mjs +28 -0
  170. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  171. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  172. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  173. package/esm2022/standalone/overlays/modal.mjs +32 -0
  174. package/esm2022/standalone/overlays/popover.mjs +28 -0
  175. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  176. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  177. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  178. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  179. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  180. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  181. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  182. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  183. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  184. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  185. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  186. package/fesm2022/ionic-angular-common.mjs +93 -107
  187. package/fesm2022/ionic-angular-common.mjs.map +1 -1
  188. package/fesm2022/ionic-angular-standalone.mjs +911 -900
  189. package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
  190. package/fesm2022/ionic-angular.mjs +779 -1087
  191. package/fesm2022/ionic-angular.mjs.map +1 -1
  192. package/index.d.ts +27 -0
  193. package/ionic-module.d.ts +28 -0
  194. package/package.json +16 -16
  195. package/providers/action-sheet-controller.d.ts +8 -0
  196. package/providers/alert-controller.d.ts +8 -0
  197. package/providers/animation-controller.d.ts +25 -0
  198. package/providers/gesture-controller.d.ts +13 -0
  199. package/providers/loading-controller.d.ts +8 -0
  200. package/providers/menu-controller.d.ts +7 -0
  201. package/providers/modal-controller.d.ts +12 -0
  202. package/providers/picker-controller.d.ts +11 -0
  203. package/providers/popover-controller.d.ts +9 -0
  204. package/providers/toast-controller.d.ts +8 -0
  205. package/schematics/add/index.js +2 -2
  206. package/schematics/utils/ast.js +3 -35
  207. package/schematics/utils/config.js +11 -10
  208. package/schematics/utils/package.js +2 -5
  209. package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
  210. package/standalone/directives/checkbox.d.ts +30 -0
  211. package/standalone/directives/datetime.d.ts +30 -0
  212. package/standalone/directives/icon.d.ts +9 -0
  213. package/standalone/directives/index.d.ts +12 -0
  214. package/standalone/directives/input-otp.d.ts +49 -0
  215. package/standalone/directives/input.d.ts +47 -0
  216. package/standalone/directives/proxies.d.ts +1062 -0
  217. package/standalone/directives/radio-group.d.ts +18 -0
  218. package/standalone/directives/range.d.ts +47 -0
  219. package/standalone/directives/searchbar.d.ts +45 -0
  220. package/standalone/directives/segment.d.ts +19 -0
  221. package/standalone/directives/select.d.ts +34 -0
  222. package/standalone/directives/textarea.d.ts +37 -0
  223. package/standalone/directives/toggle.d.ts +28 -0
  224. package/standalone/index.d.ts +23 -0
  225. package/standalone/navigation/back-button.d.ts +9 -0
  226. package/standalone/navigation/nav.d.ts +8 -0
  227. package/standalone/navigation/router-link-delegate.d.ts +10 -0
  228. package/standalone/navigation/router-outlet.d.ts +25 -0
  229. package/standalone/navigation/tabs.d.ts +13 -0
  230. package/standalone/overlays/modal.d.ts +6 -0
  231. package/standalone/overlays/popover.d.ts +6 -0
  232. package/standalone/providers/action-sheet-controller.d.ts +8 -0
  233. package/standalone/providers/alert-controller.d.ts +8 -0
  234. package/standalone/providers/animation-controller.d.ts +25 -0
  235. package/standalone/providers/gesture-controller.d.ts +13 -0
  236. package/standalone/providers/ionic-angular.d.ts +7 -0
  237. package/standalone/providers/loading-controller.d.ts +8 -0
  238. package/standalone/providers/menu-controller.d.ts +7 -0
  239. package/standalone/providers/modal-controller.d.ts +12 -0
  240. package/standalone/providers/picker-controller.d.ts +11 -0
  241. package/standalone/providers/popover-controller.d.ts +9 -0
  242. package/standalone/providers/toast-controller.d.ts +8 -0
  243. package/types/ionic-angular-common.d.ts +0 -1021
  244. package/types/ionic-angular-standalone.d.ts +0 -1560
@@ -1,6 +1,6 @@
1
1
  import { __decorate } from 'tslib';
2
2
  import * as i0 from '@angular/core';
3
- import { ViewContainerRef, ViewChild, Attribute, Optional, SkipSelf, Component, ChangeDetectionStrategy, Directive, EventEmitter, Output, ContentChildren, ContentChild, inject, Injector, EnvironmentInjector, Injectable, makeEnvironmentProviders, APP_INITIALIZER, forwardRef, HostListener } from '@angular/core';
3
+ import { ViewContainerRef, Component, Attribute, Optional, SkipSelf, ViewChild, ChangeDetectionStrategy, Directive, ContentChild, ContentChildren, inject, Injector, EnvironmentInjector, Injectable, makeEnvironmentProviders, APP_INITIALIZER, forwardRef, HostListener } from '@angular/core';
4
4
  import * as i2$1 from '@ionic/angular/common';
5
5
  import { IonRouterOutlet as IonRouterOutlet$1, ProxyCmp as ProxyCmp$1, IonBackButton as IonBackButton$1, IonModal as IonModal$1, IonPopover as IonPopover$1, RouterLinkDelegateDirective, RouterLinkWithHrefDelegateDirective, IonTabs as IonTabs$1, OverlayBaseController, AngularDelegate, ConfigToken, provideComponentInputBinding, MenuController as MenuController$1, IonNav as IonNav$1, ValueAccessor, setIonicClasses } from '@ionic/angular/common';
6
6
  export { Config, DomController, IonModalToken, IonicRouteStrategy, NavController, NavParams, Platform } from '@ionic/angular/common';
@@ -33,74 +33,78 @@ import { defineCustomElement as defineCustomElement$m } from '@ionic/core/compon
33
33
  import { defineCustomElement as defineCustomElement$n } from '@ionic/core/components/ion-col.js';
34
34
  import { defineCustomElement as defineCustomElement$o } from '@ionic/core/components/ion-content.js';
35
35
  import { defineCustomElement as defineCustomElement$p } from '@ionic/core/components/ion-datetime-button.js';
36
- import { defineCustomElement as defineCustomElement$q } from '@ionic/core/components/ion-fab.js';
37
- import { defineCustomElement as defineCustomElement$r } from '@ionic/core/components/ion-fab-button.js';
38
- import { defineCustomElement as defineCustomElement$s } from '@ionic/core/components/ion-fab-list.js';
39
- import { defineCustomElement as defineCustomElement$t } from '@ionic/core/components/ion-footer.js';
40
- import { defineCustomElement as defineCustomElement$u } from '@ionic/core/components/ion-grid.js';
41
- import { defineCustomElement as defineCustomElement$v } from '@ionic/core/components/ion-header.js';
42
- import { defineCustomElement as defineCustomElement$w } from '@ionic/core/components/ion-img.js';
43
- import { defineCustomElement as defineCustomElement$x } from '@ionic/core/components/ion-infinite-scroll.js';
44
- import { defineCustomElement as defineCustomElement$y } from '@ionic/core/components/ion-infinite-scroll-content.js';
45
- import { defineCustomElement as defineCustomElement$z } from '@ionic/core/components/ion-input-password-toggle.js';
46
- import { defineCustomElement as defineCustomElement$A } from '@ionic/core/components/ion-item.js';
47
- import { defineCustomElement as defineCustomElement$B } from '@ionic/core/components/ion-item-divider.js';
48
- import { defineCustomElement as defineCustomElement$C } from '@ionic/core/components/ion-item-group.js';
49
- import { defineCustomElement as defineCustomElement$D } from '@ionic/core/components/ion-item-option.js';
50
- import { defineCustomElement as defineCustomElement$E } from '@ionic/core/components/ion-item-options.js';
51
- import { defineCustomElement as defineCustomElement$F } from '@ionic/core/components/ion-item-sliding.js';
52
- import { defineCustomElement as defineCustomElement$G } from '@ionic/core/components/ion-label.js';
53
- import { defineCustomElement as defineCustomElement$H } from '@ionic/core/components/ion-list.js';
54
- import { defineCustomElement as defineCustomElement$I } from '@ionic/core/components/ion-list-header.js';
55
- import { defineCustomElement as defineCustomElement$J } from '@ionic/core/components/ion-loading.js';
56
- import { defineCustomElement as defineCustomElement$K } from '@ionic/core/components/ion-menu.js';
57
- import { defineCustomElement as defineCustomElement$L } from '@ionic/core/components/ion-menu-button.js';
58
- import { defineCustomElement as defineCustomElement$M } from '@ionic/core/components/ion-menu-toggle.js';
59
- import { defineCustomElement as defineCustomElement$N } from '@ionic/core/components/ion-nav-link.js';
60
- import { defineCustomElement as defineCustomElement$O } from '@ionic/core/components/ion-note.js';
61
- import { defineCustomElement as defineCustomElement$P } from '@ionic/core/components/ion-picker.js';
62
- import { defineCustomElement as defineCustomElement$Q } from '@ionic/core/components/ion-picker-column.js';
63
- import { defineCustomElement as defineCustomElement$R } from '@ionic/core/components/ion-picker-column-option.js';
64
- import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-progress-bar.js';
65
- import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-radio.js';
66
- import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-refresher.js';
67
- import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-refresher-content.js';
68
- import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-reorder.js';
69
- import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-reorder-group.js';
70
- import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-ripple-effect.js';
71
- import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-row.js';
72
- import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-segment-button.js';
73
- import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-segment-content.js';
74
- import { defineCustomElement as defineCustomElement$10 } from '@ionic/core/components/ion-segment-view.js';
75
- import { defineCustomElement as defineCustomElement$11 } from '@ionic/core/components/ion-select-modal.js';
76
- import { defineCustomElement as defineCustomElement$12 } from '@ionic/core/components/ion-select-option.js';
77
- import { defineCustomElement as defineCustomElement$13 } from '@ionic/core/components/ion-skeleton-text.js';
78
- import { defineCustomElement as defineCustomElement$14 } from '@ionic/core/components/ion-spinner.js';
79
- import { defineCustomElement as defineCustomElement$15 } from '@ionic/core/components/ion-split-pane.js';
80
- import { defineCustomElement as defineCustomElement$16 } from '@ionic/core/components/ion-tab.js';
81
- import { defineCustomElement as defineCustomElement$17 } from '@ionic/core/components/ion-tab-bar.js';
82
- import { defineCustomElement as defineCustomElement$18 } from '@ionic/core/components/ion-tab-button.js';
83
- import { defineCustomElement as defineCustomElement$19 } from '@ionic/core/components/ion-text.js';
84
- import { defineCustomElement as defineCustomElement$1a } from '@ionic/core/components/ion-thumbnail.js';
85
- import { defineCustomElement as defineCustomElement$1b } from '@ionic/core/components/ion-title.js';
86
- import { defineCustomElement as defineCustomElement$1c } from '@ionic/core/components/ion-toast.js';
87
- import { defineCustomElement as defineCustomElement$1d } from '@ionic/core/components/ion-toolbar.js';
88
- import { modalController, popoverController, initialize, actionSheetController, alertController, createAnimation, getTimeGivenProgression, createGesture, loadingController, menuController, toastController } from '@ionic/core/components';
36
+ import { defineCustomElement as defineCustomElement$q } from '@ionic/core/components/ion-divider.js';
37
+ import { defineCustomElement as defineCustomElement$r } from '@ionic/core/components/ion-fab.js';
38
+ import { defineCustomElement as defineCustomElement$s } from '@ionic/core/components/ion-fab-button.js';
39
+ import { defineCustomElement as defineCustomElement$t } from '@ionic/core/components/ion-fab-list.js';
40
+ import { defineCustomElement as defineCustomElement$u } from '@ionic/core/components/ion-footer.js';
41
+ import { defineCustomElement as defineCustomElement$v } from '@ionic/core/components/ion-gallery.js';
42
+ import { defineCustomElement as defineCustomElement$w } from '@ionic/core/components/ion-gallery-item.js';
43
+ import { defineCustomElement as defineCustomElement$x } from '@ionic/core/components/ion-grid.js';
44
+ import { defineCustomElement as defineCustomElement$y } from '@ionic/core/components/ion-header.js';
45
+ import { defineCustomElement as defineCustomElement$z } from '@ionic/core/components/ion-img.js';
46
+ import { defineCustomElement as defineCustomElement$A } from '@ionic/core/components/ion-infinite-scroll.js';
47
+ import { defineCustomElement as defineCustomElement$B } from '@ionic/core/components/ion-infinite-scroll-content.js';
48
+ import { defineCustomElement as defineCustomElement$C } from '@ionic/core/components/ion-input-password-toggle.js';
49
+ import { defineCustomElement as defineCustomElement$D } from '@ionic/core/components/ion-item.js';
50
+ import { defineCustomElement as defineCustomElement$E } from '@ionic/core/components/ion-item-divider.js';
51
+ import { defineCustomElement as defineCustomElement$F } from '@ionic/core/components/ion-item-group.js';
52
+ import { defineCustomElement as defineCustomElement$G } from '@ionic/core/components/ion-item-option.js';
53
+ import { defineCustomElement as defineCustomElement$H } from '@ionic/core/components/ion-item-options.js';
54
+ import { defineCustomElement as defineCustomElement$I } from '@ionic/core/components/ion-item-sliding.js';
55
+ import { defineCustomElement as defineCustomElement$J } from '@ionic/core/components/ion-label.js';
56
+ import { defineCustomElement as defineCustomElement$K } from '@ionic/core/components/ion-list.js';
57
+ import { defineCustomElement as defineCustomElement$L } from '@ionic/core/components/ion-list-header.js';
58
+ import { defineCustomElement as defineCustomElement$M } from '@ionic/core/components/ion-loading.js';
59
+ import { defineCustomElement as defineCustomElement$N } from '@ionic/core/components/ion-menu.js';
60
+ import { defineCustomElement as defineCustomElement$O } from '@ionic/core/components/ion-menu-button.js';
61
+ import { defineCustomElement as defineCustomElement$P } from '@ionic/core/components/ion-menu-toggle.js';
62
+ import { defineCustomElement as defineCustomElement$Q } from '@ionic/core/components/ion-nav-link.js';
63
+ import { defineCustomElement as defineCustomElement$R } from '@ionic/core/components/ion-note.js';
64
+ import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-picker.js';
65
+ import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-picker-column.js';
66
+ import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-picker-column-option.js';
67
+ import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-picker-legacy.js';
68
+ import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-progress-bar.js';
69
+ import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-radio.js';
70
+ import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-refresher.js';
71
+ import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-refresher-content.js';
72
+ import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-reorder.js';
73
+ import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-reorder-group.js';
74
+ import { defineCustomElement as defineCustomElement$10 } from '@ionic/core/components/ion-ripple-effect.js';
75
+ import { defineCustomElement as defineCustomElement$11 } from '@ionic/core/components/ion-row.js';
76
+ import { defineCustomElement as defineCustomElement$12 } from '@ionic/core/components/ion-segment-button.js';
77
+ import { defineCustomElement as defineCustomElement$13 } from '@ionic/core/components/ion-segment-content.js';
78
+ import { defineCustomElement as defineCustomElement$14 } from '@ionic/core/components/ion-segment-view.js';
79
+ import { defineCustomElement as defineCustomElement$15 } from '@ionic/core/components/ion-select-modal.js';
80
+ import { defineCustomElement as defineCustomElement$16 } from '@ionic/core/components/ion-select-option.js';
81
+ import { defineCustomElement as defineCustomElement$17 } from '@ionic/core/components/ion-skeleton-text.js';
82
+ import { defineCustomElement as defineCustomElement$18 } from '@ionic/core/components/ion-spinner.js';
83
+ import { defineCustomElement as defineCustomElement$19 } from '@ionic/core/components/ion-split-pane.js';
84
+ import { defineCustomElement as defineCustomElement$1a } from '@ionic/core/components/ion-tab.js';
85
+ import { defineCustomElement as defineCustomElement$1b } from '@ionic/core/components/ion-tab-bar.js';
86
+ import { defineCustomElement as defineCustomElement$1c } from '@ionic/core/components/ion-tab-button.js';
87
+ import { defineCustomElement as defineCustomElement$1d } from '@ionic/core/components/ion-text.js';
88
+ import { defineCustomElement as defineCustomElement$1e } from '@ionic/core/components/ion-thumbnail.js';
89
+ import { defineCustomElement as defineCustomElement$1f } from '@ionic/core/components/ion-title.js';
90
+ import { defineCustomElement as defineCustomElement$1g } from '@ionic/core/components/ion-toast.js';
91
+ import { defineCustomElement as defineCustomElement$1h } from '@ionic/core/components/ion-toolbar.js';
92
+ import { modalController, popoverController, initialize, actionSheetController, alertController, createAnimation, getTimeGivenProgression, createGesture, loadingController, menuController, pickerController, toastController } from '@ionic/core/components';
89
93
  export { IonicSafeString, IonicSlides, createAnimation, createGesture, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation } from '@ionic/core/components';
90
- import { defineCustomElement as defineCustomElement$1e } from '@ionic/core/components/ion-nav.js';
94
+ import { defineCustomElement as defineCustomElement$1i } from '@ionic/core/components/ion-nav.js';
91
95
  import { NG_VALUE_ACCESSOR } from '@angular/forms';
92
- import { defineCustomElement as defineCustomElement$1f } from '@ionic/core/components/ion-checkbox.js';
93
- import { defineCustomElement as defineCustomElement$1g } from '@ionic/core/components/ion-datetime.js';
94
- import { defineCustomElement as defineCustomElement$1h } from 'ionicons/components/ion-icon.js';
95
- import { defineCustomElement as defineCustomElement$1i } from '@ionic/core/components/ion-input.js';
96
- import { defineCustomElement as defineCustomElement$1j } from '@ionic/core/components/ion-input-otp.js';
97
- import { defineCustomElement as defineCustomElement$1k } from '@ionic/core/components/ion-radio-group.js';
98
- import { defineCustomElement as defineCustomElement$1l } from '@ionic/core/components/ion-range.js';
99
- import { defineCustomElement as defineCustomElement$1m } from '@ionic/core/components/ion-searchbar.js';
100
- import { defineCustomElement as defineCustomElement$1n } from '@ionic/core/components/ion-segment.js';
101
- import { defineCustomElement as defineCustomElement$1o } from '@ionic/core/components/ion-select.js';
102
- import { defineCustomElement as defineCustomElement$1p } from '@ionic/core/components/ion-textarea.js';
103
- import { defineCustomElement as defineCustomElement$1q } from '@ionic/core/components/ion-toggle.js';
96
+ import { defineCustomElement as defineCustomElement$1j } from '@ionic/core/components/ion-checkbox.js';
97
+ import { defineCustomElement as defineCustomElement$1k } from '@ionic/core/components/ion-datetime.js';
98
+ import { defineCustomElement as defineCustomElement$1l } from 'ionicons/components/ion-icon.js';
99
+ import { defineCustomElement as defineCustomElement$1m } from '@ionic/core/components/ion-input.js';
100
+ import { defineCustomElement as defineCustomElement$1n } from '@ionic/core/components/ion-input-otp.js';
101
+ import { defineCustomElement as defineCustomElement$1o } from '@ionic/core/components/ion-radio-group.js';
102
+ import { defineCustomElement as defineCustomElement$1p } from '@ionic/core/components/ion-range.js';
103
+ import { defineCustomElement as defineCustomElement$1q } from '@ionic/core/components/ion-searchbar.js';
104
+ import { defineCustomElement as defineCustomElement$1r } from '@ionic/core/components/ion-segment.js';
105
+ import { defineCustomElement as defineCustomElement$1s } from '@ionic/core/components/ion-select.js';
106
+ import { defineCustomElement as defineCustomElement$1t } from '@ionic/core/components/ion-textarea.js';
107
+ import { defineCustomElement as defineCustomElement$1u } from '@ionic/core/components/ion-toggle.js';
104
108
 
105
109
  let IonRouterOutlet = class IonRouterOutlet extends IonRouterOutlet$1 {
106
110
  parentOutlet;
@@ -122,22 +126,22 @@ let IonRouterOutlet = class IonRouterOutlet extends IonRouterOutlet$1 {
122
126
  super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
123
127
  this.parentOutlet = parentOutlet;
124
128
  }
125
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
126
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRouterOutlet, isStandalone: true, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
129
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
130
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, isStandalone: true, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
127
131
  };
128
132
  IonRouterOutlet = __decorate([
129
133
  ProxyCmp$1({
130
134
  defineCustomElementFn: defineCustomElement$1,
131
135
  })
132
136
  ], IonRouterOutlet);
133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, decorators: [{
137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
134
138
  type: Component,
135
139
  args: [{
136
140
  selector: 'ion-router-outlet',
137
141
  standalone: true,
138
142
  template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
139
143
  }]
140
- }], ctorParameters: () => [{ type: undefined, decorators: [{
144
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
141
145
  type: Attribute,
142
146
  args: ['name']
143
147
  }] }, { type: undefined, decorators: [{
@@ -149,7 +153,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
149
153
  type: SkipSelf
150
154
  }, {
151
155
  type: Optional
152
- }] }], propDecorators: { outletContent: [{
156
+ }] }]; }, propDecorators: { outletContent: [{
153
157
  type: ViewChild,
154
158
  args: ['outletContent', { read: ViewContainerRef, static: true }]
155
159
  }] } });
@@ -158,15 +162,15 @@ let IonBackButton = class IonBackButton extends IonBackButton$1 {
158
162
  constructor(routerOutlet, navCtrl, config, r, z, c) {
159
163
  super(routerOutlet, navCtrl, config, r, z, c);
160
164
  }
161
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
162
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackButton, isStandalone: true, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
165
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
166
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, isStandalone: true, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
163
167
  };
164
168
  IonBackButton = __decorate([
165
169
  ProxyCmp$1({
166
170
  defineCustomElementFn: defineCustomElement$2,
167
171
  })
168
172
  ], IonBackButton);
169
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, decorators: [{
173
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
170
174
  type: Component,
171
175
  args: [{
172
176
  selector: 'ion-back-button',
@@ -174,13 +178,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
174
178
  template: '<ng-content></ng-content>',
175
179
  standalone: true,
176
180
  }]
177
- }], ctorParameters: () => [{ type: IonRouterOutlet, decorators: [{
181
+ }], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
178
182
  type: Optional
179
- }] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
183
+ }] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
180
184
 
181
185
  let IonModal = class IonModal extends IonModal$1 {
182
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
183
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonModal, isStandalone: true, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
186
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
187
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, isStandalone: true, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
184
188
  <ng-container [ngTemplateOutlet]="template"></ng-container>
185
189
  </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
186
190
  };
@@ -189,7 +193,7 @@ IonModal = __decorate([
189
193
  defineCustomElementFn: defineCustomElement$3,
190
194
  })
191
195
  ], IonModal);
192
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, decorators: [{
196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
193
197
  type: Component,
194
198
  args: [{
195
199
  selector: 'ion-modal',
@@ -203,15 +207,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
203
207
  }] });
204
208
 
205
209
  let IonPopover = class IonPopover extends IonPopover$1 {
206
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
207
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPopover, isStandalone: true, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
210
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
211
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, isStandalone: true, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
208
212
  };
209
213
  IonPopover = __decorate([
210
214
  ProxyCmp$1({
211
215
  defineCustomElementFn: defineCustomElement$4,
212
216
  })
213
217
  ], IonPopover);
214
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, decorators: [{
218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
215
219
  type: Component,
216
220
  args: [{
217
221
  selector: 'ion-popover',
@@ -223,10 +227,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
223
227
  }] });
224
228
 
225
229
  class IonRouterLink extends RouterLinkDelegateDirective {
226
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterLink, deps: null, target: i0.ɵɵFactoryTarget.Directive });
227
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonRouterLink, isStandalone: true, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
230
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLink, deps: null, target: i0.ɵɵFactoryTarget.Directive });
231
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterLink, isStandalone: true, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
228
232
  }
229
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterLink, decorators: [{
233
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLink, decorators: [{
230
234
  type: Directive,
231
235
  args: [{
232
236
  selector: ':not(a):not(area)[routerLink]',
@@ -234,10 +238,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
234
238
  }]
235
239
  }] });
236
240
  class IonRouterLinkWithHref extends RouterLinkWithHrefDelegateDirective {
237
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterLinkWithHref, deps: null, target: i0.ɵɵFactoryTarget.Directive });
238
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonRouterLinkWithHref, isStandalone: true, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
241
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLinkWithHref, deps: null, target: i0.ɵɵFactoryTarget.Directive });
242
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterLinkWithHref, isStandalone: true, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
239
243
  }
240
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterLinkWithHref, decorators: [{
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLinkWithHref, decorators: [{
241
245
  type: Directive,
242
246
  args: [{
243
247
  selector: 'a[routerLink],area[routerLink]',
@@ -311,162 +315,115 @@ let IonAccordion = class IonAccordion {
311
315
  c.detach();
312
316
  this.el = r.nativeElement;
313
317
  }
314
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
315
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordion, isStandalone: true, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
318
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
319
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, isStandalone: true, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", theme: "theme", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
316
320
  };
317
321
  IonAccordion = __decorate([
318
322
  ProxyCmp({
319
323
  defineCustomElementFn: defineCustomElement$5,
320
- inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
324
+ inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value']
321
325
  })
322
326
  ], IonAccordion);
323
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, decorators: [{
327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
324
328
  type: Component,
325
329
  args: [{
326
330
  selector: 'ion-accordion',
327
331
  changeDetection: ChangeDetectionStrategy.OnPush,
328
332
  template: '<ng-content></ng-content>',
329
333
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
330
- inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
334
+ inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value'],
335
+ standalone: true
331
336
  }]
332
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
337
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
333
338
  let IonAccordionGroup = class IonAccordionGroup {
334
339
  z;
335
340
  el;
336
- ionChange = new EventEmitter();
337
341
  constructor(c, r, z) {
338
342
  this.z = z;
339
343
  c.detach();
340
344
  this.el = r.nativeElement;
345
+ proxyOutputs(this, this.el, ['ionChange']);
341
346
  }
342
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
343
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordionGroup, isStandalone: true, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
347
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
348
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, isStandalone: true, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", shape: "shape", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
344
349
  };
345
350
  IonAccordionGroup = __decorate([
346
351
  ProxyCmp({
347
352
  defineCustomElementFn: defineCustomElement$6,
348
- inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
353
+ inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value']
349
354
  })
350
355
  ], IonAccordionGroup);
351
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, decorators: [{
356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
352
357
  type: Component,
353
358
  args: [{
354
359
  selector: 'ion-accordion-group',
355
360
  changeDetection: ChangeDetectionStrategy.OnPush,
356
361
  template: '<ng-content></ng-content>',
357
362
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
358
- inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
359
- outputs: ['ionChange'],
363
+ inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value'],
364
+ standalone: true
360
365
  }]
361
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionChange: [{
362
- type: Output
363
- }] } });
366
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
364
367
  let IonActionSheet = class IonActionSheet {
365
368
  z;
366
369
  el;
367
- ionActionSheetDidPresent = new EventEmitter();
368
- ionActionSheetWillPresent = new EventEmitter();
369
- ionActionSheetWillDismiss = new EventEmitter();
370
- ionActionSheetDidDismiss = new EventEmitter();
371
- didPresent = new EventEmitter();
372
- willPresent = new EventEmitter();
373
- willDismiss = new EventEmitter();
374
- didDismiss = new EventEmitter();
375
370
  constructor(c, r, z) {
376
371
  this.z = z;
377
372
  c.detach();
378
373
  this.el = r.nativeElement;
374
+ proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
379
375
  }
380
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
381
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionActionSheetDidPresent: "ionActionSheetDidPresent", ionActionSheetWillPresent: "ionActionSheetWillPresent", ionActionSheetWillDismiss: "ionActionSheetWillDismiss", ionActionSheetDidDismiss: "ionActionSheetDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
376
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
377
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
382
378
  };
383
379
  IonActionSheet = __decorate([
384
380
  ProxyCmp({
385
381
  defineCustomElementFn: defineCustomElement$7,
386
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
382
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
387
383
  methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
388
384
  })
389
385
  ], IonActionSheet);
390
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, decorators: [{
386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, decorators: [{
391
387
  type: Component,
392
388
  args: [{
393
389
  selector: 'ion-action-sheet',
394
390
  changeDetection: ChangeDetectionStrategy.OnPush,
395
391
  template: '<ng-content></ng-content>',
396
392
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
397
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
398
- outputs: ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
399
- }]
400
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionActionSheetDidPresent: [{
401
- type: Output
402
- }], ionActionSheetWillPresent: [{
403
- type: Output
404
- }], ionActionSheetWillDismiss: [{
405
- type: Output
406
- }], ionActionSheetDidDismiss: [{
407
- type: Output
408
- }], didPresent: [{
409
- type: Output
410
- }], willPresent: [{
411
- type: Output
412
- }], willDismiss: [{
413
- type: Output
414
- }], didDismiss: [{
415
- type: Output
416
- }] } });
393
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
394
+ standalone: true
395
+ }]
396
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
417
397
  let IonAlert = class IonAlert {
418
398
  z;
419
399
  el;
420
- ionAlertDidPresent = new EventEmitter();
421
- ionAlertWillPresent = new EventEmitter();
422
- ionAlertWillDismiss = new EventEmitter();
423
- ionAlertDidDismiss = new EventEmitter();
424
- didPresent = new EventEmitter();
425
- willPresent = new EventEmitter();
426
- willDismiss = new EventEmitter();
427
- didDismiss = new EventEmitter();
428
400
  constructor(c, r, z) {
429
401
  this.z = z;
430
402
  c.detach();
431
403
  this.el = r.nativeElement;
404
+ proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
432
405
  }
433
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
434
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionAlertDidPresent: "ionAlertDidPresent", ionAlertWillPresent: "ionAlertWillPresent", ionAlertWillDismiss: "ionAlertWillDismiss", ionAlertDidDismiss: "ionAlertDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
406
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
407
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
435
408
  };
436
409
  IonAlert = __decorate([
437
410
  ProxyCmp({
438
411
  defineCustomElementFn: defineCustomElement$8,
439
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
412
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
440
413
  methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
441
414
  })
442
415
  ], IonAlert);
443
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, decorators: [{
416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, decorators: [{
444
417
  type: Component,
445
418
  args: [{
446
419
  selector: 'ion-alert',
447
420
  changeDetection: ChangeDetectionStrategy.OnPush,
448
421
  template: '<ng-content></ng-content>',
449
422
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
450
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
451
- outputs: ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
452
- }]
453
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionAlertDidPresent: [{
454
- type: Output
455
- }], ionAlertWillPresent: [{
456
- type: Output
457
- }], ionAlertWillDismiss: [{
458
- type: Output
459
- }], ionAlertDidDismiss: [{
460
- type: Output
461
- }], didPresent: [{
462
- type: Output
463
- }], willPresent: [{
464
- type: Output
465
- }], willDismiss: [{
466
- type: Output
467
- }], didDismiss: [{
468
- type: Output
469
- }] } });
423
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
424
+ standalone: true
425
+ }]
426
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
470
427
  let IonApp = class IonApp {
471
428
  z;
472
429
  el;
@@ -475,25 +432,27 @@ let IonApp = class IonApp {
475
432
  c.detach();
476
433
  this.el = r.nativeElement;
477
434
  }
478
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
479
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonApp, isStandalone: true, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
435
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
436
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, isStandalone: true, selector: "ion-app", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
480
437
  };
481
438
  IonApp = __decorate([
482
439
  ProxyCmp({
483
440
  defineCustomElementFn: defineCustomElement$9,
441
+ inputs: ['mode', 'theme'],
484
442
  methods: ['setFocus']
485
443
  })
486
444
  ], IonApp);
487
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, decorators: [{
445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, decorators: [{
488
446
  type: Component,
489
447
  args: [{
490
448
  selector: 'ion-app',
491
449
  changeDetection: ChangeDetectionStrategy.OnPush,
492
450
  template: '<ng-content></ng-content>',
493
451
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
494
- inputs: [],
452
+ inputs: ['mode', 'theme'],
453
+ standalone: true
495
454
  }]
496
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
455
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
497
456
  let IonAvatar = class IonAvatar {
498
457
  z;
499
458
  el;
@@ -502,55 +461,55 @@ let IonAvatar = class IonAvatar {
502
461
  c.detach();
503
462
  this.el = r.nativeElement;
504
463
  }
505
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
506
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAvatar, isStandalone: true, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
464
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
465
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, isStandalone: true, selector: "ion-avatar", inputs: { disabled: "disabled", mode: "mode", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
507
466
  };
508
467
  IonAvatar = __decorate([
509
468
  ProxyCmp({
510
- defineCustomElementFn: defineCustomElement$a
469
+ defineCustomElementFn: defineCustomElement$a,
470
+ inputs: ['disabled', 'mode', 'shape', 'size', 'theme']
511
471
  })
512
472
  ], IonAvatar);
513
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, decorators: [{
473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
514
474
  type: Component,
515
475
  args: [{
516
476
  selector: 'ion-avatar',
517
477
  changeDetection: ChangeDetectionStrategy.OnPush,
518
478
  template: '<ng-content></ng-content>',
519
479
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
520
- inputs: [],
480
+ inputs: ['disabled', 'mode', 'shape', 'size', 'theme'],
481
+ standalone: true
521
482
  }]
522
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
483
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
523
484
  let IonBackdrop = class IonBackdrop {
524
485
  z;
525
486
  el;
526
- ionBackdropTap = new EventEmitter();
527
487
  constructor(c, r, z) {
528
488
  this.z = z;
529
489
  c.detach();
530
490
  this.el = r.nativeElement;
491
+ proxyOutputs(this, this.el, ['ionBackdropTap']);
531
492
  }
532
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
533
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, outputs: { ionBackdropTap: "ionBackdropTap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
493
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
494
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: { mode: "mode", stopPropagation: "stopPropagation", tappable: "tappable", theme: "theme", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
534
495
  };
535
496
  IonBackdrop = __decorate([
536
497
  ProxyCmp({
537
498
  defineCustomElementFn: defineCustomElement$b,
538
- inputs: ['stopPropagation', 'tappable', 'visible']
499
+ inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible']
539
500
  })
540
501
  ], IonBackdrop);
541
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, decorators: [{
502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
542
503
  type: Component,
543
504
  args: [{
544
505
  selector: 'ion-backdrop',
545
506
  changeDetection: ChangeDetectionStrategy.OnPush,
546
507
  template: '<ng-content></ng-content>',
547
508
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
548
- inputs: ['stopPropagation', 'tappable', 'visible'],
549
- outputs: ['ionBackdropTap'],
509
+ inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible'],
510
+ standalone: true
550
511
  }]
551
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionBackdropTap: [{
552
- type: Output
553
- }] } });
512
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
554
513
  let IonBadge = class IonBadge {
555
514
  z;
556
515
  el;
@@ -559,124 +518,113 @@ let IonBadge = class IonBadge {
559
518
  c.detach();
560
519
  this.el = r.nativeElement;
561
520
  }
562
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
563
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
521
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
522
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", hue: "hue", mode: "mode", shape: "shape", size: "size", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
564
523
  };
565
524
  IonBadge = __decorate([
566
525
  ProxyCmp({
567
526
  defineCustomElementFn: defineCustomElement$c,
568
- inputs: ['color', 'mode']
527
+ inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical']
569
528
  })
570
529
  ], IonBadge);
571
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, decorators: [{
530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
572
531
  type: Component,
573
532
  args: [{
574
533
  selector: 'ion-badge',
575
534
  changeDetection: ChangeDetectionStrategy.OnPush,
576
535
  template: '<ng-content></ng-content>',
577
536
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
578
- inputs: ['color', 'mode'],
537
+ inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical'],
538
+ standalone: true
579
539
  }]
580
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
540
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
581
541
  let IonBreadcrumb = class IonBreadcrumb {
582
542
  z;
583
543
  el;
584
- ionFocus = new EventEmitter();
585
- ionBlur = new EventEmitter();
586
544
  constructor(c, r, z) {
587
545
  this.z = z;
588
546
  c.detach();
589
547
  this.el = r.nativeElement;
548
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
590
549
  }
591
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
592
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
550
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
551
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
593
552
  };
594
553
  IonBreadcrumb = __decorate([
595
554
  ProxyCmp({
596
555
  defineCustomElementFn: defineCustomElement$d,
597
- inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
556
+ inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme']
598
557
  })
599
558
  ], IonBreadcrumb);
600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, decorators: [{
559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
601
560
  type: Component,
602
561
  args: [{
603
562
  selector: 'ion-breadcrumb',
604
563
  changeDetection: ChangeDetectionStrategy.OnPush,
605
564
  template: '<ng-content></ng-content>',
606
565
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
607
- inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
608
- outputs: ['ionFocus', 'ionBlur'],
566
+ inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme'],
567
+ standalone: true
609
568
  }]
610
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionFocus: [{
611
- type: Output
612
- }], ionBlur: [{
613
- type: Output
614
- }] } });
569
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
615
570
  let IonBreadcrumbs = class IonBreadcrumbs {
616
571
  z;
617
572
  el;
618
- ionCollapsedClick = new EventEmitter();
619
573
  constructor(c, r, z) {
620
574
  this.z = z;
621
575
  c.detach();
622
576
  this.el = r.nativeElement;
577
+ proxyOutputs(this, this.el, ['ionCollapsedClick']);
623
578
  }
624
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
625
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumbs, isStandalone: true, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode" }, outputs: { ionCollapsedClick: "ionCollapsedClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
579
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
580
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, isStandalone: true, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
626
581
  };
627
582
  IonBreadcrumbs = __decorate([
628
583
  ProxyCmp({
629
584
  defineCustomElementFn: defineCustomElement$e,
630
- inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
585
+ inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme']
631
586
  })
632
587
  ], IonBreadcrumbs);
633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, decorators: [{
588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
634
589
  type: Component,
635
590
  args: [{
636
591
  selector: 'ion-breadcrumbs',
637
592
  changeDetection: ChangeDetectionStrategy.OnPush,
638
593
  template: '<ng-content></ng-content>',
639
594
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
640
- inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'],
641
- outputs: ['ionCollapsedClick'],
595
+ inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme'],
596
+ standalone: true
642
597
  }]
643
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionCollapsedClick: [{
644
- type: Output
645
- }] } });
598
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
646
599
  let IonButton = class IonButton {
647
600
  z;
648
601
  el;
649
- ionFocus = new EventEmitter();
650
- ionBlur = new EventEmitter();
651
602
  constructor(c, r, z) {
652
603
  this.z = z;
653
604
  c.detach();
654
605
  this.el = r.nativeElement;
606
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
655
607
  }
656
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
657
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButton, isStandalone: true, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
608
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
609
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, isStandalone: true, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
658
610
  };
659
611
  IonButton = __decorate([
660
612
  ProxyCmp({
661
613
  defineCustomElementFn: defineCustomElement$f,
662
- inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
614
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type']
663
615
  })
664
616
  ], IonButton);
665
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, decorators: [{
617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
666
618
  type: Component,
667
619
  args: [{
668
620
  selector: 'ion-button',
669
621
  changeDetection: ChangeDetectionStrategy.OnPush,
670
622
  template: '<ng-content></ng-content>',
671
623
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
672
- inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type'],
673
- outputs: ['ionFocus', 'ionBlur'],
624
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type'],
625
+ standalone: true
674
626
  }]
675
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionFocus: [{
676
- type: Output
677
- }], ionBlur: [{
678
- type: Output
679
- }] } });
627
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
680
628
  let IonButtons = class IonButtons {
681
629
  z;
682
630
  el;
@@ -685,25 +633,26 @@ let IonButtons = class IonButtons {
685
633
  c.detach();
686
634
  this.el = r.nativeElement;
687
635
  }
688
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
689
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButtons, isStandalone: true, selector: "ion-buttons", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
636
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
637
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, isStandalone: true, selector: "ion-buttons", inputs: { collapse: "collapse", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
690
638
  };
691
639
  IonButtons = __decorate([
692
640
  ProxyCmp({
693
641
  defineCustomElementFn: defineCustomElement$g,
694
- inputs: ['collapse']
642
+ inputs: ['collapse', 'mode', 'theme']
695
643
  })
696
644
  ], IonButtons);
697
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, decorators: [{
645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
698
646
  type: Component,
699
647
  args: [{
700
648
  selector: 'ion-buttons',
701
649
  changeDetection: ChangeDetectionStrategy.OnPush,
702
650
  template: '<ng-content></ng-content>',
703
651
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
704
- inputs: ['collapse'],
652
+ inputs: ['collapse', 'mode', 'theme'],
653
+ standalone: true
705
654
  }]
706
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
655
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
707
656
  let IonCard = class IonCard {
708
657
  z;
709
658
  el;
@@ -712,25 +661,26 @@ let IonCard = class IonCard {
712
661
  c.detach();
713
662
  this.el = r.nativeElement;
714
663
  }
715
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
716
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCard, isStandalone: true, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
664
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
665
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, isStandalone: true, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
717
666
  };
718
667
  IonCard = __decorate([
719
668
  ProxyCmp({
720
669
  defineCustomElementFn: defineCustomElement$h,
721
- inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
670
+ inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type']
722
671
  })
723
672
  ], IonCard);
724
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, decorators: [{
673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
725
674
  type: Component,
726
675
  args: [{
727
676
  selector: 'ion-card',
728
677
  changeDetection: ChangeDetectionStrategy.OnPush,
729
678
  template: '<ng-content></ng-content>',
730
679
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
731
- inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
680
+ inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type'],
681
+ standalone: true
732
682
  }]
733
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
683
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
734
684
  let IonCardContent = class IonCardContent {
735
685
  z;
736
686
  el;
@@ -739,25 +689,26 @@ let IonCardContent = class IonCardContent {
739
689
  c.detach();
740
690
  this.el = r.nativeElement;
741
691
  }
742
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
743
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardContent, isStandalone: true, selector: "ion-card-content", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
692
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
693
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, isStandalone: true, selector: "ion-card-content", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
744
694
  };
745
695
  IonCardContent = __decorate([
746
696
  ProxyCmp({
747
697
  defineCustomElementFn: defineCustomElement$i,
748
- inputs: ['mode']
698
+ inputs: ['mode', 'theme']
749
699
  })
750
700
  ], IonCardContent);
751
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, decorators: [{
701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
752
702
  type: Component,
753
703
  args: [{
754
704
  selector: 'ion-card-content',
755
705
  changeDetection: ChangeDetectionStrategy.OnPush,
756
706
  template: '<ng-content></ng-content>',
757
707
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
758
- inputs: ['mode'],
708
+ inputs: ['mode', 'theme'],
709
+ standalone: true
759
710
  }]
760
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
711
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
761
712
  let IonCardHeader = class IonCardHeader {
762
713
  z;
763
714
  el;
@@ -766,25 +717,26 @@ let IonCardHeader = class IonCardHeader {
766
717
  c.detach();
767
718
  this.el = r.nativeElement;
768
719
  }
769
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
770
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardHeader, isStandalone: true, selector: "ion-card-header", inputs: { color: "color", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
720
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
721
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, isStandalone: true, selector: "ion-card-header", inputs: { color: "color", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
771
722
  };
772
723
  IonCardHeader = __decorate([
773
724
  ProxyCmp({
774
725
  defineCustomElementFn: defineCustomElement$j,
775
- inputs: ['color', 'mode', 'translucent']
726
+ inputs: ['color', 'mode', 'theme', 'translucent']
776
727
  })
777
728
  ], IonCardHeader);
778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, decorators: [{
729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
779
730
  type: Component,
780
731
  args: [{
781
732
  selector: 'ion-card-header',
782
733
  changeDetection: ChangeDetectionStrategy.OnPush,
783
734
  template: '<ng-content></ng-content>',
784
735
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
785
- inputs: ['color', 'mode', 'translucent'],
736
+ inputs: ['color', 'mode', 'theme', 'translucent'],
737
+ standalone: true
786
738
  }]
787
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
739
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
788
740
  let IonCardSubtitle = class IonCardSubtitle {
789
741
  z;
790
742
  el;
@@ -793,25 +745,26 @@ let IonCardSubtitle = class IonCardSubtitle {
793
745
  c.detach();
794
746
  this.el = r.nativeElement;
795
747
  }
796
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
797
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardSubtitle, isStandalone: true, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
748
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
749
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, isStandalone: true, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
798
750
  };
799
751
  IonCardSubtitle = __decorate([
800
752
  ProxyCmp({
801
753
  defineCustomElementFn: defineCustomElement$k,
802
- inputs: ['color', 'mode']
754
+ inputs: ['color', 'mode', 'theme']
803
755
  })
804
756
  ], IonCardSubtitle);
805
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, decorators: [{
757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
806
758
  type: Component,
807
759
  args: [{
808
760
  selector: 'ion-card-subtitle',
809
761
  changeDetection: ChangeDetectionStrategy.OnPush,
810
762
  template: '<ng-content></ng-content>',
811
763
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
812
- inputs: ['color', 'mode'],
764
+ inputs: ['color', 'mode', 'theme'],
765
+ standalone: true
813
766
  }]
814
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
767
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
815
768
  let IonCardTitle = class IonCardTitle {
816
769
  z;
817
770
  el;
@@ -820,25 +773,26 @@ let IonCardTitle = class IonCardTitle {
820
773
  c.detach();
821
774
  this.el = r.nativeElement;
822
775
  }
823
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
824
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardTitle, isStandalone: true, selector: "ion-card-title", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
776
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
777
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, isStandalone: true, selector: "ion-card-title", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
825
778
  };
826
779
  IonCardTitle = __decorate([
827
780
  ProxyCmp({
828
781
  defineCustomElementFn: defineCustomElement$l,
829
- inputs: ['color', 'mode']
782
+ inputs: ['color', 'mode', 'theme']
830
783
  })
831
784
  ], IonCardTitle);
832
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, decorators: [{
785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
833
786
  type: Component,
834
787
  args: [{
835
788
  selector: 'ion-card-title',
836
789
  changeDetection: ChangeDetectionStrategy.OnPush,
837
790
  template: '<ng-content></ng-content>',
838
791
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
839
- inputs: ['color', 'mode'],
792
+ inputs: ['color', 'mode', 'theme'],
793
+ standalone: true
840
794
  }]
841
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
795
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
842
796
  let IonChip = class IonChip {
843
797
  z;
844
798
  el;
@@ -847,25 +801,26 @@ let IonChip = class IonChip {
847
801
  c.detach();
848
802
  this.el = r.nativeElement;
849
803
  }
850
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
851
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonChip, isStandalone: true, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
804
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
805
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, isStandalone: true, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", hue: "hue", mode: "mode", outline: "outline", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
852
806
  };
853
807
  IonChip = __decorate([
854
808
  ProxyCmp({
855
809
  defineCustomElementFn: defineCustomElement$m,
856
- inputs: ['color', 'disabled', 'mode', 'outline']
810
+ inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme']
857
811
  })
858
812
  ], IonChip);
859
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, decorators: [{
813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
860
814
  type: Component,
861
815
  args: [{
862
816
  selector: 'ion-chip',
863
817
  changeDetection: ChangeDetectionStrategy.OnPush,
864
818
  template: '<ng-content></ng-content>',
865
819
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
866
- inputs: ['color', 'disabled', 'mode', 'outline'],
820
+ inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme'],
821
+ standalone: true
867
822
  }]
868
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
823
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
869
824
  let IonCol = class IonCol {
870
825
  z;
871
826
  el;
@@ -874,63 +829,56 @@ let IonCol = class IonCol {
874
829
  c.detach();
875
830
  this.el = r.nativeElement;
876
831
  }
877
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
878
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCol, isStandalone: true, selector: "ion-col", inputs: { offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
832
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
833
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, isStandalone: true, selector: "ion-col", inputs: { mode: "mode", offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", order: "order", orderLg: "orderLg", orderMd: "orderMd", orderSm: "orderSm", orderXl: "orderXl", orderXs: "orderXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
879
834
  };
880
835
  IonCol = __decorate([
881
836
  ProxyCmp({
882
837
  defineCustomElementFn: defineCustomElement$n,
883
- inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs']
838
+ inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme']
884
839
  })
885
840
  ], IonCol);
886
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, decorators: [{
841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
887
842
  type: Component,
888
843
  args: [{
889
844
  selector: 'ion-col',
890
845
  changeDetection: ChangeDetectionStrategy.OnPush,
891
846
  template: '<ng-content></ng-content>',
892
847
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
893
- inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs'],
848
+ inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme'],
849
+ standalone: true
894
850
  }]
895
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
851
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
896
852
  let IonContent = class IonContent {
897
853
  z;
898
854
  el;
899
- ionScrollStart = new EventEmitter();
900
- ionScroll = new EventEmitter();
901
- ionScrollEnd = new EventEmitter();
902
855
  constructor(c, r, z) {
903
856
  this.z = z;
904
857
  c.detach();
905
858
  this.el = r.nativeElement;
859
+ proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
906
860
  }
907
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
908
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonContent, isStandalone: true, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY" }, outputs: { ionScrollStart: "ionScrollStart", ionScroll: "ionScroll", ionScrollEnd: "ionScrollEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
861
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
862
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, isStandalone: true, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", mode: "mode", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
909
863
  };
910
864
  IonContent = __decorate([
911
865
  ProxyCmp({
912
866
  defineCustomElementFn: defineCustomElement$o,
913
- inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
867
+ inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
914
868
  methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
915
869
  })
916
870
  ], IonContent);
917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, decorators: [{
871
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, decorators: [{
918
872
  type: Component,
919
873
  args: [{
920
874
  selector: 'ion-content',
921
875
  changeDetection: ChangeDetectionStrategy.OnPush,
922
876
  template: '<ng-content></ng-content>',
923
877
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
924
- inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
925
- outputs: ['ionScrollStart', 'ionScroll', 'ionScrollEnd'],
878
+ inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
879
+ standalone: true
926
880
  }]
927
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionScrollStart: [{
928
- type: Output
929
- }], ionScroll: [{
930
- type: Output
931
- }], ionScrollEnd: [{
932
- type: Output
933
- }] } });
881
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
934
882
  let IonDatetimeButton = class IonDatetimeButton {
935
883
  z;
936
884
  el;
@@ -939,25 +887,54 @@ let IonDatetimeButton = class IonDatetimeButton {
939
887
  c.detach();
940
888
  this.el = r.nativeElement;
941
889
  }
942
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
943
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetimeButton, isStandalone: true, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
890
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
891
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, isStandalone: true, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
944
892
  };
945
893
  IonDatetimeButton = __decorate([
946
894
  ProxyCmp({
947
895
  defineCustomElementFn: defineCustomElement$p,
948
- inputs: ['color', 'datetime', 'disabled', 'mode']
896
+ inputs: ['color', 'datetime', 'disabled', 'mode', 'theme']
949
897
  })
950
898
  ], IonDatetimeButton);
951
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, decorators: [{
899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
952
900
  type: Component,
953
901
  args: [{
954
902
  selector: 'ion-datetime-button',
955
903
  changeDetection: ChangeDetectionStrategy.OnPush,
956
904
  template: '<ng-content></ng-content>',
957
905
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
958
- inputs: ['color', 'datetime', 'disabled', 'mode'],
906
+ inputs: ['color', 'datetime', 'disabled', 'mode', 'theme'],
907
+ standalone: true
959
908
  }]
960
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
909
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
910
+ let IonDivider = class IonDivider {
911
+ z;
912
+ el;
913
+ constructor(c, r, z) {
914
+ this.z = z;
915
+ c.detach();
916
+ this.el = r.nativeElement;
917
+ }
918
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
919
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDivider, isStandalone: true, selector: "ion-divider", inputs: { inset: "inset", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
920
+ };
921
+ IonDivider = __decorate([
922
+ ProxyCmp({
923
+ defineCustomElementFn: defineCustomElement$q,
924
+ inputs: ['inset', 'spacing']
925
+ })
926
+ ], IonDivider);
927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, decorators: [{
928
+ type: Component,
929
+ args: [{
930
+ selector: 'ion-divider',
931
+ changeDetection: ChangeDetectionStrategy.OnPush,
932
+ template: '<ng-content></ng-content>',
933
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
934
+ inputs: ['inset', 'spacing'],
935
+ standalone: true
936
+ }]
937
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
961
938
  let IonFab = class IonFab {
962
939
  z;
963
940
  el;
@@ -966,60 +943,56 @@ let IonFab = class IonFab {
966
943
  c.detach();
967
944
  this.el = r.nativeElement;
968
945
  }
969
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
970
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFab, isStandalone: true, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
946
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
947
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, isStandalone: true, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", mode: "mode", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
971
948
  };
972
949
  IonFab = __decorate([
973
950
  ProxyCmp({
974
- defineCustomElementFn: defineCustomElement$q,
975
- inputs: ['activated', 'edge', 'horizontal', 'vertical'],
951
+ defineCustomElementFn: defineCustomElement$r,
952
+ inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
976
953
  methods: ['close']
977
954
  })
978
955
  ], IonFab);
979
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, decorators: [{
956
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, decorators: [{
980
957
  type: Component,
981
958
  args: [{
982
959
  selector: 'ion-fab',
983
960
  changeDetection: ChangeDetectionStrategy.OnPush,
984
961
  template: '<ng-content></ng-content>',
985
962
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
986
- inputs: ['activated', 'edge', 'horizontal', 'vertical'],
963
+ inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
964
+ standalone: true
987
965
  }]
988
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
966
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
989
967
  let IonFabButton = class IonFabButton {
990
968
  z;
991
969
  el;
992
- ionFocus = new EventEmitter();
993
- ionBlur = new EventEmitter();
994
970
  constructor(c, r, z) {
995
971
  this.z = z;
996
972
  c.detach();
997
973
  this.el = r.nativeElement;
974
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
998
975
  }
999
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1000
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabButton, isStandalone: true, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", translucent: "translucent", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
976
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
977
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, isStandalone: true, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", theme: "theme", translucent: "translucent", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1001
978
  };
1002
979
  IonFabButton = __decorate([
1003
980
  ProxyCmp({
1004
- defineCustomElementFn: defineCustomElement$r,
1005
- inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
981
+ defineCustomElementFn: defineCustomElement$s,
982
+ inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type']
1006
983
  })
1007
984
  ], IonFabButton);
1008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, decorators: [{
985
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
1009
986
  type: Component,
1010
987
  args: [{
1011
988
  selector: 'ion-fab-button',
1012
989
  changeDetection: ChangeDetectionStrategy.OnPush,
1013
990
  template: '<ng-content></ng-content>',
1014
991
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1015
- inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type'],
1016
- outputs: ['ionFocus', 'ionBlur'],
992
+ inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type'],
993
+ standalone: true
1017
994
  }]
1018
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionFocus: [{
1019
- type: Output
1020
- }], ionBlur: [{
1021
- type: Output
1022
- }] } });
995
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1023
996
  let IonFabList = class IonFabList {
1024
997
  z;
1025
998
  el;
@@ -1028,25 +1001,26 @@ let IonFabList = class IonFabList {
1028
1001
  c.detach();
1029
1002
  this.el = r.nativeElement;
1030
1003
  }
1031
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1032
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabList, isStandalone: true, selector: "ion-fab-list", inputs: { activated: "activated", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1005
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, isStandalone: true, selector: "ion-fab-list", inputs: { activated: "activated", mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1033
1006
  };
1034
1007
  IonFabList = __decorate([
1035
1008
  ProxyCmp({
1036
- defineCustomElementFn: defineCustomElement$s,
1037
- inputs: ['activated', 'side']
1009
+ defineCustomElementFn: defineCustomElement$t,
1010
+ inputs: ['activated', 'mode', 'side', 'theme']
1038
1011
  })
1039
1012
  ], IonFabList);
1040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, decorators: [{
1013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
1041
1014
  type: Component,
1042
1015
  args: [{
1043
1016
  selector: 'ion-fab-list',
1044
1017
  changeDetection: ChangeDetectionStrategy.OnPush,
1045
1018
  template: '<ng-content></ng-content>',
1046
1019
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1047
- inputs: ['activated', 'side'],
1020
+ inputs: ['activated', 'mode', 'side', 'theme'],
1021
+ standalone: true
1048
1022
  }]
1049
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1023
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1050
1024
  let IonFooter = class IonFooter {
1051
1025
  z;
1052
1026
  el;
@@ -1055,25 +1029,82 @@ let IonFooter = class IonFooter {
1055
1029
  c.detach();
1056
1030
  this.el = r.nativeElement;
1057
1031
  }
1058
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1059
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFooter, isStandalone: true, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1032
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1033
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, isStandalone: true, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1060
1034
  };
1061
1035
  IonFooter = __decorate([
1062
1036
  ProxyCmp({
1063
- defineCustomElementFn: defineCustomElement$t,
1064
- inputs: ['collapse', 'mode', 'translucent']
1037
+ defineCustomElementFn: defineCustomElement$u,
1038
+ inputs: ['collapse', 'mode', 'theme', 'translucent']
1065
1039
  })
1066
1040
  ], IonFooter);
1067
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, decorators: [{
1041
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
1068
1042
  type: Component,
1069
1043
  args: [{
1070
1044
  selector: 'ion-footer',
1071
1045
  changeDetection: ChangeDetectionStrategy.OnPush,
1072
1046
  template: '<ng-content></ng-content>',
1073
1047
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1074
- inputs: ['collapse', 'mode', 'translucent'],
1048
+ inputs: ['collapse', 'mode', 'theme', 'translucent'],
1049
+ standalone: true
1050
+ }]
1051
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1052
+ let IonGallery = class IonGallery {
1053
+ z;
1054
+ el;
1055
+ constructor(c, r, z) {
1056
+ this.z = z;
1057
+ c.detach();
1058
+ this.el = r.nativeElement;
1059
+ }
1060
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1061
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGallery, isStandalone: true, selector: "ion-gallery", inputs: { columns: "columns", gap: "gap", layout: "layout", mode: "mode", order: "order", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1062
+ };
1063
+ IonGallery = __decorate([
1064
+ ProxyCmp({
1065
+ defineCustomElementFn: defineCustomElement$v,
1066
+ inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme']
1067
+ })
1068
+ ], IonGallery);
1069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, decorators: [{
1070
+ type: Component,
1071
+ args: [{
1072
+ selector: 'ion-gallery',
1073
+ changeDetection: ChangeDetectionStrategy.OnPush,
1074
+ template: '<ng-content></ng-content>',
1075
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1076
+ inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme'],
1077
+ standalone: true
1075
1078
  }]
1076
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1079
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1080
+ let IonGalleryItem = class IonGalleryItem {
1081
+ z;
1082
+ el;
1083
+ constructor(c, r, z) {
1084
+ this.z = z;
1085
+ c.detach();
1086
+ this.el = r.nativeElement;
1087
+ }
1088
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1089
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGalleryItem, isStandalone: true, selector: "ion-gallery-item", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1090
+ };
1091
+ IonGalleryItem = __decorate([
1092
+ ProxyCmp({
1093
+ defineCustomElementFn: defineCustomElement$w,
1094
+ inputs: ['mode', 'theme']
1095
+ })
1096
+ ], IonGalleryItem);
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, decorators: [{
1098
+ type: Component,
1099
+ args: [{
1100
+ selector: 'ion-gallery-item',
1101
+ changeDetection: ChangeDetectionStrategy.OnPush,
1102
+ template: '<ng-content></ng-content>',
1103
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1104
+ inputs: ['mode', 'theme'],
1105
+ standalone: true
1106
+ }]
1107
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1077
1108
  let IonGrid = class IonGrid {
1078
1109
  z;
1079
1110
  el;
@@ -1082,25 +1113,26 @@ let IonGrid = class IonGrid {
1082
1113
  c.detach();
1083
1114
  this.el = r.nativeElement;
1084
1115
  }
1085
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1086
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonGrid, isStandalone: true, selector: "ion-grid", inputs: { fixed: "fixed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1116
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1117
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, isStandalone: true, selector: "ion-grid", inputs: { fixed: "fixed", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1087
1118
  };
1088
1119
  IonGrid = __decorate([
1089
1120
  ProxyCmp({
1090
- defineCustomElementFn: defineCustomElement$u,
1091
- inputs: ['fixed']
1121
+ defineCustomElementFn: defineCustomElement$x,
1122
+ inputs: ['fixed', 'mode', 'theme']
1092
1123
  })
1093
1124
  ], IonGrid);
1094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, decorators: [{
1125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
1095
1126
  type: Component,
1096
1127
  args: [{
1097
1128
  selector: 'ion-grid',
1098
1129
  changeDetection: ChangeDetectionStrategy.OnPush,
1099
1130
  template: '<ng-content></ng-content>',
1100
1131
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1101
- inputs: ['fixed'],
1132
+ inputs: ['fixed', 'mode', 'theme'],
1133
+ standalone: true
1102
1134
  }]
1103
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1135
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1104
1136
  let IonHeader = class IonHeader {
1105
1137
  z;
1106
1138
  el;
@@ -1109,94 +1141,85 @@ let IonHeader = class IonHeader {
1109
1141
  c.detach();
1110
1142
  this.el = r.nativeElement;
1111
1143
  }
1112
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1113
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonHeader, isStandalone: true, selector: "ion-header", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1144
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1145
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, isStandalone: true, selector: "ion-header", inputs: { collapse: "collapse", divider: "divider", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1114
1146
  };
1115
1147
  IonHeader = __decorate([
1116
1148
  ProxyCmp({
1117
- defineCustomElementFn: defineCustomElement$v,
1118
- inputs: ['collapse', 'mode', 'translucent']
1149
+ defineCustomElementFn: defineCustomElement$y,
1150
+ inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent']
1119
1151
  })
1120
1152
  ], IonHeader);
1121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, decorators: [{
1153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
1122
1154
  type: Component,
1123
1155
  args: [{
1124
1156
  selector: 'ion-header',
1125
1157
  changeDetection: ChangeDetectionStrategy.OnPush,
1126
1158
  template: '<ng-content></ng-content>',
1127
1159
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1128
- inputs: ['collapse', 'mode', 'translucent'],
1160
+ inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent'],
1161
+ standalone: true
1129
1162
  }]
1130
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1163
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1131
1164
  let IonImg = class IonImg {
1132
1165
  z;
1133
1166
  el;
1134
- ionImgWillLoad = new EventEmitter();
1135
- ionImgDidLoad = new EventEmitter();
1136
- ionError = new EventEmitter();
1137
1167
  constructor(c, r, z) {
1138
1168
  this.z = z;
1139
1169
  c.detach();
1140
1170
  this.el = r.nativeElement;
1171
+ proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
1141
1172
  }
1142
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1143
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonImg, isStandalone: true, selector: "ion-img", inputs: { alt: "alt", src: "src" }, outputs: { ionImgWillLoad: "ionImgWillLoad", ionImgDidLoad: "ionImgDidLoad", ionError: "ionError" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1173
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1174
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, isStandalone: true, selector: "ion-img", inputs: { alt: "alt", mode: "mode", src: "src", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1144
1175
  };
1145
1176
  IonImg = __decorate([
1146
1177
  ProxyCmp({
1147
- defineCustomElementFn: defineCustomElement$w,
1148
- inputs: ['alt', 'src']
1178
+ defineCustomElementFn: defineCustomElement$z,
1179
+ inputs: ['alt', 'mode', 'src', 'theme']
1149
1180
  })
1150
1181
  ], IonImg);
1151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, decorators: [{
1182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
1152
1183
  type: Component,
1153
1184
  args: [{
1154
1185
  selector: 'ion-img',
1155
1186
  changeDetection: ChangeDetectionStrategy.OnPush,
1156
1187
  template: '<ng-content></ng-content>',
1157
1188
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1158
- inputs: ['alt', 'src'],
1159
- outputs: ['ionImgWillLoad', 'ionImgDidLoad', 'ionError'],
1189
+ inputs: ['alt', 'mode', 'src', 'theme'],
1190
+ standalone: true
1160
1191
  }]
1161
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionImgWillLoad: [{
1162
- type: Output
1163
- }], ionImgDidLoad: [{
1164
- type: Output
1165
- }], ionError: [{
1166
- type: Output
1167
- }] } });
1192
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1168
1193
  let IonInfiniteScroll = class IonInfiniteScroll {
1169
1194
  z;
1170
1195
  el;
1171
- ionInfinite = new EventEmitter();
1172
1196
  constructor(c, r, z) {
1173
1197
  this.z = z;
1174
1198
  c.detach();
1175
1199
  this.el = r.nativeElement;
1200
+ proxyOutputs(this, this.el, ['ionInfinite']);
1176
1201
  }
1177
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1178
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScroll, isStandalone: true, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", position: "position", threshold: "threshold" }, outputs: { ionInfinite: "ionInfinite" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1202
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1203
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, isStandalone: true, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", mode: "mode", position: "position", preserveRerenderScrollPosition: "preserveRerenderScrollPosition", theme: "theme", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1179
1204
  };
1180
1205
  IonInfiniteScroll = __decorate([
1181
1206
  ProxyCmp({
1182
- defineCustomElementFn: defineCustomElement$x,
1183
- inputs: ['disabled', 'position', 'threshold'],
1207
+ defineCustomElementFn: defineCustomElement$A,
1208
+ inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
1184
1209
  methods: ['complete']
1185
1210
  })
1186
1211
  ], IonInfiniteScroll);
1187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, decorators: [{
1212
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, decorators: [{
1188
1213
  type: Component,
1189
1214
  args: [{
1190
1215
  selector: 'ion-infinite-scroll',
1191
1216
  changeDetection: ChangeDetectionStrategy.OnPush,
1192
1217
  template: '<ng-content></ng-content>',
1193
1218
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1194
- inputs: ['disabled', 'position', 'threshold'],
1195
- outputs: ['ionInfinite'],
1219
+ inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
1220
+ standalone: true
1196
1221
  }]
1197
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionInfinite: [{
1198
- type: Output
1199
- }] } });
1222
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1200
1223
  let IonInfiniteScrollContent = class IonInfiniteScrollContent {
1201
1224
  z;
1202
1225
  el;
@@ -1205,25 +1228,26 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
1205
1228
  c.detach();
1206
1229
  this.el = r.nativeElement;
1207
1230
  }
1208
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1209
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScrollContent, isStandalone: true, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1231
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1232
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, isStandalone: true, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1210
1233
  };
1211
1234
  IonInfiniteScrollContent = __decorate([
1212
1235
  ProxyCmp({
1213
- defineCustomElementFn: defineCustomElement$y,
1214
- inputs: ['loadingSpinner', 'loadingText']
1236
+ defineCustomElementFn: defineCustomElement$B,
1237
+ inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme']
1215
1238
  })
1216
1239
  ], IonInfiniteScrollContent);
1217
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
1240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
1218
1241
  type: Component,
1219
1242
  args: [{
1220
1243
  selector: 'ion-infinite-scroll-content',
1221
1244
  changeDetection: ChangeDetectionStrategy.OnPush,
1222
1245
  template: '<ng-content></ng-content>',
1223
1246
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1224
- inputs: ['loadingSpinner', 'loadingText'],
1247
+ inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme'],
1248
+ standalone: true
1225
1249
  }]
1226
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1250
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1227
1251
  let IonInputPasswordToggle = class IonInputPasswordToggle {
1228
1252
  z;
1229
1253
  el;
@@ -1232,16 +1256,16 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
1232
1256
  c.detach();
1233
1257
  this.el = r.nativeElement;
1234
1258
  }
1235
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1236
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputPasswordToggle, isStandalone: true, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1259
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1260
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputPasswordToggle, isStandalone: true, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1237
1261
  };
1238
1262
  IonInputPasswordToggle = __decorate([
1239
1263
  ProxyCmp({
1240
- defineCustomElementFn: defineCustomElement$z,
1264
+ defineCustomElementFn: defineCustomElement$C,
1241
1265
  inputs: ['color', 'hideIcon', 'mode', 'showIcon']
1242
1266
  })
1243
1267
  ], IonInputPasswordToggle);
1244
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
1268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
1245
1269
  type: Component,
1246
1270
  args: [{
1247
1271
  selector: 'ion-input-password-toggle',
@@ -1249,8 +1273,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
1249
1273
  template: '<ng-content></ng-content>',
1250
1274
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1251
1275
  inputs: ['color', 'hideIcon', 'mode', 'showIcon'],
1276
+ standalone: true
1252
1277
  }]
1253
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1278
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1254
1279
  let IonItem = class IonItem {
1255
1280
  z;
1256
1281
  el;
@@ -1259,25 +1284,26 @@ let IonItem = class IonItem {
1259
1284
  c.detach();
1260
1285
  this.el = r.nativeElement;
1261
1286
  }
1262
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1263
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItem, isStandalone: true, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1287
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1288
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, isStandalone: true, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1264
1289
  };
1265
1290
  IonItem = __decorate([
1266
1291
  ProxyCmp({
1267
- defineCustomElementFn: defineCustomElement$A,
1268
- inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
1292
+ defineCustomElementFn: defineCustomElement$D,
1293
+ inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type']
1269
1294
  })
1270
1295
  ], IonItem);
1271
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, decorators: [{
1296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
1272
1297
  type: Component,
1273
1298
  args: [{
1274
1299
  selector: 'ion-item',
1275
1300
  changeDetection: ChangeDetectionStrategy.OnPush,
1276
1301
  template: '<ng-content></ng-content>',
1277
1302
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1278
- inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
1303
+ inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type'],
1304
+ standalone: true
1279
1305
  }]
1280
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1306
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1281
1307
  let IonItemDivider = class IonItemDivider {
1282
1308
  z;
1283
1309
  el;
@@ -1286,25 +1312,26 @@ let IonItemDivider = class IonItemDivider {
1286
1312
  c.detach();
1287
1313
  this.el = r.nativeElement;
1288
1314
  }
1289
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1290
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemDivider, isStandalone: true, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1315
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1316
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, isStandalone: true, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1291
1317
  };
1292
1318
  IonItemDivider = __decorate([
1293
1319
  ProxyCmp({
1294
- defineCustomElementFn: defineCustomElement$B,
1295
- inputs: ['color', 'mode', 'sticky']
1320
+ defineCustomElementFn: defineCustomElement$E,
1321
+ inputs: ['color', 'mode', 'sticky', 'theme']
1296
1322
  })
1297
1323
  ], IonItemDivider);
1298
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, decorators: [{
1324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
1299
1325
  type: Component,
1300
1326
  args: [{
1301
1327
  selector: 'ion-item-divider',
1302
1328
  changeDetection: ChangeDetectionStrategy.OnPush,
1303
1329
  template: '<ng-content></ng-content>',
1304
1330
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1305
- inputs: ['color', 'mode', 'sticky'],
1331
+ inputs: ['color', 'mode', 'sticky', 'theme'],
1332
+ standalone: true
1306
1333
  }]
1307
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1334
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1308
1335
  let IonItemGroup = class IonItemGroup {
1309
1336
  z;
1310
1337
  el;
@@ -1313,24 +1340,26 @@ let IonItemGroup = class IonItemGroup {
1313
1340
  c.detach();
1314
1341
  this.el = r.nativeElement;
1315
1342
  }
1316
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1317
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemGroup, isStandalone: true, selector: "ion-item-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1343
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1344
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, isStandalone: true, selector: "ion-item-group", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1318
1345
  };
1319
1346
  IonItemGroup = __decorate([
1320
1347
  ProxyCmp({
1321
- defineCustomElementFn: defineCustomElement$C
1348
+ defineCustomElementFn: defineCustomElement$F,
1349
+ inputs: ['mode', 'theme']
1322
1350
  })
1323
1351
  ], IonItemGroup);
1324
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, decorators: [{
1352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
1325
1353
  type: Component,
1326
1354
  args: [{
1327
1355
  selector: 'ion-item-group',
1328
1356
  changeDetection: ChangeDetectionStrategy.OnPush,
1329
1357
  template: '<ng-content></ng-content>',
1330
1358
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1331
- inputs: [],
1359
+ inputs: ['mode', 'theme'],
1360
+ standalone: true
1332
1361
  }]
1333
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1362
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1334
1363
  let IonItemOption = class IonItemOption {
1335
1364
  z;
1336
1365
  el;
@@ -1339,88 +1368,85 @@ let IonItemOption = class IonItemOption {
1339
1368
  c.detach();
1340
1369
  this.el = r.nativeElement;
1341
1370
  }
1342
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1343
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOption, isStandalone: true, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1371
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1372
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, isStandalone: true, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", hue: "hue", mode: "mode", rel: "rel", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1344
1373
  };
1345
1374
  IonItemOption = __decorate([
1346
1375
  ProxyCmp({
1347
- defineCustomElementFn: defineCustomElement$D,
1348
- inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
1376
+ defineCustomElementFn: defineCustomElement$G,
1377
+ inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type']
1349
1378
  })
1350
1379
  ], IonItemOption);
1351
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, decorators: [{
1380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
1352
1381
  type: Component,
1353
1382
  args: [{
1354
1383
  selector: 'ion-item-option',
1355
1384
  changeDetection: ChangeDetectionStrategy.OnPush,
1356
1385
  template: '<ng-content></ng-content>',
1357
1386
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1358
- inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type'],
1387
+ inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type'],
1388
+ standalone: true
1359
1389
  }]
1360
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1390
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1361
1391
  let IonItemOptions = class IonItemOptions {
1362
1392
  z;
1363
1393
  el;
1364
- ionSwipe = new EventEmitter();
1365
1394
  constructor(c, r, z) {
1366
1395
  this.z = z;
1367
1396
  c.detach();
1368
1397
  this.el = r.nativeElement;
1398
+ proxyOutputs(this, this.el, ['ionSwipe']);
1369
1399
  }
1370
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1371
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOptions, isStandalone: true, selector: "ion-item-options", inputs: { side: "side" }, outputs: { ionSwipe: "ionSwipe" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1400
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1401
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, isStandalone: true, selector: "ion-item-options", inputs: { mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1372
1402
  };
1373
1403
  IonItemOptions = __decorate([
1374
1404
  ProxyCmp({
1375
- defineCustomElementFn: defineCustomElement$E,
1376
- inputs: ['side']
1405
+ defineCustomElementFn: defineCustomElement$H,
1406
+ inputs: ['mode', 'side', 'theme']
1377
1407
  })
1378
1408
  ], IonItemOptions);
1379
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, decorators: [{
1409
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
1380
1410
  type: Component,
1381
1411
  args: [{
1382
1412
  selector: 'ion-item-options',
1383
1413
  changeDetection: ChangeDetectionStrategy.OnPush,
1384
1414
  template: '<ng-content></ng-content>',
1385
1415
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1386
- inputs: ['side'],
1387
- outputs: ['ionSwipe'],
1416
+ inputs: ['mode', 'side', 'theme'],
1417
+ standalone: true
1388
1418
  }]
1389
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionSwipe: [{
1390
- type: Output
1391
- }] } });
1419
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1392
1420
  let IonItemSliding = class IonItemSliding {
1393
1421
  z;
1394
1422
  el;
1395
- ionDrag = new EventEmitter();
1396
1423
  constructor(c, r, z) {
1397
1424
  this.z = z;
1398
1425
  c.detach();
1399
1426
  this.el = r.nativeElement;
1427
+ proxyOutputs(this, this.el, ['ionDrag']);
1400
1428
  }
1401
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1402
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemSliding, isStandalone: true, selector: "ion-item-sliding", inputs: { disabled: "disabled" }, outputs: { ionDrag: "ionDrag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1429
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1430
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, isStandalone: true, selector: "ion-item-sliding", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1403
1431
  };
1404
1432
  IonItemSliding = __decorate([
1405
1433
  ProxyCmp({
1406
- defineCustomElementFn: defineCustomElement$F,
1407
- inputs: ['disabled'],
1434
+ defineCustomElementFn: defineCustomElement$I,
1435
+ inputs: ['disabled', 'mode', 'theme'],
1408
1436
  methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
1409
1437
  })
1410
1438
  ], IonItemSliding);
1411
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, decorators: [{
1439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, decorators: [{
1412
1440
  type: Component,
1413
1441
  args: [{
1414
1442
  selector: 'ion-item-sliding',
1415
1443
  changeDetection: ChangeDetectionStrategy.OnPush,
1416
1444
  template: '<ng-content></ng-content>',
1417
1445
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1418
- inputs: ['disabled'],
1419
- outputs: ['ionDrag'],
1446
+ inputs: ['disabled', 'mode', 'theme'],
1447
+ standalone: true
1420
1448
  }]
1421
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionDrag: [{
1422
- type: Output
1423
- }] } });
1449
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1424
1450
  let IonLabel = class IonLabel {
1425
1451
  z;
1426
1452
  el;
@@ -1429,25 +1455,26 @@ let IonLabel = class IonLabel {
1429
1455
  c.detach();
1430
1456
  this.el = r.nativeElement;
1431
1457
  }
1432
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1433
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLabel, isStandalone: true, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1458
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1459
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, isStandalone: true, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1434
1460
  };
1435
1461
  IonLabel = __decorate([
1436
1462
  ProxyCmp({
1437
- defineCustomElementFn: defineCustomElement$G,
1438
- inputs: ['color', 'mode', 'position']
1463
+ defineCustomElementFn: defineCustomElement$J,
1464
+ inputs: ['color', 'mode', 'position', 'theme']
1439
1465
  })
1440
1466
  ], IonLabel);
1441
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, decorators: [{
1467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
1442
1468
  type: Component,
1443
1469
  args: [{
1444
1470
  selector: 'ion-label',
1445
1471
  changeDetection: ChangeDetectionStrategy.OnPush,
1446
1472
  template: '<ng-content></ng-content>',
1447
1473
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1448
- inputs: ['color', 'mode', 'position'],
1474
+ inputs: ['color', 'mode', 'position', 'theme'],
1475
+ standalone: true
1449
1476
  }]
1450
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1477
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1451
1478
  let IonList = class IonList {
1452
1479
  z;
1453
1480
  el;
@@ -1456,26 +1483,27 @@ let IonList = class IonList {
1456
1483
  c.detach();
1457
1484
  this.el = r.nativeElement;
1458
1485
  }
1459
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1460
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonList, isStandalone: true, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1486
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1487
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, isStandalone: true, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode", shape: "shape", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1461
1488
  };
1462
1489
  IonList = __decorate([
1463
1490
  ProxyCmp({
1464
- defineCustomElementFn: defineCustomElement$H,
1465
- inputs: ['inset', 'lines', 'mode'],
1491
+ defineCustomElementFn: defineCustomElement$K,
1492
+ inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
1466
1493
  methods: ['closeSlidingItems']
1467
1494
  })
1468
1495
  ], IonList);
1469
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, decorators: [{
1496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, decorators: [{
1470
1497
  type: Component,
1471
1498
  args: [{
1472
1499
  selector: 'ion-list',
1473
1500
  changeDetection: ChangeDetectionStrategy.OnPush,
1474
1501
  template: '<ng-content></ng-content>',
1475
1502
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1476
- inputs: ['inset', 'lines', 'mode'],
1503
+ inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
1504
+ standalone: true
1477
1505
  }]
1478
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1506
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1479
1507
  let IonListHeader = class IonListHeader {
1480
1508
  z;
1481
1509
  el;
@@ -1484,119 +1512,86 @@ let IonListHeader = class IonListHeader {
1484
1512
  c.detach();
1485
1513
  this.el = r.nativeElement;
1486
1514
  }
1487
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1488
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonListHeader, isStandalone: true, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1515
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1516
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, isStandalone: true, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1489
1517
  };
1490
1518
  IonListHeader = __decorate([
1491
1519
  ProxyCmp({
1492
- defineCustomElementFn: defineCustomElement$I,
1493
- inputs: ['color', 'lines', 'mode']
1520
+ defineCustomElementFn: defineCustomElement$L,
1521
+ inputs: ['color', 'lines', 'mode', 'theme']
1494
1522
  })
1495
1523
  ], IonListHeader);
1496
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, decorators: [{
1524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
1497
1525
  type: Component,
1498
1526
  args: [{
1499
1527
  selector: 'ion-list-header',
1500
1528
  changeDetection: ChangeDetectionStrategy.OnPush,
1501
1529
  template: '<ng-content></ng-content>',
1502
1530
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1503
- inputs: ['color', 'lines', 'mode'],
1531
+ inputs: ['color', 'lines', 'mode', 'theme'],
1532
+ standalone: true
1504
1533
  }]
1505
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1534
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1506
1535
  let IonLoading = class IonLoading {
1507
1536
  z;
1508
1537
  el;
1509
- ionLoadingDidPresent = new EventEmitter();
1510
- ionLoadingWillPresent = new EventEmitter();
1511
- ionLoadingWillDismiss = new EventEmitter();
1512
- ionLoadingDidDismiss = new EventEmitter();
1513
- didPresent = new EventEmitter();
1514
- willPresent = new EventEmitter();
1515
- willDismiss = new EventEmitter();
1516
- didDismiss = new EventEmitter();
1517
1538
  constructor(c, r, z) {
1518
1539
  this.z = z;
1519
1540
  c.detach();
1520
1541
  this.el = r.nativeElement;
1542
+ proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
1521
1543
  }
1522
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1523
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLoading, isStandalone: true, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", translucent: "translucent", trigger: "trigger" }, outputs: { ionLoadingDidPresent: "ionLoadingDidPresent", ionLoadingWillPresent: "ionLoadingWillPresent", ionLoadingWillDismiss: "ionLoadingWillDismiss", ionLoadingDidDismiss: "ionLoadingDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1544
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1545
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, isStandalone: true, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1524
1546
  };
1525
1547
  IonLoading = __decorate([
1526
1548
  ProxyCmp({
1527
- defineCustomElementFn: defineCustomElement$J,
1528
- inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
1549
+ defineCustomElementFn: defineCustomElement$M,
1550
+ inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
1529
1551
  methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
1530
1552
  })
1531
1553
  ], IonLoading);
1532
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, decorators: [{
1554
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, decorators: [{
1533
1555
  type: Component,
1534
1556
  args: [{
1535
1557
  selector: 'ion-loading',
1536
1558
  changeDetection: ChangeDetectionStrategy.OnPush,
1537
1559
  template: '<ng-content></ng-content>',
1538
1560
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1539
- inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
1540
- outputs: ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
1541
- }]
1542
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionLoadingDidPresent: [{
1543
- type: Output
1544
- }], ionLoadingWillPresent: [{
1545
- type: Output
1546
- }], ionLoadingWillDismiss: [{
1547
- type: Output
1548
- }], ionLoadingDidDismiss: [{
1549
- type: Output
1550
- }], didPresent: [{
1551
- type: Output
1552
- }], willPresent: [{
1553
- type: Output
1554
- }], willDismiss: [{
1555
- type: Output
1556
- }], didDismiss: [{
1557
- type: Output
1558
- }] } });
1561
+ inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
1562
+ standalone: true
1563
+ }]
1564
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1559
1565
  let IonMenu = class IonMenu {
1560
1566
  z;
1561
1567
  el;
1562
- ionWillOpen = new EventEmitter();
1563
- ionWillClose = new EventEmitter();
1564
- ionDidOpen = new EventEmitter();
1565
- ionDidClose = new EventEmitter();
1566
1568
  constructor(c, r, z) {
1567
1569
  this.z = z;
1568
1570
  c.detach();
1569
1571
  this.el = r.nativeElement;
1572
+ proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
1570
1573
  }
1571
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1572
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenu, isStandalone: true, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", side: "side", swipeGesture: "swipeGesture", type: "type" }, outputs: { ionWillOpen: "ionWillOpen", ionWillClose: "ionWillClose", ionDidOpen: "ionDidOpen", ionDidClose: "ionDidClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1574
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1575
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, isStandalone: true, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", mode: "mode", side: "side", swipeGesture: "swipeGesture", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1573
1576
  };
1574
1577
  IonMenu = __decorate([
1575
1578
  ProxyCmp({
1576
- defineCustomElementFn: defineCustomElement$K,
1577
- inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
1579
+ defineCustomElementFn: defineCustomElement$N,
1580
+ inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
1578
1581
  methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
1579
1582
  })
1580
1583
  ], IonMenu);
1581
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, decorators: [{
1584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, decorators: [{
1582
1585
  type: Component,
1583
1586
  args: [{
1584
1587
  selector: 'ion-menu',
1585
1588
  changeDetection: ChangeDetectionStrategy.OnPush,
1586
1589
  template: '<ng-content></ng-content>',
1587
1590
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1588
- inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
1589
- outputs: ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose'],
1591
+ inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
1592
+ standalone: true
1590
1593
  }]
1591
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionWillOpen: [{
1592
- type: Output
1593
- }], ionWillClose: [{
1594
- type: Output
1595
- }], ionDidOpen: [{
1596
- type: Output
1597
- }], ionDidClose: [{
1598
- type: Output
1599
- }] } });
1594
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1600
1595
  let IonMenuButton = class IonMenuButton {
1601
1596
  z;
1602
1597
  el;
@@ -1605,25 +1600,26 @@ let IonMenuButton = class IonMenuButton {
1605
1600
  c.detach();
1606
1601
  this.el = r.nativeElement;
1607
1602
  }
1608
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1609
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuButton, isStandalone: true, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1603
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1604
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, isStandalone: true, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1610
1605
  };
1611
1606
  IonMenuButton = __decorate([
1612
1607
  ProxyCmp({
1613
- defineCustomElementFn: defineCustomElement$L,
1614
- inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
1608
+ defineCustomElementFn: defineCustomElement$O,
1609
+ inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type']
1615
1610
  })
1616
1611
  ], IonMenuButton);
1617
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, decorators: [{
1612
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
1618
1613
  type: Component,
1619
1614
  args: [{
1620
1615
  selector: 'ion-menu-button',
1621
1616
  changeDetection: ChangeDetectionStrategy.OnPush,
1622
1617
  template: '<ng-content></ng-content>',
1623
1618
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1624
- inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type'],
1619
+ inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type'],
1620
+ standalone: true
1625
1621
  }]
1626
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1622
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1627
1623
  let IonMenuToggle = class IonMenuToggle {
1628
1624
  z;
1629
1625
  el;
@@ -1632,25 +1628,26 @@ let IonMenuToggle = class IonMenuToggle {
1632
1628
  c.detach();
1633
1629
  this.el = r.nativeElement;
1634
1630
  }
1635
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1636
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuToggle, isStandalone: true, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1631
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1632
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, isStandalone: true, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1637
1633
  };
1638
1634
  IonMenuToggle = __decorate([
1639
1635
  ProxyCmp({
1640
- defineCustomElementFn: defineCustomElement$M,
1641
- inputs: ['autoHide', 'menu']
1636
+ defineCustomElementFn: defineCustomElement$P,
1637
+ inputs: ['autoHide', 'menu', 'mode', 'theme']
1642
1638
  })
1643
1639
  ], IonMenuToggle);
1644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, decorators: [{
1640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
1645
1641
  type: Component,
1646
1642
  args: [{
1647
1643
  selector: 'ion-menu-toggle',
1648
1644
  changeDetection: ChangeDetectionStrategy.OnPush,
1649
1645
  template: '<ng-content></ng-content>',
1650
1646
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1651
- inputs: ['autoHide', 'menu'],
1647
+ inputs: ['autoHide', 'menu', 'mode', 'theme'],
1648
+ standalone: true
1652
1649
  }]
1653
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1650
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1654
1651
  let IonNavLink = class IonNavLink {
1655
1652
  z;
1656
1653
  el;
@@ -1659,25 +1656,26 @@ let IonNavLink = class IonNavLink {
1659
1656
  c.detach();
1660
1657
  this.el = r.nativeElement;
1661
1658
  }
1662
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1663
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNavLink, isStandalone: true, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", routerAnimation: "routerAnimation", routerDirection: "routerDirection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1659
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1660
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, isStandalone: true, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", mode: "mode", routerAnimation: "routerAnimation", routerDirection: "routerDirection", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1664
1661
  };
1665
1662
  IonNavLink = __decorate([
1666
1663
  ProxyCmp({
1667
- defineCustomElementFn: defineCustomElement$N,
1668
- inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
1664
+ defineCustomElementFn: defineCustomElement$Q,
1665
+ inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme']
1669
1666
  })
1670
1667
  ], IonNavLink);
1671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, decorators: [{
1668
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
1672
1669
  type: Component,
1673
1670
  args: [{
1674
1671
  selector: 'ion-nav-link',
1675
1672
  changeDetection: ChangeDetectionStrategy.OnPush,
1676
1673
  template: '<ng-content></ng-content>',
1677
1674
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1678
- inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection'],
1675
+ inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme'],
1676
+ standalone: true
1679
1677
  }]
1680
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1678
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1681
1679
  let IonNote = class IonNote {
1682
1680
  z;
1683
1681
  el;
@@ -1686,25 +1684,26 @@ let IonNote = class IonNote {
1686
1684
  c.detach();
1687
1685
  this.el = r.nativeElement;
1688
1686
  }
1689
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1690
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNote, isStandalone: true, selector: "ion-note", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1687
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1688
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, isStandalone: true, selector: "ion-note", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1691
1689
  };
1692
1690
  IonNote = __decorate([
1693
1691
  ProxyCmp({
1694
- defineCustomElementFn: defineCustomElement$O,
1695
- inputs: ['color', 'mode']
1692
+ defineCustomElementFn: defineCustomElement$R,
1693
+ inputs: ['color', 'mode', 'theme']
1696
1694
  })
1697
1695
  ], IonNote);
1698
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, decorators: [{
1696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
1699
1697
  type: Component,
1700
1698
  args: [{
1701
1699
  selector: 'ion-note',
1702
1700
  changeDetection: ChangeDetectionStrategy.OnPush,
1703
1701
  template: '<ng-content></ng-content>',
1704
1702
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1705
- inputs: ['color', 'mode'],
1703
+ inputs: ['color', 'mode', 'theme'],
1704
+ standalone: true
1706
1705
  }]
1707
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1706
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1708
1707
  let IonPicker = class IonPicker {
1709
1708
  z;
1710
1709
  el;
@@ -1713,57 +1712,56 @@ let IonPicker = class IonPicker {
1713
1712
  c.detach();
1714
1713
  this.el = r.nativeElement;
1715
1714
  }
1716
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1717
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPicker, isStandalone: true, selector: "ion-picker", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1715
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1716
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, isStandalone: true, selector: "ion-picker", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1718
1717
  };
1719
1718
  IonPicker = __decorate([
1720
1719
  ProxyCmp({
1721
- defineCustomElementFn: defineCustomElement$P,
1722
- inputs: ['mode']
1720
+ defineCustomElementFn: defineCustomElement$S,
1721
+ inputs: ['mode', 'theme']
1723
1722
  })
1724
1723
  ], IonPicker);
1725
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, decorators: [{
1724
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
1726
1725
  type: Component,
1727
1726
  args: [{
1728
1727
  selector: 'ion-picker',
1729
1728
  changeDetection: ChangeDetectionStrategy.OnPush,
1730
1729
  template: '<ng-content></ng-content>',
1731
1730
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1732
- inputs: ['mode'],
1731
+ inputs: ['mode', 'theme'],
1732
+ standalone: true
1733
1733
  }]
1734
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1734
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1735
1735
  let IonPickerColumn = class IonPickerColumn {
1736
1736
  z;
1737
1737
  el;
1738
- ionChange = new EventEmitter();
1739
1738
  constructor(c, r, z) {
1740
1739
  this.z = z;
1741
1740
  c.detach();
1742
1741
  this.el = r.nativeElement;
1742
+ proxyOutputs(this, this.el, ['ionChange']);
1743
1743
  }
1744
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1745
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumn, isStandalone: true, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1744
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1745
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, isStandalone: true, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1746
1746
  };
1747
1747
  IonPickerColumn = __decorate([
1748
1748
  ProxyCmp({
1749
- defineCustomElementFn: defineCustomElement$Q,
1750
- inputs: ['color', 'disabled', 'mode', 'value'],
1749
+ defineCustomElementFn: defineCustomElement$T,
1750
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1751
1751
  methods: ['setFocus']
1752
1752
  })
1753
1753
  ], IonPickerColumn);
1754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, decorators: [{
1754
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, decorators: [{
1755
1755
  type: Component,
1756
1756
  args: [{
1757
1757
  selector: 'ion-picker-column',
1758
1758
  changeDetection: ChangeDetectionStrategy.OnPush,
1759
1759
  template: '<ng-content></ng-content>',
1760
1760
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1761
- inputs: ['color', 'disabled', 'mode', 'value'],
1762
- outputs: ['ionChange'],
1761
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1762
+ standalone: true
1763
1763
  }]
1764
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionChange: [{
1765
- type: Output
1766
- }] } });
1764
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1767
1765
  let IonPickerColumnOption = class IonPickerColumnOption {
1768
1766
  z;
1769
1767
  el;
@@ -1772,25 +1770,56 @@ let IonPickerColumnOption = class IonPickerColumnOption {
1772
1770
  c.detach();
1773
1771
  this.el = r.nativeElement;
1774
1772
  }
1775
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1776
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumnOption, isStandalone: true, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1773
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1774
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, isStandalone: true, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1777
1775
  };
1778
1776
  IonPickerColumnOption = __decorate([
1779
1777
  ProxyCmp({
1780
- defineCustomElementFn: defineCustomElement$R,
1781
- inputs: ['color', 'disabled', 'value']
1778
+ defineCustomElementFn: defineCustomElement$U,
1779
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value']
1782
1780
  })
1783
1781
  ], IonPickerColumnOption);
1784
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, decorators: [{
1782
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
1785
1783
  type: Component,
1786
1784
  args: [{
1787
1785
  selector: 'ion-picker-column-option',
1788
1786
  changeDetection: ChangeDetectionStrategy.OnPush,
1789
1787
  template: '<ng-content></ng-content>',
1790
1788
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1791
- inputs: ['color', 'disabled', 'value'],
1789
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1790
+ standalone: true
1792
1791
  }]
1793
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1792
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1793
+ let IonPickerLegacy = class IonPickerLegacy {
1794
+ z;
1795
+ el;
1796
+ constructor(c, r, z) {
1797
+ this.z = z;
1798
+ c.detach();
1799
+ this.el = r.nativeElement;
1800
+ proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
1801
+ }
1802
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1803
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, isStandalone: true, selector: "ion-picker-legacy", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", columns: "columns", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", theme: "theme", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1804
+ };
1805
+ IonPickerLegacy = __decorate([
1806
+ ProxyCmp({
1807
+ defineCustomElementFn: defineCustomElement$V,
1808
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
1809
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
1810
+ })
1811
+ ], IonPickerLegacy);
1812
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, decorators: [{
1813
+ type: Component,
1814
+ args: [{
1815
+ selector: 'ion-picker-legacy',
1816
+ changeDetection: ChangeDetectionStrategy.OnPush,
1817
+ template: '<ng-content></ng-content>',
1818
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1819
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
1820
+ standalone: true
1821
+ }]
1822
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1794
1823
  let IonProgressBar = class IonProgressBar {
1795
1824
  z;
1796
1825
  el;
@@ -1799,103 +1828,85 @@ let IonProgressBar = class IonProgressBar {
1799
1828
  c.detach();
1800
1829
  this.el = r.nativeElement;
1801
1830
  }
1802
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1803
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonProgressBar, isStandalone: true, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1831
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1832
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, isStandalone: true, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", shape: "shape", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1804
1833
  };
1805
1834
  IonProgressBar = __decorate([
1806
1835
  ProxyCmp({
1807
- defineCustomElementFn: defineCustomElement$S,
1808
- inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
1836
+ defineCustomElementFn: defineCustomElement$W,
1837
+ inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value']
1809
1838
  })
1810
1839
  ], IonProgressBar);
1811
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, decorators: [{
1840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
1812
1841
  type: Component,
1813
1842
  args: [{
1814
1843
  selector: 'ion-progress-bar',
1815
1844
  changeDetection: ChangeDetectionStrategy.OnPush,
1816
1845
  template: '<ng-content></ng-content>',
1817
1846
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1818
- inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value'],
1847
+ inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value'],
1848
+ standalone: true
1819
1849
  }]
1820
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1850
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1821
1851
  let IonRadio = class IonRadio {
1822
1852
  z;
1823
1853
  el;
1824
- ionFocus = new EventEmitter();
1825
- ionBlur = new EventEmitter();
1826
1854
  constructor(c, r, z) {
1827
1855
  this.z = z;
1828
1856
  c.detach();
1829
1857
  this.el = r.nativeElement;
1858
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
1830
1859
  }
1831
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1832
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadio, isStandalone: true, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1860
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1861
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, isStandalone: true, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1833
1862
  };
1834
1863
  IonRadio = __decorate([
1835
1864
  ProxyCmp({
1836
- defineCustomElementFn: defineCustomElement$T,
1837
- inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
1865
+ defineCustomElementFn: defineCustomElement$X,
1866
+ inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value']
1838
1867
  })
1839
1868
  ], IonRadio);
1840
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, decorators: [{
1869
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
1841
1870
  type: Component,
1842
1871
  args: [{
1843
1872
  selector: 'ion-radio',
1844
1873
  changeDetection: ChangeDetectionStrategy.OnPush,
1845
1874
  template: '<ng-content></ng-content>',
1846
1875
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1847
- inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value'],
1848
- outputs: ['ionFocus', 'ionBlur'],
1876
+ inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value'],
1877
+ standalone: true
1849
1878
  }]
1850
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionFocus: [{
1851
- type: Output
1852
- }], ionBlur: [{
1853
- type: Output
1854
- }] } });
1879
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1855
1880
  let IonRefresher = class IonRefresher {
1856
1881
  z;
1857
1882
  el;
1858
- ionRefresh = new EventEmitter();
1859
- ionPull = new EventEmitter();
1860
- ionStart = new EventEmitter();
1861
- ionPullStart = new EventEmitter();
1862
- ionPullEnd = new EventEmitter();
1863
1883
  constructor(c, r, z) {
1864
1884
  this.z = z;
1865
1885
  c.detach();
1866
1886
  this.el = r.nativeElement;
1887
+ proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd']);
1867
1888
  }
1868
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1869
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresher, isStandalone: true, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration" }, outputs: { ionRefresh: "ionRefresh", ionPull: "ionPull", ionStart: "ionStart", ionPullStart: "ionPullStart", ionPullEnd: "ionPullEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1889
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1890
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, isStandalone: true, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1870
1891
  };
1871
1892
  IonRefresher = __decorate([
1872
1893
  ProxyCmp({
1873
- defineCustomElementFn: defineCustomElement$U,
1874
- inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
1894
+ defineCustomElementFn: defineCustomElement$Y,
1895
+ inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
1875
1896
  methods: ['complete', 'cancel', 'getProgress']
1876
1897
  })
1877
1898
  ], IonRefresher);
1878
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, decorators: [{
1899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, decorators: [{
1879
1900
  type: Component,
1880
1901
  args: [{
1881
1902
  selector: 'ion-refresher',
1882
1903
  changeDetection: ChangeDetectionStrategy.OnPush,
1883
1904
  template: '<ng-content></ng-content>',
1884
1905
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1885
- inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
1886
- outputs: ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd'],
1906
+ inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
1907
+ standalone: true
1887
1908
  }]
1888
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionRefresh: [{
1889
- type: Output
1890
- }], ionPull: [{
1891
- type: Output
1892
- }], ionStart: [{
1893
- type: Output
1894
- }], ionPullStart: [{
1895
- type: Output
1896
- }], ionPullEnd: [{
1897
- type: Output
1898
- }] } });
1909
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1899
1910
  let IonRefresherContent = class IonRefresherContent {
1900
1911
  z;
1901
1912
  el;
@@ -1904,25 +1915,26 @@ let IonRefresherContent = class IonRefresherContent {
1904
1915
  c.detach();
1905
1916
  this.el = r.nativeElement;
1906
1917
  }
1907
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1908
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresherContent, isStandalone: true, selector: "ion-refresher-content", inputs: { pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1918
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1919
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, isStandalone: true, selector: "ion-refresher-content", inputs: { mode: "mode", pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1909
1920
  };
1910
1921
  IonRefresherContent = __decorate([
1911
1922
  ProxyCmp({
1912
- defineCustomElementFn: defineCustomElement$V,
1913
- inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
1923
+ defineCustomElementFn: defineCustomElement$Z,
1924
+ inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme']
1914
1925
  })
1915
1926
  ], IonRefresherContent);
1916
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, decorators: [{
1927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
1917
1928
  type: Component,
1918
1929
  args: [{
1919
1930
  selector: 'ion-refresher-content',
1920
1931
  changeDetection: ChangeDetectionStrategy.OnPush,
1921
1932
  template: '<ng-content></ng-content>',
1922
1933
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1923
- inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText'],
1934
+ inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme'],
1935
+ standalone: true
1924
1936
  }]
1925
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1937
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1926
1938
  let IonReorder = class IonReorder {
1927
1939
  z;
1928
1940
  el;
@@ -1931,65 +1943,56 @@ let IonReorder = class IonReorder {
1931
1943
  c.detach();
1932
1944
  this.el = r.nativeElement;
1933
1945
  }
1934
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1935
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorder, isStandalone: true, selector: "ion-reorder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1946
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1947
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, isStandalone: true, selector: "ion-reorder", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1936
1948
  };
1937
1949
  IonReorder = __decorate([
1938
1950
  ProxyCmp({
1939
- defineCustomElementFn: defineCustomElement$W
1951
+ defineCustomElementFn: defineCustomElement$_,
1952
+ inputs: ['mode', 'theme']
1940
1953
  })
1941
1954
  ], IonReorder);
1942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, decorators: [{
1955
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
1943
1956
  type: Component,
1944
1957
  args: [{
1945
1958
  selector: 'ion-reorder',
1946
1959
  changeDetection: ChangeDetectionStrategy.OnPush,
1947
1960
  template: '<ng-content></ng-content>',
1948
1961
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1949
- inputs: [],
1962
+ inputs: ['mode', 'theme'],
1963
+ standalone: true
1950
1964
  }]
1951
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1965
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1952
1966
  let IonReorderGroup = class IonReorderGroup {
1953
1967
  z;
1954
1968
  el;
1955
- ionItemReorder = new EventEmitter();
1956
- ionReorderStart = new EventEmitter();
1957
- ionReorderMove = new EventEmitter();
1958
- ionReorderEnd = new EventEmitter();
1959
1969
  constructor(c, r, z) {
1960
1970
  this.z = z;
1961
1971
  c.detach();
1962
1972
  this.el = r.nativeElement;
1973
+ proxyOutputs(this, this.el, ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd']);
1963
1974
  }
1964
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1965
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorderGroup, isStandalone: true, selector: "ion-reorder-group", inputs: { disabled: "disabled" }, outputs: { ionItemReorder: "ionItemReorder", ionReorderStart: "ionReorderStart", ionReorderMove: "ionReorderMove", ionReorderEnd: "ionReorderEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1975
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1976
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, isStandalone: true, selector: "ion-reorder-group", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1966
1977
  };
1967
1978
  IonReorderGroup = __decorate([
1968
1979
  ProxyCmp({
1969
- defineCustomElementFn: defineCustomElement$X,
1970
- inputs: ['disabled'],
1980
+ defineCustomElementFn: defineCustomElement$$,
1981
+ inputs: ['disabled', 'mode', 'theme'],
1971
1982
  methods: ['complete']
1972
1983
  })
1973
1984
  ], IonReorderGroup);
1974
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, decorators: [{
1985
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, decorators: [{
1975
1986
  type: Component,
1976
1987
  args: [{
1977
1988
  selector: 'ion-reorder-group',
1978
1989
  changeDetection: ChangeDetectionStrategy.OnPush,
1979
1990
  template: '<ng-content></ng-content>',
1980
1991
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1981
- inputs: ['disabled'],
1982
- outputs: ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd'],
1992
+ inputs: ['disabled', 'mode', 'theme'],
1993
+ standalone: true
1983
1994
  }]
1984
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionItemReorder: [{
1985
- type: Output
1986
- }], ionReorderStart: [{
1987
- type: Output
1988
- }], ionReorderMove: [{
1989
- type: Output
1990
- }], ionReorderEnd: [{
1991
- type: Output
1992
- }] } });
1995
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1993
1996
  let IonRippleEffect = class IonRippleEffect {
1994
1997
  z;
1995
1998
  el;
@@ -1998,26 +2001,27 @@ let IonRippleEffect = class IonRippleEffect {
1998
2001
  c.detach();
1999
2002
  this.el = r.nativeElement;
2000
2003
  }
2001
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2002
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRippleEffect, isStandalone: true, selector: "ion-ripple-effect", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2004
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2005
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, isStandalone: true, selector: "ion-ripple-effect", inputs: { mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2003
2006
  };
2004
2007
  IonRippleEffect = __decorate([
2005
2008
  ProxyCmp({
2006
- defineCustomElementFn: defineCustomElement$Y,
2007
- inputs: ['type'],
2009
+ defineCustomElementFn: defineCustomElement$10,
2010
+ inputs: ['mode', 'theme', 'type'],
2008
2011
  methods: ['addRipple']
2009
2012
  })
2010
2013
  ], IonRippleEffect);
2011
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, decorators: [{
2014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, decorators: [{
2012
2015
  type: Component,
2013
2016
  args: [{
2014
2017
  selector: 'ion-ripple-effect',
2015
2018
  changeDetection: ChangeDetectionStrategy.OnPush,
2016
2019
  template: '<ng-content></ng-content>',
2017
2020
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2018
- inputs: ['type'],
2021
+ inputs: ['mode', 'theme', 'type'],
2022
+ standalone: true
2019
2023
  }]
2020
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2024
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2021
2025
  let IonRow = class IonRow {
2022
2026
  z;
2023
2027
  el;
@@ -2026,24 +2030,26 @@ let IonRow = class IonRow {
2026
2030
  c.detach();
2027
2031
  this.el = r.nativeElement;
2028
2032
  }
2029
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2030
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRow, isStandalone: true, selector: "ion-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2033
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2034
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, isStandalone: true, selector: "ion-row", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2031
2035
  };
2032
2036
  IonRow = __decorate([
2033
2037
  ProxyCmp({
2034
- defineCustomElementFn: defineCustomElement$Z
2038
+ defineCustomElementFn: defineCustomElement$11,
2039
+ inputs: ['mode', 'theme']
2035
2040
  })
2036
2041
  ], IonRow);
2037
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, decorators: [{
2042
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
2038
2043
  type: Component,
2039
2044
  args: [{
2040
2045
  selector: 'ion-row',
2041
2046
  changeDetection: ChangeDetectionStrategy.OnPush,
2042
2047
  template: '<ng-content></ng-content>',
2043
2048
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2044
- inputs: [],
2049
+ inputs: ['mode', 'theme'],
2050
+ standalone: true
2045
2051
  }]
2046
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2052
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2047
2053
  let IonSegmentButton = class IonSegmentButton {
2048
2054
  z;
2049
2055
  el;
@@ -2052,25 +2058,26 @@ let IonSegmentButton = class IonSegmentButton {
2052
2058
  c.detach();
2053
2059
  this.el = r.nativeElement;
2054
2060
  }
2055
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2056
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentButton, isStandalone: true, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2061
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2062
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, isStandalone: true, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2057
2063
  };
2058
2064
  IonSegmentButton = __decorate([
2059
2065
  ProxyCmp({
2060
- defineCustomElementFn: defineCustomElement$_,
2061
- inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
2066
+ defineCustomElementFn: defineCustomElement$12,
2067
+ inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value']
2062
2068
  })
2063
2069
  ], IonSegmentButton);
2064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, decorators: [{
2070
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
2065
2071
  type: Component,
2066
2072
  args: [{
2067
2073
  selector: 'ion-segment-button',
2068
2074
  changeDetection: ChangeDetectionStrategy.OnPush,
2069
2075
  template: '<ng-content></ng-content>',
2070
2076
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2071
- inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value'],
2077
+ inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value'],
2078
+ standalone: true
2072
2079
  }]
2073
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2080
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2074
2081
  let IonSegmentContent = class IonSegmentContent {
2075
2082
  z;
2076
2083
  el;
@@ -2079,15 +2086,15 @@ let IonSegmentContent = class IonSegmentContent {
2079
2086
  c.detach();
2080
2087
  this.el = r.nativeElement;
2081
2088
  }
2082
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2083
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentContent, isStandalone: true, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2089
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2090
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentContent, isStandalone: true, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2084
2091
  };
2085
2092
  IonSegmentContent = __decorate([
2086
2093
  ProxyCmp({
2087
- defineCustomElementFn: defineCustomElement$$
2094
+ defineCustomElementFn: defineCustomElement$13
2088
2095
  })
2089
2096
  ], IonSegmentContent);
2090
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, decorators: [{
2097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, decorators: [{
2091
2098
  type: Component,
2092
2099
  args: [{
2093
2100
  selector: 'ion-segment-content',
@@ -2095,27 +2102,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
2095
2102
  template: '<ng-content></ng-content>',
2096
2103
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2097
2104
  inputs: [],
2105
+ standalone: true
2098
2106
  }]
2099
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2107
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2100
2108
  let IonSegmentView = class IonSegmentView {
2101
2109
  z;
2102
2110
  el;
2103
- ionSegmentViewScroll = new EventEmitter();
2104
2111
  constructor(c, r, z) {
2105
2112
  this.z = z;
2106
2113
  c.detach();
2107
2114
  this.el = r.nativeElement;
2115
+ proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
2108
2116
  }
2109
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2110
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentView, isStandalone: true, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, outputs: { ionSegmentViewScroll: "ionSegmentViewScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2117
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2118
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentView, isStandalone: true, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2111
2119
  };
2112
2120
  IonSegmentView = __decorate([
2113
2121
  ProxyCmp({
2114
- defineCustomElementFn: defineCustomElement$10,
2122
+ defineCustomElementFn: defineCustomElement$14,
2115
2123
  inputs: ['disabled', 'swipeGesture']
2116
2124
  })
2117
2125
  ], IonSegmentView);
2118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, decorators: [{
2126
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, decorators: [{
2119
2127
  type: Component,
2120
2128
  args: [{
2121
2129
  selector: 'ion-segment-view',
@@ -2123,11 +2131,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
2123
2131
  template: '<ng-content></ng-content>',
2124
2132
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2125
2133
  inputs: ['disabled', 'swipeGesture'],
2126
- outputs: ['ionSegmentViewScroll'],
2134
+ standalone: true
2127
2135
  }]
2128
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionSegmentViewScroll: [{
2129
- type: Output
2130
- }] } });
2136
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2131
2137
  let IonSelectModal = class IonSelectModal {
2132
2138
  z;
2133
2139
  el;
@@ -2136,25 +2142,26 @@ let IonSelectModal = class IonSelectModal {
2136
2142
  c.detach();
2137
2143
  this.el = r.nativeElement;
2138
2144
  }
2139
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2140
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectModal, isStandalone: true, selector: "ion-select-modal", inputs: { cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2145
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2146
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectModal, isStandalone: true, selector: "ion-select-modal", inputs: { cancelIcon: "cancelIcon", cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2141
2147
  };
2142
2148
  IonSelectModal = __decorate([
2143
2149
  ProxyCmp({
2144
- defineCustomElementFn: defineCustomElement$11,
2145
- inputs: ['cancelText', 'header', 'multiple', 'options']
2150
+ defineCustomElementFn: defineCustomElement$15,
2151
+ inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options']
2146
2152
  })
2147
2153
  ], IonSelectModal);
2148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, decorators: [{
2154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, decorators: [{
2149
2155
  type: Component,
2150
2156
  args: [{
2151
2157
  selector: 'ion-select-modal',
2152
2158
  changeDetection: ChangeDetectionStrategy.OnPush,
2153
2159
  template: '<ng-content></ng-content>',
2154
2160
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2155
- inputs: ['cancelText', 'header', 'multiple', 'options'],
2161
+ inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options'],
2162
+ standalone: true
2156
2163
  }]
2157
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2164
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2158
2165
  let IonSelectOption = class IonSelectOption {
2159
2166
  z;
2160
2167
  el;
@@ -2163,25 +2170,26 @@ let IonSelectOption = class IonSelectOption {
2163
2170
  c.detach();
2164
2171
  this.el = r.nativeElement;
2165
2172
  }
2166
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2167
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectOption, isStandalone: true, selector: "ion-select-option", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2173
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2174
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, isStandalone: true, selector: "ion-select-option", inputs: { description: "description", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2168
2175
  };
2169
2176
  IonSelectOption = __decorate([
2170
2177
  ProxyCmp({
2171
- defineCustomElementFn: defineCustomElement$12,
2172
- inputs: ['disabled', 'value']
2178
+ defineCustomElementFn: defineCustomElement$16,
2179
+ inputs: ['description', 'disabled', 'mode', 'theme', 'value']
2173
2180
  })
2174
2181
  ], IonSelectOption);
2175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, decorators: [{
2182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
2176
2183
  type: Component,
2177
2184
  args: [{
2178
2185
  selector: 'ion-select-option',
2179
2186
  changeDetection: ChangeDetectionStrategy.OnPush,
2180
2187
  template: '<ng-content></ng-content>',
2181
2188
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2182
- inputs: ['disabled', 'value'],
2189
+ inputs: ['description', 'disabled', 'mode', 'theme', 'value'],
2190
+ standalone: true
2183
2191
  }]
2184
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2192
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2185
2193
  let IonSkeletonText = class IonSkeletonText {
2186
2194
  z;
2187
2195
  el;
@@ -2190,25 +2198,26 @@ let IonSkeletonText = class IonSkeletonText {
2190
2198
  c.detach();
2191
2199
  this.el = r.nativeElement;
2192
2200
  }
2193
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2194
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSkeletonText, isStandalone: true, selector: "ion-skeleton-text", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2201
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2202
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, isStandalone: true, selector: "ion-skeleton-text", inputs: { animated: "animated", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2195
2203
  };
2196
2204
  IonSkeletonText = __decorate([
2197
2205
  ProxyCmp({
2198
- defineCustomElementFn: defineCustomElement$13,
2199
- inputs: ['animated']
2206
+ defineCustomElementFn: defineCustomElement$17,
2207
+ inputs: ['animated', 'mode', 'theme']
2200
2208
  })
2201
2209
  ], IonSkeletonText);
2202
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, decorators: [{
2210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
2203
2211
  type: Component,
2204
2212
  args: [{
2205
2213
  selector: 'ion-skeleton-text',
2206
2214
  changeDetection: ChangeDetectionStrategy.OnPush,
2207
2215
  template: '<ng-content></ng-content>',
2208
2216
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2209
- inputs: ['animated'],
2217
+ inputs: ['animated', 'mode', 'theme'],
2218
+ standalone: true
2210
2219
  }]
2211
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2220
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2212
2221
  let IonSpinner = class IonSpinner {
2213
2222
  z;
2214
2223
  el;
@@ -2217,56 +2226,55 @@ let IonSpinner = class IonSpinner {
2217
2226
  c.detach();
2218
2227
  this.el = r.nativeElement;
2219
2228
  }
2220
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2221
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSpinner, isStandalone: true, selector: "ion-spinner", inputs: { color: "color", duration: "duration", name: "name", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2229
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2230
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, isStandalone: true, selector: "ion-spinner", inputs: { color: "color", duration: "duration", mode: "mode", name: "name", paused: "paused", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2222
2231
  };
2223
2232
  IonSpinner = __decorate([
2224
2233
  ProxyCmp({
2225
- defineCustomElementFn: defineCustomElement$14,
2226
- inputs: ['color', 'duration', 'name', 'paused']
2234
+ defineCustomElementFn: defineCustomElement$18,
2235
+ inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme']
2227
2236
  })
2228
2237
  ], IonSpinner);
2229
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, decorators: [{
2238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
2230
2239
  type: Component,
2231
2240
  args: [{
2232
2241
  selector: 'ion-spinner',
2233
2242
  changeDetection: ChangeDetectionStrategy.OnPush,
2234
2243
  template: '<ng-content></ng-content>',
2235
2244
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2236
- inputs: ['color', 'duration', 'name', 'paused'],
2245
+ inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme'],
2246
+ standalone: true
2237
2247
  }]
2238
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2248
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2239
2249
  let IonSplitPane = class IonSplitPane {
2240
2250
  z;
2241
2251
  el;
2242
- ionSplitPaneVisible = new EventEmitter();
2243
2252
  constructor(c, r, z) {
2244
2253
  this.z = z;
2245
2254
  c.detach();
2246
2255
  this.el = r.nativeElement;
2256
+ proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
2247
2257
  }
2248
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2249
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSplitPane, isStandalone: true, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", when: "when" }, outputs: { ionSplitPaneVisible: "ionSplitPaneVisible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2258
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2259
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, isStandalone: true, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", mode: "mode", theme: "theme", when: "when" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2250
2260
  };
2251
2261
  IonSplitPane = __decorate([
2252
2262
  ProxyCmp({
2253
- defineCustomElementFn: defineCustomElement$15,
2254
- inputs: ['contentId', 'disabled', 'when']
2263
+ defineCustomElementFn: defineCustomElement$19,
2264
+ inputs: ['contentId', 'disabled', 'mode', 'theme', 'when']
2255
2265
  })
2256
2266
  ], IonSplitPane);
2257
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, decorators: [{
2267
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
2258
2268
  type: Component,
2259
2269
  args: [{
2260
2270
  selector: 'ion-split-pane',
2261
2271
  changeDetection: ChangeDetectionStrategy.OnPush,
2262
2272
  template: '<ng-content></ng-content>',
2263
2273
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2264
- inputs: ['contentId', 'disabled', 'when'],
2265
- outputs: ['ionSplitPaneVisible'],
2274
+ inputs: ['contentId', 'disabled', 'mode', 'theme', 'when'],
2275
+ standalone: true
2266
2276
  }]
2267
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionSplitPaneVisible: [{
2268
- type: Output
2269
- }] } });
2277
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2270
2278
  let IonTab = class IonTab {
2271
2279
  z;
2272
2280
  el;
@@ -2275,26 +2283,27 @@ let IonTab = class IonTab {
2275
2283
  c.detach();
2276
2284
  this.el = r.nativeElement;
2277
2285
  }
2278
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2279
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTab, isStandalone: true, selector: "ion-tab", inputs: { component: "component", tab: "tab" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2286
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2287
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, isStandalone: true, selector: "ion-tab", inputs: { component: "component", mode: "mode", tab: "tab", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2280
2288
  };
2281
2289
  IonTab = __decorate([
2282
2290
  ProxyCmp({
2283
- defineCustomElementFn: defineCustomElement$16,
2284
- inputs: ['component', 'tab'],
2291
+ defineCustomElementFn: defineCustomElement$1a,
2292
+ inputs: ['component', 'mode', 'tab', 'theme'],
2285
2293
  methods: ['setActive']
2286
2294
  })
2287
2295
  ], IonTab);
2288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, decorators: [{
2296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, decorators: [{
2289
2297
  type: Component,
2290
2298
  args: [{
2291
2299
  selector: 'ion-tab',
2292
2300
  changeDetection: ChangeDetectionStrategy.OnPush,
2293
2301
  template: '<ng-content></ng-content>',
2294
2302
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2295
- inputs: ['component', { name: 'tab', required: true }],
2303
+ inputs: ['component', 'mode', 'tab', 'theme'],
2304
+ standalone: true
2296
2305
  }]
2297
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2306
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2298
2307
  let IonTabBar = class IonTabBar {
2299
2308
  z;
2300
2309
  el;
@@ -2303,25 +2312,26 @@ let IonTabBar = class IonTabBar {
2303
2312
  c.detach();
2304
2313
  this.el = r.nativeElement;
2305
2314
  }
2306
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2307
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabBar, isStandalone: true, selector: "ion-tab-bar", inputs: { color: "color", mode: "mode", selectedTab: "selectedTab", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2315
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2316
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, isStandalone: true, selector: "ion-tab-bar", inputs: { color: "color", expand: "expand", hideOnScroll: "hideOnScroll", mode: "mode", selectedTab: "selectedTab", shape: "shape", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2308
2317
  };
2309
2318
  IonTabBar = __decorate([
2310
2319
  ProxyCmp({
2311
- defineCustomElementFn: defineCustomElement$17,
2312
- inputs: ['color', 'mode', 'selectedTab', 'translucent']
2320
+ defineCustomElementFn: defineCustomElement$1b,
2321
+ inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent']
2313
2322
  })
2314
2323
  ], IonTabBar);
2315
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, decorators: [{
2324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
2316
2325
  type: Component,
2317
2326
  args: [{
2318
2327
  selector: 'ion-tab-bar',
2319
2328
  changeDetection: ChangeDetectionStrategy.OnPush,
2320
2329
  template: '<ng-content></ng-content>',
2321
2330
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2322
- inputs: ['color', 'mode', 'selectedTab', 'translucent'],
2331
+ inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent'],
2332
+ standalone: true
2323
2333
  }]
2324
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2334
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2325
2335
  let IonTabButton = class IonTabButton {
2326
2336
  z;
2327
2337
  el;
@@ -2330,25 +2340,26 @@ let IonTabButton = class IonTabButton {
2330
2340
  c.detach();
2331
2341
  this.el = r.nativeElement;
2332
2342
  }
2333
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2334
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabButton, isStandalone: true, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", tab: "tab", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2343
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2344
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, isStandalone: true, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", shape: "shape", tab: "tab", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2335
2345
  };
2336
2346
  IonTabButton = __decorate([
2337
2347
  ProxyCmp({
2338
- defineCustomElementFn: defineCustomElement$18,
2339
- inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
2348
+ defineCustomElementFn: defineCustomElement$1c,
2349
+ inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme']
2340
2350
  })
2341
2351
  ], IonTabButton);
2342
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, decorators: [{
2352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
2343
2353
  type: Component,
2344
2354
  args: [{
2345
2355
  selector: 'ion-tab-button',
2346
2356
  changeDetection: ChangeDetectionStrategy.OnPush,
2347
2357
  template: '<ng-content></ng-content>',
2348
2358
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2349
- inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target'],
2359
+ inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme'],
2360
+ standalone: true
2350
2361
  }]
2351
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2362
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2352
2363
  let IonText = class IonText {
2353
2364
  z;
2354
2365
  el;
@@ -2357,25 +2368,26 @@ let IonText = class IonText {
2357
2368
  c.detach();
2358
2369
  this.el = r.nativeElement;
2359
2370
  }
2360
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2361
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonText, isStandalone: true, selector: "ion-text", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2371
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2372
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, isStandalone: true, selector: "ion-text", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2362
2373
  };
2363
2374
  IonText = __decorate([
2364
2375
  ProxyCmp({
2365
- defineCustomElementFn: defineCustomElement$19,
2366
- inputs: ['color', 'mode']
2376
+ defineCustomElementFn: defineCustomElement$1d,
2377
+ inputs: ['color', 'mode', 'theme']
2367
2378
  })
2368
2379
  ], IonText);
2369
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, decorators: [{
2380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
2370
2381
  type: Component,
2371
2382
  args: [{
2372
2383
  selector: 'ion-text',
2373
2384
  changeDetection: ChangeDetectionStrategy.OnPush,
2374
2385
  template: '<ng-content></ng-content>',
2375
2386
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2376
- inputs: ['color', 'mode'],
2387
+ inputs: ['color', 'mode', 'theme'],
2388
+ standalone: true
2377
2389
  }]
2378
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2390
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2379
2391
  let IonThumbnail = class IonThumbnail {
2380
2392
  z;
2381
2393
  el;
@@ -2384,24 +2396,26 @@ let IonThumbnail = class IonThumbnail {
2384
2396
  c.detach();
2385
2397
  this.el = r.nativeElement;
2386
2398
  }
2387
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2388
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonThumbnail, isStandalone: true, selector: "ion-thumbnail", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2399
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2400
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, isStandalone: true, selector: "ion-thumbnail", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2389
2401
  };
2390
2402
  IonThumbnail = __decorate([
2391
2403
  ProxyCmp({
2392
- defineCustomElementFn: defineCustomElement$1a
2404
+ defineCustomElementFn: defineCustomElement$1e,
2405
+ inputs: ['mode', 'theme']
2393
2406
  })
2394
2407
  ], IonThumbnail);
2395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, decorators: [{
2408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
2396
2409
  type: Component,
2397
2410
  args: [{
2398
2411
  selector: 'ion-thumbnail',
2399
2412
  changeDetection: ChangeDetectionStrategy.OnPush,
2400
2413
  template: '<ng-content></ng-content>',
2401
2414
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2402
- inputs: [],
2415
+ inputs: ['mode', 'theme'],
2416
+ standalone: true
2403
2417
  }]
2404
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2418
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2405
2419
  let IonTitle = class IonTitle {
2406
2420
  z;
2407
2421
  el;
@@ -2410,78 +2424,56 @@ let IonTitle = class IonTitle {
2410
2424
  c.detach();
2411
2425
  this.el = r.nativeElement;
2412
2426
  }
2413
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2414
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTitle, isStandalone: true, selector: "ion-title", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2427
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2428
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, isStandalone: true, selector: "ion-title", inputs: { color: "color", mode: "mode", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2415
2429
  };
2416
2430
  IonTitle = __decorate([
2417
2431
  ProxyCmp({
2418
- defineCustomElementFn: defineCustomElement$1b,
2419
- inputs: ['color', 'size']
2432
+ defineCustomElementFn: defineCustomElement$1f,
2433
+ inputs: ['color', 'mode', 'size', 'theme']
2420
2434
  })
2421
2435
  ], IonTitle);
2422
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, decorators: [{
2436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
2423
2437
  type: Component,
2424
2438
  args: [{
2425
2439
  selector: 'ion-title',
2426
2440
  changeDetection: ChangeDetectionStrategy.OnPush,
2427
2441
  template: '<ng-content></ng-content>',
2428
2442
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2429
- inputs: ['color', 'size'],
2443
+ inputs: ['color', 'mode', 'size', 'theme'],
2444
+ standalone: true
2430
2445
  }]
2431
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2446
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2432
2447
  let IonToast = class IonToast {
2433
2448
  z;
2434
2449
  el;
2435
- ionToastDidPresent = new EventEmitter();
2436
- ionToastWillPresent = new EventEmitter();
2437
- ionToastWillDismiss = new EventEmitter();
2438
- ionToastDidDismiss = new EventEmitter();
2439
- didPresent = new EventEmitter();
2440
- willPresent = new EventEmitter();
2441
- willDismiss = new EventEmitter();
2442
- didDismiss = new EventEmitter();
2443
2450
  constructor(c, r, z) {
2444
2451
  this.z = z;
2445
2452
  c.detach();
2446
2453
  this.el = r.nativeElement;
2454
+ proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
2447
2455
  }
2448
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2449
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToast, isStandalone: true, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", swipeGesture: "swipeGesture", translucent: "translucent", trigger: "trigger" }, outputs: { ionToastDidPresent: "ionToastDidPresent", ionToastWillPresent: "ionToastWillPresent", ionToastWillDismiss: "ionToastWillDismiss", ionToastDidDismiss: "ionToastDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2456
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2457
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, isStandalone: true, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", hue: "hue", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", shape: "shape", swipeGesture: "swipeGesture", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2450
2458
  };
2451
2459
  IonToast = __decorate([
2452
2460
  ProxyCmp({
2453
- defineCustomElementFn: defineCustomElement$1c,
2454
- inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
2461
+ defineCustomElementFn: defineCustomElement$1g,
2462
+ inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
2455
2463
  methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
2456
2464
  })
2457
2465
  ], IonToast);
2458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, decorators: [{
2466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, decorators: [{
2459
2467
  type: Component,
2460
2468
  args: [{
2461
2469
  selector: 'ion-toast',
2462
2470
  changeDetection: ChangeDetectionStrategy.OnPush,
2463
2471
  template: '<ng-content></ng-content>',
2464
2472
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2465
- inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
2466
- outputs: ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
2467
- }]
2468
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionToastDidPresent: [{
2469
- type: Output
2470
- }], ionToastWillPresent: [{
2471
- type: Output
2472
- }], ionToastWillDismiss: [{
2473
- type: Output
2474
- }], ionToastDidDismiss: [{
2475
- type: Output
2476
- }], didPresent: [{
2477
- type: Output
2478
- }], willPresent: [{
2479
- type: Output
2480
- }], willDismiss: [{
2481
- type: Output
2482
- }], didDismiss: [{
2483
- type: Output
2484
- }] } });
2473
+ inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
2474
+ standalone: true
2475
+ }]
2476
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2485
2477
  let IonToolbar = class IonToolbar {
2486
2478
  z;
2487
2479
  el;
@@ -2490,33 +2482,34 @@ let IonToolbar = class IonToolbar {
2490
2482
  c.detach();
2491
2483
  this.el = r.nativeElement;
2492
2484
  }
2493
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2494
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToolbar, isStandalone: true, selector: "ion-toolbar", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2485
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2486
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, isStandalone: true, selector: "ion-toolbar", inputs: { color: "color", mode: "mode", theme: "theme", titlePlacement: "titlePlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2495
2487
  };
2496
2488
  IonToolbar = __decorate([
2497
2489
  ProxyCmp({
2498
- defineCustomElementFn: defineCustomElement$1d,
2499
- inputs: ['color', 'mode']
2490
+ defineCustomElementFn: defineCustomElement$1h,
2491
+ inputs: ['color', 'mode', 'theme', 'titlePlacement']
2500
2492
  })
2501
2493
  ], IonToolbar);
2502
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, decorators: [{
2494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
2503
2495
  type: Component,
2504
2496
  args: [{
2505
2497
  selector: 'ion-toolbar',
2506
2498
  changeDetection: ChangeDetectionStrategy.OnPush,
2507
2499
  template: '<ng-content></ng-content>',
2508
2500
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2509
- inputs: ['color', 'mode'],
2501
+ inputs: ['color', 'mode', 'theme', 'titlePlacement'],
2502
+ standalone: true
2510
2503
  }]
2511
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2504
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2512
2505
 
2513
2506
  class IonTabs extends IonTabs$1 {
2514
2507
  outlet;
2515
2508
  tabBar;
2516
2509
  tabBars;
2517
2510
  tabs;
2518
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
2519
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabs, isStandalone: true, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
2511
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
2512
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, isStandalone: true, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
2520
2513
  <ng-content select="[slot=top]"></ng-content>
2521
2514
  <div class="tabs-inner" #tabsInner>
2522
2515
  <ion-router-outlet
@@ -2531,7 +2524,7 @@ class IonTabs extends IonTabs$1 {
2531
2524
  <ng-content></ng-content>
2532
2525
  `, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2533
2526
  }
2534
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, decorators: [{
2527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
2535
2528
  type: Component,
2536
2529
  args: [{ selector: 'ion-tabs', template: `
2537
2530
  <ng-content select="[slot=top]"></ng-content>
@@ -2576,12 +2569,12 @@ class ModalController extends OverlayBaseController {
2576
2569
  delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
2577
2570
  });
2578
2571
  }
2579
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2580
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController });
2572
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2573
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
2581
2574
  }
2582
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, decorators: [{
2575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
2583
2576
  type: Injectable
2584
- }], ctorParameters: () => [] });
2577
+ }], ctorParameters: function () { return []; } });
2585
2578
 
2586
2579
  class PopoverController extends OverlayBaseController {
2587
2580
  angularDelegate = inject(AngularDelegate);
@@ -2637,30 +2630,30 @@ class ActionSheetController extends OverlayBaseController {
2637
2630
  super(actionSheetController);
2638
2631
  defineCustomElement$7();
2639
2632
  }
2640
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2641
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
2633
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2634
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
2642
2635
  }
2643
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, decorators: [{
2636
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, decorators: [{
2644
2637
  type: Injectable,
2645
2638
  args: [{
2646
2639
  providedIn: 'root',
2647
2640
  }]
2648
- }], ctorParameters: () => [] });
2641
+ }], ctorParameters: function () { return []; } });
2649
2642
 
2650
2643
  class AlertController extends OverlayBaseController {
2651
2644
  constructor() {
2652
2645
  super(alertController);
2653
2646
  defineCustomElement$8();
2654
2647
  }
2655
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2656
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, providedIn: 'root' });
2648
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2649
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, providedIn: 'root' });
2657
2650
  }
2658
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, decorators: [{
2651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, decorators: [{
2659
2652
  type: Injectable,
2660
2653
  args: [{
2661
2654
  providedIn: 'root',
2662
2655
  }]
2663
- }], ctorParameters: () => [] });
2656
+ }], ctorParameters: function () { return []; } });
2664
2657
 
2665
2658
  class AnimationController {
2666
2659
  /**
@@ -2686,10 +2679,10 @@ class AnimationController {
2686
2679
  easingTime(p0, p1, p2, p3, progression) {
2687
2680
  return getTimeGivenProgression(p0, p1, p2, p3, progression);
2688
2681
  }
2689
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2690
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, providedIn: 'root' });
2682
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2683
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, providedIn: 'root' });
2691
2684
  }
2692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, decorators: [{
2685
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, decorators: [{
2693
2686
  type: Injectable,
2694
2687
  args: [{
2695
2688
  providedIn: 'root',
@@ -2715,80 +2708,98 @@ class GestureController {
2715
2708
  }
2716
2709
  return createGesture(opts);
2717
2710
  }
2718
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
2719
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, providedIn: 'root' });
2711
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
2712
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, providedIn: 'root' });
2720
2713
  }
2721
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, decorators: [{
2714
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, decorators: [{
2722
2715
  type: Injectable,
2723
2716
  args: [{
2724
2717
  providedIn: 'root',
2725
2718
  }]
2726
- }], ctorParameters: () => [{ type: i0.NgZone }] });
2719
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
2727
2720
 
2728
2721
  class LoadingController extends OverlayBaseController {
2729
2722
  constructor() {
2730
2723
  super(loadingController);
2731
- defineCustomElement$J();
2724
+ defineCustomElement$M();
2732
2725
  }
2733
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2734
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, providedIn: 'root' });
2726
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2727
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, providedIn: 'root' });
2735
2728
  }
2736
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, decorators: [{
2729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, decorators: [{
2737
2730
  type: Injectable,
2738
2731
  args: [{
2739
2732
  providedIn: 'root',
2740
2733
  }]
2741
- }], ctorParameters: () => [] });
2734
+ }], ctorParameters: function () { return []; } });
2742
2735
 
2743
2736
  class MenuController extends MenuController$1 {
2744
2737
  constructor() {
2745
2738
  super(menuController);
2746
2739
  }
2747
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2748
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, providedIn: 'root' });
2740
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2741
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, providedIn: 'root' });
2742
+ }
2743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, decorators: [{
2744
+ type: Injectable,
2745
+ args: [{
2746
+ providedIn: 'root',
2747
+ }]
2748
+ }], ctorParameters: function () { return []; } });
2749
+
2750
+ /**
2751
+ * @deprecated Use the inline ion-picker component instead.
2752
+ */
2753
+ class PickerController extends OverlayBaseController {
2754
+ constructor() {
2755
+ super(pickerController);
2756
+ defineCustomElement$V();
2757
+ }
2758
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2759
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
2749
2760
  }
2750
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, decorators: [{
2761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
2751
2762
  type: Injectable,
2752
2763
  args: [{
2753
2764
  providedIn: 'root',
2754
2765
  }]
2755
- }], ctorParameters: () => [] });
2766
+ }], ctorParameters: function () { return []; } });
2756
2767
 
2757
2768
  class ToastController extends OverlayBaseController {
2758
2769
  constructor() {
2759
2770
  super(toastController);
2760
- defineCustomElement$1c();
2771
+ defineCustomElement$1g();
2761
2772
  }
2762
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2763
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, providedIn: 'root' });
2773
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2774
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
2764
2775
  }
2765
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, decorators: [{
2776
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
2766
2777
  type: Injectable,
2767
2778
  args: [{
2768
2779
  providedIn: 'root',
2769
2780
  }]
2770
- }], ctorParameters: () => [] });
2781
+ }], ctorParameters: function () { return []; } });
2771
2782
 
2772
2783
  let IonNav = class IonNav extends IonNav$1 {
2773
2784
  constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
2774
2785
  super(ref, environmentInjector, injector, angularDelegate, z, c);
2775
2786
  }
2776
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
2777
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNav, isStandalone: true, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2787
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
2788
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, isStandalone: true, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2778
2789
  };
2779
2790
  IonNav = __decorate([
2780
2791
  ProxyCmp$1({
2781
- defineCustomElementFn: defineCustomElement$1e,
2792
+ defineCustomElementFn: defineCustomElement$1i,
2782
2793
  })
2783
2794
  ], IonNav);
2784
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, decorators: [{
2795
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
2785
2796
  type: Component,
2786
2797
  args: [{
2787
2798
  selector: 'ion-nav',
2788
2799
  template: '<ng-content></ng-content>',
2789
2800
  standalone: true,
2790
2801
  }]
2791
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
2802
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
2792
2803
 
2793
2804
  const CHECKBOX_INPUTS = [
2794
2805
  'checked',
@@ -2833,16 +2844,16 @@ let IonCheckbox = class IonCheckbox extends ValueAccessor {
2833
2844
  handleIonChange(el) {
2834
2845
  this.handleValueChange(el, el.checked);
2835
2846
  }
2836
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
2837
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCheckbox, isStandalone: true, selector: "ion-checkbox", inputs: { checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$a], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2847
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
2848
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, isStandalone: true, selector: "ion-checkbox", inputs: { checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$a], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2838
2849
  };
2839
2850
  IonCheckbox = __decorate([
2840
2851
  ProxyCmp({
2841
- defineCustomElementFn: defineCustomElement$1f,
2852
+ defineCustomElementFn: defineCustomElement$1j,
2842
2853
  inputs: CHECKBOX_INPUTS,
2843
2854
  })
2844
2855
  ], IonCheckbox);
2845
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, decorators: [{
2856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, decorators: [{
2846
2857
  type: Component,
2847
2858
  args: [{
2848
2859
  selector: 'ion-checkbox',
@@ -2853,7 +2864,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
2853
2864
  providers: [accessorProvider$a],
2854
2865
  standalone: true,
2855
2866
  }]
2856
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
2867
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
2857
2868
  type: HostListener,
2858
2869
  args: ['ionChange', ['$event.target']]
2859
2870
  }] } });
@@ -2919,17 +2930,17 @@ let IonDatetime = class IonDatetime extends ValueAccessor {
2919
2930
  handleIonChange(el) {
2920
2931
  this.handleValueChange(el, el.value);
2921
2932
  }
2922
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
2923
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetime, isStandalone: true, selector: "ion-datetime", inputs: { cancelText: "cancelText", clearText: "clearText", color: "color", dayValues: "dayValues", disabled: "disabled", doneText: "doneText", firstDayOfWeek: "firstDayOfWeek", formatOptions: "formatOptions", highlightedDates: "highlightedDates", hourCycle: "hourCycle", hourValues: "hourValues", isDateEnabled: "isDateEnabled", locale: "locale", max: "max", min: "min", minuteValues: "minuteValues", mode: "mode", monthValues: "monthValues", multiple: "multiple", name: "name", preferWheel: "preferWheel", presentation: "presentation", readonly: "readonly", showAdjacentDays: "showAdjacentDays", showClearButton: "showClearButton", showDefaultButtons: "showDefaultButtons", showDefaultTimeLabel: "showDefaultTimeLabel", showDefaultTitle: "showDefaultTitle", size: "size", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$9], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2933
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
2934
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetime, isStandalone: true, selector: "ion-datetime", inputs: { cancelText: "cancelText", clearText: "clearText", color: "color", dayValues: "dayValues", disabled: "disabled", doneText: "doneText", firstDayOfWeek: "firstDayOfWeek", formatOptions: "formatOptions", highlightedDates: "highlightedDates", hourCycle: "hourCycle", hourValues: "hourValues", isDateEnabled: "isDateEnabled", locale: "locale", max: "max", min: "min", minuteValues: "minuteValues", mode: "mode", monthValues: "monthValues", multiple: "multiple", name: "name", preferWheel: "preferWheel", presentation: "presentation", readonly: "readonly", showAdjacentDays: "showAdjacentDays", showClearButton: "showClearButton", showDefaultButtons: "showDefaultButtons", showDefaultTimeLabel: "showDefaultTimeLabel", showDefaultTitle: "showDefaultTitle", size: "size", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$9], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2924
2935
  };
2925
2936
  IonDatetime = __decorate([
2926
2937
  ProxyCmp({
2927
- defineCustomElementFn: defineCustomElement$1g,
2938
+ defineCustomElementFn: defineCustomElement$1k,
2928
2939
  inputs: DATETIME_INPUTS,
2929
2940
  methods: ['confirm', 'reset', 'cancel'],
2930
2941
  })
2931
2942
  ], IonDatetime);
2932
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, decorators: [{
2943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, decorators: [{
2933
2944
  type: Component,
2934
2945
  args: [{
2935
2946
  selector: 'ion-datetime',
@@ -2940,7 +2951,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
2940
2951
  providers: [accessorProvider$9],
2941
2952
  standalone: true,
2942
2953
  }]
2943
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
2954
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
2944
2955
  type: HostListener,
2945
2956
  args: ['ionChange', ['$event.target']]
2946
2957
  }] } });
@@ -2953,16 +2964,16 @@ let IonIcon = class IonIcon {
2953
2964
  c.detach();
2954
2965
  this.el = r.nativeElement;
2955
2966
  }
2956
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2957
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonIcon, isStandalone: true, selector: "ion-icon", inputs: { color: "color", flipRtl: "flipRtl", icon: "icon", ios: "ios", lazy: "lazy", md: "md", mode: "mode", name: "name", sanitize: "sanitize", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2967
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2968
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonIcon, isStandalone: true, selector: "ion-icon", inputs: { color: "color", flipRtl: "flipRtl", icon: "icon", ios: "ios", lazy: "lazy", md: "md", mode: "mode", name: "name", sanitize: "sanitize", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2958
2969
  };
2959
2970
  IonIcon = __decorate([
2960
2971
  ProxyCmp({
2961
- defineCustomElementFn: defineCustomElement$1h,
2972
+ defineCustomElementFn: defineCustomElement$1l,
2962
2973
  inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
2963
2974
  })
2964
2975
  ], IonIcon);
2965
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, decorators: [{
2976
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, decorators: [{
2966
2977
  type: Component,
2967
2978
  args: [{
2968
2979
  selector: 'ion-icon',
@@ -2972,7 +2983,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
2972
2983
  inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
2973
2984
  standalone: true,
2974
2985
  }]
2975
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2986
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2976
2987
 
2977
2988
  const INPUT_INPUTS = [
2978
2989
  'accept',
@@ -3053,17 +3064,17 @@ let IonInput = class IonInput extends ValueAccessor {
3053
3064
  }
3054
3065
  });
3055
3066
  }
3056
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3057
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInput, isStandalone: true, selector: "ion-input", inputs: { accept: "accept", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", size: "size", spellcheck: "spellcheck", step: "step", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$8], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3067
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3068
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInput, isStandalone: true, selector: "ion-input", inputs: { accept: "accept", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", size: "size", spellcheck: "spellcheck", step: "step", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$8], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3058
3069
  };
3059
3070
  IonInput = __decorate([
3060
3071
  ProxyCmp({
3061
- defineCustomElementFn: defineCustomElement$1i,
3072
+ defineCustomElementFn: defineCustomElement$1m,
3062
3073
  inputs: INPUT_INPUTS,
3063
3074
  methods: ['setFocus', 'getInputElement'],
3064
3075
  })
3065
3076
  ], IonInput);
3066
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, decorators: [{
3077
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, decorators: [{
3067
3078
  type: Component,
3068
3079
  args: [{
3069
3080
  selector: 'ion-input',
@@ -3074,7 +3085,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3074
3085
  providers: [accessorProvider$8],
3075
3086
  standalone: true,
3076
3087
  }]
3077
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
3088
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
3078
3089
  type: HostListener,
3079
3090
  args: ['ionInput', ['$event.target']]
3080
3091
  }] } });
@@ -3135,17 +3146,17 @@ let IonInputOtp = class IonInputOtp extends ValueAccessor {
3135
3146
  }
3136
3147
  });
3137
3148
  }
3138
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3139
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputOtp, isStandalone: true, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$7], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3149
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3150
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputOtp, isStandalone: true, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$7], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3140
3151
  };
3141
3152
  IonInputOtp = __decorate([
3142
3153
  ProxyCmp({
3143
- defineCustomElementFn: defineCustomElement$1j,
3154
+ defineCustomElementFn: defineCustomElement$1n,
3144
3155
  inputs: INPUT_OTP_INPUTS,
3145
3156
  methods: ['setFocus'],
3146
3157
  })
3147
3158
  ], IonInputOtp);
3148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, decorators: [{
3159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, decorators: [{
3149
3160
  type: Component,
3150
3161
  args: [{
3151
3162
  selector: 'ion-input-otp',
@@ -3156,7 +3167,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3156
3167
  providers: [accessorProvider$7],
3157
3168
  standalone: true,
3158
3169
  }]
3159
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
3170
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
3160
3171
  type: HostListener,
3161
3172
  args: ['ionInput', ['$event.target']]
3162
3173
  }] } });
@@ -3188,16 +3199,16 @@ let IonRadioGroup = class IonRadioGroup extends ValueAccessor {
3188
3199
  handleIonChange(el) {
3189
3200
  this.handleValueChange(el, el.value);
3190
3201
  }
3191
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3192
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadioGroup, isStandalone: true, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$6], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3202
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3203
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, isStandalone: true, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$6], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3193
3204
  };
3194
3205
  IonRadioGroup = __decorate([
3195
3206
  ProxyCmp({
3196
- defineCustomElementFn: defineCustomElement$1k,
3207
+ defineCustomElementFn: defineCustomElement$1o,
3197
3208
  inputs: RADIO_GROUP_INPUTS,
3198
3209
  })
3199
3210
  ], IonRadioGroup);
3200
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, decorators: [{
3211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, decorators: [{
3201
3212
  type: Component,
3202
3213
  args: [{
3203
3214
  selector: 'ion-radio-group',
@@ -3208,7 +3219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3208
3219
  providers: [accessorProvider$6],
3209
3220
  standalone: true,
3210
3221
  }]
3211
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
3222
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
3212
3223
  type: HostListener,
3213
3224
  args: ['ionChange', ['$event.target']]
3214
3225
  }] } });
@@ -3258,16 +3269,16 @@ let IonRange = class IonRange extends ValueAccessor {
3258
3269
  handleIonInput(el) {
3259
3270
  this.handleValueChange(el, el.value);
3260
3271
  }
3261
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3262
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRange, isStandalone: true, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", ticks: "ticks", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$5], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3272
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3273
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRange, isStandalone: true, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", ticks: "ticks", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$5], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3263
3274
  };
3264
3275
  IonRange = __decorate([
3265
3276
  ProxyCmp({
3266
- defineCustomElementFn: defineCustomElement$1l,
3277
+ defineCustomElementFn: defineCustomElement$1p,
3267
3278
  inputs: RANGE_INPUTS,
3268
3279
  })
3269
3280
  ], IonRange);
3270
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, decorators: [{
3281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, decorators: [{
3271
3282
  type: Component,
3272
3283
  args: [{
3273
3284
  selector: 'ion-range',
@@ -3278,7 +3289,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3278
3289
  providers: [accessorProvider$5],
3279
3290
  standalone: true,
3280
3291
  }]
3281
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
3292
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
3282
3293
  type: HostListener,
3283
3294
  args: ['ionInput', ['$event.target']]
3284
3295
  }] } });
@@ -3331,17 +3342,17 @@ let IonSearchbar = class IonSearchbar extends ValueAccessor {
3331
3342
  handleIonInput(el) {
3332
3343
  this.handleValueChange(el, el.value);
3333
3344
  }
3334
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3335
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSearchbar, isStandalone: true, selector: "ion-searchbar", inputs: { animated: "animated", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", showCancelButton: "showCancelButton", showClearButton: "showClearButton", spellcheck: "spellcheck", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$4], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3345
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3346
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSearchbar, isStandalone: true, selector: "ion-searchbar", inputs: { animated: "animated", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", showCancelButton: "showCancelButton", showClearButton: "showClearButton", spellcheck: "spellcheck", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$4], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3336
3347
  };
3337
3348
  IonSearchbar = __decorate([
3338
3349
  ProxyCmp({
3339
- defineCustomElementFn: defineCustomElement$1m,
3350
+ defineCustomElementFn: defineCustomElement$1q,
3340
3351
  inputs: SEARCHBAR_INPUTS,
3341
3352
  methods: ['setFocus', 'getInputElement'],
3342
3353
  })
3343
3354
  ], IonSearchbar);
3344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, decorators: [{
3355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, decorators: [{
3345
3356
  type: Component,
3346
3357
  args: [{
3347
3358
  selector: 'ion-searchbar',
@@ -3352,7 +3363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3352
3363
  providers: [accessorProvider$4],
3353
3364
  standalone: true,
3354
3365
  }]
3355
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
3366
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
3356
3367
  type: HostListener,
3357
3368
  args: ['ionInput', ['$event.target']]
3358
3369
  }] } });
@@ -3384,16 +3395,16 @@ let IonSegment = class IonSegment extends ValueAccessor {
3384
3395
  handleIonChange(el) {
3385
3396
  this.handleValueChange(el, el.value);
3386
3397
  }
3387
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3388
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegment, isStandalone: true, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$3], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3398
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3399
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegment, isStandalone: true, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$3], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3389
3400
  };
3390
3401
  IonSegment = __decorate([
3391
3402
  ProxyCmp({
3392
- defineCustomElementFn: defineCustomElement$1n,
3403
+ defineCustomElementFn: defineCustomElement$1r,
3393
3404
  inputs: SEGMENT_INPUTS,
3394
3405
  })
3395
3406
  ], IonSegment);
3396
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, decorators: [{
3407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, decorators: [{
3397
3408
  type: Component,
3398
3409
  args: [{
3399
3410
  selector: 'ion-segment',
@@ -3404,7 +3415,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3404
3415
  providers: [accessorProvider$3],
3405
3416
  standalone: true,
3406
3417
  }]
3407
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
3418
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
3408
3419
  type: HostListener,
3409
3420
  args: ['ionChange', ['$event.target']]
3410
3421
  }] } });
@@ -3459,17 +3470,17 @@ let IonSelect = class IonSelect extends ValueAccessor {
3459
3470
  handleIonChange(el) {
3460
3471
  this.handleValueChange(el, el.value);
3461
3472
  }
3462
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3463
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelect, isStandalone: true, selector: "ion-select", inputs: { cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", selectedText: "selectedText", shape: "shape", toggleIcon: "toggleIcon", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$2], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3473
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3474
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelect, isStandalone: true, selector: "ion-select", inputs: { cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", selectedText: "selectedText", shape: "shape", toggleIcon: "toggleIcon", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$2], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3464
3475
  };
3465
3476
  IonSelect = __decorate([
3466
3477
  ProxyCmp({
3467
- defineCustomElementFn: defineCustomElement$1o,
3478
+ defineCustomElementFn: defineCustomElement$1s,
3468
3479
  inputs: SELECT_INPUTS,
3469
3480
  methods: ['open'],
3470
3481
  })
3471
3482
  ], IonSelect);
3472
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, decorators: [{
3483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, decorators: [{
3473
3484
  type: Component,
3474
3485
  args: [{
3475
3486
  selector: 'ion-select',
@@ -3480,7 +3491,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3480
3491
  providers: [accessorProvider$2],
3481
3492
  standalone: true,
3482
3493
  }]
3483
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
3494
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
3484
3495
  type: HostListener,
3485
3496
  args: ['ionChange', ['$event.target']]
3486
3497
  }] } });
@@ -3542,17 +3553,17 @@ let IonTextarea = class IonTextarea extends ValueAccessor {
3542
3553
  handleIonInput(el) {
3543
3554
  this.handleValueChange(el, el.value);
3544
3555
  }
3545
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3546
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTextarea, isStandalone: true, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", spellcheck: "spellcheck", value: "value", wrap: "wrap" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$1], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3556
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3557
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTextarea, isStandalone: true, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", spellcheck: "spellcheck", value: "value", wrap: "wrap" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$1], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3547
3558
  };
3548
3559
  IonTextarea = __decorate([
3549
3560
  ProxyCmp({
3550
- defineCustomElementFn: defineCustomElement$1p,
3561
+ defineCustomElementFn: defineCustomElement$1t,
3551
3562
  inputs: TEXTAREA_INPUTS,
3552
3563
  methods: ['setFocus', 'getInputElement'],
3553
3564
  })
3554
3565
  ], IonTextarea);
3555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, decorators: [{
3566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, decorators: [{
3556
3567
  type: Component,
3557
3568
  args: [{
3558
3569
  selector: 'ion-textarea',
@@ -3563,7 +3574,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3563
3574
  providers: [accessorProvider$1],
3564
3575
  standalone: true,
3565
3576
  }]
3566
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
3577
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
3567
3578
  type: HostListener,
3568
3579
  args: ['ionInput', ['$event.target']]
3569
3580
  }] } });
@@ -3611,16 +3622,16 @@ let IonToggle = class IonToggle extends ValueAccessor {
3611
3622
  handleIonChange(el) {
3612
3623
  this.handleValueChange(el, el.checked);
3613
3624
  }
3614
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3615
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToggle, isStandalone: true, selector: "ion-toggle", inputs: { checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3625
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
3626
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, isStandalone: true, selector: "ion-toggle", inputs: { checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3616
3627
  };
3617
3628
  IonToggle = __decorate([
3618
3629
  ProxyCmp({
3619
- defineCustomElementFn: defineCustomElement$1q,
3630
+ defineCustomElementFn: defineCustomElement$1u,
3620
3631
  inputs: TOGGLE_INPUTS,
3621
3632
  })
3622
3633
  ], IonToggle);
3623
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, decorators: [{
3634
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, decorators: [{
3624
3635
  type: Component,
3625
3636
  args: [{
3626
3637
  selector: 'ion-toggle',
@@ -3631,7 +3642,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3631
3642
  providers: [accessorProvider],
3632
3643
  standalone: true,
3633
3644
  }]
3634
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
3645
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
3635
3646
  type: HostListener,
3636
3647
  args: ['ionChange', ['$event.target']]
3637
3648
  }] } });
@@ -3640,5 +3651,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
3640
3651
  * Generated bundle index. Do not edit.
3641
3652
  */
3642
3653
 
3643
- export { ActionSheetController, AlertController, AnimationController, GestureController, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterLink, IonRouterLinkWithHref, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LoadingController, MenuController, ModalController, PopoverController, ToastController, provideIonicAngular };
3654
+ export { ActionSheetController, AlertController, AnimationController, GestureController, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterLink, IonRouterLinkWithHref, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LoadingController, MenuController, ModalController, PickerController, PopoverController, ToastController, provideIonicAngular };
3644
3655
  //# sourceMappingURL=ionic-angular-standalone.mjs.map