@ionic/angular 8.8.9-dev.11780692883.1099c873 → 8.8.9-dev.11780945313.14080cb4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/README.md +1 -1
  2. package/app-initialize.d.ts +3 -0
  3. package/common/directives/control-value-accessors/index.d.ts +1 -0
  4. package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
  5. package/common/directives/navigation/back-button.d.ts +23 -0
  6. package/common/directives/navigation/nav-params.d.ts +45 -0
  7. package/common/directives/navigation/nav.d.ts +21 -0
  8. package/common/directives/navigation/router-link-delegate.d.ts +60 -0
  9. package/common/directives/navigation/router-outlet.d.ts +104 -0
  10. package/common/directives/navigation/stack-controller.d.ts +42 -0
  11. package/common/directives/navigation/stack-utils.d.ts +38 -0
  12. package/common/directives/navigation/tabs.d.ts +83 -0
  13. package/common/index.d.ts +22 -0
  14. package/common/overlays/modal.d.ts +62 -0
  15. package/common/overlays/popover.d.ts +46 -0
  16. package/common/providers/angular-delegate.d.ts +28 -0
  17. package/common/providers/config.d.ts +11 -0
  18. package/common/providers/dom-controller.d.ts +16 -0
  19. package/common/providers/menu-controller.d.ts +78 -0
  20. package/common/providers/nav-controller.d.ts +116 -0
  21. package/common/providers/platform.d.ts +174 -0
  22. package/common/types/interfaces.d.ts +8 -0
  23. package/common/types/ionic-lifecycle-hooks.d.ts +27 -0
  24. package/common/types/overlay-options.d.ts +16 -0
  25. package/common/utils/overlay.d.ts +21 -0
  26. package/common/utils/proxy.d.ts +8 -0
  27. package/common/utils/routing.d.ts +28 -0
  28. package/common/utils/util.d.ts +1 -0
  29. package/css/core.css +1 -1
  30. package/css/core.css.map +1 -1
  31. package/css/display.css +1 -1
  32. package/css/display.css.map +1 -1
  33. package/css/flex-utils.css +1 -1
  34. package/css/flex-utils.css.map +1 -1
  35. package/css/float-elements.css.map +1 -1
  36. package/css/global.bundle.css.map +1 -1
  37. package/css/ionic/bundle.ionic.css +1 -0
  38. package/css/ionic/bundle.ionic.css.map +1 -0
  39. package/css/ionic/core.ionic.css +1 -0
  40. package/css/ionic/core.ionic.css.map +1 -0
  41. package/css/ionic/global.bundle.ionic.css +1 -0
  42. package/css/ionic/global.bundle.ionic.css.map +1 -0
  43. package/css/ionic/ionic-swiper.ionic.css +1 -0
  44. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  45. package/css/ionic/link.ionic.css +1 -0
  46. package/css/ionic/link.ionic.css.map +1 -0
  47. package/css/ionic/structure.ionic.css +1 -0
  48. package/css/ionic/structure.ionic.css.map +1 -0
  49. package/css/ionic/typography.ionic.css +1 -0
  50. package/css/ionic/typography.ionic.css.map +1 -0
  51. package/css/ionic/utils.bundle.ionic.css +1 -0
  52. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  53. package/css/ionic-swiper.css +1 -1
  54. package/css/ionic-swiper.css.map +1 -1
  55. package/css/ionic.bundle.css +1 -1
  56. package/css/ionic.bundle.css.map +1 -1
  57. package/css/normalize.css.map +1 -1
  58. package/css/padding.css.map +1 -1
  59. package/css/palettes/dark.always.css.map +1 -1
  60. package/css/palettes/dark.class.css.map +1 -1
  61. package/css/palettes/dark.system.css.map +1 -1
  62. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  63. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  64. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  65. package/css/palettes/high-contrast.always.css.map +1 -1
  66. package/css/palettes/high-contrast.class.css.map +1 -1
  67. package/css/palettes/high-contrast.system.css.map +1 -1
  68. package/css/structure.css.map +1 -1
  69. package/css/text-alignment.css.map +1 -1
  70. package/css/text-transformation.css.map +1 -1
  71. package/css/typography.css.map +1 -1
  72. package/css/utils.bundle.css +1 -1
  73. package/css/utils.bundle.css.map +1 -1
  74. package/directives/angular-component-lib/utils.d.ts +9 -0
  75. package/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  76. package/directives/control-value-accessors/index.d.ts +4 -0
  77. package/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
  78. package/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
  79. package/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  80. package/directives/navigation/ion-back-button.d.ts +9 -0
  81. package/directives/navigation/ion-nav.d.ts +8 -0
  82. package/directives/navigation/ion-router-outlet.d.ts +25 -0
  83. package/directives/navigation/ion-tabs.d.ts +13 -0
  84. package/directives/navigation/router-link-delegate.d.ts +16 -0
  85. package/directives/overlays/modal.d.ts +6 -0
  86. package/directives/overlays/popover.d.ts +6 -0
  87. package/directives/proxies-list.d.ts +2 -0
  88. package/{types/ionic-angular.d.ts → directives/proxies.d.ts} +478 -703
  89. package/directives/validators/index.d.ts +2 -0
  90. package/directives/validators/max-validator.d.ts +12 -0
  91. package/directives/validators/min-validator.d.ts +12 -0
  92. package/esm2022/app-initialize.mjs +29 -0
  93. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  94. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  95. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  96. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  97. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  98. package/esm2022/common/directives/navigation/router-link-delegate.mjs +156 -0
  99. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  100. package/esm2022/common/directives/navigation/stack-controller.mjs +280 -0
  101. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  102. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  103. package/esm2022/common/index.mjs +20 -0
  104. package/esm2022/common/ionic-angular-common.mjs +5 -0
  105. package/esm2022/common/overlays/modal.mjs +103 -0
  106. package/esm2022/common/overlays/popover.mjs +91 -0
  107. package/esm2022/common/providers/angular-delegate.mjs +203 -0
  108. package/esm2022/common/providers/config.mjs +45 -0
  109. package/esm2022/common/providers/dom-controller.mjs +45 -0
  110. package/esm2022/common/providers/menu-controller.mjs +114 -0
  111. package/esm2022/common/providers/nav-controller.mjs +235 -0
  112. package/esm2022/common/providers/platform.mjs +258 -0
  113. package/esm2022/common/types/interfaces.mjs +2 -0
  114. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  115. package/esm2022/common/types/overlay-options.mjs +2 -0
  116. package/esm2022/common/utils/overlay.mjs +26 -0
  117. package/esm2022/common/utils/proxy.mjs +47 -0
  118. package/esm2022/common/utils/routing.mjs +55 -0
  119. package/esm2022/common/utils/util.mjs +10 -0
  120. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  121. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  122. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  123. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  124. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  125. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  126. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  127. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  128. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  129. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  130. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  131. package/esm2022/directives/overlays/modal.mjs +22 -0
  132. package/esm2022/directives/overlays/popover.mjs +18 -0
  133. package/esm2022/directives/proxies-list.mjs +93 -0
  134. package/esm2022/directives/proxies.mjs +2465 -0
  135. package/esm2022/directives/validators/index.mjs +3 -0
  136. package/esm2022/directives/validators/max-validator.mjs +27 -0
  137. package/esm2022/directives/validators/min-validator.mjs +27 -0
  138. package/esm2022/index.mjs +32 -0
  139. package/esm2022/ionic-angular.mjs +5 -0
  140. package/esm2022/ionic-module.mjs +111 -0
  141. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  142. package/esm2022/providers/alert-controller.mjs +19 -0
  143. package/esm2022/providers/animation-controller.mjs +38 -0
  144. package/esm2022/providers/gesture-controller.mjs +33 -0
  145. package/esm2022/providers/loading-controller.mjs +19 -0
  146. package/esm2022/providers/menu-controller.mjs +19 -0
  147. package/esm2022/providers/modal-controller.mjs +26 -0
  148. package/esm2022/providers/picker-controller.mjs +22 -0
  149. package/esm2022/providers/popover-controller.mjs +19 -0
  150. package/esm2022/providers/toast-controller.mjs +19 -0
  151. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  152. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  153. package/esm2022/standalone/directives/datetime.mjs +95 -0
  154. package/esm2022/standalone/directives/icon.mjs +35 -0
  155. package/esm2022/standalone/directives/index.mjs +13 -0
  156. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  157. package/esm2022/standalone/directives/input.mjs +113 -0
  158. package/esm2022/standalone/directives/proxies.mjs +2356 -0
  159. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  160. package/esm2022/standalone/directives/range.mjs +78 -0
  161. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  162. package/esm2022/standalone/directives/segment.mjs +60 -0
  163. package/esm2022/standalone/directives/select.mjs +84 -0
  164. package/esm2022/standalone/directives/textarea.mjs +91 -0
  165. package/esm2022/standalone/directives/toggle.mjs +76 -0
  166. package/esm2022/standalone/index.mjs +25 -0
  167. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  168. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  169. package/esm2022/standalone/navigation/nav.mjs +28 -0
  170. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  171. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  172. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  173. package/esm2022/standalone/overlays/modal.mjs +32 -0
  174. package/esm2022/standalone/overlays/popover.mjs +28 -0
  175. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  176. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  177. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  178. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  179. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  180. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  181. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  182. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  183. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  184. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  185. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  186. package/fesm2022/ionic-angular-common.mjs +84 -87
  187. package/fesm2022/ionic-angular-common.mjs.map +1 -1
  188. package/fesm2022/ionic-angular-standalone.mjs +911 -903
  189. package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
  190. package/fesm2022/ionic-angular.mjs +771 -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 +1062 -0
  217. package/standalone/directives/radio-group.d.ts +18 -0
  218. package/standalone/directives/range.d.ts +47 -0
  219. package/standalone/directives/searchbar.d.ts +45 -0
  220. package/standalone/directives/segment.d.ts +19 -0
  221. package/standalone/directives/select.d.ts +34 -0
  222. package/standalone/directives/textarea.d.ts +37 -0
  223. package/standalone/directives/toggle.d.ts +28 -0
  224. package/standalone/index.d.ts +23 -0
  225. package/standalone/navigation/back-button.d.ts +9 -0
  226. package/standalone/navigation/nav.d.ts +8 -0
  227. package/standalone/navigation/router-link-delegate.d.ts +10 -0
  228. package/standalone/navigation/router-outlet.d.ts +25 -0
  229. package/standalone/navigation/tabs.d.ts +13 -0
  230. package/standalone/overlays/modal.d.ts +6 -0
  231. package/standalone/overlays/popover.d.ts +6 -0
  232. package/standalone/providers/action-sheet-controller.d.ts +8 -0
  233. package/standalone/providers/alert-controller.d.ts +8 -0
  234. package/standalone/providers/animation-controller.d.ts +25 -0
  235. package/standalone/providers/gesture-controller.d.ts +13 -0
  236. package/standalone/providers/ionic-angular.d.ts +7 -0
  237. package/standalone/providers/loading-controller.d.ts +8 -0
  238. package/standalone/providers/menu-controller.d.ts +7 -0
  239. package/standalone/providers/modal-controller.d.ts +12 -0
  240. package/standalone/providers/picker-controller.d.ts +11 -0
  241. package/standalone/providers/popover-controller.d.ts +9 -0
  242. package/standalone/providers/toast-controller.d.ts +8 -0
  243. package/types/ionic-angular-common.d.ts +0 -1013
  244. package/types/ionic-angular-standalone.d.ts +0 -1560
@@ -0,0 +1,28 @@
1
+ import { Injector, Injectable, EnvironmentInjector, inject } from '@angular/core';
2
+ import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
3
+ import { modalController } from '@ionic/core/components';
4
+ import { defineCustomElement } from '@ionic/core/components/ion-modal.js';
5
+ import * as i0 from "@angular/core";
6
+ class ModalController extends OverlayBaseController {
7
+ angularDelegate = inject(AngularDelegate);
8
+ injector = inject(Injector);
9
+ environmentInjector = inject(EnvironmentInjector);
10
+ constructor() {
11
+ super(modalController);
12
+ defineCustomElement();
13
+ }
14
+ create(opts) {
15
+ const { injector: customInjector, ...restOpts } = opts;
16
+ return super.create({
17
+ ...restOpts,
18
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
19
+ });
20
+ }
21
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
22
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
23
+ }
24
+ export { ModalController };
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
26
+ type: Injectable
27
+ }], ctorParameters: function () { return []; } });
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtY29udHJvbGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3N0YW5kYWxvbmUvc3JjL3Byb3ZpZGVycy9tb2RhbC1jb250cm9sbGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsVUFBVSxFQUFFLG1CQUFtQixFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNsRixPQUFPLEVBQUUsZUFBZSxFQUFFLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFL0UsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUUxRSxNQUNhLGVBQWdCLFNBQVEscUJBQXdEO0lBQ25GLGVBQWUsR0FBRyxNQUFNLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDMUMsUUFBUSxHQUFHLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUM1QixtQkFBbUIsR0FBRyxNQUFNLENBQUMsbUJBQW1CLENBQUMsQ0FBQztJQUUxRDtRQUNFLEtBQUssQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUN2QixtQkFBbUIsRUFBRSxDQUFDO0lBQ3hCLENBQUM7SUFFRCxNQUFNLENBQUMsSUFBa0I7UUFDdkIsTUFBTSxFQUFFLFFBQVEsRUFBRSxjQUFjLEVBQUUsR0FBRyxRQUFRLEVBQUUsR0FBRyxJQUFJLENBQUM7UUFDdkQsT0FBTyxLQUFLLENBQUMsTUFBTSxDQUFDO1lBQ2xCLEdBQUcsUUFBUTtZQUNYLFFBQVEsRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLFFBQVEsRUFBRSxPQUFPLEVBQUUsY0FBYyxDQUFDO1NBQ3hHLENBQUMsQ0FBQztJQUNMLENBQUM7MkhBaEJVLGVBQWU7K0hBQWYsZUFBZTs7U0FBZixlQUFlOzRGQUFmLGVBQWU7a0JBRDNCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RvciwgSW5qZWN0YWJsZSwgRW52aXJvbm1lbnRJbmplY3RvciwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBbmd1bGFyRGVsZWdhdGUsIE92ZXJsYXlCYXNlQ29udHJvbGxlciB9IGZyb20gJ0Bpb25pYy9hbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgdHlwZSB7IE1vZGFsT3B0aW9ucyB9IGZyb20gJ0Bpb25pYy9hbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBtb2RhbENvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvY29yZS9jb21wb25lbnRzJztcbmltcG9ydCB7IGRlZmluZUN1c3RvbUVsZW1lbnQgfSBmcm9tICdAaW9uaWMvY29yZS9jb21wb25lbnRzL2lvbi1tb2RhbC5qcyc7XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBNb2RhbENvbnRyb2xsZXIgZXh0ZW5kcyBPdmVybGF5QmFzZUNvbnRyb2xsZXI8TW9kYWxPcHRpb25zLCBIVE1MSW9uTW9kYWxFbGVtZW50PiB7XG4gIHByaXZhdGUgYW5ndWxhckRlbGVnYXRlID0gaW5qZWN0KEFuZ3VsYXJEZWxlZ2F0ZSk7XG4gIHByaXZhdGUgaW5qZWN0b3IgPSBpbmplY3QoSW5qZWN0b3IpO1xuICBwcml2YXRlIGVudmlyb25tZW50SW5qZWN0b3IgPSBpbmplY3QoRW52aXJvbm1lbnRJbmplY3Rvcik7XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIobW9kYWxDb250cm9sbGVyKTtcbiAgICBkZWZpbmVDdXN0b21FbGVtZW50KCk7XG4gIH1cblxuICBjcmVhdGUob3B0czogTW9kYWxPcHRpb25zKTogUHJvbWlzZTxIVE1MSW9uTW9kYWxFbGVtZW50PiB7XG4gICAgY29uc3QgeyBpbmplY3RvcjogY3VzdG9tSW5qZWN0b3IsIC4uLnJlc3RPcHRzIH0gPSBvcHRzO1xuICAgIHJldHVybiBzdXBlci5jcmVhdGUoe1xuICAgICAgLi4ucmVzdE9wdHMsXG4gICAgICBkZWxlZ2F0ZTogdGhpcy5hbmd1bGFyRGVsZWdhdGUuY3JlYXRlKHRoaXMuZW52aXJvbm1lbnRJbmplY3RvciwgdGhpcy5pbmplY3RvciwgJ21vZGFsJywgY3VzdG9tSW5qZWN0b3IpLFxuICAgIH0pO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,24 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { OverlayBaseController } from '@ionic/angular/common';
3
+ import { pickerController } from '@ionic/core/components';
4
+ import { defineCustomElement } from '@ionic/core/components/ion-picker-legacy.js';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * @deprecated Use the inline ion-picker component instead.
8
+ */
9
+ class PickerController extends OverlayBaseController {
10
+ constructor() {
11
+ super(pickerController);
12
+ defineCustomElement();
13
+ }
14
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
15
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
16
+ }
17
+ export { PickerController };
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
19
+ type: Injectable,
20
+ args: [{
21
+ providedIn: 'root',
22
+ }]
23
+ }], ctorParameters: function () { return []; } });
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGlja2VyLWNvbnRyb2xsZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zdGFuZGFsb25lL3NyYy9wcm92aWRlcnMvcGlja2VyLWNvbnRyb2xsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUU5RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUMxRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQzs7QUFFbEY7O0dBRUc7QUFDSCxNQUdhLGdCQUFpQixTQUFRLHFCQUFnRTtJQUNwRztRQUNFLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3hCLG1CQUFtQixFQUFFLENBQUM7SUFDeEIsQ0FBQzsySEFKVSxnQkFBZ0I7K0hBQWhCLGdCQUFnQixjQUZmLE1BQU07O1NBRVAsZ0JBQWdCOzRGQUFoQixnQkFBZ0I7a0JBSDVCLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgT3ZlcmxheUJhc2VDb250cm9sbGVyIH0gZnJvbSAnQGlvbmljL2FuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB0eXBlIHsgUGlja2VyT3B0aW9ucyB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgcGlja2VyQ29udHJvbGxlciB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgZGVmaW5lQ3VzdG9tRWxlbWVudCB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMvaW9uLXBpY2tlci1sZWdhY3kuanMnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkIFVzZSB0aGUgaW5saW5lIGlvbi1waWNrZXIgY29tcG9uZW50IGluc3RlYWQuXG4gKi9cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBQaWNrZXJDb250cm9sbGVyIGV4dGVuZHMgT3ZlcmxheUJhc2VDb250cm9sbGVyPFBpY2tlck9wdGlvbnMsIEhUTUxJb25QaWNrZXJMZWdhY3lFbGVtZW50PiB7XG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHN1cGVyKHBpY2tlckNvbnRyb2xsZXIpO1xuICAgIGRlZmluZUN1c3RvbUVsZW1lbnQoKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,21 @@
1
+ import { Injector, inject, EnvironmentInjector } from '@angular/core';
2
+ import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
3
+ import { popoverController } from '@ionic/core/components';
4
+ import { defineCustomElement } from '@ionic/core/components/ion-popover.js';
5
+ export class PopoverController extends OverlayBaseController {
6
+ angularDelegate = inject(AngularDelegate);
7
+ injector = inject(Injector);
8
+ environmentInjector = inject(EnvironmentInjector);
9
+ constructor() {
10
+ super(popoverController);
11
+ defineCustomElement();
12
+ }
13
+ create(opts) {
14
+ const { injector: customInjector, ...restOpts } = opts;
15
+ return super.create({
16
+ ...restOpts,
17
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
18
+ });
19
+ }
20
+ }
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG9wb3Zlci1jb250cm9sbGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3RhbmRhbG9uZS9zcmMvcHJvdmlkZXJzL3BvcG92ZXItY29udHJvbGxlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RSxPQUFPLEVBQUUsZUFBZSxFQUFFLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFL0UsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDM0QsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFFNUUsTUFBTSxPQUFPLGlCQUFrQixTQUFRLHFCQUE0RDtJQUN6RixlQUFlLEdBQUcsTUFBTSxDQUFDLGVBQWUsQ0FBQyxDQUFDO0lBQzFDLFFBQVEsR0FBRyxNQUFNLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDNUIsbUJBQW1CLEdBQUcsTUFBTSxDQUFDLG1CQUFtQixDQUFDLENBQUM7SUFFMUQ7UUFDRSxLQUFLLENBQUMsaUJBQWlCLENBQUMsQ0FBQztRQUN6QixtQkFBbUIsRUFBRSxDQUFDO0lBQ3hCLENBQUM7SUFFRCxNQUFNLENBQUMsSUFBb0I7UUFDekIsTUFBTSxFQUFFLFFBQVEsRUFBRSxjQUFjLEVBQUUsR0FBRyxRQUFRLEVBQUUsR0FBRyxJQUFJLENBQUM7UUFDdkQsT0FBTyxLQUFLLENBQUMsTUFBTSxDQUFDO1lBQ2xCLEdBQUcsUUFBUTtZQUNYLFFBQVEsRUFBRSxJQUFJLENBQUMsZUFBZSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLFFBQVEsRUFBRSxTQUFTLEVBQUUsY0FBYyxDQUFDO1NBQzFHLENBQUMsQ0FBQztJQUNMLENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdG9yLCBpbmplY3QsIEVudmlyb25tZW50SW5qZWN0b3IgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFuZ3VsYXJEZWxlZ2F0ZSwgT3ZlcmxheUJhc2VDb250cm9sbGVyIH0gZnJvbSAnQGlvbmljL2FuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB0eXBlIHsgUG9wb3Zlck9wdGlvbnMgfSBmcm9tICdAaW9uaWMvYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgcG9wb3ZlckNvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvY29yZS9jb21wb25lbnRzJztcbmltcG9ydCB7IGRlZmluZUN1c3RvbUVsZW1lbnQgfSBmcm9tICdAaW9uaWMvY29yZS9jb21wb25lbnRzL2lvbi1wb3BvdmVyLmpzJztcblxuZXhwb3J0IGNsYXNzIFBvcG92ZXJDb250cm9sbGVyIGV4dGVuZHMgT3ZlcmxheUJhc2VDb250cm9sbGVyPFBvcG92ZXJPcHRpb25zLCBIVE1MSW9uUG9wb3ZlckVsZW1lbnQ+IHtcbiAgcHJpdmF0ZSBhbmd1bGFyRGVsZWdhdGUgPSBpbmplY3QoQW5ndWxhckRlbGVnYXRlKTtcbiAgcHJpdmF0ZSBpbmplY3RvciA9IGluamVjdChJbmplY3Rvcik7XG4gIHByaXZhdGUgZW52aXJvbm1lbnRJbmplY3RvciA9IGluamVjdChFbnZpcm9ubWVudEluamVjdG9yKTtcblxuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBzdXBlcihwb3BvdmVyQ29udHJvbGxlcik7XG4gICAgZGVmaW5lQ3VzdG9tRWxlbWVudCgpO1xuICB9XG5cbiAgY3JlYXRlKG9wdHM6IFBvcG92ZXJPcHRpb25zKTogUHJvbWlzZTxIVE1MSW9uUG9wb3ZlckVsZW1lbnQ+IHtcbiAgICBjb25zdCB7IGluamVjdG9yOiBjdXN0b21JbmplY3RvciwgLi4ucmVzdE9wdHMgfSA9IG9wdHM7XG4gICAgcmV0dXJuIHN1cGVyLmNyZWF0ZSh7XG4gICAgICAuLi5yZXN0T3B0cyxcbiAgICAgIGRlbGVnYXRlOiB0aGlzLmFuZ3VsYXJEZWxlZ2F0ZS5jcmVhdGUodGhpcy5lbnZpcm9ubWVudEluamVjdG9yLCB0aGlzLmluamVjdG9yLCAncG9wb3ZlcicsIGN1c3RvbUluamVjdG9yKSxcbiAgICB9KTtcbiAgfVxufVxuIl19
@@ -0,0 +1,21 @@
1
+ import { Injectable } from '@angular/core';
2
+ import { OverlayBaseController } from '@ionic/angular/common';
3
+ import { toastController } from '@ionic/core/components';
4
+ import { defineCustomElement } from '@ionic/core/components/ion-toast.js';
5
+ import * as i0 from "@angular/core";
6
+ class ToastController extends OverlayBaseController {
7
+ constructor() {
8
+ super(toastController);
9
+ defineCustomElement();
10
+ }
11
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
12
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
13
+ }
14
+ export { ToastController };
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
16
+ type: Injectable,
17
+ args: [{
18
+ providedIn: 'root',
19
+ }]
20
+ }], ctorParameters: function () { return []; } });
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9hc3QtY29udHJvbGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3N0YW5kYWxvbmUvc3JjL3Byb3ZpZGVycy90b2FzdC1jb250cm9sbGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFFOUQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUUxRSxNQUdhLGVBQWdCLFNBQVEscUJBQXdEO0lBQzNGO1FBQ0UsS0FBSyxDQUFDLGVBQWUsQ0FBQyxDQUFDO1FBQ3ZCLG1CQUFtQixFQUFFLENBQUM7SUFDeEIsQ0FBQzsySEFKVSxlQUFlOytIQUFmLGVBQWUsY0FGZCxNQUFNOztTQUVQLGVBQWU7NEZBQWYsZUFBZTtrQkFIM0IsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBPdmVybGF5QmFzZUNvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHR5cGUgeyBUb2FzdE9wdGlvbnMgfSBmcm9tICdAaW9uaWMvY29yZS9jb21wb25lbnRzJztcbmltcG9ydCB7IHRvYXN0Q29udHJvbGxlciB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgZGVmaW5lQ3VzdG9tRWxlbWVudCB9IGZyb20gJ0Bpb25pYy9jb3JlL2NvbXBvbmVudHMvaW9uLXRvYXN0LmpzJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIFRvYXN0Q29udHJvbGxlciBleHRlbmRzIE92ZXJsYXlCYXNlQ29udHJvbGxlcjxUb2FzdE9wdGlvbnMsIEhUTUxJb25Ub2FzdEVsZW1lbnQ+IHtcbiAgY29uc3RydWN0b3IoKSB7XG4gICAgc3VwZXIodG9hc3RDb250cm9sbGVyKTtcbiAgICBkZWZpbmVDdXN0b21FbGVtZW50KCk7XG4gIH1cbn1cbiJdfQ==
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, Inject, Optional, InjectionToken, inject, NgZone, ApplicationRef, Injector, createComponent, TemplateRef, ContentChild, Directive, EventEmitter, ViewContainerRef, EnvironmentInjector, Output, Input, Attribute, SkipSelf, reflectComponentType, HostListener, ElementRef, ViewChild } from '@angular/core';
2
+ import { Injectable, Inject, Optional, InjectionToken, inject, NgZone, ApplicationRef, Injector, createComponent, TemplateRef, Directive, ContentChild, EventEmitter, ViewContainerRef, EnvironmentInjector, Attribute, SkipSelf, Input, Output, reflectComponentType, HostListener, ElementRef, ViewChild } from '@angular/core';
3
3
  import * as i3 from '@angular/router';
4
4
  import { NavigationStart, NavigationCancel, NavigationError, PRIMARY_OUTLET, ChildrenOutletContexts, ActivatedRoute, Router } from '@angular/router';
5
5
  import * as i1 from '@angular/common';
@@ -25,10 +25,10 @@ class DomController {
25
25
  write(cb) {
26
26
  getQueue().write(cb);
27
27
  }
28
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: DomController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
29
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: DomController, providedIn: 'root' });
28
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DomController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
29
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DomController, providedIn: 'root' });
30
30
  }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: DomController, decorators: [{
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DomController, decorators: [{
32
32
  type: Injectable,
33
33
  args: [{
34
34
  providedIn: 'root',
@@ -382,18 +382,18 @@ class Platform {
382
382
  height() {
383
383
  return this.win.innerHeight;
384
384
  }
385
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Platform, deps: [{ token: DOCUMENT }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
386
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Platform, providedIn: 'root' });
385
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Platform, deps: [{ token: DOCUMENT }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
386
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Platform, providedIn: 'root' });
387
387
  }
388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Platform, decorators: [{
388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Platform, decorators: [{
389
389
  type: Injectable,
390
390
  args: [{
391
391
  providedIn: 'root',
392
392
  }]
393
- }], ctorParameters: () => [{ type: undefined, decorators: [{
393
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
394
394
  type: Inject,
395
395
  args: [DOCUMENT]
396
- }] }, { type: i0.NgZone }] });
396
+ }] }, { type: i0.NgZone }]; } });
397
397
  const readQueryParam = (url, key) => {
398
398
  key = key.replace(/[[\]\\]/g, '\\$&');
399
399
  const regex = new RegExp('[\\?&]' + key + '=([^&#]*)');
@@ -617,17 +617,17 @@ class NavController {
617
617
  return this.router.navigateByUrl(urlTree, options);
618
618
  }
619
619
  }
620
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NavController, deps: [{ token: Platform }, { token: i1.Location }, { token: i3.UrlSerializer }, { token: i3.Router, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
621
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NavController, providedIn: 'root' });
620
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavController, deps: [{ token: Platform }, { token: i1.Location }, { token: i3.UrlSerializer }, { token: i3.Router, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
621
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavController, providedIn: 'root' });
622
622
  }
623
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: NavController, decorators: [{
623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NavController, decorators: [{
624
624
  type: Injectable,
625
625
  args: [{
626
626
  providedIn: 'root',
627
627
  }]
628
- }], ctorParameters: () => [{ type: Platform }, { type: i1.Location }, { type: i3.UrlSerializer }, { type: i3.Router, decorators: [{
628
+ }], ctorParameters: function () { return [{ type: Platform }, { type: i1.Location }, { type: i3.UrlSerializer }, { type: i3.Router, decorators: [{
629
629
  type: Optional
630
- }] }] });
630
+ }] }]; } });
631
631
  const getAnimation = (direction, animated, animationDirection) => {
632
632
  if (animated === false) {
633
633
  return undefined;
@@ -668,10 +668,10 @@ class Config {
668
668
  }
669
669
  return 0;
670
670
  }
671
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Config, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
672
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Config, providedIn: 'root' });
671
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Config, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
672
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Config, providedIn: 'root' });
673
673
  }
674
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: Config, decorators: [{
674
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: Config, decorators: [{
675
675
  type: Injectable,
676
676
  args: [{
677
677
  providedIn: 'root',
@@ -745,10 +745,10 @@ class AngularDelegate {
745
745
  create(environmentInjector, injector, elementReferenceKey, customInjector) {
746
746
  return new AngularFrameworkDelegate(environmentInjector, injector, this.applicationRef, this.zone, elementReferenceKey, this.config.useSetInputAPI ?? false, customInjector);
747
747
  }
748
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: AngularDelegate, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
749
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: AngularDelegate });
748
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AngularDelegate, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
749
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AngularDelegate });
750
750
  }
751
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: AngularDelegate, decorators: [{
751
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AngularDelegate, decorators: [{
752
752
  type: Injectable
753
753
  }] });
754
754
  class AngularFrameworkDelegate {
@@ -890,7 +890,7 @@ const attachView = (zone, environmentInjector, injector, applicationRef, elRefMa
890
890
  hostElement.classList.add(cssClass);
891
891
  }
892
892
  }
893
- const unbindEvents = bindLifecycleEvents(zone, componentRef.changeDetectorRef, instance, hostElement);
893
+ const unbindEvents = bindLifecycleEvents(zone, instance, hostElement);
894
894
  container.appendChild(hostElement);
895
895
  applicationRef.attachView(componentRef.hostView);
896
896
  elRefMap.set(hostElement, componentRef);
@@ -904,24 +904,10 @@ const LIFECYCLES = [
904
904
  LIFECYCLE_DID_LEAVE,
905
905
  LIFECYCLE_WILL_UNLOAD,
906
906
  ];
907
- const bindLifecycleEvents = (zone, changeDetectorRef, instance, element) => {
908
- /**
909
- * `zone.run` keeps the listener registration (and, under Zone.js, the handler
910
- * execution) inside the Angular zone, so async work started inside a lifecycle
911
- * hook is still zone-tracked. Under zoneless Angular it is a passthrough.
912
- */
907
+ const bindLifecycleEvents = (zone, instance, element) => {
913
908
  return zone.run(() => {
914
909
  const unregisters = LIFECYCLES.filter((eventName) => typeof instance[eventName] === 'function').map((eventName) => {
915
- const handler = (ev) => {
916
- instance[eventName](ev.detail);
917
- /**
918
- * Ionic lifecycle events (`ionViewWillEnter`, etc.) are dispatched from
919
- * the web component via a native event listener, so under zoneless
920
- * Angular nothing schedules change detection for state the hook mutates.
921
- * Mark the view dirty explicitly. This is a no-op-or-better under Zone.js.
922
- */
923
- changeDetectorRef.markForCheck();
924
- };
910
+ const handler = (ev) => instance[eventName](ev.detail);
925
911
  element.addEventListener(eventName, handler);
926
912
  return () => element.removeEventListener(eventName, handler);
927
913
  });
@@ -1024,7 +1010,14 @@ const MODAL_METHODS = [
1024
1010
  'setCurrentBreakpoint',
1025
1011
  'getCurrentBreakpoint',
1026
1012
  ];
1027
- let IonModal = class IonModal {
1013
+ let IonModal =
1014
+ /**
1015
+ * @Component extends from @Directive
1016
+ * so by defining the inputs here we
1017
+ * do not need to re-define them for the
1018
+ * lazy loaded popover.
1019
+ */
1020
+ class IonModal {
1028
1021
  z;
1029
1022
  // TODO(FW-2827): type
1030
1023
  template;
@@ -1056,8 +1049,8 @@ let IonModal = class IonModal {
1056
1049
  'ionDragEnd',
1057
1050
  ]);
1058
1051
  }
1059
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1060
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonModal, isStandalone: true, selector: "ion-modal", inputs: { animated: "animated", keepContentsMounted: "keepContentsMounted", backdropBreakpoint: "backdropBreakpoint", backdropDismiss: "backdropDismiss", breakpoints: "breakpoints", canDismiss: "canDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", expandToScroll: "expandToScroll", event: "event", focusTrap: "focusTrap", handle: "handle", handleBehavior: "handleBehavior", initialBreakpoint: "initialBreakpoint", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", presentingElement: "presentingElement", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1052
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1053
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", inputs: { animated: "animated", keepContentsMounted: "keepContentsMounted", backdropBreakpoint: "backdropBreakpoint", backdropDismiss: "backdropDismiss", breakpoints: "breakpoints", canDismiss: "canDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", expandToScroll: "expandToScroll", event: "event", focusTrap: "focusTrap", handle: "handle", handleBehavior: "handleBehavior", initialBreakpoint: "initialBreakpoint", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", presentingElement: "presentingElement", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1061
1054
  };
1062
1055
  IonModal = __decorate([
1063
1056
  ProxyCmp({
@@ -1071,14 +1064,14 @@ IonModal = __decorate([
1071
1064
  * lazy loaded popover.
1072
1065
  */
1073
1066
  ], IonModal);
1074
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonModal, decorators: [{
1067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
1075
1068
  type: Directive,
1076
1069
  args: [{
1077
1070
  selector: 'ion-modal',
1078
1071
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1079
1072
  inputs: MODAL_INPUTS,
1080
1073
  }]
1081
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { template: [{
1074
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { template: [{
1082
1075
  type: ContentChild,
1083
1076
  args: [TemplateRef, { static: false }]
1084
1077
  }] } });
@@ -1107,7 +1100,14 @@ const POPOVER_INPUTS = [
1107
1100
  'side',
1108
1101
  ];
1109
1102
  const POPOVER_METHODS = ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss'];
1110
- let IonPopover = class IonPopover {
1103
+ let IonPopover =
1104
+ /**
1105
+ * @Component extends from @Directive
1106
+ * so by defining the inputs here we
1107
+ * do not need to re-define them for the
1108
+ * lazy loaded popover.
1109
+ */
1110
+ class IonPopover {
1111
1111
  z;
1112
1112
  // TODO(FW-2827): type
1113
1113
  template;
@@ -1135,8 +1135,8 @@ let IonPopover = class IonPopover {
1135
1135
  'didDismiss',
1136
1136
  ]);
1137
1137
  }
1138
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1139
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonPopover, isStandalone: true, selector: "ion-popover", inputs: { alignment: "alignment", animated: "animated", arrow: "arrow", keepContentsMounted: "keepContentsMounted", backdropDismiss: "backdropDismiss", cssClass: "cssClass", dismissOnSelect: "dismissOnSelect", enterAnimation: "enterAnimation", event: "event", focusTrap: "focusTrap", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger", triggerAction: "triggerAction", reference: "reference", size: "size", side: "side" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1138
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1139
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, selector: "ion-popover", inputs: { alignment: "alignment", animated: "animated", arrow: "arrow", keepContentsMounted: "keepContentsMounted", backdropDismiss: "backdropDismiss", cssClass: "cssClass", dismissOnSelect: "dismissOnSelect", enterAnimation: "enterAnimation", event: "event", focusTrap: "focusTrap", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger", triggerAction: "triggerAction", reference: "reference", size: "size", side: "side" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1140
1140
  };
1141
1141
  IonPopover = __decorate([
1142
1142
  ProxyCmp({
@@ -1150,14 +1150,14 @@ IonPopover = __decorate([
1150
1150
  * lazy loaded popover.
1151
1151
  */
1152
1152
  ], IonPopover);
1153
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonPopover, decorators: [{
1153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
1154
1154
  type: Directive,
1155
1155
  args: [{
1156
1156
  selector: 'ion-popover',
1157
1157
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1158
1158
  inputs: POPOVER_INPUTS,
1159
1159
  }]
1160
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { template: [{
1160
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { template: [{
1161
1161
  type: ContentChild,
1162
1162
  args: [TemplateRef, { static: false }]
1163
1163
  }] } });
@@ -1259,7 +1259,7 @@ class StackController {
1259
1259
  createView(ref, activatedRoute) {
1260
1260
  const url = getUrl(this.router, activatedRoute);
1261
1261
  const element = ref?.location?.nativeElement;
1262
- const unlistenEvents = bindLifecycleEvents(this.zone, ref.changeDetectorRef, ref.instance, element);
1262
+ const unlistenEvents = bindLifecycleEvents(this.zone, ref.instance, element);
1263
1263
  return {
1264
1264
  id: this.nextId++,
1265
1265
  stackId: computeStackId(this.tabsPrefix, url),
@@ -1514,7 +1514,6 @@ const cleanup = (activeRoute, views, viewsSnapshot, location, zone) => {
1514
1514
  };
1515
1515
 
1516
1516
  // TODO(FW-2827): types
1517
- // eslint-disable-next-line @angular-eslint/directive-class-suffix
1518
1517
  class IonRouterOutlet {
1519
1518
  parentOutlet;
1520
1519
  nativeEl;
@@ -1568,7 +1567,6 @@ class IonRouterOutlet {
1568
1567
  onEnd: (shouldContinue) => this.stackCtrl.endBackTransition(shouldContinue),
1569
1568
  }
1570
1569
  : undefined;
1571
- this.nativeEl.swipeGesture = swipe;
1572
1570
  }
1573
1571
  constructor(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet) {
1574
1572
  this.parentOutlet = parentOutlet;
@@ -1841,10 +1839,10 @@ class IonRouterOutlet {
1841
1839
  proxy.component = activatedRoute.component;
1842
1840
  this.currentActivatedRoute$.next({ component, activatedRoute });
1843
1841
  }
1844
- /** @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: i3.Router }, { token: i0.NgZone }, { token: i3.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Directive });
1845
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonRouterOutlet, isStandalone: true, selector: "ion-router-outlet", inputs: { animated: "animated", animation: "animation", mode: "mode", swipeGesture: "swipeGesture", name: "name" }, outputs: { stackWillChange: "stackWillChange", stackDidChange: "stackDidChange", activateEvents: "activate", deactivateEvents: "deactivate" }, exportAs: ["outlet"], ngImport: i0 });
1842
+ /** @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: i3.Router }, { token: i0.NgZone }, { token: i3.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Directive });
1843
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, selector: "ion-router-outlet", inputs: { animated: "animated", animation: "animation", mode: "mode", swipeGesture: "swipeGesture", name: "name" }, outputs: { stackWillChange: "stackWillChange", stackDidChange: "stackDidChange", activateEvents: "activate", deactivateEvents: "deactivate" }, exportAs: ["outlet"], ngImport: i0 });
1846
1844
  }
1847
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonRouterOutlet, decorators: [{
1845
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
1848
1846
  type: Directive,
1849
1847
  args: [{
1850
1848
  selector: 'ion-router-outlet',
@@ -1852,7 +1850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
1852
1850
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1853
1851
  inputs: ['animated', 'animation', 'mode', 'swipeGesture'],
1854
1852
  }]
1855
- }], ctorParameters: () => [{ type: undefined, decorators: [{
1853
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1856
1854
  type: Attribute,
1857
1855
  args: ['name']
1858
1856
  }] }, { type: undefined, decorators: [{
@@ -1864,7 +1862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
1864
1862
  type: SkipSelf
1865
1863
  }, {
1866
1864
  type: Optional
1867
- }] }], propDecorators: { name: [{
1865
+ }] }]; }, propDecorators: { name: [{
1868
1866
  type: Input
1869
1867
  }], stackWillChange: [{
1870
1868
  type: Output
@@ -1958,10 +1956,10 @@ class RoutedComponentInputBinder {
1958
1956
  });
1959
1957
  this.outletDataSubscriptions.set(outlet, dataSubscription);
1960
1958
  }
1961
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RoutedComponentInputBinder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1962
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RoutedComponentInputBinder });
1959
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RoutedComponentInputBinder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1960
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RoutedComponentInputBinder });
1963
1961
  }
1964
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RoutedComponentInputBinder, decorators: [{
1962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RoutedComponentInputBinder, decorators: [{
1965
1963
  type: Injectable
1966
1964
  }] });
1967
1965
  const provideComponentInputBinding = () => {
@@ -2094,12 +2092,12 @@ class ValueAccessor {
2094
2092
  });
2095
2093
  }
2096
2094
  }
2097
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2098
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: ValueAccessor, isStandalone: true, host: { listeners: { "ionBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2095
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2096
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ValueAccessor, host: { listeners: { "ionBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2099
2097
  }
2100
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: ValueAccessor, decorators: [{
2098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ValueAccessor, decorators: [{
2101
2099
  type: Directive
2102
- }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
2100
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
2103
2101
  type: HostListener,
2104
2102
  args: ['ionBlur', ['$event.target']]
2105
2103
  }] } });
@@ -2172,23 +2170,23 @@ let IonBackButton = class IonBackButton {
2172
2170
  ev.preventDefault();
2173
2171
  }
2174
2172
  }
2175
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: NavController }, { token: Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
2176
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonBackButton, isStandalone: true, inputs: { color: "color", defaultHref: "defaultHref", disabled: "disabled", icon: "icon", mode: "mode", routerAnimation: "routerAnimation", text: "text", type: "type" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
2173
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: NavController }, { token: Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
2174
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, inputs: { color: "color", defaultHref: "defaultHref", disabled: "disabled", icon: "icon", mode: "mode", routerAnimation: "routerAnimation", text: "text", type: "type" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
2177
2175
  };
2178
2176
  IonBackButton = __decorate([
2179
2177
  ProxyCmp({
2180
2178
  inputs: BACK_BUTTON_INPUTS,
2181
2179
  })
2182
2180
  ], IonBackButton);
2183
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonBackButton, decorators: [{
2181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
2184
2182
  type: Directive,
2185
2183
  args: [{
2186
2184
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2187
2185
  inputs: BACK_BUTTON_INPUTS,
2188
2186
  }]
2189
- }], ctorParameters: () => [{ type: IonRouterOutlet, decorators: [{
2187
+ }], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
2190
2188
  type: Optional
2191
- }] }, { type: NavController }, { type: Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }], propDecorators: { onClick: [{
2189
+ }] }, { type: NavController }, { type: Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { onClick: [{
2192
2190
  type: HostListener,
2193
2191
  args: ['click', ['$event']]
2194
2192
  }] } });
@@ -2219,8 +2217,8 @@ let IonNav = class IonNav {
2219
2217
  ref.nativeElement.delegate = angularDelegate.create(environmentInjector, injector);
2220
2218
  proxyOutputs(this, this.el, ['ionNavDidChange', 'ionNavWillChange']);
2221
2219
  }
2222
- /** @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: AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
2223
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonNav, isStandalone: true, inputs: { animated: "animated", animation: "animation", root: "root", rootParams: "rootParams", swipeGesture: "swipeGesture" }, ngImport: i0 });
2220
+ /** @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: AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
2221
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, inputs: { animated: "animated", animation: "animation", root: "root", rootParams: "rootParams", swipeGesture: "swipeGesture" }, ngImport: i0 });
2224
2222
  };
2225
2223
  IonNav = __decorate([
2226
2224
  ProxyCmp({
@@ -2228,13 +2226,13 @@ IonNav = __decorate([
2228
2226
  methods: NAV_METHODS,
2229
2227
  })
2230
2228
  ], IonNav);
2231
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonNav, decorators: [{
2229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
2232
2230
  type: Directive,
2233
2231
  args: [{
2234
2232
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2235
2233
  inputs: NAV_INPUTS,
2236
2234
  }]
2237
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
2235
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
2238
2236
 
2239
2237
  /**
2240
2238
  * Adds support for Ionic routing directions and animations to the base Angular router link directive.
@@ -2315,17 +2313,17 @@ class RouterLinkDelegateDirective {
2315
2313
  */
2316
2314
  ev.preventDefault();
2317
2315
  }
2318
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RouterLinkDelegateDirective, deps: [{ token: i1.LocationStrategy }, { token: NavController }, { token: i0.ElementRef }, { token: i3.Router }, { token: i3.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2319
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: RouterLinkDelegateDirective, isStandalone: true, selector: ":not(a):not(area)[routerLink]", inputs: { routerDirection: "routerDirection", routerAnimation: "routerAnimation" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 });
2316
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, deps: [{ token: i1.LocationStrategy }, { token: NavController }, { token: i0.ElementRef }, { token: i3.Router }, { token: i3.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2317
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkDelegateDirective, selector: ":not(a):not(area)[routerLink]", inputs: { routerDirection: "routerDirection", routerAnimation: "routerAnimation" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0 });
2320
2318
  }
2321
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
2319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
2322
2320
  type: Directive,
2323
2321
  args: [{
2324
2322
  selector: ':not(a):not(area)[routerLink]',
2325
2323
  }]
2326
- }], ctorParameters: () => [{ type: i1.LocationStrategy }, { type: NavController }, { type: i0.ElementRef }, { type: i3.Router }, { type: i3.RouterLink, decorators: [{
2324
+ }], ctorParameters: function () { return [{ type: i1.LocationStrategy }, { type: NavController }, { type: i0.ElementRef }, { type: i3.Router }, { type: i3.RouterLink, decorators: [{
2327
2325
  type: Optional
2328
- }] }], propDecorators: { routerDirection: [{
2326
+ }] }]; }, propDecorators: { routerDirection: [{
2329
2327
  type: Input
2330
2328
  }], routerAnimation: [{
2331
2329
  type: Input
@@ -2366,17 +2364,17 @@ class RouterLinkWithHrefDelegateDirective {
2366
2364
  onClick() {
2367
2365
  this.navCtrl.setDirection(this.routerDirection, undefined, undefined, this.routerAnimation);
2368
2366
  }
2369
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: [{ token: i1.LocationStrategy }, { token: NavController }, { token: i0.ElementRef }, { token: i3.Router }, { token: i3.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2370
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: RouterLinkWithHrefDelegateDirective, isStandalone: true, selector: "a[routerLink],area[routerLink]", inputs: { routerDirection: "routerDirection", routerAnimation: "routerAnimation" }, host: { listeners: { "click": "onClick()" } }, usesOnChanges: true, ngImport: i0 });
2367
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: [{ token: i1.LocationStrategy }, { token: NavController }, { token: i0.ElementRef }, { token: i3.Router }, { token: i3.RouterLink, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
2368
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkWithHrefDelegateDirective, selector: "a[routerLink],area[routerLink]", inputs: { routerDirection: "routerDirection", routerAnimation: "routerAnimation" }, host: { listeners: { "click": "onClick()" } }, usesOnChanges: true, ngImport: i0 });
2371
2369
  }
2372
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
2370
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
2373
2371
  type: Directive,
2374
2372
  args: [{
2375
2373
  selector: 'a[routerLink],area[routerLink]',
2376
2374
  }]
2377
- }], ctorParameters: () => [{ type: i1.LocationStrategy }, { type: NavController }, { type: i0.ElementRef }, { type: i3.Router }, { type: i3.RouterLink, decorators: [{
2375
+ }], ctorParameters: function () { return [{ type: i1.LocationStrategy }, { type: NavController }, { type: i0.ElementRef }, { type: i3.Router }, { type: i3.RouterLink, decorators: [{
2378
2376
  type: Optional
2379
- }] }], propDecorators: { routerDirection: [{
2377
+ }] }]; }, propDecorators: { routerDirection: [{
2380
2378
  type: Input
2381
2379
  }], routerAnimation: [{
2382
2380
  type: Input
@@ -2423,7 +2421,6 @@ const parseHrefExtras = (href) => {
2423
2421
  extras.fragment = fragment;
2424
2422
  return extras;
2425
2423
  };
2426
- // eslint-disable-next-line @angular-eslint/directive-class-suffix
2427
2424
  class IonTabs {
2428
2425
  navCtrl;
2429
2426
  tabsInner;
@@ -2641,15 +2638,15 @@ class IonTabs {
2641
2638
  this.tabsInner.nativeElement.after(tabBar);
2642
2639
  }
2643
2640
  }
2644
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonTabs, deps: [{ token: NavController }], target: i0.ɵɵFactoryTarget.Directive });
2645
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.14", type: IonTabs, isStandalone: true, selector: "ion-tabs", outputs: { ionTabsWillChange: "ionTabsWillChange", ionTabsDidChange: "ionTabsDidChange" }, host: { listeners: { "ionTabButtonClick": "select($event)" } }, viewQueries: [{ propertyName: "tabsInner", first: true, predicate: ["tabsInner"], descendants: true, read: ElementRef, static: true }], ngImport: i0 });
2641
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: [{ token: NavController }], target: i0.ɵɵFactoryTarget.Directive });
2642
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, selector: "ion-tabs", outputs: { ionTabsWillChange: "ionTabsWillChange", ionTabsDidChange: "ionTabsDidChange" }, host: { listeners: { "ionTabButtonClick": "select($event)" } }, viewQueries: [{ propertyName: "tabsInner", first: true, predicate: ["tabsInner"], descendants: true, read: ElementRef, static: true }], ngImport: i0 });
2646
2643
  }
2647
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: IonTabs, decorators: [{
2644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
2648
2645
  type: Directive,
2649
2646
  args: [{
2650
2647
  selector: 'ion-tabs',
2651
2648
  }]
2652
- }], ctorParameters: () => [{ type: NavController }], propDecorators: { tabsInner: [{
2649
+ }], ctorParameters: function () { return [{ type: NavController }]; }, propDecorators: { tabsInner: [{
2653
2650
  type: ViewChild,
2654
2651
  args: ['tabsInner', { read: ElementRef, static: true }]
2655
2652
  }], ionTabsWillChange: [{
@@ -2746,5 +2743,5 @@ class IonicRouteStrategy {
2746
2743
  * Generated bundle index. Do not edit.
2747
2744
  */
2748
2745
 
2749
- export { AngularDelegate, Config, ConfigToken, DomController, IonBackButton, IonModal, IonModalToken, IonNav, IonPopover, IonRouterOutlet, IonTabs, IonicRouteStrategy, MenuController, NavController, NavParams, OverlayBaseController, Platform, ProxyCmp, RouterLinkDelegateDirective, RouterLinkWithHrefDelegateDirective, ValueAccessor, provideComponentInputBinding, raf, setIonicClasses };
2746
+ export { AngularDelegate, Config, ConfigToken, DomController, IonBackButton, IonModal, IonModalToken, IonNav, IonPopover, IonRouterOutlet, IonTabs, IonicRouteStrategy, MenuController, NavController, NavParams, OverlayBaseController, Platform, ProxyCmp, RouterLinkDelegateDirective, RouterLinkWithHrefDelegateDirective, ValueAccessor, bindLifecycleEvents, provideComponentInputBinding, raf, setIonicClasses };
2750
2747
  //# sourceMappingURL=ionic-angular-common.mjs.map