@ionic/angular 8.8.19-dev.11787076261.138d5922 → 8.8.19-dev.11787084784.17cf25cf

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