@ionic/angular 8.8.19-dev.11787076261.138d5922 → 8.8.19-dev.11787083540.1511caf2

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