@ionic/angular 8.8.9-dev.11781013468.1ed93da9 → 8.8.9-dev.11781024903.1e4268e5

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