@ionic/angular 8.8.19 → 8.8.20-dev.11787158518.168a2fea

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