@ionic/angular 8.8.9-dev.11780604658.184bb991 → 8.8.9-dev.11780690416.19d0d667

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