@ionic/angular 8.8.20-dev.11787158518.168a2fea → 8.8.20-dev.11789504012.1a675914

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 (646) hide show
  1. package/README.md +7 -9
  2. package/{dist/common → common}/directives/control-value-accessors/value-accessor.d.ts +1 -1
  3. package/{dist/common → common}/directives/navigation/back-button.d.ts +1 -1
  4. package/{dist/common → common}/directives/navigation/nav.d.ts +1 -1
  5. package/{dist/common → common}/directives/navigation/router-link-delegate.d.ts +2 -2
  6. package/{dist/common → common}/directives/navigation/router-outlet.d.ts +1 -1
  7. package/{dist/common → common}/directives/navigation/tabs.d.ts +1 -9
  8. package/{dist/common → common}/index.d.ts +1 -1
  9. package/{dist/common → common}/overlays/modal.d.ts +1 -1
  10. package/{dist/common → common}/overlays/popover.d.ts +1 -1
  11. package/{dist/common → common}/providers/angular-delegate.d.ts +2 -2
  12. package/css/core.css +1 -1
  13. package/css/core.css.map +1 -1
  14. package/css/display.css +1 -1
  15. package/css/display.css.map +1 -1
  16. package/css/flex-utils.css +1 -1
  17. package/css/flex-utils.css.map +1 -1
  18. package/css/float-elements.css.map +1 -1
  19. package/css/global.bundle.css.map +1 -1
  20. package/css/ionic/bundle.ionic.css +1 -0
  21. package/css/ionic/bundle.ionic.css.map +1 -0
  22. package/css/ionic/core.ionic.css +1 -0
  23. package/css/ionic/core.ionic.css.map +1 -0
  24. package/css/ionic/global.bundle.ionic.css +1 -0
  25. package/css/ionic/global.bundle.ionic.css.map +1 -0
  26. package/css/ionic/ionic-swiper.ionic.css +1 -0
  27. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  28. package/css/ionic/link.ionic.css +1 -0
  29. package/css/ionic/link.ionic.css.map +1 -0
  30. package/css/ionic/structure.ionic.css +1 -0
  31. package/css/ionic/structure.ionic.css.map +1 -0
  32. package/css/ionic/typography.ionic.css +1 -0
  33. package/css/ionic/typography.ionic.css.map +1 -0
  34. package/css/ionic/utils.bundle.ionic.css +1 -0
  35. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  36. package/css/ionic-swiper.css +1 -1
  37. package/css/ionic-swiper.css.map +1 -1
  38. package/css/ionic.bundle.css +1 -1
  39. package/css/ionic.bundle.css.map +1 -1
  40. package/css/normalize.css.map +1 -1
  41. package/css/padding.css.map +1 -1
  42. package/css/palettes/dark.always.css.map +1 -1
  43. package/css/palettes/dark.class.css.map +1 -1
  44. package/css/palettes/dark.system.css.map +1 -1
  45. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  46. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  47. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  48. package/css/palettes/high-contrast.always.css.map +1 -1
  49. package/css/palettes/high-contrast.class.css.map +1 -1
  50. package/css/palettes/high-contrast.system.css.map +1 -1
  51. package/css/structure.css.map +1 -1
  52. package/css/text-alignment.css.map +1 -1
  53. package/css/text-transformation.css.map +1 -1
  54. package/css/typography.css.map +1 -1
  55. package/css/utils.bundle.css +1 -1
  56. package/css/utils.bundle.css.map +1 -1
  57. package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
  58. package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
  59. package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
  60. package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
  61. package/directives/proxies-list.d.ts +2 -0
  62. package/{dist/lazy/directives → directives}/proxies.d.ts +269 -340
  63. package/esm2022/app-initialize.mjs +29 -0
  64. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  65. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  66. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  67. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  68. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  69. package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
  70. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  71. package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
  72. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  73. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  74. package/esm2022/common/index.mjs +20 -0
  75. package/esm2022/common/ionic-angular-common.mjs +5 -0
  76. package/esm2022/common/overlays/modal.mjs +103 -0
  77. package/esm2022/common/overlays/popover.mjs +91 -0
  78. package/esm2022/common/providers/angular-delegate.mjs +210 -0
  79. package/esm2022/common/providers/config.mjs +45 -0
  80. package/esm2022/common/providers/dom-controller.mjs +45 -0
  81. package/esm2022/common/providers/menu-controller.mjs +114 -0
  82. package/esm2022/common/providers/nav-controller.mjs +235 -0
  83. package/esm2022/common/providers/platform.mjs +258 -0
  84. package/esm2022/common/types/interfaces.mjs +2 -0
  85. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  86. package/esm2022/common/types/overlay-options.mjs +2 -0
  87. package/esm2022/common/utils/overlay.mjs +26 -0
  88. package/esm2022/common/utils/proxy.mjs +47 -0
  89. package/esm2022/common/utils/routing.mjs +55 -0
  90. package/esm2022/common/utils/util.mjs +10 -0
  91. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  92. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  93. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  94. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  95. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  96. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  97. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  98. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  99. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  100. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  101. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  102. package/esm2022/directives/overlays/modal.mjs +22 -0
  103. package/esm2022/directives/overlays/popover.mjs +18 -0
  104. package/esm2022/directives/proxies-list.mjs +93 -0
  105. package/esm2022/directives/proxies.mjs +2465 -0
  106. package/esm2022/directives/validators/index.mjs +3 -0
  107. package/esm2022/directives/validators/max-validator.mjs +27 -0
  108. package/esm2022/directives/validators/min-validator.mjs +27 -0
  109. package/esm2022/index.mjs +32 -0
  110. package/esm2022/ionic-angular.mjs +5 -0
  111. package/esm2022/ionic-module.mjs +111 -0
  112. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  113. package/esm2022/providers/alert-controller.mjs +19 -0
  114. package/esm2022/providers/animation-controller.mjs +38 -0
  115. package/esm2022/providers/gesture-controller.mjs +33 -0
  116. package/esm2022/providers/loading-controller.mjs +19 -0
  117. package/esm2022/providers/menu-controller.mjs +19 -0
  118. package/esm2022/providers/modal-controller.mjs +26 -0
  119. package/esm2022/providers/picker-controller.mjs +22 -0
  120. package/esm2022/providers/popover-controller.mjs +19 -0
  121. package/esm2022/providers/toast-controller.mjs +19 -0
  122. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  123. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  124. package/esm2022/standalone/directives/datetime.mjs +95 -0
  125. package/esm2022/standalone/directives/icon.mjs +35 -0
  126. package/esm2022/standalone/directives/index.mjs +13 -0
  127. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  128. package/esm2022/standalone/directives/input.mjs +113 -0
  129. package/esm2022/standalone/directives/proxies.mjs +2356 -0
  130. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  131. package/esm2022/standalone/directives/range.mjs +78 -0
  132. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  133. package/esm2022/standalone/directives/segment.mjs +60 -0
  134. package/esm2022/standalone/directives/select.mjs +84 -0
  135. package/esm2022/standalone/directives/textarea.mjs +91 -0
  136. package/esm2022/standalone/directives/toggle.mjs +76 -0
  137. package/esm2022/standalone/index.mjs +25 -0
  138. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  139. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  140. package/esm2022/standalone/navigation/nav.mjs +28 -0
  141. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  142. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  143. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  144. package/esm2022/standalone/overlays/modal.mjs +32 -0
  145. package/esm2022/standalone/overlays/popover.mjs +28 -0
  146. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  147. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  148. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  149. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  150. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  151. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  152. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  153. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  154. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  155. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  156. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  157. package/fesm2022/ionic-angular-common.mjs +2791 -0
  158. package/fesm2022/ionic-angular-common.mjs.map +1 -0
  159. package/fesm2022/ionic-angular-standalone.mjs +3655 -0
  160. package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
  161. package/fesm2022/ionic-angular.mjs +3231 -0
  162. package/fesm2022/ionic-angular.mjs.map +1 -0
  163. package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
  164. package/ionic-module.d.ts +28 -0
  165. package/package.json +30 -172
  166. package/providers/picker-controller.d.ts +11 -0
  167. package/{dist/schematics → schematics}/add/index.js +6 -6
  168. package/schematics/utils/ast.js +32 -0
  169. package/{dist/schematics → schematics}/utils/config.js +11 -10
  170. package/{dist/schematics → schematics}/utils/package.js +4 -6
  171. package/standalone/directives/proxies.d.ts +1062 -0
  172. package/{dist/standalone → standalone}/index.d.ts +2 -1
  173. package/standalone/providers/picker-controller.d.ts +11 -0
  174. package/dist/common/directives/control-value-accessors/index.js +0 -2
  175. package/dist/common/directives/control-value-accessors/index.js.map +0 -1
  176. package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
  177. package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
  178. package/dist/common/directives/navigation/back-button.js +0 -61
  179. package/dist/common/directives/navigation/back-button.js.map +0 -1
  180. package/dist/common/directives/navigation/nav-params.js +0 -47
  181. package/dist/common/directives/navigation/nav-params.js.map +0 -1
  182. package/dist/common/directives/navigation/nav.js +0 -49
  183. package/dist/common/directives/navigation/nav.js.map +0 -1
  184. package/dist/common/directives/navigation/router-link-delegate.js +0 -188
  185. package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
  186. package/dist/common/directives/navigation/router-outlet.js +0 -476
  187. package/dist/common/directives/navigation/router-outlet.js.map +0 -1
  188. package/dist/common/directives/navigation/stack-controller.js +0 -282
  189. package/dist/common/directives/navigation/stack-controller.js.map +0 -1
  190. package/dist/common/directives/navigation/stack-utils.js +0 -73
  191. package/dist/common/directives/navigation/stack-utils.js.map +0 -1
  192. package/dist/common/directives/navigation/tabs.js +0 -290
  193. package/dist/common/directives/navigation/tabs.js.map +0 -1
  194. package/dist/common/index.js +0 -20
  195. package/dist/common/index.js.map +0 -1
  196. package/dist/common/overlays/modal.js +0 -96
  197. package/dist/common/overlays/modal.js.map +0 -1
  198. package/dist/common/overlays/popover.js +0 -84
  199. package/dist/common/overlays/popover.js.map +0 -1
  200. package/dist/common/providers/angular-delegate.js +0 -229
  201. package/dist/common/providers/angular-delegate.js.map +0 -1
  202. package/dist/common/providers/config.js +0 -44
  203. package/dist/common/providers/config.js.map +0 -1
  204. package/dist/common/providers/dom-controller.js +0 -44
  205. package/dist/common/providers/dom-controller.js.map +0 -1
  206. package/dist/common/providers/menu-controller.js +0 -114
  207. package/dist/common/providers/menu-controller.js.map +0 -1
  208. package/dist/common/providers/nav-controller.js +0 -232
  209. package/dist/common/providers/nav-controller.js.map +0 -1
  210. package/dist/common/providers/platform.js +0 -256
  211. package/dist/common/providers/platform.js.map +0 -1
  212. package/dist/common/types/interfaces.js +0 -2
  213. package/dist/common/types/interfaces.js.map +0 -1
  214. package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
  215. package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
  216. package/dist/common/types/overlay-options.js +0 -2
  217. package/dist/common/types/overlay-options.js.map +0 -1
  218. package/dist/common/utils/overlay.js +0 -26
  219. package/dist/common/utils/overlay.js.map +0 -1
  220. package/dist/common/utils/proxy.js +0 -47
  221. package/dist/common/utils/proxy.js.map +0 -1
  222. package/dist/common/utils/routing.js +0 -55
  223. package/dist/common/utils/routing.js.map +0 -1
  224. package/dist/common/utils/util.js +0 -10
  225. package/dist/common/utils/util.js.map +0 -1
  226. package/dist/lazy/app-initialize.js +0 -29
  227. package/dist/lazy/app-initialize.js.map +0 -1
  228. package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
  229. package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
  230. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
  231. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
  232. package/dist/lazy/directives/control-value-accessors/index.js +0 -5
  233. package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
  234. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
  235. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
  236. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
  237. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
  238. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
  239. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
  240. package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
  241. package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
  242. package/dist/lazy/directives/navigation/ion-nav.js +0 -21
  243. package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
  244. package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
  245. package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
  246. package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
  247. package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
  248. package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
  249. package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
  250. package/dist/lazy/directives/overlays/modal.js +0 -22
  251. package/dist/lazy/directives/overlays/modal.js.map +0 -1
  252. package/dist/lazy/directives/overlays/popover.js +0 -18
  253. package/dist/lazy/directives/overlays/popover.js.map +0 -1
  254. package/dist/lazy/directives/proxies-list.d.ts +0 -2
  255. package/dist/lazy/directives/proxies-list.js +0 -89
  256. package/dist/lazy/directives/proxies-list.js.map +0 -1
  257. package/dist/lazy/directives/proxies.js +0 -2759
  258. package/dist/lazy/directives/proxies.js.map +0 -1
  259. package/dist/lazy/directives/validators/index.js +0 -3
  260. package/dist/lazy/directives/validators/index.js.map +0 -1
  261. package/dist/lazy/directives/validators/max-validator.js +0 -26
  262. package/dist/lazy/directives/validators/max-validator.js.map +0 -1
  263. package/dist/lazy/directives/validators/min-validator.js +0 -26
  264. package/dist/lazy/directives/validators/min-validator.js.map +0 -1
  265. package/dist/lazy/index.js +0 -34
  266. package/dist/lazy/index.js.map +0 -1
  267. package/dist/lazy/ionic-module.d.ts +0 -38
  268. package/dist/lazy/ionic-module.js +0 -121
  269. package/dist/lazy/ionic-module.js.map +0 -1
  270. package/dist/lazy/providers/action-sheet-controller.js +0 -18
  271. package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
  272. package/dist/lazy/providers/alert-controller.js +0 -18
  273. package/dist/lazy/providers/alert-controller.js.map +0 -1
  274. package/dist/lazy/providers/animation-controller.js +0 -37
  275. package/dist/lazy/providers/animation-controller.js.map +0 -1
  276. package/dist/lazy/providers/gesture-controller.js +0 -32
  277. package/dist/lazy/providers/gesture-controller.js.map +0 -1
  278. package/dist/lazy/providers/loading-controller.js +0 -18
  279. package/dist/lazy/providers/loading-controller.js.map +0 -1
  280. package/dist/lazy/providers/menu-controller.js +0 -18
  281. package/dist/lazy/providers/menu-controller.js.map +0 -1
  282. package/dist/lazy/providers/modal-controller.js +0 -25
  283. package/dist/lazy/providers/modal-controller.js.map +0 -1
  284. package/dist/lazy/providers/popover-controller.js +0 -19
  285. package/dist/lazy/providers/popover-controller.js.map +0 -1
  286. package/dist/lazy/providers/toast-controller.js +0 -18
  287. package/dist/lazy/providers/toast-controller.js.map +0 -1
  288. package/dist/schematics/utils/ast.js +0 -64
  289. package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
  290. package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
  291. package/dist/standalone/directives/checkbox.js +0 -75
  292. package/dist/standalone/directives/checkbox.js.map +0 -1
  293. package/dist/standalone/directives/datetime.js +0 -93
  294. package/dist/standalone/directives/datetime.js.map +0 -1
  295. package/dist/standalone/directives/icon.js +0 -35
  296. package/dist/standalone/directives/icon.js.map +0 -1
  297. package/dist/standalone/directives/index.js +0 -13
  298. package/dist/standalone/directives/index.js.map +0 -1
  299. package/dist/standalone/directives/input-otp.js +0 -89
  300. package/dist/standalone/directives/input-otp.js.map +0 -1
  301. package/dist/standalone/directives/input.js +0 -112
  302. package/dist/standalone/directives/input.js.map +0 -1
  303. package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
  304. package/dist/standalone/directives/ion-accordion-group.js +0 -40
  305. package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
  306. package/dist/standalone/directives/ion-accordion.d.ts +0 -12
  307. package/dist/standalone/directives/ion-accordion.js +0 -36
  308. package/dist/standalone/directives/ion-accordion.js.map +0 -1
  309. package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
  310. package/dist/standalone/directives/ion-action-sheet.js +0 -62
  311. package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
  312. package/dist/standalone/directives/ion-alert.d.ts +0 -58
  313. package/dist/standalone/directives/ion-alert.js +0 -62
  314. package/dist/standalone/directives/ion-alert.js.map +0 -1
  315. package/dist/standalone/directives/ion-app.d.ts +0 -12
  316. package/dist/standalone/directives/ion-app.js +0 -36
  317. package/dist/standalone/directives/ion-app.js.map +0 -1
  318. package/dist/standalone/directives/ion-avatar.d.ts +0 -12
  319. package/dist/standalone/directives/ion-avatar.js +0 -35
  320. package/dist/standalone/directives/ion-avatar.js.map +0 -1
  321. package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
  322. package/dist/standalone/directives/ion-backdrop.js +0 -40
  323. package/dist/standalone/directives/ion-backdrop.js.map +0 -1
  324. package/dist/standalone/directives/ion-badge.d.ts +0 -12
  325. package/dist/standalone/directives/ion-badge.js +0 -36
  326. package/dist/standalone/directives/ion-badge.js.map +0 -1
  327. package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
  328. package/dist/standalone/directives/ion-breadcrumb.js +0 -43
  329. package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
  330. package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
  331. package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
  332. package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
  333. package/dist/standalone/directives/ion-button.d.ts +0 -23
  334. package/dist/standalone/directives/ion-button.js +0 -43
  335. package/dist/standalone/directives/ion-button.js.map +0 -1
  336. package/dist/standalone/directives/ion-buttons.d.ts +0 -12
  337. package/dist/standalone/directives/ion-buttons.js +0 -36
  338. package/dist/standalone/directives/ion-buttons.js.map +0 -1
  339. package/dist/standalone/directives/ion-card-content.d.ts +0 -12
  340. package/dist/standalone/directives/ion-card-content.js +0 -36
  341. package/dist/standalone/directives/ion-card-content.js.map +0 -1
  342. package/dist/standalone/directives/ion-card-header.d.ts +0 -12
  343. package/dist/standalone/directives/ion-card-header.js +0 -36
  344. package/dist/standalone/directives/ion-card-header.js.map +0 -1
  345. package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
  346. package/dist/standalone/directives/ion-card-subtitle.js +0 -36
  347. package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
  348. package/dist/standalone/directives/ion-card-title.d.ts +0 -12
  349. package/dist/standalone/directives/ion-card-title.js +0 -36
  350. package/dist/standalone/directives/ion-card-title.js.map +0 -1
  351. package/dist/standalone/directives/ion-card.d.ts +0 -12
  352. package/dist/standalone/directives/ion-card.js +0 -36
  353. package/dist/standalone/directives/ion-card.js.map +0 -1
  354. package/dist/standalone/directives/ion-chip.d.ts +0 -12
  355. package/dist/standalone/directives/ion-chip.js +0 -36
  356. package/dist/standalone/directives/ion-chip.js.map +0 -1
  357. package/dist/standalone/directives/ion-col.d.ts +0 -12
  358. package/dist/standalone/directives/ion-col.js +0 -36
  359. package/dist/standalone/directives/ion-col.js.map +0 -1
  360. package/dist/standalone/directives/ion-content.d.ts +0 -33
  361. package/dist/standalone/directives/ion-content.js +0 -47
  362. package/dist/standalone/directives/ion-content.js.map +0 -1
  363. package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
  364. package/dist/standalone/directives/ion-datetime-button.js +0 -36
  365. package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
  366. package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
  367. package/dist/standalone/directives/ion-fab-button.js +0 -43
  368. package/dist/standalone/directives/ion-fab-button.js.map +0 -1
  369. package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
  370. package/dist/standalone/directives/ion-fab-list.js +0 -36
  371. package/dist/standalone/directives/ion-fab-list.js.map +0 -1
  372. package/dist/standalone/directives/ion-fab.d.ts +0 -12
  373. package/dist/standalone/directives/ion-fab.js +0 -37
  374. package/dist/standalone/directives/ion-fab.js.map +0 -1
  375. package/dist/standalone/directives/ion-footer.d.ts +0 -12
  376. package/dist/standalone/directives/ion-footer.js +0 -36
  377. package/dist/standalone/directives/ion-footer.js.map +0 -1
  378. package/dist/standalone/directives/ion-grid.d.ts +0 -12
  379. package/dist/standalone/directives/ion-grid.js +0 -36
  380. package/dist/standalone/directives/ion-grid.js.map +0 -1
  381. package/dist/standalone/directives/ion-header.d.ts +0 -12
  382. package/dist/standalone/directives/ion-header.js +0 -36
  383. package/dist/standalone/directives/ion-header.js.map +0 -1
  384. package/dist/standalone/directives/ion-img.d.ts +0 -28
  385. package/dist/standalone/directives/ion-img.js +0 -46
  386. package/dist/standalone/directives/ion-img.js.map +0 -1
  387. package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
  388. package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
  389. package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
  390. package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
  391. package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
  392. package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
  393. package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
  394. package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
  395. package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
  396. package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
  397. package/dist/standalone/directives/ion-item-divider.js +0 -36
  398. package/dist/standalone/directives/ion-item-divider.js.map +0 -1
  399. package/dist/standalone/directives/ion-item-group.d.ts +0 -12
  400. package/dist/standalone/directives/ion-item-group.js +0 -35
  401. package/dist/standalone/directives/ion-item-group.js.map +0 -1
  402. package/dist/standalone/directives/ion-item-option.d.ts +0 -12
  403. package/dist/standalone/directives/ion-item-option.js +0 -36
  404. package/dist/standalone/directives/ion-item-option.js.map +0 -1
  405. package/dist/standalone/directives/ion-item-options.d.ts +0 -18
  406. package/dist/standalone/directives/ion-item-options.js +0 -40
  407. package/dist/standalone/directives/ion-item-options.js.map +0 -1
  408. package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
  409. package/dist/standalone/directives/ion-item-sliding.js +0 -41
  410. package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
  411. package/dist/standalone/directives/ion-item.d.ts +0 -12
  412. package/dist/standalone/directives/ion-item.js +0 -36
  413. package/dist/standalone/directives/ion-item.js.map +0 -1
  414. package/dist/standalone/directives/ion-label.d.ts +0 -12
  415. package/dist/standalone/directives/ion-label.js +0 -36
  416. package/dist/standalone/directives/ion-label.js.map +0 -1
  417. package/dist/standalone/directives/ion-list-header.d.ts +0 -12
  418. package/dist/standalone/directives/ion-list-header.js +0 -36
  419. package/dist/standalone/directives/ion-list-header.js.map +0 -1
  420. package/dist/standalone/directives/ion-list.d.ts +0 -12
  421. package/dist/standalone/directives/ion-list.js +0 -37
  422. package/dist/standalone/directives/ion-list.js.map +0 -1
  423. package/dist/standalone/directives/ion-loading.d.ts +0 -58
  424. package/dist/standalone/directives/ion-loading.js +0 -62
  425. package/dist/standalone/directives/ion-loading.js.map +0 -1
  426. package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
  427. package/dist/standalone/directives/ion-menu-button.js +0 -36
  428. package/dist/standalone/directives/ion-menu-button.js.map +0 -1
  429. package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
  430. package/dist/standalone/directives/ion-menu-toggle.js +0 -36
  431. package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
  432. package/dist/standalone/directives/ion-menu.d.ts +0 -34
  433. package/dist/standalone/directives/ion-menu.js +0 -50
  434. package/dist/standalone/directives/ion-menu.js.map +0 -1
  435. package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
  436. package/dist/standalone/directives/ion-nav-link.js +0 -36
  437. package/dist/standalone/directives/ion-nav-link.js.map +0 -1
  438. package/dist/standalone/directives/ion-note.d.ts +0 -12
  439. package/dist/standalone/directives/ion-note.js +0 -36
  440. package/dist/standalone/directives/ion-note.js.map +0 -1
  441. package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
  442. package/dist/standalone/directives/ion-picker-column-option.js +0 -36
  443. package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
  444. package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
  445. package/dist/standalone/directives/ion-picker-column.js +0 -41
  446. package/dist/standalone/directives/ion-picker-column.js.map +0 -1
  447. package/dist/standalone/directives/ion-picker.d.ts +0 -12
  448. package/dist/standalone/directives/ion-picker.js +0 -36
  449. package/dist/standalone/directives/ion-picker.js.map +0 -1
  450. package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
  451. package/dist/standalone/directives/ion-progress-bar.js +0 -36
  452. package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
  453. package/dist/standalone/directives/ion-radio.d.ts +0 -23
  454. package/dist/standalone/directives/ion-radio.js +0 -43
  455. package/dist/standalone/directives/ion-radio.js.map +0 -1
  456. package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
  457. package/dist/standalone/directives/ion-refresher-content.js +0 -36
  458. package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
  459. package/dist/standalone/directives/ion-refresher.d.ts +0 -45
  460. package/dist/standalone/directives/ion-refresher.js +0 -53
  461. package/dist/standalone/directives/ion-refresher.js.map +0 -1
  462. package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
  463. package/dist/standalone/directives/ion-reorder-group.js +0 -50
  464. package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
  465. package/dist/standalone/directives/ion-reorder.d.ts +0 -12
  466. package/dist/standalone/directives/ion-reorder.js +0 -35
  467. package/dist/standalone/directives/ion-reorder.js.map +0 -1
  468. package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
  469. package/dist/standalone/directives/ion-ripple-effect.js +0 -37
  470. package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
  471. package/dist/standalone/directives/ion-row.d.ts +0 -12
  472. package/dist/standalone/directives/ion-row.js +0 -35
  473. package/dist/standalone/directives/ion-row.js.map +0 -1
  474. package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
  475. package/dist/standalone/directives/ion-segment-button.js +0 -36
  476. package/dist/standalone/directives/ion-segment-button.js.map +0 -1
  477. package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
  478. package/dist/standalone/directives/ion-segment-content.js +0 -35
  479. package/dist/standalone/directives/ion-segment-content.js.map +0 -1
  480. package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
  481. package/dist/standalone/directives/ion-segment-view.js +0 -40
  482. package/dist/standalone/directives/ion-segment-view.js.map +0 -1
  483. package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
  484. package/dist/standalone/directives/ion-select-modal.js +0 -36
  485. package/dist/standalone/directives/ion-select-modal.js.map +0 -1
  486. package/dist/standalone/directives/ion-select-option.d.ts +0 -12
  487. package/dist/standalone/directives/ion-select-option.js +0 -36
  488. package/dist/standalone/directives/ion-select-option.js.map +0 -1
  489. package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
  490. package/dist/standalone/directives/ion-skeleton-text.js +0 -36
  491. package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
  492. package/dist/standalone/directives/ion-spinner.d.ts +0 -12
  493. package/dist/standalone/directives/ion-spinner.js +0 -36
  494. package/dist/standalone/directives/ion-spinner.js.map +0 -1
  495. package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
  496. package/dist/standalone/directives/ion-split-pane.js +0 -40
  497. package/dist/standalone/directives/ion-split-pane.js.map +0 -1
  498. package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
  499. package/dist/standalone/directives/ion-tab-bar.js +0 -36
  500. package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
  501. package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
  502. package/dist/standalone/directives/ion-tab-button.js +0 -36
  503. package/dist/standalone/directives/ion-tab-button.js.map +0 -1
  504. package/dist/standalone/directives/ion-tab.d.ts +0 -12
  505. package/dist/standalone/directives/ion-tab.js +0 -37
  506. package/dist/standalone/directives/ion-tab.js.map +0 -1
  507. package/dist/standalone/directives/ion-text.d.ts +0 -12
  508. package/dist/standalone/directives/ion-text.js +0 -36
  509. package/dist/standalone/directives/ion-text.js.map +0 -1
  510. package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
  511. package/dist/standalone/directives/ion-thumbnail.js +0 -35
  512. package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
  513. package/dist/standalone/directives/ion-title.d.ts +0 -12
  514. package/dist/standalone/directives/ion-title.js +0 -36
  515. package/dist/standalone/directives/ion-title.js.map +0 -1
  516. package/dist/standalone/directives/ion-toast.d.ts +0 -58
  517. package/dist/standalone/directives/ion-toast.js +0 -62
  518. package/dist/standalone/directives/ion-toast.js.map +0 -1
  519. package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
  520. package/dist/standalone/directives/ion-toolbar.js +0 -36
  521. package/dist/standalone/directives/ion-toolbar.js.map +0 -1
  522. package/dist/standalone/directives/proxies.d.ts +0 -77
  523. package/dist/standalone/directives/proxies.js +0 -79
  524. package/dist/standalone/directives/proxies.js.map +0 -1
  525. package/dist/standalone/directives/radio-group.js +0 -59
  526. package/dist/standalone/directives/radio-group.js.map +0 -1
  527. package/dist/standalone/directives/range.js +0 -77
  528. package/dist/standalone/directives/range.js.map +0 -1
  529. package/dist/standalone/directives/searchbar.js +0 -81
  530. package/dist/standalone/directives/searchbar.js.map +0 -1
  531. package/dist/standalone/directives/segment.js +0 -59
  532. package/dist/standalone/directives/segment.js.map +0 -1
  533. package/dist/standalone/directives/select.js +0 -83
  534. package/dist/standalone/directives/select.js.map +0 -1
  535. package/dist/standalone/directives/textarea.js +0 -90
  536. package/dist/standalone/directives/textarea.js.map +0 -1
  537. package/dist/standalone/directives/toggle.js +0 -75
  538. package/dist/standalone/directives/toggle.js.map +0 -1
  539. package/dist/standalone/index.js +0 -24
  540. package/dist/standalone/index.js.map +0 -1
  541. package/dist/standalone/navigation/back-button.js +0 -32
  542. package/dist/standalone/navigation/back-button.js.map +0 -1
  543. package/dist/standalone/navigation/nav.js +0 -28
  544. package/dist/standalone/navigation/nav.js.map +0 -1
  545. package/dist/standalone/navigation/router-link-delegate.js +0 -26
  546. package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
  547. package/dist/standalone/navigation/router-outlet.js +0 -60
  548. package/dist/standalone/navigation/router-outlet.js.map +0 -1
  549. package/dist/standalone/navigation/tabs.js +0 -57
  550. package/dist/standalone/navigation/tabs.js.map +0 -1
  551. package/dist/standalone/overlays/modal.js +0 -32
  552. package/dist/standalone/overlays/modal.js.map +0 -1
  553. package/dist/standalone/overlays/popover.js +0 -28
  554. package/dist/standalone/overlays/popover.js.map +0 -1
  555. package/dist/standalone/providers/action-sheet-controller.js +0 -20
  556. package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
  557. package/dist/standalone/providers/alert-controller.js +0 -20
  558. package/dist/standalone/providers/alert-controller.js.map +0 -1
  559. package/dist/standalone/providers/animation-controller.js +0 -37
  560. package/dist/standalone/providers/animation-controller.js.map +0 -1
  561. package/dist/standalone/providers/gesture-controller.js +0 -32
  562. package/dist/standalone/providers/gesture-controller.js.map +0 -1
  563. package/dist/standalone/providers/ionic-angular.js +0 -38
  564. package/dist/standalone/providers/ionic-angular.js.map +0 -1
  565. package/dist/standalone/providers/loading-controller.js +0 -20
  566. package/dist/standalone/providers/loading-controller.js.map +0 -1
  567. package/dist/standalone/providers/menu-controller.js +0 -18
  568. package/dist/standalone/providers/menu-controller.js.map +0 -1
  569. package/dist/standalone/providers/modal-controller.js +0 -27
  570. package/dist/standalone/providers/modal-controller.js.map +0 -1
  571. package/dist/standalone/providers/popover-controller.js +0 -21
  572. package/dist/standalone/providers/popover-controller.js.map +0 -1
  573. package/dist/standalone/providers/toast-controller.js +0 -20
  574. package/dist/standalone/providers/toast-controller.js.map +0 -1
  575. /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
  576. /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
  577. /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
  578. /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
  579. /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
  580. /package/{dist/common → common}/providers/config.d.ts +0 -0
  581. /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
  582. /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
  583. /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
  584. /package/{dist/common → common}/providers/platform.d.ts +0 -0
  585. /package/{dist/common → common}/types/interfaces.d.ts +0 -0
  586. /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
  587. /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
  588. /package/{dist/common → common}/utils/overlay.d.ts +0 -0
  589. /package/{dist/common → common}/utils/proxy.d.ts +0 -0
  590. /package/{dist/common → common}/utils/routing.d.ts +0 -0
  591. /package/{dist/common → common}/utils/util.d.ts +0 -0
  592. /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
  593. /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
  594. /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
  595. /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
  596. /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
  597. /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
  598. /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
  599. /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
  600. /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
  601. /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
  602. /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
  603. /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
  604. /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
  605. /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
  606. /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
  607. /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
  608. /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
  609. /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
  610. /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
  611. /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
  612. /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
  613. /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
  614. /package/{dist/schematics → schematics}/add/schema.json +0 -0
  615. /package/{dist/schematics → schematics}/collection.json +0 -0
  616. /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
  617. /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
  618. /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
  619. /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
  620. /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
  621. /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
  622. /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
  623. /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
  624. /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
  625. /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
  626. /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
  627. /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
  628. /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
  629. /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
  630. /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
  631. /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
  632. /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
  633. /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
  634. /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
  635. /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
  636. /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
  637. /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
  638. /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
  639. /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
  640. /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
  641. /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
  642. /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
  643. /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
  644. /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
  645. /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
  646. /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
@@ -0,0 +1,3231 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, HostListener, Component, ChangeDetectionStrategy, ViewContainerRef, Attribute, Optional, SkipSelf, ViewChild, ContentChild, ContentChildren, forwardRef, Injectable, inject, Injector, EnvironmentInjector, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
3
+ import { NG_VALUE_ACCESSOR, NG_VALIDATORS, MaxValidator, MinValidator } from '@angular/forms';
4
+ import * as i2$1 from '@ionic/angular/common';
5
+ import { ValueAccessor, setIonicClasses, IonRouterOutlet as IonRouterOutlet$1, IonTabs as IonTabs$1, IonBackButton as IonBackButton$1, IonNav as IonNav$1, RouterLinkDelegateDirective as RouterLinkDelegateDirective$1, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegateDirective$1, IonModal as IonModal$1, IonPopover as IonPopover$1, OverlayBaseController, MenuController as MenuController$1, AngularDelegate, raf, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';
6
+ export { AngularDelegate, Config, DomController, IonModalToken, IonicRouteStrategy, NavController, NavParams, Platform } from '@ionic/angular/common';
7
+ import { __decorate } from 'tslib';
8
+ import { fromEvent } from 'rxjs';
9
+ import * as i1 from '@angular/common';
10
+ import { DOCUMENT, CommonModule } from '@angular/common';
11
+ import * as i2 from '@angular/router';
12
+ import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, pickerController, popoverController, toastController, setupConfig } from '@ionic/core';
13
+ export { IonicSafeString, IonicSlides, createAnimation, createGesture, getIonPageElement, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation, openURL } from '@ionic/core';
14
+ import { defineCustomElements } from '@ionic/core/loader';
15
+
16
+ class BooleanValueAccessorDirective extends ValueAccessor {
17
+ constructor(injector, el) {
18
+ super(injector, el);
19
+ }
20
+ writeValue(value) {
21
+ this.elementRef.nativeElement.checked = this.lastValue = value;
22
+ setIonicClasses(this.elementRef);
23
+ }
24
+ _handleIonChange(el) {
25
+ this.handleValueChange(el, el.checked);
26
+ }
27
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
28
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanValueAccessorDirective, selector: "ion-checkbox,ion-toggle", host: { listeners: { "ionChange": "_handleIonChange($event.target)" } }, providers: [
29
+ {
30
+ provide: NG_VALUE_ACCESSOR,
31
+ useExisting: BooleanValueAccessorDirective,
32
+ multi: true,
33
+ },
34
+ ], usesInheritance: true, ngImport: i0 });
35
+ }
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
37
+ type: Directive,
38
+ args: [{
39
+ selector: 'ion-checkbox,ion-toggle',
40
+ providers: [
41
+ {
42
+ provide: NG_VALUE_ACCESSOR,
43
+ useExisting: BooleanValueAccessorDirective,
44
+ multi: true,
45
+ },
46
+ ],
47
+ }]
48
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleIonChange: [{
49
+ type: HostListener,
50
+ args: ['ionChange', ['$event.target']]
51
+ }] } });
52
+
53
+ class NumericValueAccessorDirective extends ValueAccessor {
54
+ el;
55
+ constructor(injector, el) {
56
+ super(injector, el);
57
+ this.el = el;
58
+ }
59
+ handleInputEvent(el) {
60
+ this.handleValueChange(el, el.value);
61
+ }
62
+ registerOnChange(fn) {
63
+ if (this.el.nativeElement.tagName === 'ION-INPUT' || this.el.nativeElement.tagName === 'ION-INPUT-OTP') {
64
+ super.registerOnChange((value) => {
65
+ fn(value === '' ? null : parseFloat(value));
66
+ });
67
+ }
68
+ else {
69
+ super.registerOnChange(fn);
70
+ }
71
+ }
72
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
73
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericValueAccessorDirective, selector: "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", host: { listeners: { "ionInput": "handleInputEvent($event.target)" } }, providers: [
74
+ {
75
+ provide: NG_VALUE_ACCESSOR,
76
+ useExisting: NumericValueAccessorDirective,
77
+ multi: true,
78
+ },
79
+ ], usesInheritance: true, ngImport: i0 });
80
+ }
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, decorators: [{
82
+ type: Directive,
83
+ args: [{
84
+ selector: 'ion-input[type=number],ion-input-otp:not([type=text]),ion-range',
85
+ providers: [
86
+ {
87
+ provide: NG_VALUE_ACCESSOR,
88
+ useExisting: NumericValueAccessorDirective,
89
+ multi: true,
90
+ },
91
+ ],
92
+ }]
93
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
94
+ type: HostListener,
95
+ args: ['ionInput', ['$event.target']]
96
+ }] } });
97
+
98
+ class SelectValueAccessorDirective extends ValueAccessor {
99
+ constructor(injector, el) {
100
+ super(injector, el);
101
+ }
102
+ _handleChangeEvent(el) {
103
+ this.handleValueChange(el, el.value);
104
+ }
105
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
106
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SelectValueAccessorDirective, selector: "ion-select, ion-radio-group, ion-segment, ion-datetime", host: { listeners: { "ionChange": "_handleChangeEvent($event.target)" } }, providers: [
107
+ {
108
+ provide: NG_VALUE_ACCESSOR,
109
+ useExisting: SelectValueAccessorDirective,
110
+ multi: true,
111
+ },
112
+ ], usesInheritance: true, ngImport: i0 });
113
+ }
114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
115
+ type: Directive,
116
+ args: [{
117
+ /* tslint:disable-next-line:directive-selector */
118
+ selector: 'ion-select, ion-radio-group, ion-segment, ion-datetime',
119
+ providers: [
120
+ {
121
+ provide: NG_VALUE_ACCESSOR,
122
+ useExisting: SelectValueAccessorDirective,
123
+ multi: true,
124
+ },
125
+ ],
126
+ }]
127
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleChangeEvent: [{
128
+ type: HostListener,
129
+ args: ['ionChange', ['$event.target']]
130
+ }] } });
131
+
132
+ class TextValueAccessorDirective extends ValueAccessor {
133
+ constructor(injector, el) {
134
+ super(injector, el);
135
+ }
136
+ _handleInputEvent(el) {
137
+ this.handleValueChange(el, el.value);
138
+ }
139
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
140
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TextValueAccessorDirective, selector: "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", host: { listeners: { "ionInput": "_handleInputEvent($event.target)" } }, providers: [
141
+ {
142
+ provide: NG_VALUE_ACCESSOR,
143
+ useExisting: TextValueAccessorDirective,
144
+ multi: true,
145
+ },
146
+ ], usesInheritance: true, ngImport: i0 });
147
+ }
148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
149
+ type: Directive,
150
+ args: [{
151
+ selector: 'ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar',
152
+ providers: [
153
+ {
154
+ provide: NG_VALUE_ACCESSOR,
155
+ useExisting: TextValueAccessorDirective,
156
+ multi: true,
157
+ },
158
+ ],
159
+ }]
160
+ }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleInputEvent: [{
161
+ type: HostListener,
162
+ args: ['ionInput', ['$event.target']]
163
+ }] } });
164
+
165
+ /* eslint-disable */
166
+ /* tslint:disable */
167
+ const proxyInputs = (Cmp, inputs) => {
168
+ const Prototype = Cmp.prototype;
169
+ inputs.forEach((item) => {
170
+ Object.defineProperty(Prototype, item, {
171
+ get() {
172
+ return this.el[item];
173
+ },
174
+ set(val) {
175
+ this.z.runOutsideAngular(() => (this.el[item] = val));
176
+ },
177
+ /**
178
+ * In the event that proxyInputs is called
179
+ * multiple times re-defining these inputs
180
+ * will cause an error to be thrown. As a result
181
+ * we set configurable: true to indicate these
182
+ * properties can be changed.
183
+ */
184
+ configurable: true,
185
+ });
186
+ });
187
+ };
188
+ const proxyMethods = (Cmp, methods) => {
189
+ const Prototype = Cmp.prototype;
190
+ methods.forEach((methodName) => {
191
+ Prototype[methodName] = function () {
192
+ const args = arguments;
193
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
194
+ };
195
+ });
196
+ };
197
+ const proxyOutputs = (instance, el, events) => {
198
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
199
+ };
200
+ const defineCustomElement = (tagName, customElement) => {
201
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
202
+ customElements.define(tagName, customElement);
203
+ }
204
+ };
205
+ // tslint:disable-next-line: only-arrow-functions
206
+ function ProxyCmp(opts) {
207
+ const decorator = function (cls) {
208
+ const { defineCustomElementFn, inputs, methods } = opts;
209
+ if (defineCustomElementFn !== undefined) {
210
+ defineCustomElementFn();
211
+ }
212
+ if (inputs) {
213
+ proxyInputs(cls, inputs);
214
+ }
215
+ if (methods) {
216
+ proxyMethods(cls, methods);
217
+ }
218
+ return cls;
219
+ };
220
+ return decorator;
221
+ }
222
+
223
+ let IonAccordion = class IonAccordion {
224
+ z;
225
+ el;
226
+ constructor(c, r, z) {
227
+ this.z = z;
228
+ c.detach();
229
+ this.el = r.nativeElement;
230
+ }
231
+ /** @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 });
232
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, 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 });
233
+ };
234
+ IonAccordion = __decorate([
235
+ ProxyCmp({
236
+ inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value']
237
+ })
238
+ ], IonAccordion);
239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
240
+ type: Component,
241
+ args: [{
242
+ selector: 'ion-accordion',
243
+ changeDetection: ChangeDetectionStrategy.OnPush,
244
+ template: '<ng-content></ng-content>',
245
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
246
+ inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value'],
247
+ }]
248
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
249
+ let IonAccordionGroup = class IonAccordionGroup {
250
+ z;
251
+ el;
252
+ constructor(c, r, z) {
253
+ this.z = z;
254
+ c.detach();
255
+ this.el = r.nativeElement;
256
+ proxyOutputs(this, this.el, ['ionChange']);
257
+ }
258
+ /** @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 });
259
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, 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 });
260
+ };
261
+ IonAccordionGroup = __decorate([
262
+ ProxyCmp({
263
+ inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value']
264
+ })
265
+ ], IonAccordionGroup);
266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
267
+ type: Component,
268
+ args: [{
269
+ selector: 'ion-accordion-group',
270
+ changeDetection: ChangeDetectionStrategy.OnPush,
271
+ template: '<ng-content></ng-content>',
272
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
273
+ inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value'],
274
+ }]
275
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
276
+ let IonActionSheet = class IonActionSheet {
277
+ z;
278
+ el;
279
+ constructor(c, r, z) {
280
+ this.z = z;
281
+ c.detach();
282
+ this.el = r.nativeElement;
283
+ proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
284
+ }
285
+ /** @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 });
286
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, 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 });
287
+ };
288
+ IonActionSheet = __decorate([
289
+ ProxyCmp({
290
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
291
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
292
+ })
293
+ ], IonActionSheet);
294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, decorators: [{
295
+ type: Component,
296
+ args: [{
297
+ selector: 'ion-action-sheet',
298
+ changeDetection: ChangeDetectionStrategy.OnPush,
299
+ template: '<ng-content></ng-content>',
300
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
301
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
302
+ }]
303
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
304
+ let IonAlert = class IonAlert {
305
+ z;
306
+ el;
307
+ constructor(c, r, z) {
308
+ this.z = z;
309
+ c.detach();
310
+ this.el = r.nativeElement;
311
+ proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
312
+ }
313
+ /** @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 });
314
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, 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 });
315
+ };
316
+ IonAlert = __decorate([
317
+ ProxyCmp({
318
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
319
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
320
+ })
321
+ ], IonAlert);
322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, decorators: [{
323
+ type: Component,
324
+ args: [{
325
+ selector: 'ion-alert',
326
+ changeDetection: ChangeDetectionStrategy.OnPush,
327
+ template: '<ng-content></ng-content>',
328
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
329
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
330
+ }]
331
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
332
+ let IonApp = class IonApp {
333
+ z;
334
+ el;
335
+ constructor(c, r, z) {
336
+ this.z = z;
337
+ c.detach();
338
+ this.el = r.nativeElement;
339
+ }
340
+ /** @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 });
341
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, selector: "ion-app", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
342
+ };
343
+ IonApp = __decorate([
344
+ ProxyCmp({
345
+ inputs: ['mode', 'theme'],
346
+ methods: ['setFocus']
347
+ })
348
+ ], IonApp);
349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, decorators: [{
350
+ type: Component,
351
+ args: [{
352
+ selector: 'ion-app',
353
+ changeDetection: ChangeDetectionStrategy.OnPush,
354
+ template: '<ng-content></ng-content>',
355
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
356
+ inputs: ['mode', 'theme'],
357
+ }]
358
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
359
+ let IonAvatar = class IonAvatar {
360
+ z;
361
+ el;
362
+ constructor(c, r, z) {
363
+ this.z = z;
364
+ c.detach();
365
+ this.el = r.nativeElement;
366
+ }
367
+ /** @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 });
368
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, 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 });
369
+ };
370
+ IonAvatar = __decorate([
371
+ ProxyCmp({
372
+ inputs: ['disabled', 'mode', 'shape', 'size', 'theme']
373
+ })
374
+ ], IonAvatar);
375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
376
+ type: Component,
377
+ args: [{
378
+ selector: 'ion-avatar',
379
+ changeDetection: ChangeDetectionStrategy.OnPush,
380
+ template: '<ng-content></ng-content>',
381
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
382
+ inputs: ['disabled', 'mode', 'shape', 'size', 'theme'],
383
+ }]
384
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
385
+ let IonBackdrop = class IonBackdrop {
386
+ z;
387
+ el;
388
+ constructor(c, r, z) {
389
+ this.z = z;
390
+ c.detach();
391
+ this.el = r.nativeElement;
392
+ proxyOutputs(this, this.el, ['ionBackdropTap']);
393
+ }
394
+ /** @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 });
395
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, 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 });
396
+ };
397
+ IonBackdrop = __decorate([
398
+ ProxyCmp({
399
+ inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible']
400
+ })
401
+ ], IonBackdrop);
402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
403
+ type: Component,
404
+ args: [{
405
+ selector: 'ion-backdrop',
406
+ changeDetection: ChangeDetectionStrategy.OnPush,
407
+ template: '<ng-content></ng-content>',
408
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
409
+ inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible'],
410
+ }]
411
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
412
+ let IonBadge = class IonBadge {
413
+ z;
414
+ el;
415
+ constructor(c, r, z) {
416
+ this.z = z;
417
+ c.detach();
418
+ this.el = r.nativeElement;
419
+ }
420
+ /** @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 });
421
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, 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 });
422
+ };
423
+ IonBadge = __decorate([
424
+ ProxyCmp({
425
+ inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical']
426
+ })
427
+ ], IonBadge);
428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
429
+ type: Component,
430
+ args: [{
431
+ selector: 'ion-badge',
432
+ changeDetection: ChangeDetectionStrategy.OnPush,
433
+ template: '<ng-content></ng-content>',
434
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
435
+ inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical'],
436
+ }]
437
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
438
+ let IonBreadcrumb = class IonBreadcrumb {
439
+ z;
440
+ el;
441
+ constructor(c, r, z) {
442
+ this.z = z;
443
+ c.detach();
444
+ this.el = r.nativeElement;
445
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
446
+ }
447
+ /** @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 });
448
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, 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 });
449
+ };
450
+ IonBreadcrumb = __decorate([
451
+ ProxyCmp({
452
+ inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme']
453
+ })
454
+ ], IonBreadcrumb);
455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
456
+ type: Component,
457
+ args: [{
458
+ selector: 'ion-breadcrumb',
459
+ changeDetection: ChangeDetectionStrategy.OnPush,
460
+ template: '<ng-content></ng-content>',
461
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
462
+ inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme'],
463
+ }]
464
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
465
+ let IonBreadcrumbs = class IonBreadcrumbs {
466
+ z;
467
+ el;
468
+ constructor(c, r, z) {
469
+ this.z = z;
470
+ c.detach();
471
+ this.el = r.nativeElement;
472
+ proxyOutputs(this, this.el, ['ionCollapsedClick']);
473
+ }
474
+ /** @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 });
475
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, 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 });
476
+ };
477
+ IonBreadcrumbs = __decorate([
478
+ ProxyCmp({
479
+ inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme']
480
+ })
481
+ ], IonBreadcrumbs);
482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
483
+ type: Component,
484
+ args: [{
485
+ selector: 'ion-breadcrumbs',
486
+ changeDetection: ChangeDetectionStrategy.OnPush,
487
+ template: '<ng-content></ng-content>',
488
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
489
+ inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme'],
490
+ }]
491
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
492
+ let IonButton = class IonButton {
493
+ z;
494
+ el;
495
+ constructor(c, r, z) {
496
+ this.z = z;
497
+ c.detach();
498
+ this.el = r.nativeElement;
499
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
500
+ }
501
+ /** @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 });
502
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, 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 });
503
+ };
504
+ IonButton = __decorate([
505
+ ProxyCmp({
506
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type']
507
+ })
508
+ ], IonButton);
509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
510
+ type: Component,
511
+ args: [{
512
+ selector: 'ion-button',
513
+ changeDetection: ChangeDetectionStrategy.OnPush,
514
+ template: '<ng-content></ng-content>',
515
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
516
+ inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type'],
517
+ }]
518
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
519
+ let IonButtons = class IonButtons {
520
+ z;
521
+ el;
522
+ constructor(c, r, z) {
523
+ this.z = z;
524
+ c.detach();
525
+ this.el = r.nativeElement;
526
+ }
527
+ /** @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 });
528
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, selector: "ion-buttons", inputs: { collapse: "collapse", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
529
+ };
530
+ IonButtons = __decorate([
531
+ ProxyCmp({
532
+ inputs: ['collapse', 'mode', 'theme']
533
+ })
534
+ ], IonButtons);
535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
536
+ type: Component,
537
+ args: [{
538
+ selector: 'ion-buttons',
539
+ changeDetection: ChangeDetectionStrategy.OnPush,
540
+ template: '<ng-content></ng-content>',
541
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
542
+ inputs: ['collapse', 'mode', 'theme'],
543
+ }]
544
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
545
+ let IonCard = class IonCard {
546
+ z;
547
+ el;
548
+ constructor(c, r, z) {
549
+ this.z = z;
550
+ c.detach();
551
+ this.el = r.nativeElement;
552
+ }
553
+ /** @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 });
554
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, 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 });
555
+ };
556
+ IonCard = __decorate([
557
+ ProxyCmp({
558
+ inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type']
559
+ })
560
+ ], IonCard);
561
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
562
+ type: Component,
563
+ args: [{
564
+ selector: 'ion-card',
565
+ changeDetection: ChangeDetectionStrategy.OnPush,
566
+ template: '<ng-content></ng-content>',
567
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
568
+ inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type'],
569
+ }]
570
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
571
+ let IonCardContent = class IonCardContent {
572
+ z;
573
+ el;
574
+ constructor(c, r, z) {
575
+ this.z = z;
576
+ c.detach();
577
+ this.el = r.nativeElement;
578
+ }
579
+ /** @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 });
580
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, selector: "ion-card-content", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
581
+ };
582
+ IonCardContent = __decorate([
583
+ ProxyCmp({
584
+ inputs: ['mode', 'theme']
585
+ })
586
+ ], IonCardContent);
587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
588
+ type: Component,
589
+ args: [{
590
+ selector: 'ion-card-content',
591
+ changeDetection: ChangeDetectionStrategy.OnPush,
592
+ template: '<ng-content></ng-content>',
593
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
594
+ inputs: ['mode', 'theme'],
595
+ }]
596
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
597
+ let IonCardHeader = class IonCardHeader {
598
+ z;
599
+ el;
600
+ constructor(c, r, z) {
601
+ this.z = z;
602
+ c.detach();
603
+ this.el = r.nativeElement;
604
+ }
605
+ /** @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 });
606
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, 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 });
607
+ };
608
+ IonCardHeader = __decorate([
609
+ ProxyCmp({
610
+ inputs: ['color', 'mode', 'theme', 'translucent']
611
+ })
612
+ ], IonCardHeader);
613
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
614
+ type: Component,
615
+ args: [{
616
+ selector: 'ion-card-header',
617
+ changeDetection: ChangeDetectionStrategy.OnPush,
618
+ template: '<ng-content></ng-content>',
619
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
620
+ inputs: ['color', 'mode', 'theme', 'translucent'],
621
+ }]
622
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
623
+ let IonCardSubtitle = class IonCardSubtitle {
624
+ z;
625
+ el;
626
+ constructor(c, r, z) {
627
+ this.z = z;
628
+ c.detach();
629
+ this.el = r.nativeElement;
630
+ }
631
+ /** @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 });
632
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
633
+ };
634
+ IonCardSubtitle = __decorate([
635
+ ProxyCmp({
636
+ inputs: ['color', 'mode', 'theme']
637
+ })
638
+ ], IonCardSubtitle);
639
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
640
+ type: Component,
641
+ args: [{
642
+ selector: 'ion-card-subtitle',
643
+ changeDetection: ChangeDetectionStrategy.OnPush,
644
+ template: '<ng-content></ng-content>',
645
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
646
+ inputs: ['color', 'mode', 'theme'],
647
+ }]
648
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
649
+ let IonCardTitle = class IonCardTitle {
650
+ z;
651
+ el;
652
+ constructor(c, r, z) {
653
+ this.z = z;
654
+ c.detach();
655
+ this.el = r.nativeElement;
656
+ }
657
+ /** @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 });
658
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, selector: "ion-card-title", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
659
+ };
660
+ IonCardTitle = __decorate([
661
+ ProxyCmp({
662
+ inputs: ['color', 'mode', 'theme']
663
+ })
664
+ ], IonCardTitle);
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
666
+ type: Component,
667
+ args: [{
668
+ selector: 'ion-card-title',
669
+ changeDetection: ChangeDetectionStrategy.OnPush,
670
+ template: '<ng-content></ng-content>',
671
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
672
+ inputs: ['color', 'mode', 'theme'],
673
+ }]
674
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
675
+ let IonCheckbox = class IonCheckbox {
676
+ z;
677
+ el;
678
+ constructor(c, r, z) {
679
+ this.z = z;
680
+ c.detach();
681
+ this.el = r.nativeElement;
682
+ proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
683
+ }
684
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
685
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, selector: "ion-checkbox", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", shape: "shape", size: "size", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
686
+ };
687
+ IonCheckbox = __decorate([
688
+ ProxyCmp({
689
+ inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value']
690
+ })
691
+ ], IonCheckbox);
692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, decorators: [{
693
+ type: Component,
694
+ args: [{
695
+ selector: 'ion-checkbox',
696
+ changeDetection: ChangeDetectionStrategy.OnPush,
697
+ template: '<ng-content></ng-content>',
698
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
699
+ inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value'],
700
+ }]
701
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
702
+ let IonChip = class IonChip {
703
+ z;
704
+ el;
705
+ constructor(c, r, z) {
706
+ this.z = z;
707
+ c.detach();
708
+ this.el = r.nativeElement;
709
+ }
710
+ /** @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 });
711
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, 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 });
712
+ };
713
+ IonChip = __decorate([
714
+ ProxyCmp({
715
+ inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme']
716
+ })
717
+ ], IonChip);
718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
719
+ type: Component,
720
+ args: [{
721
+ selector: 'ion-chip',
722
+ changeDetection: ChangeDetectionStrategy.OnPush,
723
+ template: '<ng-content></ng-content>',
724
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
725
+ inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme'],
726
+ }]
727
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
728
+ let IonCol = class IonCol {
729
+ z;
730
+ el;
731
+ constructor(c, r, z) {
732
+ this.z = z;
733
+ c.detach();
734
+ this.el = r.nativeElement;
735
+ }
736
+ /** @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 });
737
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, 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 });
738
+ };
739
+ IonCol = __decorate([
740
+ ProxyCmp({
741
+ 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']
742
+ })
743
+ ], IonCol);
744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
745
+ type: Component,
746
+ args: [{
747
+ selector: 'ion-col',
748
+ changeDetection: ChangeDetectionStrategy.OnPush,
749
+ template: '<ng-content></ng-content>',
750
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
751
+ 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'],
752
+ }]
753
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
754
+ let IonContent = class IonContent {
755
+ z;
756
+ el;
757
+ constructor(c, r, z) {
758
+ this.z = z;
759
+ c.detach();
760
+ this.el = r.nativeElement;
761
+ proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
762
+ }
763
+ /** @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 });
764
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, 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 });
765
+ };
766
+ IonContent = __decorate([
767
+ ProxyCmp({
768
+ inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
769
+ methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
770
+ })
771
+ ], IonContent);
772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, decorators: [{
773
+ type: Component,
774
+ args: [{
775
+ selector: 'ion-content',
776
+ changeDetection: ChangeDetectionStrategy.OnPush,
777
+ template: '<ng-content></ng-content>',
778
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
779
+ inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
780
+ }]
781
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
782
+ let IonDatetime = class IonDatetime {
783
+ z;
784
+ el;
785
+ constructor(c, r, z) {
786
+ this.z = z;
787
+ c.detach();
788
+ this.el = r.nativeElement;
789
+ proxyOutputs(this, this.el, ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur']);
790
+ }
791
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
792
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetime, 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", theme: "theme", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
793
+ };
794
+ IonDatetime = __decorate([
795
+ ProxyCmp({
796
+ inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
797
+ methods: ['confirm', 'reset', 'cancel']
798
+ })
799
+ ], IonDatetime);
800
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, decorators: [{
801
+ type: Component,
802
+ args: [{
803
+ selector: 'ion-datetime',
804
+ changeDetection: ChangeDetectionStrategy.OnPush,
805
+ template: '<ng-content></ng-content>',
806
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
807
+ inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
808
+ }]
809
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
810
+ let IonDatetimeButton = class IonDatetimeButton {
811
+ z;
812
+ el;
813
+ constructor(c, r, z) {
814
+ this.z = z;
815
+ c.detach();
816
+ this.el = r.nativeElement;
817
+ }
818
+ /** @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 });
819
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, 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 });
820
+ };
821
+ IonDatetimeButton = __decorate([
822
+ ProxyCmp({
823
+ inputs: ['color', 'datetime', 'disabled', 'mode', 'theme']
824
+ })
825
+ ], IonDatetimeButton);
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
827
+ type: Component,
828
+ args: [{
829
+ selector: 'ion-datetime-button',
830
+ changeDetection: ChangeDetectionStrategy.OnPush,
831
+ template: '<ng-content></ng-content>',
832
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
833
+ inputs: ['color', 'datetime', 'disabled', 'mode', 'theme'],
834
+ }]
835
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
836
+ let IonDivider = class IonDivider {
837
+ z;
838
+ el;
839
+ constructor(c, r, z) {
840
+ this.z = z;
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ /** @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 });
845
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDivider, selector: "ion-divider", inputs: { inset: "inset", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
846
+ };
847
+ IonDivider = __decorate([
848
+ ProxyCmp({
849
+ inputs: ['inset', 'spacing']
850
+ })
851
+ ], IonDivider);
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, decorators: [{
853
+ type: Component,
854
+ args: [{
855
+ selector: 'ion-divider',
856
+ changeDetection: ChangeDetectionStrategy.OnPush,
857
+ template: '<ng-content></ng-content>',
858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
859
+ inputs: ['inset', 'spacing'],
860
+ }]
861
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
862
+ let IonFab = class IonFab {
863
+ z;
864
+ el;
865
+ constructor(c, r, z) {
866
+ this.z = z;
867
+ c.detach();
868
+ this.el = r.nativeElement;
869
+ }
870
+ /** @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 });
871
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, 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 });
872
+ };
873
+ IonFab = __decorate([
874
+ ProxyCmp({
875
+ inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
876
+ methods: ['close']
877
+ })
878
+ ], IonFab);
879
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, decorators: [{
880
+ type: Component,
881
+ args: [{
882
+ selector: 'ion-fab',
883
+ changeDetection: ChangeDetectionStrategy.OnPush,
884
+ template: '<ng-content></ng-content>',
885
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
886
+ inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
887
+ }]
888
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
889
+ let IonFabButton = class IonFabButton {
890
+ z;
891
+ el;
892
+ constructor(c, r, z) {
893
+ this.z = z;
894
+ c.detach();
895
+ this.el = r.nativeElement;
896
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
897
+ }
898
+ /** @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 });
899
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", form: "form", 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 });
900
+ };
901
+ IonFabButton = __decorate([
902
+ ProxyCmp({
903
+ inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type']
904
+ })
905
+ ], IonFabButton);
906
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
907
+ type: Component,
908
+ args: [{
909
+ selector: 'ion-fab-button',
910
+ changeDetection: ChangeDetectionStrategy.OnPush,
911
+ template: '<ng-content></ng-content>',
912
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
913
+ inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type'],
914
+ }]
915
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
916
+ let IonFabList = class IonFabList {
917
+ z;
918
+ el;
919
+ constructor(c, r, z) {
920
+ this.z = z;
921
+ c.detach();
922
+ this.el = r.nativeElement;
923
+ }
924
+ /** @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 });
925
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, 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 });
926
+ };
927
+ IonFabList = __decorate([
928
+ ProxyCmp({
929
+ inputs: ['activated', 'mode', 'side', 'theme']
930
+ })
931
+ ], IonFabList);
932
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
933
+ type: Component,
934
+ args: [{
935
+ selector: 'ion-fab-list',
936
+ changeDetection: ChangeDetectionStrategy.OnPush,
937
+ template: '<ng-content></ng-content>',
938
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
939
+ inputs: ['activated', 'mode', 'side', 'theme'],
940
+ }]
941
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
942
+ let IonFooter = class IonFooter {
943
+ z;
944
+ el;
945
+ constructor(c, r, z) {
946
+ this.z = z;
947
+ c.detach();
948
+ this.el = r.nativeElement;
949
+ }
950
+ /** @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 });
951
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", scrollEffect: "scrollEffect", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
952
+ };
953
+ IonFooter = __decorate([
954
+ ProxyCmp({
955
+ inputs: ['collapse', 'mode', 'scrollEffect', 'theme', 'translucent']
956
+ })
957
+ ], IonFooter);
958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
959
+ type: Component,
960
+ args: [{
961
+ selector: 'ion-footer',
962
+ changeDetection: ChangeDetectionStrategy.OnPush,
963
+ template: '<ng-content></ng-content>',
964
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
965
+ inputs: ['collapse', 'mode', 'scrollEffect', 'theme', 'translucent'],
966
+ }]
967
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
968
+ let IonGallery = class IonGallery {
969
+ z;
970
+ el;
971
+ constructor(c, r, z) {
972
+ this.z = z;
973
+ c.detach();
974
+ this.el = r.nativeElement;
975
+ }
976
+ /** @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 });
977
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGallery, 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 });
978
+ };
979
+ IonGallery = __decorate([
980
+ ProxyCmp({
981
+ inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme']
982
+ })
983
+ ], IonGallery);
984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, decorators: [{
985
+ type: Component,
986
+ args: [{
987
+ selector: 'ion-gallery',
988
+ changeDetection: ChangeDetectionStrategy.OnPush,
989
+ template: '<ng-content></ng-content>',
990
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
991
+ inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme'],
992
+ }]
993
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
994
+ let IonGalleryItem = class IonGalleryItem {
995
+ z;
996
+ el;
997
+ constructor(c, r, z) {
998
+ this.z = z;
999
+ c.detach();
1000
+ this.el = r.nativeElement;
1001
+ }
1002
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1003
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGalleryItem, selector: "ion-gallery-item", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
+ };
1005
+ IonGalleryItem = __decorate([
1006
+ ProxyCmp({
1007
+ inputs: ['mode', 'theme']
1008
+ })
1009
+ ], IonGalleryItem);
1010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, decorators: [{
1011
+ type: Component,
1012
+ args: [{
1013
+ selector: 'ion-gallery-item',
1014
+ changeDetection: ChangeDetectionStrategy.OnPush,
1015
+ template: '<ng-content></ng-content>',
1016
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1017
+ inputs: ['mode', 'theme'],
1018
+ }]
1019
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1020
+ let IonGrid = class IonGrid {
1021
+ z;
1022
+ el;
1023
+ constructor(c, r, z) {
1024
+ this.z = z;
1025
+ c.detach();
1026
+ this.el = r.nativeElement;
1027
+ }
1028
+ /** @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 });
1029
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, selector: "ion-grid", inputs: { fixed: "fixed", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1030
+ };
1031
+ IonGrid = __decorate([
1032
+ ProxyCmp({
1033
+ inputs: ['fixed', 'mode', 'theme']
1034
+ })
1035
+ ], IonGrid);
1036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
1037
+ type: Component,
1038
+ args: [{
1039
+ selector: 'ion-grid',
1040
+ changeDetection: ChangeDetectionStrategy.OnPush,
1041
+ template: '<ng-content></ng-content>',
1042
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1043
+ inputs: ['fixed', 'mode', 'theme'],
1044
+ }]
1045
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1046
+ let IonHeader = class IonHeader {
1047
+ z;
1048
+ el;
1049
+ constructor(c, r, z) {
1050
+ this.z = z;
1051
+ c.detach();
1052
+ this.el = r.nativeElement;
1053
+ }
1054
+ /** @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 });
1055
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, selector: "ion-header", inputs: { collapse: "collapse", divider: "divider", mode: "mode", scrollEffect: "scrollEffect", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1056
+ };
1057
+ IonHeader = __decorate([
1058
+ ProxyCmp({
1059
+ inputs: ['collapse', 'divider', 'mode', 'scrollEffect', 'theme', 'translucent']
1060
+ })
1061
+ ], IonHeader);
1062
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
1063
+ type: Component,
1064
+ args: [{
1065
+ selector: 'ion-header',
1066
+ changeDetection: ChangeDetectionStrategy.OnPush,
1067
+ template: '<ng-content></ng-content>',
1068
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1069
+ inputs: ['collapse', 'divider', 'mode', 'scrollEffect', 'theme', 'translucent'],
1070
+ }]
1071
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1072
+ let IonIcon = class IonIcon {
1073
+ z;
1074
+ el;
1075
+ constructor(c, r, z) {
1076
+ this.z = z;
1077
+ c.detach();
1078
+ this.el = r.nativeElement;
1079
+ }
1080
+ /** @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 });
1081
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonIcon, 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 });
1082
+ };
1083
+ IonIcon = __decorate([
1084
+ ProxyCmp({
1085
+ inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
1086
+ })
1087
+ ], IonIcon);
1088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, decorators: [{
1089
+ type: Component,
1090
+ args: [{
1091
+ selector: 'ion-icon',
1092
+ changeDetection: ChangeDetectionStrategy.OnPush,
1093
+ template: '<ng-content></ng-content>',
1094
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1095
+ inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
1096
+ }]
1097
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1098
+ let IonImg = class IonImg {
1099
+ z;
1100
+ el;
1101
+ constructor(c, r, z) {
1102
+ this.z = z;
1103
+ c.detach();
1104
+ this.el = r.nativeElement;
1105
+ proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
1106
+ }
1107
+ /** @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 });
1108
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, 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 });
1109
+ };
1110
+ IonImg = __decorate([
1111
+ ProxyCmp({
1112
+ inputs: ['alt', 'mode', 'src', 'theme']
1113
+ })
1114
+ ], IonImg);
1115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
1116
+ type: Component,
1117
+ args: [{
1118
+ selector: 'ion-img',
1119
+ changeDetection: ChangeDetectionStrategy.OnPush,
1120
+ template: '<ng-content></ng-content>',
1121
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1122
+ inputs: ['alt', 'mode', 'src', 'theme'],
1123
+ }]
1124
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1125
+ let IonInfiniteScroll = class IonInfiniteScroll {
1126
+ z;
1127
+ el;
1128
+ constructor(c, r, z) {
1129
+ this.z = z;
1130
+ c.detach();
1131
+ this.el = r.nativeElement;
1132
+ proxyOutputs(this, this.el, ['ionInfinite']);
1133
+ }
1134
+ /** @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 });
1135
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, 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 });
1136
+ };
1137
+ IonInfiniteScroll = __decorate([
1138
+ ProxyCmp({
1139
+ inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
1140
+ methods: ['complete']
1141
+ })
1142
+ ], IonInfiniteScroll);
1143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, decorators: [{
1144
+ type: Component,
1145
+ args: [{
1146
+ selector: 'ion-infinite-scroll',
1147
+ changeDetection: ChangeDetectionStrategy.OnPush,
1148
+ template: '<ng-content></ng-content>',
1149
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1150
+ inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
1151
+ }]
1152
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1153
+ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
1154
+ z;
1155
+ el;
1156
+ constructor(c, r, z) {
1157
+ this.z = z;
1158
+ c.detach();
1159
+ this.el = r.nativeElement;
1160
+ }
1161
+ /** @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 });
1162
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, 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 });
1163
+ };
1164
+ IonInfiniteScrollContent = __decorate([
1165
+ ProxyCmp({
1166
+ inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme']
1167
+ })
1168
+ ], IonInfiniteScrollContent);
1169
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
1170
+ type: Component,
1171
+ args: [{
1172
+ selector: 'ion-infinite-scroll-content',
1173
+ changeDetection: ChangeDetectionStrategy.OnPush,
1174
+ template: '<ng-content></ng-content>',
1175
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1176
+ inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme'],
1177
+ }]
1178
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1179
+ let IonInput = class IonInput {
1180
+ z;
1181
+ el;
1182
+ constructor(c, r, z) {
1183
+ this.z = z;
1184
+ c.detach();
1185
+ this.el = r.nativeElement;
1186
+ proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionBlur', 'ionFocus']);
1187
+ }
1188
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
1189
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInput, selector: "ion-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearInputIcon: "clearInputIcon", 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", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1190
+ };
1191
+ IonInput = __decorate([
1192
+ ProxyCmp({
1193
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
1194
+ methods: ['setFocus', 'getInputElement']
1195
+ })
1196
+ ], IonInput);
1197
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, decorators: [{
1198
+ type: Component,
1199
+ args: [{
1200
+ selector: 'ion-input',
1201
+ changeDetection: ChangeDetectionStrategy.OnPush,
1202
+ template: '<ng-content></ng-content>',
1203
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1204
+ inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
1205
+ }]
1206
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1207
+ let IonInputOtp = class IonInputOtp {
1208
+ z;
1209
+ el;
1210
+ constructor(c, r, z) {
1211
+ this.z = z;
1212
+ c.detach();
1213
+ this.el = r.nativeElement;
1214
+ proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus']);
1215
+ }
1216
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
1217
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputOtp, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", mode: "mode", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1218
+ };
1219
+ IonInputOtp = __decorate([
1220
+ ProxyCmp({
1221
+ inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
1222
+ methods: ['setFocus']
1223
+ })
1224
+ ], IonInputOtp);
1225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, decorators: [{
1226
+ type: Component,
1227
+ args: [{
1228
+ selector: 'ion-input-otp',
1229
+ changeDetection: ChangeDetectionStrategy.OnPush,
1230
+ template: '<ng-content></ng-content>',
1231
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1232
+ inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
1233
+ }]
1234
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1235
+ let IonInputPasswordToggle = class IonInputPasswordToggle {
1236
+ z;
1237
+ el;
1238
+ constructor(c, r, z) {
1239
+ this.z = z;
1240
+ c.detach();
1241
+ this.el = r.nativeElement;
1242
+ }
1243
+ /** @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 });
1244
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputPasswordToggle, 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 });
1245
+ };
1246
+ IonInputPasswordToggle = __decorate([
1247
+ ProxyCmp({
1248
+ inputs: ['color', 'hideIcon', 'mode', 'showIcon']
1249
+ })
1250
+ ], IonInputPasswordToggle);
1251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
1252
+ type: Component,
1253
+ args: [{
1254
+ selector: 'ion-input-password-toggle',
1255
+ changeDetection: ChangeDetectionStrategy.OnPush,
1256
+ template: '<ng-content></ng-content>',
1257
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1258
+ inputs: ['color', 'hideIcon', 'mode', 'showIcon'],
1259
+ }]
1260
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1261
+ let IonItem = class IonItem {
1262
+ z;
1263
+ el;
1264
+ constructor(c, r, z) {
1265
+ this.z = z;
1266
+ c.detach();
1267
+ this.el = r.nativeElement;
1268
+ }
1269
+ /** @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 });
1270
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, 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 });
1271
+ };
1272
+ IonItem = __decorate([
1273
+ ProxyCmp({
1274
+ inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type']
1275
+ })
1276
+ ], IonItem);
1277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
1278
+ type: Component,
1279
+ args: [{
1280
+ selector: 'ion-item',
1281
+ changeDetection: ChangeDetectionStrategy.OnPush,
1282
+ template: '<ng-content></ng-content>',
1283
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1284
+ inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type'],
1285
+ }]
1286
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1287
+ let IonItemDivider = class IonItemDivider {
1288
+ z;
1289
+ el;
1290
+ constructor(c, r, z) {
1291
+ this.z = z;
1292
+ c.detach();
1293
+ this.el = r.nativeElement;
1294
+ }
1295
+ /** @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 });
1296
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, 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 });
1297
+ };
1298
+ IonItemDivider = __decorate([
1299
+ ProxyCmp({
1300
+ inputs: ['color', 'mode', 'sticky', 'theme']
1301
+ })
1302
+ ], IonItemDivider);
1303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
1304
+ type: Component,
1305
+ args: [{
1306
+ selector: 'ion-item-divider',
1307
+ changeDetection: ChangeDetectionStrategy.OnPush,
1308
+ template: '<ng-content></ng-content>',
1309
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1310
+ inputs: ['color', 'mode', 'sticky', 'theme'],
1311
+ }]
1312
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1313
+ let IonItemGroup = class IonItemGroup {
1314
+ z;
1315
+ el;
1316
+ constructor(c, r, z) {
1317
+ this.z = z;
1318
+ c.detach();
1319
+ this.el = r.nativeElement;
1320
+ }
1321
+ /** @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 });
1322
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, selector: "ion-item-group", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1323
+ };
1324
+ IonItemGroup = __decorate([
1325
+ ProxyCmp({
1326
+ inputs: ['mode', 'theme']
1327
+ })
1328
+ ], IonItemGroup);
1329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
1330
+ type: Component,
1331
+ args: [{
1332
+ selector: 'ion-item-group',
1333
+ changeDetection: ChangeDetectionStrategy.OnPush,
1334
+ template: '<ng-content></ng-content>',
1335
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1336
+ inputs: ['mode', 'theme'],
1337
+ }]
1338
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1339
+ let IonItemOption = class IonItemOption {
1340
+ z;
1341
+ el;
1342
+ constructor(c, r, z) {
1343
+ this.z = z;
1344
+ c.detach();
1345
+ this.el = r.nativeElement;
1346
+ }
1347
+ /** @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 });
1348
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, 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 });
1349
+ };
1350
+ IonItemOption = __decorate([
1351
+ ProxyCmp({
1352
+ inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type']
1353
+ })
1354
+ ], IonItemOption);
1355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
1356
+ type: Component,
1357
+ args: [{
1358
+ selector: 'ion-item-option',
1359
+ changeDetection: ChangeDetectionStrategy.OnPush,
1360
+ template: '<ng-content></ng-content>',
1361
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1362
+ inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type'],
1363
+ }]
1364
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1365
+ let IonItemOptions = class IonItemOptions {
1366
+ z;
1367
+ el;
1368
+ constructor(c, r, z) {
1369
+ this.z = z;
1370
+ c.detach();
1371
+ this.el = r.nativeElement;
1372
+ proxyOutputs(this, this.el, ['ionSwipe']);
1373
+ }
1374
+ /** @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 });
1375
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, selector: "ion-item-options", inputs: { mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1376
+ };
1377
+ IonItemOptions = __decorate([
1378
+ ProxyCmp({
1379
+ inputs: ['mode', 'side', 'theme']
1380
+ })
1381
+ ], IonItemOptions);
1382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
1383
+ type: Component,
1384
+ args: [{
1385
+ selector: 'ion-item-options',
1386
+ changeDetection: ChangeDetectionStrategy.OnPush,
1387
+ template: '<ng-content></ng-content>',
1388
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1389
+ inputs: ['mode', 'side', 'theme'],
1390
+ }]
1391
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1392
+ let IonItemSliding = class IonItemSliding {
1393
+ z;
1394
+ el;
1395
+ constructor(c, r, z) {
1396
+ this.z = z;
1397
+ c.detach();
1398
+ this.el = r.nativeElement;
1399
+ proxyOutputs(this, this.el, ['ionDrag']);
1400
+ }
1401
+ /** @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 });
1402
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, selector: "ion-item-sliding", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1403
+ };
1404
+ IonItemSliding = __decorate([
1405
+ ProxyCmp({
1406
+ inputs: ['disabled', 'mode', 'theme'],
1407
+ methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
1408
+ })
1409
+ ], IonItemSliding);
1410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, decorators: [{
1411
+ type: Component,
1412
+ args: [{
1413
+ selector: 'ion-item-sliding',
1414
+ changeDetection: ChangeDetectionStrategy.OnPush,
1415
+ template: '<ng-content></ng-content>',
1416
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1417
+ inputs: ['disabled', 'mode', 'theme'],
1418
+ }]
1419
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1420
+ let IonLabel = class IonLabel {
1421
+ z;
1422
+ el;
1423
+ constructor(c, r, z) {
1424
+ this.z = z;
1425
+ c.detach();
1426
+ this.el = r.nativeElement;
1427
+ }
1428
+ /** @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 });
1429
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, 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 });
1430
+ };
1431
+ IonLabel = __decorate([
1432
+ ProxyCmp({
1433
+ inputs: ['color', 'mode', 'position', 'theme']
1434
+ })
1435
+ ], IonLabel);
1436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
1437
+ type: Component,
1438
+ args: [{
1439
+ selector: 'ion-label',
1440
+ changeDetection: ChangeDetectionStrategy.OnPush,
1441
+ template: '<ng-content></ng-content>',
1442
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1443
+ inputs: ['color', 'mode', 'position', 'theme'],
1444
+ }]
1445
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1446
+ let IonList = class IonList {
1447
+ z;
1448
+ el;
1449
+ constructor(c, r, z) {
1450
+ this.z = z;
1451
+ c.detach();
1452
+ this.el = r.nativeElement;
1453
+ }
1454
+ /** @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 });
1455
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, 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 });
1456
+ };
1457
+ IonList = __decorate([
1458
+ ProxyCmp({
1459
+ inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
1460
+ methods: ['closeSlidingItems']
1461
+ })
1462
+ ], IonList);
1463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, decorators: [{
1464
+ type: Component,
1465
+ args: [{
1466
+ selector: 'ion-list',
1467
+ changeDetection: ChangeDetectionStrategy.OnPush,
1468
+ template: '<ng-content></ng-content>',
1469
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1470
+ inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
1471
+ }]
1472
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1473
+ let IonListHeader = class IonListHeader {
1474
+ z;
1475
+ el;
1476
+ constructor(c, r, z) {
1477
+ this.z = z;
1478
+ c.detach();
1479
+ this.el = r.nativeElement;
1480
+ }
1481
+ /** @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 });
1482
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, 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 });
1483
+ };
1484
+ IonListHeader = __decorate([
1485
+ ProxyCmp({
1486
+ inputs: ['color', 'lines', 'mode', 'theme']
1487
+ })
1488
+ ], IonListHeader);
1489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
1490
+ type: Component,
1491
+ args: [{
1492
+ selector: 'ion-list-header',
1493
+ changeDetection: ChangeDetectionStrategy.OnPush,
1494
+ template: '<ng-content></ng-content>',
1495
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1496
+ inputs: ['color', 'lines', 'mode', 'theme'],
1497
+ }]
1498
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1499
+ let IonLoading = class IonLoading {
1500
+ z;
1501
+ el;
1502
+ constructor(c, r, z) {
1503
+ this.z = z;
1504
+ c.detach();
1505
+ this.el = r.nativeElement;
1506
+ proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
1507
+ }
1508
+ /** @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 });
1509
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, 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 });
1510
+ };
1511
+ IonLoading = __decorate([
1512
+ ProxyCmp({
1513
+ inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
1514
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
1515
+ })
1516
+ ], IonLoading);
1517
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, decorators: [{
1518
+ type: Component,
1519
+ args: [{
1520
+ selector: 'ion-loading',
1521
+ changeDetection: ChangeDetectionStrategy.OnPush,
1522
+ template: '<ng-content></ng-content>',
1523
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1524
+ inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
1525
+ }]
1526
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1527
+ let IonMenu = class IonMenu {
1528
+ z;
1529
+ el;
1530
+ constructor(c, r, z) {
1531
+ this.z = z;
1532
+ c.detach();
1533
+ this.el = r.nativeElement;
1534
+ proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
1535
+ }
1536
+ /** @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 });
1537
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, 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 });
1538
+ };
1539
+ IonMenu = __decorate([
1540
+ ProxyCmp({
1541
+ inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
1542
+ methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
1543
+ })
1544
+ ], IonMenu);
1545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, decorators: [{
1546
+ type: Component,
1547
+ args: [{
1548
+ selector: 'ion-menu',
1549
+ changeDetection: ChangeDetectionStrategy.OnPush,
1550
+ template: '<ng-content></ng-content>',
1551
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1552
+ inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
1553
+ }]
1554
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1555
+ let IonMenuButton = class IonMenuButton {
1556
+ z;
1557
+ el;
1558
+ constructor(c, r, z) {
1559
+ this.z = z;
1560
+ c.detach();
1561
+ this.el = r.nativeElement;
1562
+ }
1563
+ /** @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 });
1564
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, 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 });
1565
+ };
1566
+ IonMenuButton = __decorate([
1567
+ ProxyCmp({
1568
+ inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type']
1569
+ })
1570
+ ], IonMenuButton);
1571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
1572
+ type: Component,
1573
+ args: [{
1574
+ selector: 'ion-menu-button',
1575
+ changeDetection: ChangeDetectionStrategy.OnPush,
1576
+ template: '<ng-content></ng-content>',
1577
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1578
+ inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type'],
1579
+ }]
1580
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1581
+ let IonMenuToggle = class IonMenuToggle {
1582
+ z;
1583
+ el;
1584
+ constructor(c, r, z) {
1585
+ this.z = z;
1586
+ c.detach();
1587
+ this.el = r.nativeElement;
1588
+ }
1589
+ /** @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 });
1590
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, 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 });
1591
+ };
1592
+ IonMenuToggle = __decorate([
1593
+ ProxyCmp({
1594
+ inputs: ['autoHide', 'menu', 'mode', 'theme']
1595
+ })
1596
+ ], IonMenuToggle);
1597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
1598
+ type: Component,
1599
+ args: [{
1600
+ selector: 'ion-menu-toggle',
1601
+ changeDetection: ChangeDetectionStrategy.OnPush,
1602
+ template: '<ng-content></ng-content>',
1603
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1604
+ inputs: ['autoHide', 'menu', 'mode', 'theme'],
1605
+ }]
1606
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1607
+ let IonNavLink = class IonNavLink {
1608
+ z;
1609
+ el;
1610
+ constructor(c, r, z) {
1611
+ this.z = z;
1612
+ c.detach();
1613
+ this.el = r.nativeElement;
1614
+ }
1615
+ /** @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 });
1616
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, 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 });
1617
+ };
1618
+ IonNavLink = __decorate([
1619
+ ProxyCmp({
1620
+ inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme']
1621
+ })
1622
+ ], IonNavLink);
1623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
1624
+ type: Component,
1625
+ args: [{
1626
+ selector: 'ion-nav-link',
1627
+ changeDetection: ChangeDetectionStrategy.OnPush,
1628
+ template: '<ng-content></ng-content>',
1629
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1630
+ inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme'],
1631
+ }]
1632
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1633
+ let IonNote = class IonNote {
1634
+ z;
1635
+ el;
1636
+ constructor(c, r, z) {
1637
+ this.z = z;
1638
+ c.detach();
1639
+ this.el = r.nativeElement;
1640
+ }
1641
+ /** @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 });
1642
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, selector: "ion-note", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1643
+ };
1644
+ IonNote = __decorate([
1645
+ ProxyCmp({
1646
+ inputs: ['color', 'mode', 'theme']
1647
+ })
1648
+ ], IonNote);
1649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
1650
+ type: Component,
1651
+ args: [{
1652
+ selector: 'ion-note',
1653
+ changeDetection: ChangeDetectionStrategy.OnPush,
1654
+ template: '<ng-content></ng-content>',
1655
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1656
+ inputs: ['color', 'mode', 'theme'],
1657
+ }]
1658
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1659
+ let IonPicker = class IonPicker {
1660
+ z;
1661
+ el;
1662
+ constructor(c, r, z) {
1663
+ this.z = z;
1664
+ c.detach();
1665
+ this.el = r.nativeElement;
1666
+ }
1667
+ /** @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 });
1668
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, selector: "ion-picker", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1669
+ };
1670
+ IonPicker = __decorate([
1671
+ ProxyCmp({
1672
+ inputs: ['mode', 'theme']
1673
+ })
1674
+ ], IonPicker);
1675
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
1676
+ type: Component,
1677
+ args: [{
1678
+ selector: 'ion-picker',
1679
+ changeDetection: ChangeDetectionStrategy.OnPush,
1680
+ template: '<ng-content></ng-content>',
1681
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1682
+ inputs: ['mode', 'theme'],
1683
+ }]
1684
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1685
+ let IonPickerColumn = class IonPickerColumn {
1686
+ z;
1687
+ el;
1688
+ constructor(c, r, z) {
1689
+ this.z = z;
1690
+ c.detach();
1691
+ this.el = r.nativeElement;
1692
+ proxyOutputs(this, this.el, ['ionChange']);
1693
+ }
1694
+ /** @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 });
1695
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, 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 });
1696
+ };
1697
+ IonPickerColumn = __decorate([
1698
+ ProxyCmp({
1699
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1700
+ methods: ['setFocus']
1701
+ })
1702
+ ], IonPickerColumn);
1703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, decorators: [{
1704
+ type: Component,
1705
+ args: [{
1706
+ selector: 'ion-picker-column',
1707
+ changeDetection: ChangeDetectionStrategy.OnPush,
1708
+ template: '<ng-content></ng-content>',
1709
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1710
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1711
+ }]
1712
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1713
+ let IonPickerColumnOption = class IonPickerColumnOption {
1714
+ z;
1715
+ el;
1716
+ constructor(c, r, z) {
1717
+ this.z = z;
1718
+ c.detach();
1719
+ this.el = r.nativeElement;
1720
+ }
1721
+ /** @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 });
1722
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, 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 });
1723
+ };
1724
+ IonPickerColumnOption = __decorate([
1725
+ ProxyCmp({
1726
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value']
1727
+ })
1728
+ ], IonPickerColumnOption);
1729
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
1730
+ type: Component,
1731
+ args: [{
1732
+ selector: 'ion-picker-column-option',
1733
+ changeDetection: ChangeDetectionStrategy.OnPush,
1734
+ template: '<ng-content></ng-content>',
1735
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1736
+ inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
1737
+ }]
1738
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1739
+ let IonPickerLegacy = class IonPickerLegacy {
1740
+ z;
1741
+ el;
1742
+ constructor(c, r, z) {
1743
+ this.z = z;
1744
+ c.detach();
1745
+ this.el = r.nativeElement;
1746
+ proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
1747
+ }
1748
+ /** @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 });
1749
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, 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 });
1750
+ };
1751
+ IonPickerLegacy = __decorate([
1752
+ ProxyCmp({
1753
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
1754
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
1755
+ })
1756
+ ], IonPickerLegacy);
1757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, decorators: [{
1758
+ type: Component,
1759
+ args: [{
1760
+ selector: 'ion-picker-legacy',
1761
+ changeDetection: ChangeDetectionStrategy.OnPush,
1762
+ template: '<ng-content></ng-content>',
1763
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1764
+ inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
1765
+ }]
1766
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1767
+ let IonProgressBar = class IonProgressBar {
1768
+ z;
1769
+ el;
1770
+ constructor(c, r, z) {
1771
+ this.z = z;
1772
+ c.detach();
1773
+ this.el = r.nativeElement;
1774
+ }
1775
+ /** @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 });
1776
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, 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 });
1777
+ };
1778
+ IonProgressBar = __decorate([
1779
+ ProxyCmp({
1780
+ inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value']
1781
+ })
1782
+ ], IonProgressBar);
1783
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
1784
+ type: Component,
1785
+ args: [{
1786
+ selector: 'ion-progress-bar',
1787
+ changeDetection: ChangeDetectionStrategy.OnPush,
1788
+ template: '<ng-content></ng-content>',
1789
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1790
+ inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value'],
1791
+ }]
1792
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1793
+ let IonRadio = class IonRadio {
1794
+ z;
1795
+ el;
1796
+ constructor(c, r, z) {
1797
+ this.z = z;
1798
+ c.detach();
1799
+ this.el = r.nativeElement;
1800
+ proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
1801
+ }
1802
+ /** @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 });
1803
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, 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 });
1804
+ };
1805
+ IonRadio = __decorate([
1806
+ ProxyCmp({
1807
+ inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value']
1808
+ })
1809
+ ], IonRadio);
1810
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
1811
+ type: Component,
1812
+ args: [{
1813
+ selector: 'ion-radio',
1814
+ changeDetection: ChangeDetectionStrategy.OnPush,
1815
+ template: '<ng-content></ng-content>',
1816
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1817
+ inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value'],
1818
+ }]
1819
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1820
+ let IonRadioGroup = class IonRadioGroup {
1821
+ z;
1822
+ el;
1823
+ constructor(c, r, z) {
1824
+ this.z = z;
1825
+ c.detach();
1826
+ this.el = r.nativeElement;
1827
+ proxyOutputs(this, this.el, ['ionChange']);
1828
+ }
1829
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
1830
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1831
+ };
1832
+ IonRadioGroup = __decorate([
1833
+ ProxyCmp({
1834
+ inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value']
1835
+ })
1836
+ ], IonRadioGroup);
1837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, decorators: [{
1838
+ type: Component,
1839
+ args: [{
1840
+ selector: 'ion-radio-group',
1841
+ changeDetection: ChangeDetectionStrategy.OnPush,
1842
+ template: '<ng-content></ng-content>',
1843
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1844
+ inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value'],
1845
+ }]
1846
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1847
+ let IonRange = class IonRange {
1848
+ z;
1849
+ el;
1850
+ constructor(c, r, z) {
1851
+ this.z = z;
1852
+ c.detach();
1853
+ this.el = r.nativeElement;
1854
+ proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionFocus', 'ionBlur', 'ionKnobMoveStart', 'ionKnobMoveEnd']);
1855
+ }
1856
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
1857
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRange, 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", theme: "theme", ticks: "ticks", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1858
+ };
1859
+ IonRange = __decorate([
1860
+ ProxyCmp({
1861
+ inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value']
1862
+ })
1863
+ ], IonRange);
1864
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, decorators: [{
1865
+ type: Component,
1866
+ args: [{
1867
+ selector: 'ion-range',
1868
+ changeDetection: ChangeDetectionStrategy.OnPush,
1869
+ template: '<ng-content></ng-content>',
1870
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1871
+ inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value'],
1872
+ }]
1873
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1874
+ let IonRefresher = class IonRefresher {
1875
+ z;
1876
+ el;
1877
+ constructor(c, r, z) {
1878
+ this.z = z;
1879
+ c.detach();
1880
+ this.el = r.nativeElement;
1881
+ proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd']);
1882
+ }
1883
+ /** @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 });
1884
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, 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 });
1885
+ };
1886
+ IonRefresher = __decorate([
1887
+ ProxyCmp({
1888
+ inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
1889
+ methods: ['complete', 'cancel', 'getProgress']
1890
+ })
1891
+ ], IonRefresher);
1892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, decorators: [{
1893
+ type: Component,
1894
+ args: [{
1895
+ selector: 'ion-refresher',
1896
+ changeDetection: ChangeDetectionStrategy.OnPush,
1897
+ template: '<ng-content></ng-content>',
1898
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1899
+ inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
1900
+ }]
1901
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1902
+ let IonRefresherContent = class IonRefresherContent {
1903
+ z;
1904
+ el;
1905
+ constructor(c, r, z) {
1906
+ this.z = z;
1907
+ c.detach();
1908
+ this.el = r.nativeElement;
1909
+ }
1910
+ /** @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 });
1911
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, 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 });
1912
+ };
1913
+ IonRefresherContent = __decorate([
1914
+ ProxyCmp({
1915
+ inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme']
1916
+ })
1917
+ ], IonRefresherContent);
1918
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
1919
+ type: Component,
1920
+ args: [{
1921
+ selector: 'ion-refresher-content',
1922
+ changeDetection: ChangeDetectionStrategy.OnPush,
1923
+ template: '<ng-content></ng-content>',
1924
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1925
+ inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme'],
1926
+ }]
1927
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1928
+ let IonReorder = class IonReorder {
1929
+ z;
1930
+ el;
1931
+ constructor(c, r, z) {
1932
+ this.z = z;
1933
+ c.detach();
1934
+ this.el = r.nativeElement;
1935
+ }
1936
+ /** @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 });
1937
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, selector: "ion-reorder", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1938
+ };
1939
+ IonReorder = __decorate([
1940
+ ProxyCmp({
1941
+ inputs: ['mode', 'theme']
1942
+ })
1943
+ ], IonReorder);
1944
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
1945
+ type: Component,
1946
+ args: [{
1947
+ selector: 'ion-reorder',
1948
+ changeDetection: ChangeDetectionStrategy.OnPush,
1949
+ template: '<ng-content></ng-content>',
1950
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1951
+ inputs: ['mode', 'theme'],
1952
+ }]
1953
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1954
+ let IonReorderGroup = class IonReorderGroup {
1955
+ z;
1956
+ el;
1957
+ constructor(c, r, z) {
1958
+ this.z = z;
1959
+ c.detach();
1960
+ this.el = r.nativeElement;
1961
+ proxyOutputs(this, this.el, ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd']);
1962
+ }
1963
+ /** @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 });
1964
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, selector: "ion-reorder-group", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1965
+ };
1966
+ IonReorderGroup = __decorate([
1967
+ ProxyCmp({
1968
+ inputs: ['disabled', 'mode', 'theme'],
1969
+ methods: ['complete']
1970
+ })
1971
+ ], IonReorderGroup);
1972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, decorators: [{
1973
+ type: Component,
1974
+ args: [{
1975
+ selector: 'ion-reorder-group',
1976
+ changeDetection: ChangeDetectionStrategy.OnPush,
1977
+ template: '<ng-content></ng-content>',
1978
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1979
+ inputs: ['disabled', 'mode', 'theme'],
1980
+ }]
1981
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1982
+ let IonRippleEffect = class IonRippleEffect {
1983
+ z;
1984
+ el;
1985
+ constructor(c, r, z) {
1986
+ this.z = z;
1987
+ c.detach();
1988
+ this.el = r.nativeElement;
1989
+ }
1990
+ /** @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 });
1991
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, selector: "ion-ripple-effect", inputs: { mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1992
+ };
1993
+ IonRippleEffect = __decorate([
1994
+ ProxyCmp({
1995
+ inputs: ['mode', 'theme', 'type'],
1996
+ methods: ['addRipple']
1997
+ })
1998
+ ], IonRippleEffect);
1999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, decorators: [{
2000
+ type: Component,
2001
+ args: [{
2002
+ selector: 'ion-ripple-effect',
2003
+ changeDetection: ChangeDetectionStrategy.OnPush,
2004
+ template: '<ng-content></ng-content>',
2005
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2006
+ inputs: ['mode', 'theme', 'type'],
2007
+ }]
2008
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2009
+ let IonRow = class IonRow {
2010
+ z;
2011
+ el;
2012
+ constructor(c, r, z) {
2013
+ this.z = z;
2014
+ c.detach();
2015
+ this.el = r.nativeElement;
2016
+ }
2017
+ /** @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 });
2018
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, selector: "ion-row", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2019
+ };
2020
+ IonRow = __decorate([
2021
+ ProxyCmp({
2022
+ inputs: ['mode', 'theme']
2023
+ })
2024
+ ], IonRow);
2025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
2026
+ type: Component,
2027
+ args: [{
2028
+ selector: 'ion-row',
2029
+ changeDetection: ChangeDetectionStrategy.OnPush,
2030
+ template: '<ng-content></ng-content>',
2031
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2032
+ inputs: ['mode', 'theme'],
2033
+ }]
2034
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2035
+ let IonSearchbar = class IonSearchbar {
2036
+ z;
2037
+ el;
2038
+ constructor(c, r, z) {
2039
+ this.z = z;
2040
+ c.detach();
2041
+ this.el = r.nativeElement;
2042
+ proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionCancel', 'ionClear', 'ionBlur', 'ionFocus']);
2043
+ }
2044
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
2045
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSearchbar, selector: "ion-searchbar", inputs: { animated: "animated", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", shape: "shape", showCancelButton: "showCancelButton", showClearButton: "showClearButton", size: "size", spellcheck: "spellcheck", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2046
+ };
2047
+ IonSearchbar = __decorate([
2048
+ ProxyCmp({
2049
+ inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
2050
+ methods: ['setFocus', 'getInputElement']
2051
+ })
2052
+ ], IonSearchbar);
2053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, decorators: [{
2054
+ type: Component,
2055
+ args: [{
2056
+ selector: 'ion-searchbar',
2057
+ changeDetection: ChangeDetectionStrategy.OnPush,
2058
+ template: '<ng-content></ng-content>',
2059
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2060
+ inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
2061
+ }]
2062
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2063
+ let IonSegment = class IonSegment {
2064
+ z;
2065
+ el;
2066
+ constructor(c, r, z) {
2067
+ this.z = z;
2068
+ c.detach();
2069
+ this.el = r.nativeElement;
2070
+ proxyOutputs(this, this.el, ['ionChange']);
2071
+ }
2072
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
2073
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegment, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2074
+ };
2075
+ IonSegment = __decorate([
2076
+ ProxyCmp({
2077
+ inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value']
2078
+ })
2079
+ ], IonSegment);
2080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, decorators: [{
2081
+ type: Component,
2082
+ args: [{
2083
+ selector: 'ion-segment',
2084
+ changeDetection: ChangeDetectionStrategy.OnPush,
2085
+ template: '<ng-content></ng-content>',
2086
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2087
+ inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value'],
2088
+ }]
2089
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2090
+ let IonSegmentButton = class IonSegmentButton {
2091
+ z;
2092
+ el;
2093
+ constructor(c, r, z) {
2094
+ this.z = z;
2095
+ c.detach();
2096
+ this.el = r.nativeElement;
2097
+ }
2098
+ /** @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 });
2099
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, 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 });
2100
+ };
2101
+ IonSegmentButton = __decorate([
2102
+ ProxyCmp({
2103
+ inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value']
2104
+ })
2105
+ ], IonSegmentButton);
2106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
2107
+ type: Component,
2108
+ args: [{
2109
+ selector: 'ion-segment-button',
2110
+ changeDetection: ChangeDetectionStrategy.OnPush,
2111
+ template: '<ng-content></ng-content>',
2112
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2113
+ inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value'],
2114
+ }]
2115
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2116
+ let IonSegmentContent = class IonSegmentContent {
2117
+ z;
2118
+ el;
2119
+ constructor(c, r, z) {
2120
+ this.z = z;
2121
+ c.detach();
2122
+ this.el = r.nativeElement;
2123
+ }
2124
+ /** @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 });
2125
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentContent, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2126
+ };
2127
+ IonSegmentContent = __decorate([
2128
+ ProxyCmp({})
2129
+ ], IonSegmentContent);
2130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, decorators: [{
2131
+ type: Component,
2132
+ args: [{
2133
+ selector: 'ion-segment-content',
2134
+ changeDetection: ChangeDetectionStrategy.OnPush,
2135
+ template: '<ng-content></ng-content>',
2136
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2137
+ inputs: [],
2138
+ }]
2139
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2140
+ let IonSegmentView = class IonSegmentView {
2141
+ z;
2142
+ el;
2143
+ constructor(c, r, z) {
2144
+ this.z = z;
2145
+ c.detach();
2146
+ this.el = r.nativeElement;
2147
+ proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
2148
+ }
2149
+ /** @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 });
2150
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentView, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2151
+ };
2152
+ IonSegmentView = __decorate([
2153
+ ProxyCmp({
2154
+ inputs: ['disabled', 'swipeGesture']
2155
+ })
2156
+ ], IonSegmentView);
2157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, decorators: [{
2158
+ type: Component,
2159
+ args: [{
2160
+ selector: 'ion-segment-view',
2161
+ changeDetection: ChangeDetectionStrategy.OnPush,
2162
+ template: '<ng-content></ng-content>',
2163
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2164
+ inputs: ['disabled', 'swipeGesture'],
2165
+ }]
2166
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2167
+ let IonSelect = class IonSelect {
2168
+ z;
2169
+ el;
2170
+ constructor(c, r, z) {
2171
+ this.z = z;
2172
+ c.detach();
2173
+ this.el = r.nativeElement;
2174
+ proxyOutputs(this, this.el, ['ionChange', 'ionCancel', 'ionDismiss', 'ionFocus', 'ionBlur']);
2175
+ }
2176
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
2177
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelect, selector: "ion-select", inputs: { cancelIcon: "cancelIcon", 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", required: "required", selectedText: "selectedText", shape: "shape", size: "size", theme: "theme", toggleIcon: "toggleIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2178
+ };
2179
+ IonSelect = __decorate([
2180
+ ProxyCmp({
2181
+ inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
2182
+ methods: ['open']
2183
+ })
2184
+ ], IonSelect);
2185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, decorators: [{
2186
+ type: Component,
2187
+ args: [{
2188
+ selector: 'ion-select',
2189
+ changeDetection: ChangeDetectionStrategy.OnPush,
2190
+ template: '<ng-content></ng-content>',
2191
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2192
+ inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
2193
+ }]
2194
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2195
+ let IonSelectModal = class IonSelectModal {
2196
+ z;
2197
+ el;
2198
+ constructor(c, r, z) {
2199
+ this.z = z;
2200
+ c.detach();
2201
+ this.el = r.nativeElement;
2202
+ }
2203
+ /** @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 });
2204
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectModal, 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 });
2205
+ };
2206
+ IonSelectModal = __decorate([
2207
+ ProxyCmp({
2208
+ inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options']
2209
+ })
2210
+ ], IonSelectModal);
2211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, decorators: [{
2212
+ type: Component,
2213
+ args: [{
2214
+ selector: 'ion-select-modal',
2215
+ changeDetection: ChangeDetectionStrategy.OnPush,
2216
+ template: '<ng-content></ng-content>',
2217
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2218
+ inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options'],
2219
+ }]
2220
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2221
+ let IonSelectOption = class IonSelectOption {
2222
+ z;
2223
+ el;
2224
+ constructor(c, r, z) {
2225
+ this.z = z;
2226
+ c.detach();
2227
+ this.el = r.nativeElement;
2228
+ }
2229
+ /** @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 });
2230
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, 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 });
2231
+ };
2232
+ IonSelectOption = __decorate([
2233
+ ProxyCmp({
2234
+ inputs: ['description', 'disabled', 'justify', 'labelPlacement', 'mode', 'theme', 'value']
2235
+ })
2236
+ ], IonSelectOption);
2237
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
2238
+ type: Component,
2239
+ args: [{
2240
+ selector: 'ion-select-option',
2241
+ changeDetection: ChangeDetectionStrategy.OnPush,
2242
+ template: '<ng-content></ng-content>',
2243
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2244
+ inputs: ['description', 'disabled', 'justify', 'labelPlacement', 'mode', 'theme', 'value'],
2245
+ }]
2246
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2247
+ let IonSkeletonText = class IonSkeletonText {
2248
+ z;
2249
+ el;
2250
+ constructor(c, r, z) {
2251
+ this.z = z;
2252
+ c.detach();
2253
+ this.el = r.nativeElement;
2254
+ }
2255
+ /** @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 });
2256
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, selector: "ion-skeleton-text", inputs: { animated: "animated", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2257
+ };
2258
+ IonSkeletonText = __decorate([
2259
+ ProxyCmp({
2260
+ inputs: ['animated', 'mode', 'theme']
2261
+ })
2262
+ ], IonSkeletonText);
2263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
2264
+ type: Component,
2265
+ args: [{
2266
+ selector: 'ion-skeleton-text',
2267
+ changeDetection: ChangeDetectionStrategy.OnPush,
2268
+ template: '<ng-content></ng-content>',
2269
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2270
+ inputs: ['animated', 'mode', 'theme'],
2271
+ }]
2272
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2273
+ let IonSpinner = class IonSpinner {
2274
+ z;
2275
+ el;
2276
+ constructor(c, r, z) {
2277
+ this.z = z;
2278
+ c.detach();
2279
+ this.el = r.nativeElement;
2280
+ }
2281
+ /** @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 });
2282
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, 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 });
2283
+ };
2284
+ IonSpinner = __decorate([
2285
+ ProxyCmp({
2286
+ inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme']
2287
+ })
2288
+ ], IonSpinner);
2289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
2290
+ type: Component,
2291
+ args: [{
2292
+ selector: 'ion-spinner',
2293
+ changeDetection: ChangeDetectionStrategy.OnPush,
2294
+ template: '<ng-content></ng-content>',
2295
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2296
+ inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme'],
2297
+ }]
2298
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2299
+ let IonSplitPane = class IonSplitPane {
2300
+ z;
2301
+ el;
2302
+ constructor(c, r, z) {
2303
+ this.z = z;
2304
+ c.detach();
2305
+ this.el = r.nativeElement;
2306
+ proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
2307
+ }
2308
+ /** @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 });
2309
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, 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 });
2310
+ };
2311
+ IonSplitPane = __decorate([
2312
+ ProxyCmp({
2313
+ inputs: ['contentId', 'disabled', 'mode', 'theme', 'when']
2314
+ })
2315
+ ], IonSplitPane);
2316
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
2317
+ type: Component,
2318
+ args: [{
2319
+ selector: 'ion-split-pane',
2320
+ changeDetection: ChangeDetectionStrategy.OnPush,
2321
+ template: '<ng-content></ng-content>',
2322
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2323
+ inputs: ['contentId', 'disabled', 'mode', 'theme', 'when'],
2324
+ }]
2325
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2326
+ let IonTab = class IonTab {
2327
+ z;
2328
+ el;
2329
+ constructor(c, r, z) {
2330
+ this.z = z;
2331
+ c.detach();
2332
+ this.el = r.nativeElement;
2333
+ }
2334
+ /** @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 });
2335
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, 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 });
2336
+ };
2337
+ IonTab = __decorate([
2338
+ ProxyCmp({
2339
+ inputs: ['component', 'mode', 'tab', 'theme'],
2340
+ methods: ['setActive']
2341
+ })
2342
+ ], IonTab);
2343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, decorators: [{
2344
+ type: Component,
2345
+ args: [{
2346
+ selector: 'ion-tab',
2347
+ changeDetection: ChangeDetectionStrategy.OnPush,
2348
+ template: '<ng-content></ng-content>',
2349
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2350
+ inputs: ['component', 'mode', 'tab', 'theme'],
2351
+ }]
2352
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2353
+ let IonTabBar = class IonTabBar {
2354
+ z;
2355
+ el;
2356
+ constructor(c, r, z) {
2357
+ this.z = z;
2358
+ c.detach();
2359
+ this.el = r.nativeElement;
2360
+ }
2361
+ /** @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 });
2362
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, selector: "ion-tab-bar", inputs: { color: "color", expand: "expand", mode: "mode", scrollEffect: "scrollEffect", selectedTab: "selectedTab", shape: "shape", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2363
+ };
2364
+ IonTabBar = __decorate([
2365
+ ProxyCmp({
2366
+ inputs: ['color', 'expand', 'mode', 'scrollEffect', 'selectedTab', 'shape', 'theme', 'translucent']
2367
+ })
2368
+ ], IonTabBar);
2369
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
2370
+ type: Component,
2371
+ args: [{
2372
+ selector: 'ion-tab-bar',
2373
+ changeDetection: ChangeDetectionStrategy.OnPush,
2374
+ template: '<ng-content></ng-content>',
2375
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2376
+ inputs: ['color', 'expand', 'mode', 'scrollEffect', 'selectedTab', 'shape', 'theme', 'translucent'],
2377
+ }]
2378
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2379
+ let IonTabButton = class IonTabButton {
2380
+ z;
2381
+ el;
2382
+ constructor(c, r, z) {
2383
+ this.z = z;
2384
+ c.detach();
2385
+ this.el = r.nativeElement;
2386
+ }
2387
+ /** @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 });
2388
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, 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 });
2389
+ };
2390
+ IonTabButton = __decorate([
2391
+ ProxyCmp({
2392
+ inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme']
2393
+ })
2394
+ ], IonTabButton);
2395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
2396
+ type: Component,
2397
+ args: [{
2398
+ selector: 'ion-tab-button',
2399
+ changeDetection: ChangeDetectionStrategy.OnPush,
2400
+ template: '<ng-content></ng-content>',
2401
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2402
+ inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme'],
2403
+ }]
2404
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2405
+ let IonText = class IonText {
2406
+ z;
2407
+ el;
2408
+ constructor(c, r, z) {
2409
+ this.z = z;
2410
+ c.detach();
2411
+ this.el = r.nativeElement;
2412
+ }
2413
+ /** @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 });
2414
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, selector: "ion-text", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2415
+ };
2416
+ IonText = __decorate([
2417
+ ProxyCmp({
2418
+ inputs: ['color', 'mode', 'theme']
2419
+ })
2420
+ ], IonText);
2421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
2422
+ type: Component,
2423
+ args: [{
2424
+ selector: 'ion-text',
2425
+ changeDetection: ChangeDetectionStrategy.OnPush,
2426
+ template: '<ng-content></ng-content>',
2427
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2428
+ inputs: ['color', 'mode', 'theme'],
2429
+ }]
2430
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2431
+ let IonTextarea = class IonTextarea {
2432
+ z;
2433
+ el;
2434
+ constructor(c, r, z) {
2435
+ this.z = z;
2436
+ c.detach();
2437
+ this.el = r.nativeElement;
2438
+ proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionBlur', 'ionFocus']);
2439
+ }
2440
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
2441
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTextarea, 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", size: "size", spellcheck: "spellcheck", theme: "theme", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2442
+ };
2443
+ IonTextarea = __decorate([
2444
+ ProxyCmp({
2445
+ inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
2446
+ methods: ['setFocus', 'getInputElement']
2447
+ })
2448
+ ], IonTextarea);
2449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, decorators: [{
2450
+ type: Component,
2451
+ args: [{
2452
+ selector: 'ion-textarea',
2453
+ changeDetection: ChangeDetectionStrategy.OnPush,
2454
+ template: '<ng-content></ng-content>',
2455
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2456
+ inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
2457
+ }]
2458
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2459
+ let IonThumbnail = class IonThumbnail {
2460
+ z;
2461
+ el;
2462
+ constructor(c, r, z) {
2463
+ this.z = z;
2464
+ c.detach();
2465
+ this.el = r.nativeElement;
2466
+ }
2467
+ /** @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 });
2468
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, selector: "ion-thumbnail", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2469
+ };
2470
+ IonThumbnail = __decorate([
2471
+ ProxyCmp({
2472
+ inputs: ['mode', 'theme']
2473
+ })
2474
+ ], IonThumbnail);
2475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
2476
+ type: Component,
2477
+ args: [{
2478
+ selector: 'ion-thumbnail',
2479
+ changeDetection: ChangeDetectionStrategy.OnPush,
2480
+ template: '<ng-content></ng-content>',
2481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2482
+ inputs: ['mode', 'theme'],
2483
+ }]
2484
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2485
+ let IonTitle = class IonTitle {
2486
+ z;
2487
+ el;
2488
+ constructor(c, r, z) {
2489
+ this.z = z;
2490
+ c.detach();
2491
+ this.el = r.nativeElement;
2492
+ }
2493
+ /** @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 });
2494
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, 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 });
2495
+ };
2496
+ IonTitle = __decorate([
2497
+ ProxyCmp({
2498
+ inputs: ['color', 'mode', 'size', 'theme']
2499
+ })
2500
+ ], IonTitle);
2501
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
2502
+ type: Component,
2503
+ args: [{
2504
+ selector: 'ion-title',
2505
+ changeDetection: ChangeDetectionStrategy.OnPush,
2506
+ template: '<ng-content></ng-content>',
2507
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2508
+ inputs: ['color', 'mode', 'size', 'theme'],
2509
+ }]
2510
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2511
+ let IonToast = class IonToast {
2512
+ z;
2513
+ el;
2514
+ constructor(c, r, z) {
2515
+ this.z = z;
2516
+ c.detach();
2517
+ this.el = r.nativeElement;
2518
+ proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
2519
+ }
2520
+ /** @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 });
2521
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, 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 });
2522
+ };
2523
+ IonToast = __decorate([
2524
+ ProxyCmp({
2525
+ inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
2526
+ methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
2527
+ })
2528
+ ], IonToast);
2529
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, decorators: [{
2530
+ type: Component,
2531
+ args: [{
2532
+ selector: 'ion-toast',
2533
+ changeDetection: ChangeDetectionStrategy.OnPush,
2534
+ template: '<ng-content></ng-content>',
2535
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2536
+ inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
2537
+ }]
2538
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2539
+ let IonToggle = class IonToggle {
2540
+ z;
2541
+ el;
2542
+ constructor(c, r, z) {
2543
+ this.z = z;
2544
+ c.detach();
2545
+ this.el = r.nativeElement;
2546
+ proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
2547
+ }
2548
+ /** @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 }], target: i0.ɵɵFactoryTarget.Component });
2549
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, selector: "ion-toggle", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2550
+ };
2551
+ IonToggle = __decorate([
2552
+ ProxyCmp({
2553
+ inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value']
2554
+ })
2555
+ ], IonToggle);
2556
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, decorators: [{
2557
+ type: Component,
2558
+ args: [{
2559
+ selector: 'ion-toggle',
2560
+ changeDetection: ChangeDetectionStrategy.OnPush,
2561
+ template: '<ng-content></ng-content>',
2562
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2563
+ inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value'],
2564
+ }]
2565
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2566
+ let IonToolbar = class IonToolbar {
2567
+ z;
2568
+ el;
2569
+ constructor(c, r, z) {
2570
+ this.z = z;
2571
+ c.detach();
2572
+ this.el = r.nativeElement;
2573
+ }
2574
+ /** @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 });
2575
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, 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 });
2576
+ };
2577
+ IonToolbar = __decorate([
2578
+ ProxyCmp({
2579
+ inputs: ['color', 'mode', 'theme', 'titlePlacement']
2580
+ })
2581
+ ], IonToolbar);
2582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
2583
+ type: Component,
2584
+ args: [{
2585
+ selector: 'ion-toolbar',
2586
+ changeDetection: ChangeDetectionStrategy.OnPush,
2587
+ template: '<ng-content></ng-content>',
2588
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2589
+ inputs: ['color', 'mode', 'theme', 'titlePlacement'],
2590
+ }]
2591
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2592
+
2593
+ class IonRouterOutlet extends IonRouterOutlet$1 {
2594
+ parentOutlet;
2595
+ /**
2596
+ * `static: true` must be set so the query results are resolved
2597
+ * before change detection runs. Otherwise, the view container
2598
+ * ref will be ion-router-outlet instead of ng-container, and
2599
+ * the first view will be added as a sibling of ion-router-outlet
2600
+ * instead of a child.
2601
+ */
2602
+ outletContent;
2603
+ /**
2604
+ * We need to pass in the correct instance of IonRouterOutlet
2605
+ * otherwise parentOutlet will be null in a nested outlet context.
2606
+ * This results in APIs such as NavController.pop not working
2607
+ * in nested outlets because the parent outlet cannot be found.
2608
+ */
2609
+ constructor(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet) {
2610
+ super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
2611
+ this.parentOutlet = parentOutlet;
2612
+ }
2613
+ /** @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 });
2614
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, 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 });
2615
+ }
2616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
2617
+ type: Component,
2618
+ args: [{
2619
+ selector: 'ion-router-outlet',
2620
+ template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
2621
+ }]
2622
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2623
+ type: Attribute,
2624
+ args: ['name']
2625
+ }] }, { type: undefined, decorators: [{
2626
+ type: Optional
2627
+ }, {
2628
+ type: Attribute,
2629
+ args: ['tabs']
2630
+ }] }, { type: i1.Location }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.NgZone }, { type: i2.ActivatedRoute }, { type: IonRouterOutlet, decorators: [{
2631
+ type: SkipSelf
2632
+ }, {
2633
+ type: Optional
2634
+ }] }]; }, propDecorators: { outletContent: [{
2635
+ type: ViewChild,
2636
+ args: ['outletContent', { read: ViewContainerRef, static: true }]
2637
+ }] } });
2638
+
2639
+ class IonTabs extends IonTabs$1 {
2640
+ outlet;
2641
+ tabBar;
2642
+ tabBars;
2643
+ tabs;
2644
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
2645
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, 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: `
2646
+ <ng-content select="[slot=top]"></ng-content>
2647
+ <div class="tabs-inner" #tabsInner>
2648
+ <ion-router-outlet
2649
+ *ngIf="tabs.length === 0"
2650
+ #outlet
2651
+ tabs="true"
2652
+ (stackWillChange)="onStackWillChange($event)"
2653
+ (stackDidChange)="onStackDidChange($event)"
2654
+ ></ion-router-outlet>
2655
+ <ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
2656
+ </div>
2657
+ <ng-content></ng-content>
2658
+ `, 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: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }] });
2659
+ }
2660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
2661
+ type: Component,
2662
+ args: [{ selector: 'ion-tabs', template: `
2663
+ <ng-content select="[slot=top]"></ng-content>
2664
+ <div class="tabs-inner" #tabsInner>
2665
+ <ion-router-outlet
2666
+ *ngIf="tabs.length === 0"
2667
+ #outlet
2668
+ tabs="true"
2669
+ (stackWillChange)="onStackWillChange($event)"
2670
+ (stackDidChange)="onStackDidChange($event)"
2671
+ ></ion-router-outlet>
2672
+ <ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
2673
+ </div>
2674
+ <ng-content></ng-content>
2675
+ `, 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"] }]
2676
+ }], propDecorators: { outlet: [{
2677
+ type: ViewChild,
2678
+ args: ['outlet', { read: IonRouterOutlet, static: false }]
2679
+ }], tabBar: [{
2680
+ type: ContentChild,
2681
+ args: [IonTabBar, { static: false }]
2682
+ }], tabBars: [{
2683
+ type: ContentChildren,
2684
+ args: [IonTabBar]
2685
+ }], tabs: [{
2686
+ type: ContentChildren,
2687
+ args: [IonTab]
2688
+ }] } });
2689
+
2690
+ class IonBackButton extends IonBackButton$1 {
2691
+ constructor(routerOutlet, navCtrl, config, r, z, c) {
2692
+ super(routerOutlet, navCtrl, config, r, z, c);
2693
+ }
2694
+ /** @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 });
2695
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2696
+ }
2697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
2698
+ type: Component,
2699
+ args: [{
2700
+ selector: 'ion-back-button',
2701
+ template: '<ng-content></ng-content>',
2702
+ changeDetection: ChangeDetectionStrategy.OnPush,
2703
+ }]
2704
+ }], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
2705
+ type: Optional
2706
+ }] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
2707
+
2708
+ class IonNav extends IonNav$1 {
2709
+ constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
2710
+ super(ref, environmentInjector, injector, angularDelegate, z, c);
2711
+ }
2712
+ /** @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 });
2713
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2714
+ }
2715
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
2716
+ type: Component,
2717
+ args: [{
2718
+ selector: 'ion-nav',
2719
+ template: '<ng-content></ng-content>',
2720
+ changeDetection: ChangeDetectionStrategy.OnPush,
2721
+ }]
2722
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
2723
+
2724
+ /**
2725
+ * Adds support for Ionic routing directions and animations to the base Angular router link directive.
2726
+ *
2727
+ * When the router link is clicked, the directive will assign the direction and
2728
+ * animation so that the routing integration will transition correctly.
2729
+ */
2730
+ class RouterLinkDelegateDirective extends RouterLinkDelegateDirective$1 {
2731
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2732
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkDelegateDirective, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
2733
+ }
2734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
2735
+ type: Directive,
2736
+ args: [{
2737
+ selector: ':not(a):not(area)[routerLink]',
2738
+ }]
2739
+ }] });
2740
+ class RouterLinkWithHrefDelegateDirective extends RouterLinkWithHrefDelegateDirective$1 {
2741
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2742
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkWithHrefDelegateDirective, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
2743
+ }
2744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
2745
+ type: Directive,
2746
+ args: [{
2747
+ selector: 'a[routerLink],area[routerLink]',
2748
+ }]
2749
+ }] });
2750
+
2751
+ class IonModal extends IonModal$1 {
2752
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
2753
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
2754
+ <ng-container [ngTemplateOutlet]="template"></ng-container>
2755
+ </div>`, isInline: true, dependencies: [{ 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 });
2756
+ }
2757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
2758
+ type: Component,
2759
+ args: [{
2760
+ selector: 'ion-modal',
2761
+ changeDetection: ChangeDetectionStrategy.OnPush,
2762
+ template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
2763
+ <ng-container [ngTemplateOutlet]="template"></ng-container>
2764
+ </div>`,
2765
+ }]
2766
+ }] });
2767
+
2768
+ class IonPopover extends IonPopover$1 {
2769
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
2770
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ 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 });
2771
+ }
2772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
2773
+ type: Component,
2774
+ args: [{
2775
+ selector: 'ion-popover',
2776
+ changeDetection: ChangeDetectionStrategy.OnPush,
2777
+ template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`,
2778
+ }]
2779
+ }] });
2780
+
2781
+ /**
2782
+ * @description
2783
+ * Provider which adds `MaxValidator` to the `NG_VALIDATORS` multi-provider list.
2784
+ */
2785
+ const ION_MAX_VALIDATOR = {
2786
+ provide: NG_VALIDATORS,
2787
+ useExisting: forwardRef(() => IonMaxValidator),
2788
+ multi: true,
2789
+ };
2790
+ class IonMaxValidator extends MaxValidator {
2791
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2792
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMaxValidator, selector: "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", host: { properties: { "attr.max": "_enabled ? max : null" } }, providers: [ION_MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
2793
+ }
2794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, decorators: [{
2795
+ type: Directive,
2796
+ args: [{
2797
+ selector: 'ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]',
2798
+ providers: [ION_MAX_VALIDATOR],
2799
+ // eslint-disable-next-line @angular-eslint/no-host-metadata-property
2800
+ host: { '[attr.max]': '_enabled ? max : null' },
2801
+ }]
2802
+ }] });
2803
+
2804
+ /**
2805
+ * @description
2806
+ * Provider which adds `MinValidator` to the `NG_VALIDATORS` multi-provider list.
2807
+ */
2808
+ const ION_MIN_VALIDATOR = {
2809
+ provide: NG_VALIDATORS,
2810
+ useExisting: forwardRef(() => IonMinValidator),
2811
+ multi: true,
2812
+ };
2813
+ class IonMinValidator extends MinValidator {
2814
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
2815
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMinValidator, selector: "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", host: { properties: { "attr.min": "_enabled ? min : null" } }, providers: [ION_MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
2816
+ }
2817
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, decorators: [{
2818
+ type: Directive,
2819
+ args: [{
2820
+ selector: 'ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]',
2821
+ providers: [ION_MIN_VALIDATOR],
2822
+ // eslint-disable-next-line @angular-eslint/no-host-metadata-property
2823
+ host: { '[attr.min]': '_enabled ? min : null' },
2824
+ }]
2825
+ }] });
2826
+
2827
+ class AlertController extends OverlayBaseController {
2828
+ constructor() {
2829
+ super(alertController);
2830
+ }
2831
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2832
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, providedIn: 'root' });
2833
+ }
2834
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, decorators: [{
2835
+ type: Injectable,
2836
+ args: [{
2837
+ providedIn: 'root',
2838
+ }]
2839
+ }], ctorParameters: function () { return []; } });
2840
+
2841
+ class AnimationController {
2842
+ /**
2843
+ * Create a new animation
2844
+ */
2845
+ create(animationId) {
2846
+ return createAnimation(animationId);
2847
+ }
2848
+ /**
2849
+ * EXPERIMENTAL
2850
+ *
2851
+ * Given a progression and a cubic bezier function,
2852
+ * this utility returns the time value(s) at which the
2853
+ * cubic bezier reaches the given time progression.
2854
+ *
2855
+ * If the cubic bezier never reaches the progression
2856
+ * the result will be an empty array.
2857
+ *
2858
+ * This is most useful for switching between easing curves
2859
+ * when doing a gesture animation (i.e. going from linear easing
2860
+ * during a drag, to another easing when `progressEnd` is called)
2861
+ */
2862
+ easingTime(p0, p1, p2, p3, progression) {
2863
+ return getTimeGivenProgression(p0, p1, p2, p3, progression);
2864
+ }
2865
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2866
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, providedIn: 'root' });
2867
+ }
2868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, decorators: [{
2869
+ type: Injectable,
2870
+ args: [{
2871
+ providedIn: 'root',
2872
+ }]
2873
+ }] });
2874
+
2875
+ class ActionSheetController extends OverlayBaseController {
2876
+ constructor() {
2877
+ super(actionSheetController);
2878
+ }
2879
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2880
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
2881
+ }
2882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, decorators: [{
2883
+ type: Injectable,
2884
+ args: [{
2885
+ providedIn: 'root',
2886
+ }]
2887
+ }], ctorParameters: function () { return []; } });
2888
+
2889
+ class GestureController {
2890
+ zone;
2891
+ constructor(zone) {
2892
+ this.zone = zone;
2893
+ }
2894
+ /**
2895
+ * Create a new gesture
2896
+ */
2897
+ create(opts, runInsideAngularZone = false) {
2898
+ if (runInsideAngularZone) {
2899
+ Object.getOwnPropertyNames(opts).forEach((key) => {
2900
+ if (typeof opts[key] === 'function') {
2901
+ const fn = opts[key];
2902
+ opts[key] = (...props) => this.zone.run(() => fn(...props));
2903
+ }
2904
+ });
2905
+ }
2906
+ return createGesture(opts);
2907
+ }
2908
+ /** @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 });
2909
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, providedIn: 'root' });
2910
+ }
2911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, decorators: [{
2912
+ type: Injectable,
2913
+ args: [{
2914
+ providedIn: 'root',
2915
+ }]
2916
+ }], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
2917
+
2918
+ class LoadingController extends OverlayBaseController {
2919
+ constructor() {
2920
+ super(loadingController);
2921
+ }
2922
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2923
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, providedIn: 'root' });
2924
+ }
2925
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, decorators: [{
2926
+ type: Injectable,
2927
+ args: [{
2928
+ providedIn: 'root',
2929
+ }]
2930
+ }], ctorParameters: function () { return []; } });
2931
+
2932
+ class MenuController extends MenuController$1 {
2933
+ constructor() {
2934
+ super(menuController);
2935
+ }
2936
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2937
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, providedIn: 'root' });
2938
+ }
2939
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, decorators: [{
2940
+ type: Injectable,
2941
+ args: [{
2942
+ providedIn: 'root',
2943
+ }]
2944
+ }], ctorParameters: function () { return []; } });
2945
+
2946
+ class ModalController extends OverlayBaseController {
2947
+ angularDelegate = inject(AngularDelegate);
2948
+ injector = inject(Injector);
2949
+ environmentInjector = inject(EnvironmentInjector);
2950
+ constructor() {
2951
+ super(modalController);
2952
+ }
2953
+ create(opts) {
2954
+ const { injector: customInjector, ...restOpts } = opts;
2955
+ return super.create({
2956
+ ...restOpts,
2957
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
2958
+ });
2959
+ }
2960
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2961
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
2962
+ }
2963
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
2964
+ type: Injectable
2965
+ }], ctorParameters: function () { return []; } });
2966
+
2967
+ /**
2968
+ * @deprecated Use the inline ion-picker component instead.
2969
+ */
2970
+ class PickerController extends OverlayBaseController {
2971
+ constructor() {
2972
+ super(pickerController);
2973
+ }
2974
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2975
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
2976
+ }
2977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
2978
+ type: Injectable,
2979
+ args: [{
2980
+ providedIn: 'root',
2981
+ }]
2982
+ }], ctorParameters: function () { return []; } });
2983
+
2984
+ class PopoverController extends OverlayBaseController {
2985
+ angularDelegate = inject(AngularDelegate);
2986
+ injector = inject(Injector);
2987
+ environmentInjector = inject(EnvironmentInjector);
2988
+ constructor() {
2989
+ super(popoverController);
2990
+ }
2991
+ create(opts) {
2992
+ const { injector: customInjector, ...restOpts } = opts;
2993
+ return super.create({
2994
+ ...restOpts,
2995
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
2996
+ });
2997
+ }
2998
+ }
2999
+
3000
+ class ToastController extends OverlayBaseController {
3001
+ constructor() {
3002
+ super(toastController);
3003
+ }
3004
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3005
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
3006
+ }
3007
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
3008
+ type: Injectable,
3009
+ args: [{
3010
+ providedIn: 'root',
3011
+ }]
3012
+ }], ctorParameters: function () { return []; } });
3013
+
3014
+ // TODO(FW-2827): types
3015
+ const appInitialize = (config, doc, zone) => {
3016
+ return () => {
3017
+ const win = doc.defaultView;
3018
+ if (win && typeof window !== 'undefined') {
3019
+ setupConfig({
3020
+ ...config,
3021
+ _zoneGate: (h) => zone.run(h),
3022
+ });
3023
+ const aelFn = '__zone_symbol__addEventListener' in doc.body ? '__zone_symbol__addEventListener' : 'addEventListener';
3024
+ return defineCustomElements(win, {
3025
+ exclude: ['ion-tabs'],
3026
+ syncQueue: true,
3027
+ raf,
3028
+ jmp: (h) => zone.runOutsideAngular(h),
3029
+ ael(elm, eventName, cb, opts) {
3030
+ elm[aelFn](eventName, cb, opts);
3031
+ },
3032
+ rel(elm, eventName, cb, opts) {
3033
+ elm.removeEventListener(eventName, cb, opts);
3034
+ },
3035
+ });
3036
+ }
3037
+ };
3038
+ };
3039
+
3040
+ const DIRECTIVES = [
3041
+ IonAccordion,
3042
+ IonAccordionGroup,
3043
+ IonActionSheet,
3044
+ IonAlert,
3045
+ IonApp,
3046
+ IonAvatar,
3047
+ IonBackdrop,
3048
+ IonBadge,
3049
+ IonBreadcrumb,
3050
+ IonBreadcrumbs,
3051
+ IonButton,
3052
+ IonButtons,
3053
+ IonCard,
3054
+ IonCardContent,
3055
+ IonCardHeader,
3056
+ IonCardSubtitle,
3057
+ IonCardTitle,
3058
+ IonCheckbox,
3059
+ IonChip,
3060
+ IonCol,
3061
+ IonContent,
3062
+ IonDatetime,
3063
+ IonDatetimeButton,
3064
+ IonDivider,
3065
+ IonFab,
3066
+ IonFabButton,
3067
+ IonFabList,
3068
+ IonFooter,
3069
+ IonGallery,
3070
+ IonGalleryItem,
3071
+ IonGrid,
3072
+ IonHeader,
3073
+ IonIcon,
3074
+ IonImg,
3075
+ IonInfiniteScroll,
3076
+ IonInfiniteScrollContent,
3077
+ IonInput,
3078
+ IonInputOtp,
3079
+ IonInputPasswordToggle,
3080
+ IonItem,
3081
+ IonItemDivider,
3082
+ IonItemGroup,
3083
+ IonItemOption,
3084
+ IonItemOptions,
3085
+ IonItemSliding,
3086
+ IonLabel,
3087
+ IonList,
3088
+ IonListHeader,
3089
+ IonLoading,
3090
+ IonMenu,
3091
+ IonMenuButton,
3092
+ IonMenuToggle,
3093
+ IonNavLink,
3094
+ IonNote,
3095
+ IonPicker,
3096
+ IonPickerColumn,
3097
+ IonPickerColumnOption,
3098
+ IonPickerLegacy,
3099
+ IonProgressBar,
3100
+ IonRadio,
3101
+ IonRadioGroup,
3102
+ IonRange,
3103
+ IonRefresher,
3104
+ IonRefresherContent,
3105
+ IonReorder,
3106
+ IonReorderGroup,
3107
+ IonRippleEffect,
3108
+ IonRow,
3109
+ IonSearchbar,
3110
+ IonSegment,
3111
+ IonSegmentButton,
3112
+ IonSegmentContent,
3113
+ IonSegmentView,
3114
+ IonSelect,
3115
+ IonSelectModal,
3116
+ IonSelectOption,
3117
+ IonSkeletonText,
3118
+ IonSpinner,
3119
+ IonSplitPane,
3120
+ IonTab,
3121
+ IonTabBar,
3122
+ IonTabButton,
3123
+ IonText,
3124
+ IonTextarea,
3125
+ IonThumbnail,
3126
+ IonTitle,
3127
+ IonToast,
3128
+ IonToggle,
3129
+ IonToolbar
3130
+ ];
3131
+
3132
+ const DECLARATIONS = [
3133
+ // generated proxies
3134
+ ...DIRECTIVES,
3135
+ // manual proxies
3136
+ IonModal,
3137
+ IonPopover,
3138
+ // ngModel accessors
3139
+ BooleanValueAccessorDirective,
3140
+ NumericValueAccessorDirective,
3141
+ SelectValueAccessorDirective,
3142
+ TextValueAccessorDirective,
3143
+ // navigation
3144
+ IonTabs,
3145
+ IonRouterOutlet,
3146
+ IonBackButton,
3147
+ IonNav,
3148
+ RouterLinkDelegateDirective,
3149
+ RouterLinkWithHrefDelegateDirective,
3150
+ // validators
3151
+ IonMinValidator,
3152
+ IonMaxValidator,
3153
+ ];
3154
+ class IonicModule {
3155
+ static forRoot(config = {}) {
3156
+ return {
3157
+ ngModule: IonicModule,
3158
+ providers: [
3159
+ {
3160
+ provide: ConfigToken,
3161
+ useValue: config,
3162
+ },
3163
+ {
3164
+ provide: APP_INITIALIZER,
3165
+ useFactory: appInitialize,
3166
+ multi: true,
3167
+ deps: [ConfigToken, DOCUMENT, NgZone],
3168
+ },
3169
+ AngularDelegate,
3170
+ provideComponentInputBinding(),
3171
+ ],
3172
+ };
3173
+ }
3174
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3175
+ /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, declarations: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
3176
+ // manual proxies
3177
+ IonModal,
3178
+ IonPopover,
3179
+ // ngModel accessors
3180
+ BooleanValueAccessorDirective,
3181
+ NumericValueAccessorDirective,
3182
+ SelectValueAccessorDirective,
3183
+ TextValueAccessorDirective,
3184
+ // navigation
3185
+ IonTabs,
3186
+ IonRouterOutlet,
3187
+ IonBackButton,
3188
+ IonNav,
3189
+ RouterLinkDelegateDirective,
3190
+ RouterLinkWithHrefDelegateDirective,
3191
+ // validators
3192
+ IonMinValidator,
3193
+ IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
3194
+ // manual proxies
3195
+ IonModal,
3196
+ IonPopover,
3197
+ // ngModel accessors
3198
+ BooleanValueAccessorDirective,
3199
+ NumericValueAccessorDirective,
3200
+ SelectValueAccessorDirective,
3201
+ TextValueAccessorDirective,
3202
+ // navigation
3203
+ IonTabs,
3204
+ IonRouterOutlet,
3205
+ IonBackButton,
3206
+ IonNav,
3207
+ RouterLinkDelegateDirective,
3208
+ RouterLinkWithHrefDelegateDirective,
3209
+ // validators
3210
+ IonMinValidator,
3211
+ IonMaxValidator] });
3212
+ /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
3213
+ }
3214
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, decorators: [{
3215
+ type: NgModule,
3216
+ args: [{
3217
+ declarations: DECLARATIONS,
3218
+ exports: DECLARATIONS,
3219
+ providers: [ModalController, PopoverController],
3220
+ imports: [CommonModule],
3221
+ }]
3222
+ }] });
3223
+
3224
+ // DIRECTIVES
3225
+
3226
+ /**
3227
+ * Generated bundle index. Do not edit.
3228
+ */
3229
+
3230
+ export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PickerController, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
3231
+ //# sourceMappingURL=ionic-angular.mjs.map