@ionic/angular 8.8.20-dev.11787158518.168a2fea → 8.8.20-dev.11788449221.155f9f1e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (646) hide show
  1. package/README.md +7 -9
  2. package/{dist/common → common}/directives/control-value-accessors/value-accessor.d.ts +1 -1
  3. package/{dist/common → common}/directives/navigation/back-button.d.ts +1 -1
  4. package/{dist/common → common}/directives/navigation/nav.d.ts +1 -1
  5. package/{dist/common → common}/directives/navigation/router-link-delegate.d.ts +2 -2
  6. package/{dist/common → common}/directives/navigation/router-outlet.d.ts +1 -1
  7. package/{dist/common → common}/directives/navigation/tabs.d.ts +1 -9
  8. package/{dist/common → common}/index.d.ts +1 -1
  9. package/{dist/common → common}/overlays/modal.d.ts +1 -1
  10. package/{dist/common → common}/overlays/popover.d.ts +1 -1
  11. package/{dist/common → common}/providers/angular-delegate.d.ts +2 -2
  12. package/css/core.css +1 -1
  13. package/css/core.css.map +1 -1
  14. package/css/display.css +1 -1
  15. package/css/display.css.map +1 -1
  16. package/css/flex-utils.css +1 -1
  17. package/css/flex-utils.css.map +1 -1
  18. package/css/float-elements.css.map +1 -1
  19. package/css/global.bundle.css.map +1 -1
  20. package/css/ionic/bundle.ionic.css +1 -0
  21. package/css/ionic/bundle.ionic.css.map +1 -0
  22. package/css/ionic/core.ionic.css +1 -0
  23. package/css/ionic/core.ionic.css.map +1 -0
  24. package/css/ionic/global.bundle.ionic.css +1 -0
  25. package/css/ionic/global.bundle.ionic.css.map +1 -0
  26. package/css/ionic/ionic-swiper.ionic.css +1 -0
  27. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  28. package/css/ionic/link.ionic.css +1 -0
  29. package/css/ionic/link.ionic.css.map +1 -0
  30. package/css/ionic/structure.ionic.css +1 -0
  31. package/css/ionic/structure.ionic.css.map +1 -0
  32. package/css/ionic/typography.ionic.css +1 -0
  33. package/css/ionic/typography.ionic.css.map +1 -0
  34. package/css/ionic/utils.bundle.ionic.css +1 -0
  35. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  36. package/css/ionic-swiper.css +1 -1
  37. package/css/ionic-swiper.css.map +1 -1
  38. package/css/ionic.bundle.css +1 -1
  39. package/css/ionic.bundle.css.map +1 -1
  40. package/css/normalize.css.map +1 -1
  41. package/css/padding.css.map +1 -1
  42. package/css/palettes/dark.always.css.map +1 -1
  43. package/css/palettes/dark.class.css.map +1 -1
  44. package/css/palettes/dark.system.css.map +1 -1
  45. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  46. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  47. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  48. package/css/palettes/high-contrast.always.css.map +1 -1
  49. package/css/palettes/high-contrast.class.css.map +1 -1
  50. package/css/palettes/high-contrast.system.css.map +1 -1
  51. package/css/structure.css.map +1 -1
  52. package/css/text-alignment.css.map +1 -1
  53. package/css/text-transformation.css.map +1 -1
  54. package/css/typography.css.map +1 -1
  55. package/css/utils.bundle.css +1 -1
  56. package/css/utils.bundle.css.map +1 -1
  57. package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
  58. package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
  59. package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
  60. package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
  61. package/directives/proxies-list.d.ts +2 -0
  62. package/{dist/lazy/directives → directives}/proxies.d.ts +269 -340
  63. package/esm2022/app-initialize.mjs +29 -0
  64. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  65. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  66. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  67. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  68. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  69. package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
  70. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  71. package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
  72. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  73. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  74. package/esm2022/common/index.mjs +20 -0
  75. package/esm2022/common/ionic-angular-common.mjs +5 -0
  76. package/esm2022/common/overlays/modal.mjs +103 -0
  77. package/esm2022/common/overlays/popover.mjs +91 -0
  78. package/esm2022/common/providers/angular-delegate.mjs +210 -0
  79. package/esm2022/common/providers/config.mjs +45 -0
  80. package/esm2022/common/providers/dom-controller.mjs +45 -0
  81. package/esm2022/common/providers/menu-controller.mjs +114 -0
  82. package/esm2022/common/providers/nav-controller.mjs +235 -0
  83. package/esm2022/common/providers/platform.mjs +258 -0
  84. package/esm2022/common/types/interfaces.mjs +2 -0
  85. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  86. package/esm2022/common/types/overlay-options.mjs +2 -0
  87. package/esm2022/common/utils/overlay.mjs +26 -0
  88. package/esm2022/common/utils/proxy.mjs +47 -0
  89. package/esm2022/common/utils/routing.mjs +55 -0
  90. package/esm2022/common/utils/util.mjs +10 -0
  91. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  92. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  93. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  94. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  95. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  96. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  97. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  98. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  99. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  100. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  101. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  102. package/esm2022/directives/overlays/modal.mjs +22 -0
  103. package/esm2022/directives/overlays/popover.mjs +18 -0
  104. package/esm2022/directives/proxies-list.mjs +93 -0
  105. package/esm2022/directives/proxies.mjs +2465 -0
  106. package/esm2022/directives/validators/index.mjs +3 -0
  107. package/esm2022/directives/validators/max-validator.mjs +27 -0
  108. package/esm2022/directives/validators/min-validator.mjs +27 -0
  109. package/esm2022/index.mjs +32 -0
  110. package/esm2022/ionic-angular.mjs +5 -0
  111. package/esm2022/ionic-module.mjs +111 -0
  112. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  113. package/esm2022/providers/alert-controller.mjs +19 -0
  114. package/esm2022/providers/animation-controller.mjs +38 -0
  115. package/esm2022/providers/gesture-controller.mjs +33 -0
  116. package/esm2022/providers/loading-controller.mjs +19 -0
  117. package/esm2022/providers/menu-controller.mjs +19 -0
  118. package/esm2022/providers/modal-controller.mjs +26 -0
  119. package/esm2022/providers/picker-controller.mjs +22 -0
  120. package/esm2022/providers/popover-controller.mjs +19 -0
  121. package/esm2022/providers/toast-controller.mjs +19 -0
  122. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  123. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  124. package/esm2022/standalone/directives/datetime.mjs +95 -0
  125. package/esm2022/standalone/directives/icon.mjs +35 -0
  126. package/esm2022/standalone/directives/index.mjs +13 -0
  127. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  128. package/esm2022/standalone/directives/input.mjs +113 -0
  129. package/esm2022/standalone/directives/proxies.mjs +2356 -0
  130. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  131. package/esm2022/standalone/directives/range.mjs +78 -0
  132. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  133. package/esm2022/standalone/directives/segment.mjs +60 -0
  134. package/esm2022/standalone/directives/select.mjs +84 -0
  135. package/esm2022/standalone/directives/textarea.mjs +91 -0
  136. package/esm2022/standalone/directives/toggle.mjs +76 -0
  137. package/esm2022/standalone/index.mjs +25 -0
  138. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  139. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  140. package/esm2022/standalone/navigation/nav.mjs +28 -0
  141. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  142. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  143. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  144. package/esm2022/standalone/overlays/modal.mjs +32 -0
  145. package/esm2022/standalone/overlays/popover.mjs +28 -0
  146. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  147. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  148. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  149. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  150. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  151. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  152. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  153. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  154. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  155. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  156. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  157. package/fesm2022/ionic-angular-common.mjs +2791 -0
  158. package/fesm2022/ionic-angular-common.mjs.map +1 -0
  159. package/fesm2022/ionic-angular-standalone.mjs +3655 -0
  160. package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
  161. package/fesm2022/ionic-angular.mjs +3231 -0
  162. package/fesm2022/ionic-angular.mjs.map +1 -0
  163. package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
  164. package/ionic-module.d.ts +28 -0
  165. package/package.json +30 -172
  166. package/providers/picker-controller.d.ts +11 -0
  167. package/{dist/schematics → schematics}/add/index.js +6 -6
  168. package/schematics/utils/ast.js +32 -0
  169. package/{dist/schematics → schematics}/utils/config.js +11 -10
  170. package/{dist/schematics → schematics}/utils/package.js +4 -6
  171. package/standalone/directives/proxies.d.ts +1062 -0
  172. package/{dist/standalone → standalone}/index.d.ts +2 -1
  173. package/standalone/providers/picker-controller.d.ts +11 -0
  174. package/dist/common/directives/control-value-accessors/index.js +0 -2
  175. package/dist/common/directives/control-value-accessors/index.js.map +0 -1
  176. package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
  177. package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
  178. package/dist/common/directives/navigation/back-button.js +0 -61
  179. package/dist/common/directives/navigation/back-button.js.map +0 -1
  180. package/dist/common/directives/navigation/nav-params.js +0 -47
  181. package/dist/common/directives/navigation/nav-params.js.map +0 -1
  182. package/dist/common/directives/navigation/nav.js +0 -49
  183. package/dist/common/directives/navigation/nav.js.map +0 -1
  184. package/dist/common/directives/navigation/router-link-delegate.js +0 -188
  185. package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
  186. package/dist/common/directives/navigation/router-outlet.js +0 -476
  187. package/dist/common/directives/navigation/router-outlet.js.map +0 -1
  188. package/dist/common/directives/navigation/stack-controller.js +0 -282
  189. package/dist/common/directives/navigation/stack-controller.js.map +0 -1
  190. package/dist/common/directives/navigation/stack-utils.js +0 -73
  191. package/dist/common/directives/navigation/stack-utils.js.map +0 -1
  192. package/dist/common/directives/navigation/tabs.js +0 -290
  193. package/dist/common/directives/navigation/tabs.js.map +0 -1
  194. package/dist/common/index.js +0 -20
  195. package/dist/common/index.js.map +0 -1
  196. package/dist/common/overlays/modal.js +0 -96
  197. package/dist/common/overlays/modal.js.map +0 -1
  198. package/dist/common/overlays/popover.js +0 -84
  199. package/dist/common/overlays/popover.js.map +0 -1
  200. package/dist/common/providers/angular-delegate.js +0 -229
  201. package/dist/common/providers/angular-delegate.js.map +0 -1
  202. package/dist/common/providers/config.js +0 -44
  203. package/dist/common/providers/config.js.map +0 -1
  204. package/dist/common/providers/dom-controller.js +0 -44
  205. package/dist/common/providers/dom-controller.js.map +0 -1
  206. package/dist/common/providers/menu-controller.js +0 -114
  207. package/dist/common/providers/menu-controller.js.map +0 -1
  208. package/dist/common/providers/nav-controller.js +0 -232
  209. package/dist/common/providers/nav-controller.js.map +0 -1
  210. package/dist/common/providers/platform.js +0 -256
  211. package/dist/common/providers/platform.js.map +0 -1
  212. package/dist/common/types/interfaces.js +0 -2
  213. package/dist/common/types/interfaces.js.map +0 -1
  214. package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
  215. package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
  216. package/dist/common/types/overlay-options.js +0 -2
  217. package/dist/common/types/overlay-options.js.map +0 -1
  218. package/dist/common/utils/overlay.js +0 -26
  219. package/dist/common/utils/overlay.js.map +0 -1
  220. package/dist/common/utils/proxy.js +0 -47
  221. package/dist/common/utils/proxy.js.map +0 -1
  222. package/dist/common/utils/routing.js +0 -55
  223. package/dist/common/utils/routing.js.map +0 -1
  224. package/dist/common/utils/util.js +0 -10
  225. package/dist/common/utils/util.js.map +0 -1
  226. package/dist/lazy/app-initialize.js +0 -29
  227. package/dist/lazy/app-initialize.js.map +0 -1
  228. package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
  229. package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
  230. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
  231. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
  232. package/dist/lazy/directives/control-value-accessors/index.js +0 -5
  233. package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
  234. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
  235. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
  236. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
  237. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
  238. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
  239. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
  240. package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
  241. package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
  242. package/dist/lazy/directives/navigation/ion-nav.js +0 -21
  243. package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
  244. package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
  245. package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
  246. package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
  247. package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
  248. package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
  249. package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
  250. package/dist/lazy/directives/overlays/modal.js +0 -22
  251. package/dist/lazy/directives/overlays/modal.js.map +0 -1
  252. package/dist/lazy/directives/overlays/popover.js +0 -18
  253. package/dist/lazy/directives/overlays/popover.js.map +0 -1
  254. package/dist/lazy/directives/proxies-list.d.ts +0 -2
  255. package/dist/lazy/directives/proxies-list.js +0 -89
  256. package/dist/lazy/directives/proxies-list.js.map +0 -1
  257. package/dist/lazy/directives/proxies.js +0 -2759
  258. package/dist/lazy/directives/proxies.js.map +0 -1
  259. package/dist/lazy/directives/validators/index.js +0 -3
  260. package/dist/lazy/directives/validators/index.js.map +0 -1
  261. package/dist/lazy/directives/validators/max-validator.js +0 -26
  262. package/dist/lazy/directives/validators/max-validator.js.map +0 -1
  263. package/dist/lazy/directives/validators/min-validator.js +0 -26
  264. package/dist/lazy/directives/validators/min-validator.js.map +0 -1
  265. package/dist/lazy/index.js +0 -34
  266. package/dist/lazy/index.js.map +0 -1
  267. package/dist/lazy/ionic-module.d.ts +0 -38
  268. package/dist/lazy/ionic-module.js +0 -121
  269. package/dist/lazy/ionic-module.js.map +0 -1
  270. package/dist/lazy/providers/action-sheet-controller.js +0 -18
  271. package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
  272. package/dist/lazy/providers/alert-controller.js +0 -18
  273. package/dist/lazy/providers/alert-controller.js.map +0 -1
  274. package/dist/lazy/providers/animation-controller.js +0 -37
  275. package/dist/lazy/providers/animation-controller.js.map +0 -1
  276. package/dist/lazy/providers/gesture-controller.js +0 -32
  277. package/dist/lazy/providers/gesture-controller.js.map +0 -1
  278. package/dist/lazy/providers/loading-controller.js +0 -18
  279. package/dist/lazy/providers/loading-controller.js.map +0 -1
  280. package/dist/lazy/providers/menu-controller.js +0 -18
  281. package/dist/lazy/providers/menu-controller.js.map +0 -1
  282. package/dist/lazy/providers/modal-controller.js +0 -25
  283. package/dist/lazy/providers/modal-controller.js.map +0 -1
  284. package/dist/lazy/providers/popover-controller.js +0 -19
  285. package/dist/lazy/providers/popover-controller.js.map +0 -1
  286. package/dist/lazy/providers/toast-controller.js +0 -18
  287. package/dist/lazy/providers/toast-controller.js.map +0 -1
  288. package/dist/schematics/utils/ast.js +0 -64
  289. package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
  290. package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
  291. package/dist/standalone/directives/checkbox.js +0 -75
  292. package/dist/standalone/directives/checkbox.js.map +0 -1
  293. package/dist/standalone/directives/datetime.js +0 -93
  294. package/dist/standalone/directives/datetime.js.map +0 -1
  295. package/dist/standalone/directives/icon.js +0 -35
  296. package/dist/standalone/directives/icon.js.map +0 -1
  297. package/dist/standalone/directives/index.js +0 -13
  298. package/dist/standalone/directives/index.js.map +0 -1
  299. package/dist/standalone/directives/input-otp.js +0 -89
  300. package/dist/standalone/directives/input-otp.js.map +0 -1
  301. package/dist/standalone/directives/input.js +0 -112
  302. package/dist/standalone/directives/input.js.map +0 -1
  303. package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
  304. package/dist/standalone/directives/ion-accordion-group.js +0 -40
  305. package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
  306. package/dist/standalone/directives/ion-accordion.d.ts +0 -12
  307. package/dist/standalone/directives/ion-accordion.js +0 -36
  308. package/dist/standalone/directives/ion-accordion.js.map +0 -1
  309. package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
  310. package/dist/standalone/directives/ion-action-sheet.js +0 -62
  311. package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
  312. package/dist/standalone/directives/ion-alert.d.ts +0 -58
  313. package/dist/standalone/directives/ion-alert.js +0 -62
  314. package/dist/standalone/directives/ion-alert.js.map +0 -1
  315. package/dist/standalone/directives/ion-app.d.ts +0 -12
  316. package/dist/standalone/directives/ion-app.js +0 -36
  317. package/dist/standalone/directives/ion-app.js.map +0 -1
  318. package/dist/standalone/directives/ion-avatar.d.ts +0 -12
  319. package/dist/standalone/directives/ion-avatar.js +0 -35
  320. package/dist/standalone/directives/ion-avatar.js.map +0 -1
  321. package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
  322. package/dist/standalone/directives/ion-backdrop.js +0 -40
  323. package/dist/standalone/directives/ion-backdrop.js.map +0 -1
  324. package/dist/standalone/directives/ion-badge.d.ts +0 -12
  325. package/dist/standalone/directives/ion-badge.js +0 -36
  326. package/dist/standalone/directives/ion-badge.js.map +0 -1
  327. package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
  328. package/dist/standalone/directives/ion-breadcrumb.js +0 -43
  329. package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
  330. package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
  331. package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
  332. package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
  333. package/dist/standalone/directives/ion-button.d.ts +0 -23
  334. package/dist/standalone/directives/ion-button.js +0 -43
  335. package/dist/standalone/directives/ion-button.js.map +0 -1
  336. package/dist/standalone/directives/ion-buttons.d.ts +0 -12
  337. package/dist/standalone/directives/ion-buttons.js +0 -36
  338. package/dist/standalone/directives/ion-buttons.js.map +0 -1
  339. package/dist/standalone/directives/ion-card-content.d.ts +0 -12
  340. package/dist/standalone/directives/ion-card-content.js +0 -36
  341. package/dist/standalone/directives/ion-card-content.js.map +0 -1
  342. package/dist/standalone/directives/ion-card-header.d.ts +0 -12
  343. package/dist/standalone/directives/ion-card-header.js +0 -36
  344. package/dist/standalone/directives/ion-card-header.js.map +0 -1
  345. package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
  346. package/dist/standalone/directives/ion-card-subtitle.js +0 -36
  347. package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
  348. package/dist/standalone/directives/ion-card-title.d.ts +0 -12
  349. package/dist/standalone/directives/ion-card-title.js +0 -36
  350. package/dist/standalone/directives/ion-card-title.js.map +0 -1
  351. package/dist/standalone/directives/ion-card.d.ts +0 -12
  352. package/dist/standalone/directives/ion-card.js +0 -36
  353. package/dist/standalone/directives/ion-card.js.map +0 -1
  354. package/dist/standalone/directives/ion-chip.d.ts +0 -12
  355. package/dist/standalone/directives/ion-chip.js +0 -36
  356. package/dist/standalone/directives/ion-chip.js.map +0 -1
  357. package/dist/standalone/directives/ion-col.d.ts +0 -12
  358. package/dist/standalone/directives/ion-col.js +0 -36
  359. package/dist/standalone/directives/ion-col.js.map +0 -1
  360. package/dist/standalone/directives/ion-content.d.ts +0 -33
  361. package/dist/standalone/directives/ion-content.js +0 -47
  362. package/dist/standalone/directives/ion-content.js.map +0 -1
  363. package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
  364. package/dist/standalone/directives/ion-datetime-button.js +0 -36
  365. package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
  366. package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
  367. package/dist/standalone/directives/ion-fab-button.js +0 -43
  368. package/dist/standalone/directives/ion-fab-button.js.map +0 -1
  369. package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
  370. package/dist/standalone/directives/ion-fab-list.js +0 -36
  371. package/dist/standalone/directives/ion-fab-list.js.map +0 -1
  372. package/dist/standalone/directives/ion-fab.d.ts +0 -12
  373. package/dist/standalone/directives/ion-fab.js +0 -37
  374. package/dist/standalone/directives/ion-fab.js.map +0 -1
  375. package/dist/standalone/directives/ion-footer.d.ts +0 -12
  376. package/dist/standalone/directives/ion-footer.js +0 -36
  377. package/dist/standalone/directives/ion-footer.js.map +0 -1
  378. package/dist/standalone/directives/ion-grid.d.ts +0 -12
  379. package/dist/standalone/directives/ion-grid.js +0 -36
  380. package/dist/standalone/directives/ion-grid.js.map +0 -1
  381. package/dist/standalone/directives/ion-header.d.ts +0 -12
  382. package/dist/standalone/directives/ion-header.js +0 -36
  383. package/dist/standalone/directives/ion-header.js.map +0 -1
  384. package/dist/standalone/directives/ion-img.d.ts +0 -28
  385. package/dist/standalone/directives/ion-img.js +0 -46
  386. package/dist/standalone/directives/ion-img.js.map +0 -1
  387. package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
  388. package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
  389. package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
  390. package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
  391. package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
  392. package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
  393. package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
  394. package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
  395. package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
  396. package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
  397. package/dist/standalone/directives/ion-item-divider.js +0 -36
  398. package/dist/standalone/directives/ion-item-divider.js.map +0 -1
  399. package/dist/standalone/directives/ion-item-group.d.ts +0 -12
  400. package/dist/standalone/directives/ion-item-group.js +0 -35
  401. package/dist/standalone/directives/ion-item-group.js.map +0 -1
  402. package/dist/standalone/directives/ion-item-option.d.ts +0 -12
  403. package/dist/standalone/directives/ion-item-option.js +0 -36
  404. package/dist/standalone/directives/ion-item-option.js.map +0 -1
  405. package/dist/standalone/directives/ion-item-options.d.ts +0 -18
  406. package/dist/standalone/directives/ion-item-options.js +0 -40
  407. package/dist/standalone/directives/ion-item-options.js.map +0 -1
  408. package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
  409. package/dist/standalone/directives/ion-item-sliding.js +0 -41
  410. package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
  411. package/dist/standalone/directives/ion-item.d.ts +0 -12
  412. package/dist/standalone/directives/ion-item.js +0 -36
  413. package/dist/standalone/directives/ion-item.js.map +0 -1
  414. package/dist/standalone/directives/ion-label.d.ts +0 -12
  415. package/dist/standalone/directives/ion-label.js +0 -36
  416. package/dist/standalone/directives/ion-label.js.map +0 -1
  417. package/dist/standalone/directives/ion-list-header.d.ts +0 -12
  418. package/dist/standalone/directives/ion-list-header.js +0 -36
  419. package/dist/standalone/directives/ion-list-header.js.map +0 -1
  420. package/dist/standalone/directives/ion-list.d.ts +0 -12
  421. package/dist/standalone/directives/ion-list.js +0 -37
  422. package/dist/standalone/directives/ion-list.js.map +0 -1
  423. package/dist/standalone/directives/ion-loading.d.ts +0 -58
  424. package/dist/standalone/directives/ion-loading.js +0 -62
  425. package/dist/standalone/directives/ion-loading.js.map +0 -1
  426. package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
  427. package/dist/standalone/directives/ion-menu-button.js +0 -36
  428. package/dist/standalone/directives/ion-menu-button.js.map +0 -1
  429. package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
  430. package/dist/standalone/directives/ion-menu-toggle.js +0 -36
  431. package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
  432. package/dist/standalone/directives/ion-menu.d.ts +0 -34
  433. package/dist/standalone/directives/ion-menu.js +0 -50
  434. package/dist/standalone/directives/ion-menu.js.map +0 -1
  435. package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
  436. package/dist/standalone/directives/ion-nav-link.js +0 -36
  437. package/dist/standalone/directives/ion-nav-link.js.map +0 -1
  438. package/dist/standalone/directives/ion-note.d.ts +0 -12
  439. package/dist/standalone/directives/ion-note.js +0 -36
  440. package/dist/standalone/directives/ion-note.js.map +0 -1
  441. package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
  442. package/dist/standalone/directives/ion-picker-column-option.js +0 -36
  443. package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
  444. package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
  445. package/dist/standalone/directives/ion-picker-column.js +0 -41
  446. package/dist/standalone/directives/ion-picker-column.js.map +0 -1
  447. package/dist/standalone/directives/ion-picker.d.ts +0 -12
  448. package/dist/standalone/directives/ion-picker.js +0 -36
  449. package/dist/standalone/directives/ion-picker.js.map +0 -1
  450. package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
  451. package/dist/standalone/directives/ion-progress-bar.js +0 -36
  452. package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
  453. package/dist/standalone/directives/ion-radio.d.ts +0 -23
  454. package/dist/standalone/directives/ion-radio.js +0 -43
  455. package/dist/standalone/directives/ion-radio.js.map +0 -1
  456. package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
  457. package/dist/standalone/directives/ion-refresher-content.js +0 -36
  458. package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
  459. package/dist/standalone/directives/ion-refresher.d.ts +0 -45
  460. package/dist/standalone/directives/ion-refresher.js +0 -53
  461. package/dist/standalone/directives/ion-refresher.js.map +0 -1
  462. package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
  463. package/dist/standalone/directives/ion-reorder-group.js +0 -50
  464. package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
  465. package/dist/standalone/directives/ion-reorder.d.ts +0 -12
  466. package/dist/standalone/directives/ion-reorder.js +0 -35
  467. package/dist/standalone/directives/ion-reorder.js.map +0 -1
  468. package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
  469. package/dist/standalone/directives/ion-ripple-effect.js +0 -37
  470. package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
  471. package/dist/standalone/directives/ion-row.d.ts +0 -12
  472. package/dist/standalone/directives/ion-row.js +0 -35
  473. package/dist/standalone/directives/ion-row.js.map +0 -1
  474. package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
  475. package/dist/standalone/directives/ion-segment-button.js +0 -36
  476. package/dist/standalone/directives/ion-segment-button.js.map +0 -1
  477. package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
  478. package/dist/standalone/directives/ion-segment-content.js +0 -35
  479. package/dist/standalone/directives/ion-segment-content.js.map +0 -1
  480. package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
  481. package/dist/standalone/directives/ion-segment-view.js +0 -40
  482. package/dist/standalone/directives/ion-segment-view.js.map +0 -1
  483. package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
  484. package/dist/standalone/directives/ion-select-modal.js +0 -36
  485. package/dist/standalone/directives/ion-select-modal.js.map +0 -1
  486. package/dist/standalone/directives/ion-select-option.d.ts +0 -12
  487. package/dist/standalone/directives/ion-select-option.js +0 -36
  488. package/dist/standalone/directives/ion-select-option.js.map +0 -1
  489. package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
  490. package/dist/standalone/directives/ion-skeleton-text.js +0 -36
  491. package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
  492. package/dist/standalone/directives/ion-spinner.d.ts +0 -12
  493. package/dist/standalone/directives/ion-spinner.js +0 -36
  494. package/dist/standalone/directives/ion-spinner.js.map +0 -1
  495. package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
  496. package/dist/standalone/directives/ion-split-pane.js +0 -40
  497. package/dist/standalone/directives/ion-split-pane.js.map +0 -1
  498. package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
  499. package/dist/standalone/directives/ion-tab-bar.js +0 -36
  500. package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
  501. package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
  502. package/dist/standalone/directives/ion-tab-button.js +0 -36
  503. package/dist/standalone/directives/ion-tab-button.js.map +0 -1
  504. package/dist/standalone/directives/ion-tab.d.ts +0 -12
  505. package/dist/standalone/directives/ion-tab.js +0 -37
  506. package/dist/standalone/directives/ion-tab.js.map +0 -1
  507. package/dist/standalone/directives/ion-text.d.ts +0 -12
  508. package/dist/standalone/directives/ion-text.js +0 -36
  509. package/dist/standalone/directives/ion-text.js.map +0 -1
  510. package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
  511. package/dist/standalone/directives/ion-thumbnail.js +0 -35
  512. package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
  513. package/dist/standalone/directives/ion-title.d.ts +0 -12
  514. package/dist/standalone/directives/ion-title.js +0 -36
  515. package/dist/standalone/directives/ion-title.js.map +0 -1
  516. package/dist/standalone/directives/ion-toast.d.ts +0 -58
  517. package/dist/standalone/directives/ion-toast.js +0 -62
  518. package/dist/standalone/directives/ion-toast.js.map +0 -1
  519. package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
  520. package/dist/standalone/directives/ion-toolbar.js +0 -36
  521. package/dist/standalone/directives/ion-toolbar.js.map +0 -1
  522. package/dist/standalone/directives/proxies.d.ts +0 -77
  523. package/dist/standalone/directives/proxies.js +0 -79
  524. package/dist/standalone/directives/proxies.js.map +0 -1
  525. package/dist/standalone/directives/radio-group.js +0 -59
  526. package/dist/standalone/directives/radio-group.js.map +0 -1
  527. package/dist/standalone/directives/range.js +0 -77
  528. package/dist/standalone/directives/range.js.map +0 -1
  529. package/dist/standalone/directives/searchbar.js +0 -81
  530. package/dist/standalone/directives/searchbar.js.map +0 -1
  531. package/dist/standalone/directives/segment.js +0 -59
  532. package/dist/standalone/directives/segment.js.map +0 -1
  533. package/dist/standalone/directives/select.js +0 -83
  534. package/dist/standalone/directives/select.js.map +0 -1
  535. package/dist/standalone/directives/textarea.js +0 -90
  536. package/dist/standalone/directives/textarea.js.map +0 -1
  537. package/dist/standalone/directives/toggle.js +0 -75
  538. package/dist/standalone/directives/toggle.js.map +0 -1
  539. package/dist/standalone/index.js +0 -24
  540. package/dist/standalone/index.js.map +0 -1
  541. package/dist/standalone/navigation/back-button.js +0 -32
  542. package/dist/standalone/navigation/back-button.js.map +0 -1
  543. package/dist/standalone/navigation/nav.js +0 -28
  544. package/dist/standalone/navigation/nav.js.map +0 -1
  545. package/dist/standalone/navigation/router-link-delegate.js +0 -26
  546. package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
  547. package/dist/standalone/navigation/router-outlet.js +0 -60
  548. package/dist/standalone/navigation/router-outlet.js.map +0 -1
  549. package/dist/standalone/navigation/tabs.js +0 -57
  550. package/dist/standalone/navigation/tabs.js.map +0 -1
  551. package/dist/standalone/overlays/modal.js +0 -32
  552. package/dist/standalone/overlays/modal.js.map +0 -1
  553. package/dist/standalone/overlays/popover.js +0 -28
  554. package/dist/standalone/overlays/popover.js.map +0 -1
  555. package/dist/standalone/providers/action-sheet-controller.js +0 -20
  556. package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
  557. package/dist/standalone/providers/alert-controller.js +0 -20
  558. package/dist/standalone/providers/alert-controller.js.map +0 -1
  559. package/dist/standalone/providers/animation-controller.js +0 -37
  560. package/dist/standalone/providers/animation-controller.js.map +0 -1
  561. package/dist/standalone/providers/gesture-controller.js +0 -32
  562. package/dist/standalone/providers/gesture-controller.js.map +0 -1
  563. package/dist/standalone/providers/ionic-angular.js +0 -38
  564. package/dist/standalone/providers/ionic-angular.js.map +0 -1
  565. package/dist/standalone/providers/loading-controller.js +0 -20
  566. package/dist/standalone/providers/loading-controller.js.map +0 -1
  567. package/dist/standalone/providers/menu-controller.js +0 -18
  568. package/dist/standalone/providers/menu-controller.js.map +0 -1
  569. package/dist/standalone/providers/modal-controller.js +0 -27
  570. package/dist/standalone/providers/modal-controller.js.map +0 -1
  571. package/dist/standalone/providers/popover-controller.js +0 -21
  572. package/dist/standalone/providers/popover-controller.js.map +0 -1
  573. package/dist/standalone/providers/toast-controller.js +0 -20
  574. package/dist/standalone/providers/toast-controller.js.map +0 -1
  575. /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
  576. /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
  577. /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
  578. /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
  579. /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
  580. /package/{dist/common → common}/providers/config.d.ts +0 -0
  581. /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
  582. /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
  583. /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
  584. /package/{dist/common → common}/providers/platform.d.ts +0 -0
  585. /package/{dist/common → common}/types/interfaces.d.ts +0 -0
  586. /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
  587. /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
  588. /package/{dist/common → common}/utils/overlay.d.ts +0 -0
  589. /package/{dist/common → common}/utils/proxy.d.ts +0 -0
  590. /package/{dist/common → common}/utils/routing.d.ts +0 -0
  591. /package/{dist/common → common}/utils/util.d.ts +0 -0
  592. /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
  593. /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
  594. /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
  595. /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
  596. /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
  597. /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
  598. /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
  599. /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
  600. /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
  601. /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
  602. /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
  603. /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
  604. /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
  605. /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
  606. /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
  607. /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
  608. /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
  609. /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
  610. /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
  611. /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
  612. /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
  613. /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
  614. /package/{dist/schematics → schematics}/add/schema.json +0 -0
  615. /package/{dist/schematics → schematics}/collection.json +0 -0
  616. /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
  617. /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
  618. /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
  619. /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
  620. /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
  621. /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
  622. /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
  623. /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
  624. /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
  625. /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
  626. /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
  627. /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
  628. /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
  629. /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
  630. /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
  631. /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
  632. /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
  633. /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
  634. /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
  635. /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
  636. /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
  637. /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
  638. /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
  639. /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
  640. /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
  641. /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
  642. /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
  643. /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
  644. /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
  645. /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
  646. /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
@@ -1,71 +1,39 @@
1
1
  import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
2
  import { Components } from '@ionic/core';
3
- import type { IonAccordionGroupCustomEvent } from '@ionic/core';
4
3
  import type { AccordionGroupChangeEventDetail as IIonAccordionGroupAccordionGroupChangeEventDetail } from '@ionic/core';
5
- import type { IonActionSheetCustomEvent } from '@ionic/core';
6
4
  import type { OverlayEventDetail as IIonActionSheetOverlayEventDetail } from '@ionic/core';
7
- import type { IonAlertCustomEvent } from '@ionic/core';
8
5
  import type { OverlayEventDetail as IIonAlertOverlayEventDetail } from '@ionic/core';
9
- import type { IonBackdropCustomEvent } from '@ionic/core';
10
- import type { IonBreadcrumbCustomEvent } from '@ionic/core';
11
- import type { IonBreadcrumbsCustomEvent } from '@ionic/core';
12
6
  import type { BreadcrumbCollapsedClickEventDetail as IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail } from '@ionic/core';
13
- import type { IonButtonCustomEvent } from '@ionic/core';
14
- import type { IonCheckboxCustomEvent } from '@ionic/core';
15
7
  import type { CheckboxChangeEventDetail as IIonCheckboxCheckboxChangeEventDetail } from '@ionic/core';
16
- import type { IonContentCustomEvent } from '@ionic/core';
17
8
  import type { ScrollBaseDetail as IIonContentScrollBaseDetail } from '@ionic/core';
18
9
  import type { ScrollDetail as IIonContentScrollDetail } from '@ionic/core';
19
- import type { IonDatetimeCustomEvent } from '@ionic/core';
20
10
  import type { DatetimeChangeEventDetail as IIonDatetimeDatetimeChangeEventDetail } from '@ionic/core';
21
- import type { IonFabButtonCustomEvent } from '@ionic/core';
22
- import type { IonImgCustomEvent } from '@ionic/core';
23
- import type { IonInfiniteScrollCustomEvent } from '@ionic/core';
24
- import type { IonInputCustomEvent } from '@ionic/core';
25
11
  import type { InputInputEventDetail as IIonInputInputInputEventDetail } from '@ionic/core';
26
12
  import type { InputChangeEventDetail as IIonInputInputChangeEventDetail } from '@ionic/core';
27
- import type { IonInputOtpCustomEvent } from '@ionic/core';
28
13
  import type { InputOtpInputEventDetail as IIonInputOtpInputOtpInputEventDetail } from '@ionic/core';
29
14
  import type { InputOtpChangeEventDetail as IIonInputOtpInputOtpChangeEventDetail } from '@ionic/core';
30
15
  import type { InputOtpCompleteEventDetail as IIonInputOtpInputOtpCompleteEventDetail } from '@ionic/core';
31
- import type { IonItemOptionsCustomEvent } from '@ionic/core';
32
- import type { IonItemSlidingCustomEvent } from '@ionic/core';
33
- import type { IonLoadingCustomEvent } from '@ionic/core';
34
16
  import type { OverlayEventDetail as IIonLoadingOverlayEventDetail } from '@ionic/core';
35
- import type { IonMenuCustomEvent } from '@ionic/core';
36
17
  import type { MenuCloseEventDetail as IIonMenuMenuCloseEventDetail } from '@ionic/core';
37
- import type { IonPickerColumnCustomEvent } from '@ionic/core';
38
18
  import type { PickerColumnChangeEventDetail as IIonPickerColumnPickerColumnChangeEventDetail } from '@ionic/core';
39
- import type { IonRadioCustomEvent } from '@ionic/core';
40
- import type { IonRadioGroupCustomEvent } from '@ionic/core';
19
+ import type { OverlayEventDetail as IIonPickerLegacyOverlayEventDetail } from '@ionic/core';
41
20
  import type { RadioGroupChangeEventDetail as IIonRadioGroupRadioGroupChangeEventDetail } from '@ionic/core';
42
- import type { IonRangeCustomEvent } from '@ionic/core';
43
21
  import type { RangeChangeEventDetail as IIonRangeRangeChangeEventDetail } from '@ionic/core';
44
22
  import type { RangeKnobMoveStartEventDetail as IIonRangeRangeKnobMoveStartEventDetail } from '@ionic/core';
45
23
  import type { RangeKnobMoveEndEventDetail as IIonRangeRangeKnobMoveEndEventDetail } from '@ionic/core';
46
- import type { IonRefresherCustomEvent } from '@ionic/core';
47
24
  import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core';
48
25
  import type { RefresherPullEndEventDetail as IIonRefresherRefresherPullEndEventDetail } from '@ionic/core';
49
- import type { IonReorderGroupCustomEvent } from '@ionic/core';
50
26
  import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core';
51
27
  import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core';
52
28
  import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core';
53
- import type { IonSearchbarCustomEvent } from '@ionic/core';
54
29
  import type { SearchbarInputEventDetail as IIonSearchbarSearchbarInputEventDetail } from '@ionic/core';
55
30
  import type { SearchbarChangeEventDetail as IIonSearchbarSearchbarChangeEventDetail } from '@ionic/core';
56
- import type { IonSegmentCustomEvent } from '@ionic/core';
57
31
  import type { SegmentChangeEventDetail as IIonSegmentSegmentChangeEventDetail } from '@ionic/core';
58
- import type { IonSegmentViewCustomEvent } from '@ionic/core';
59
32
  import type { SegmentViewScrollEvent as IIonSegmentViewSegmentViewScrollEvent } from '@ionic/core';
60
- import type { IonSelectCustomEvent } from '@ionic/core';
61
33
  import type { SelectChangeEventDetail as IIonSelectSelectChangeEventDetail } from '@ionic/core';
62
- import type { IonSplitPaneCustomEvent } from '@ionic/core';
63
- import type { IonTextareaCustomEvent } from '@ionic/core';
64
34
  import type { TextareaChangeEventDetail as IIonTextareaTextareaChangeEventDetail } from '@ionic/core';
65
35
  import type { TextareaInputEventDetail as IIonTextareaTextareaInputEventDetail } from '@ionic/core';
66
- import type { IonToastCustomEvent } from '@ionic/core';
67
36
  import type { OverlayEventDetail as IIonToastOverlayEventDetail } from '@ionic/core';
68
- import type { IonToggleCustomEvent } from '@ionic/core';
69
37
  import type { ToggleChangeEventDetail as IIonToggleToggleChangeEventDetail } from '@ionic/core';
70
38
  import * as i0 from "@angular/core";
71
39
  export declare class IonAccordion {
@@ -73,17 +41,16 @@ export declare class IonAccordion {
73
41
  protected el: HTMLIonAccordionElement;
74
42
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
75
43
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordion, never>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordion, "ion-accordion", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "toggleIconSlot": { "alias": "toggleIconSlot"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordion, "ion-accordion", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "toggleIconSlot": { "alias": "toggleIconSlot"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
77
45
  }
78
46
  export declare interface IonAccordion extends Components.IonAccordion {
79
47
  }
80
48
  export declare class IonAccordionGroup {
81
49
  protected z: NgZone;
82
50
  protected el: HTMLIonAccordionGroupElement;
83
- ionChange: EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail<any>>>;
84
51
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
85
52
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordionGroup, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordionGroup, "ion-accordion-group", never, { "animated": { "alias": "animated"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; }, never, ["*"], false, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordionGroup, "ion-accordion-group", never, { "animated": { "alias": "animated"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
87
54
  }
88
55
  export declare interface IonAccordionGroup extends Components.IonAccordionGroup {
89
56
  /**
@@ -91,120 +58,104 @@ export declare interface IonAccordionGroup extends Components.IonAccordionGroup
91
58
 
92
59
  This event will not emit when programmatically setting the `value` property.
93
60
  */
94
- ionChange: EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>;
61
+ ionChange: EventEmitter<CustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>;
95
62
  }
96
63
  export declare class IonActionSheet {
97
64
  protected z: NgZone;
98
65
  protected el: HTMLIonActionSheetElement;
99
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
100
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
101
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
102
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
103
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
104
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
105
- willDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
106
- didDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
107
66
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
108
67
  static ɵfac: i0.ɵɵFactoryDeclaration<IonActionSheet, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<IonActionSheet, "ion-action-sheet", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionActionSheetDidPresent": "ionActionSheetDidPresent"; "ionActionSheetWillPresent": "ionActionSheetWillPresent"; "ionActionSheetWillDismiss": "ionActionSheetWillDismiss"; "ionActionSheetDidDismiss": "ionActionSheetDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], false, never>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonActionSheet, "ion-action-sheet", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
110
69
  }
111
70
  export declare interface IonActionSheet extends Components.IonActionSheet {
112
71
  /**
113
72
  * Emitted after the action sheet has presented.
114
73
  */
115
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
74
+ ionActionSheetDidPresent: EventEmitter<CustomEvent<void>>;
116
75
  /**
117
76
  * Emitted before the action sheet has presented.
118
77
  */
119
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
78
+ ionActionSheetWillPresent: EventEmitter<CustomEvent<void>>;
120
79
  /**
121
80
  * Emitted before the action sheet has dismissed.
122
81
  */
123
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
82
+ ionActionSheetWillDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
124
83
  /**
125
84
  * Emitted after the action sheet has dismissed.
126
85
  */
127
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
86
+ ionActionSheetDidDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
128
87
  /**
129
88
  * Emitted after the action sheet has presented.
130
89
  Shorthand for ionActionSheetWillDismiss.
131
90
  */
132
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
91
+ didPresent: EventEmitter<CustomEvent<void>>;
133
92
  /**
134
93
  * Emitted before the action sheet has presented.
135
94
  Shorthand for ionActionSheetWillPresent.
136
95
  */
137
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
96
+ willPresent: EventEmitter<CustomEvent<void>>;
138
97
  /**
139
98
  * Emitted before the action sheet has dismissed.
140
99
  Shorthand for ionActionSheetWillDismiss.
141
100
  */
142
- willDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
101
+ willDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
143
102
  /**
144
103
  * Emitted after the action sheet has dismissed.
145
104
  Shorthand for ionActionSheetDidDismiss.
146
105
  */
147
- didDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
106
+ didDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
148
107
  }
149
108
  export declare class IonAlert {
150
109
  protected z: NgZone;
151
110
  protected el: HTMLIonAlertElement;
152
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
153
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
154
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
155
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
156
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
157
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
158
- willDismiss: EventEmitter<IonAlertCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
159
- didDismiss: EventEmitter<IonAlertCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
160
111
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
161
112
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAlert, never>;
162
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAlert, "ion-alert", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionAlertDidPresent": "ionAlertDidPresent"; "ionAlertWillPresent": "ionAlertWillPresent"; "ionAlertWillDismiss": "ionAlertWillDismiss"; "ionAlertDidDismiss": "ionAlertDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], false, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonAlert, "ion-alert", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
163
114
  }
164
115
  export declare interface IonAlert extends Components.IonAlert {
165
116
  /**
166
117
  * Emitted after the alert has presented.
167
118
  */
168
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
119
+ ionAlertDidPresent: EventEmitter<CustomEvent<void>>;
169
120
  /**
170
121
  * Emitted before the alert has presented.
171
122
  */
172
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
123
+ ionAlertWillPresent: EventEmitter<CustomEvent<void>>;
173
124
  /**
174
125
  * Emitted before the alert has dismissed.
175
126
  */
176
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
127
+ ionAlertWillDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
177
128
  /**
178
129
  * Emitted after the alert has dismissed.
179
130
  */
180
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
131
+ ionAlertDidDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
181
132
  /**
182
133
  * Emitted after the alert has presented.
183
134
  Shorthand for ionAlertWillDismiss.
184
135
  */
185
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
136
+ didPresent: EventEmitter<CustomEvent<void>>;
186
137
  /**
187
138
  * Emitted before the alert has presented.
188
139
  Shorthand for ionAlertWillPresent.
189
140
  */
190
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
141
+ willPresent: EventEmitter<CustomEvent<void>>;
191
142
  /**
192
143
  * Emitted before the alert has dismissed.
193
144
  Shorthand for ionAlertWillDismiss.
194
145
  */
195
- willDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
146
+ willDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
196
147
  /**
197
148
  * Emitted after the alert has dismissed.
198
149
  Shorthand for ionAlertDidDismiss.
199
150
  */
200
- didDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
151
+ didDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
201
152
  }
202
153
  export declare class IonApp {
203
154
  protected z: NgZone;
204
155
  protected el: HTMLIonAppElement;
205
156
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
206
157
  static ɵfac: i0.ɵɵFactoryDeclaration<IonApp, never>;
207
- static ɵcmp: i0.ɵɵComponentDeclaration<IonApp, "ion-app", never, {}, {}, never, ["*"], false, never>;
158
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonApp, "ion-app", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
208
159
  }
209
160
  export declare interface IonApp extends Components.IonApp {
210
161
  }
@@ -213,91 +164,85 @@ export declare class IonAvatar {
213
164
  protected el: HTMLIonAvatarElement;
214
165
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
215
166
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAvatar, never>;
216
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAvatar, "ion-avatar", never, {}, {}, never, ["*"], false, never>;
167
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonAvatar, "ion-avatar", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
217
168
  }
218
169
  export declare interface IonAvatar extends Components.IonAvatar {
219
170
  }
220
171
  export declare class IonBackdrop {
221
172
  protected z: NgZone;
222
173
  protected el: HTMLIonBackdropElement;
223
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
224
174
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
225
175
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBackdrop, never>;
226
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBackdrop, "ion-backdrop", never, { "stopPropagation": { "alias": "stopPropagation"; "required": false; }; "tappable": { "alias": "tappable"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "ionBackdropTap": "ionBackdropTap"; }, never, ["*"], false, never>;
176
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonBackdrop, "ion-backdrop", never, { "mode": { "alias": "mode"; "required": false; }; "stopPropagation": { "alias": "stopPropagation"; "required": false; }; "tappable": { "alias": "tappable"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], false, never>;
227
177
  }
228
178
  export declare interface IonBackdrop extends Components.IonBackdrop {
229
179
  /**
230
180
  * Emitted when the backdrop is tapped.
231
181
  */
232
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
182
+ ionBackdropTap: EventEmitter<CustomEvent<void>>;
233
183
  }
234
184
  export declare class IonBadge {
235
185
  protected z: NgZone;
236
186
  protected el: HTMLIonBadgeElement;
237
187
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
238
188
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBadge, never>;
239
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBadge, "ion-badge", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
189
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonBadge, "ion-badge", never, { "color": { "alias": "color"; "required": false; }; "hue": { "alias": "hue"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
240
190
  }
241
191
  export declare interface IonBadge extends Components.IonBadge {
242
192
  }
243
193
  export declare class IonBreadcrumb {
244
194
  protected z: NgZone;
245
195
  protected el: HTMLIonBreadcrumbElement;
246
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
247
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
248
196
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
249
197
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBreadcrumb, never>;
250
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBreadcrumb, "ion-breadcrumb", never, { "active": { "alias": "active"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, { "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
198
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonBreadcrumb, "ion-breadcrumb", never, { "active": { "alias": "active"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
251
199
  }
252
200
  export declare interface IonBreadcrumb extends Components.IonBreadcrumb {
253
201
  /**
254
202
  * Emitted when the breadcrumb has focus.
255
203
  */
256
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
204
+ ionFocus: EventEmitter<CustomEvent<void>>;
257
205
  /**
258
206
  * Emitted when the breadcrumb loses focus.
259
207
  */
260
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
208
+ ionBlur: EventEmitter<CustomEvent<void>>;
261
209
  }
262
210
  export declare class IonBreadcrumbs {
263
211
  protected z: NgZone;
264
212
  protected el: HTMLIonBreadcrumbsElement;
265
- ionCollapsedClick: EventEmitter<IonBreadcrumbsCustomEvent<IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail>>;
266
213
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
267
214
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBreadcrumbs, never>;
268
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBreadcrumbs, "ion-breadcrumbs", never, { "color": { "alias": "color"; "required": false; }; "itemsAfterCollapse": { "alias": "itemsAfterCollapse"; "required": false; }; "itemsBeforeCollapse": { "alias": "itemsBeforeCollapse"; "required": false; }; "maxItems": { "alias": "maxItems"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "ionCollapsedClick": "ionCollapsedClick"; }, never, ["*"], false, never>;
215
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonBreadcrumbs, "ion-breadcrumbs", never, { "color": { "alias": "color"; "required": false; }; "itemsAfterCollapse": { "alias": "itemsAfterCollapse"; "required": false; }; "itemsBeforeCollapse": { "alias": "itemsBeforeCollapse"; "required": false; }; "maxItems": { "alias": "maxItems"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
269
216
  }
270
217
  export declare interface IonBreadcrumbs extends Components.IonBreadcrumbs {
271
218
  /**
272
219
  * Emitted when the collapsed indicator is clicked on.
273
220
  */
274
- ionCollapsedClick: EventEmitter<IonBreadcrumbsCustomEvent<IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail>>;
221
+ ionCollapsedClick: EventEmitter<CustomEvent<IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail>>;
275
222
  }
276
223
  export declare class IonButton {
277
224
  protected z: NgZone;
278
225
  protected el: HTMLIonButtonElement;
279
- ionFocus: EventEmitter<IonButtonCustomEvent<void>>;
280
- ionBlur: EventEmitter<IonButtonCustomEvent<void>>;
281
226
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
282
227
  static ɵfac: i0.ɵɵFactoryDeclaration<IonButton, never>;
283
- static ɵcmp: i0.ɵɵComponentDeclaration<IonButton, "ion-button", never, { "buttonType": { "alias": "buttonType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "form": { "alias": "form"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "strong": { "alias": "strong"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
228
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonButton, "ion-button", never, { "buttonType": { "alias": "buttonType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "form": { "alias": "form"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "strong": { "alias": "strong"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
284
229
  }
285
230
  export declare interface IonButton extends Components.IonButton {
286
231
  /**
287
232
  * Emitted when the button has focus.
288
233
  */
289
- ionFocus: EventEmitter<IonButtonCustomEvent<void>>;
234
+ ionFocus: EventEmitter<CustomEvent<void>>;
290
235
  /**
291
236
  * Emitted when the button loses focus.
292
237
  */
293
- ionBlur: EventEmitter<IonButtonCustomEvent<void>>;
238
+ ionBlur: EventEmitter<CustomEvent<void>>;
294
239
  }
295
240
  export declare class IonButtons {
296
241
  protected z: NgZone;
297
242
  protected el: HTMLIonButtonsElement;
298
243
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
299
244
  static ɵfac: i0.ɵɵFactoryDeclaration<IonButtons, never>;
300
- static ɵcmp: i0.ɵɵComponentDeclaration<IonButtons, "ion-buttons", never, { "collapse": { "alias": "collapse"; "required": false; }; }, {}, never, ["*"], false, never>;
245
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonButtons, "ion-buttons", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
301
246
  }
302
247
  export declare interface IonButtons extends Components.IonButtons {
303
248
  }
@@ -306,7 +251,7 @@ export declare class IonCard {
306
251
  protected el: HTMLIonCardElement;
307
252
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
308
253
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCard, never>;
309
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCard, "ion-card", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
254
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCard, "ion-card", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
310
255
  }
311
256
  export declare interface IonCard extends Components.IonCard {
312
257
  }
@@ -315,7 +260,7 @@ export declare class IonCardContent {
315
260
  protected el: HTMLIonCardContentElement;
316
261
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
317
262
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardContent, never>;
318
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCardContent, "ion-card-content", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
263
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCardContent, "ion-card-content", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
319
264
  }
320
265
  export declare interface IonCardContent extends Components.IonCardContent {
321
266
  }
@@ -324,7 +269,7 @@ export declare class IonCardHeader {
324
269
  protected el: HTMLIonCardHeaderElement;
325
270
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
326
271
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardHeader, never>;
327
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCardHeader, "ion-card-header", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
272
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCardHeader, "ion-card-header", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
328
273
  }
329
274
  export declare interface IonCardHeader extends Components.IonCardHeader {
330
275
  }
@@ -333,7 +278,7 @@ export declare class IonCardSubtitle {
333
278
  protected el: HTMLIonCardSubtitleElement;
334
279
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
335
280
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardSubtitle, never>;
336
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCardSubtitle, "ion-card-subtitle", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
281
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCardSubtitle, "ion-card-subtitle", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
337
282
  }
338
283
  export declare interface IonCardSubtitle extends Components.IonCardSubtitle {
339
284
  }
@@ -342,42 +287,40 @@ export declare class IonCardTitle {
342
287
  protected el: HTMLIonCardTitleElement;
343
288
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
344
289
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardTitle, never>;
345
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCardTitle, "ion-card-title", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
290
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCardTitle, "ion-card-title", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
346
291
  }
347
292
  export declare interface IonCardTitle extends Components.IonCardTitle {
348
293
  }
349
294
  export declare class IonCheckbox {
350
295
  protected z: NgZone;
351
296
  protected el: HTMLIonCheckboxElement;
352
- ionChange: EventEmitter<IonCheckboxCustomEvent<IIonCheckboxCheckboxChangeEventDetail<any>>>;
353
- ionFocus: EventEmitter<IonCheckboxCustomEvent<void>>;
354
- ionBlur: EventEmitter<IonCheckboxCustomEvent<void>>;
355
297
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
356
298
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCheckbox, never>;
357
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCheckbox, "ion-checkbox", never, { "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
299
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCheckbox, "ion-checkbox", never, { "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
358
300
  }
359
301
  export declare interface IonCheckbox extends Components.IonCheckbox {
360
302
  /**
361
- * Emitted when the checked property has changed as a result of a user action such as a click.
362
-
363
- This event will not emit when programmatically setting the `checked` property.
303
+ * Emitted when the checked property has changed
304
+ as a result of a user action such as a click.
305
+ This event will not emit when programmatically
306
+ setting the `checked` property.
364
307
  */
365
- ionChange: EventEmitter<IonCheckboxCustomEvent<IIonCheckboxCheckboxChangeEventDetail>>;
308
+ ionChange: EventEmitter<CustomEvent<IIonCheckboxCheckboxChangeEventDetail>>;
366
309
  /**
367
310
  * Emitted when the checkbox has focus.
368
311
  */
369
- ionFocus: EventEmitter<IonCheckboxCustomEvent<void>>;
312
+ ionFocus: EventEmitter<CustomEvent<void>>;
370
313
  /**
371
314
  * Emitted when the checkbox loses focus.
372
315
  */
373
- ionBlur: EventEmitter<IonCheckboxCustomEvent<void>>;
316
+ ionBlur: EventEmitter<CustomEvent<void>>;
374
317
  }
375
318
  export declare class IonChip {
376
319
  protected z: NgZone;
377
320
  protected el: HTMLIonChipElement;
378
321
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
379
322
  static ɵfac: i0.ɵɵFactoryDeclaration<IonChip, never>;
380
- static ɵcmp: i0.ɵɵComponentDeclaration<IonChip, "ion-chip", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; }, {}, never, ["*"], false, never>;
323
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonChip, "ion-chip", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hue": { "alias": "hue"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
381
324
  }
382
325
  export declare interface IonChip extends Components.IonChip {
383
326
  }
@@ -386,111 +329,111 @@ export declare class IonCol {
386
329
  protected el: HTMLIonColElement;
387
330
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
388
331
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCol, never>;
389
- static ɵcmp: i0.ɵɵComponentDeclaration<IonCol, "ion-col", never, { "offset": { "alias": "offset"; "required": false; }; "offsetLg": { "alias": "offsetLg"; "required": false; }; "offsetMd": { "alias": "offsetMd"; "required": false; }; "offsetSm": { "alias": "offsetSm"; "required": false; }; "offsetXl": { "alias": "offsetXl"; "required": false; }; "offsetXs": { "alias": "offsetXs"; "required": false; }; "pull": { "alias": "pull"; "required": false; }; "pullLg": { "alias": "pullLg"; "required": false; }; "pullMd": { "alias": "pullMd"; "required": false; }; "pullSm": { "alias": "pullSm"; "required": false; }; "pullXl": { "alias": "pullXl"; "required": false; }; "pullXs": { "alias": "pullXs"; "required": false; }; "push": { "alias": "push"; "required": false; }; "pushLg": { "alias": "pushLg"; "required": false; }; "pushMd": { "alias": "pushMd"; "required": false; }; "pushSm": { "alias": "pushSm"; "required": false; }; "pushXl": { "alias": "pushXl"; "required": false; }; "pushXs": { "alias": "pushXs"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeLg": { "alias": "sizeLg"; "required": false; }; "sizeMd": { "alias": "sizeMd"; "required": false; }; "sizeSm": { "alias": "sizeSm"; "required": false; }; "sizeXl": { "alias": "sizeXl"; "required": false; }; "sizeXs": { "alias": "sizeXs"; "required": false; }; }, {}, never, ["*"], false, never>;
332
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonCol, "ion-col", never, { "mode": { "alias": "mode"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "offsetLg": { "alias": "offsetLg"; "required": false; }; "offsetMd": { "alias": "offsetMd"; "required": false; }; "offsetSm": { "alias": "offsetSm"; "required": false; }; "offsetXl": { "alias": "offsetXl"; "required": false; }; "offsetXs": { "alias": "offsetXs"; "required": false; }; "order": { "alias": "order"; "required": false; }; "orderLg": { "alias": "orderLg"; "required": false; }; "orderMd": { "alias": "orderMd"; "required": false; }; "orderSm": { "alias": "orderSm"; "required": false; }; "orderXl": { "alias": "orderXl"; "required": false; }; "orderXs": { "alias": "orderXs"; "required": false; }; "pull": { "alias": "pull"; "required": false; }; "pullLg": { "alias": "pullLg"; "required": false; }; "pullMd": { "alias": "pullMd"; "required": false; }; "pullSm": { "alias": "pullSm"; "required": false; }; "pullXl": { "alias": "pullXl"; "required": false; }; "pullXs": { "alias": "pullXs"; "required": false; }; "push": { "alias": "push"; "required": false; }; "pushLg": { "alias": "pushLg"; "required": false; }; "pushMd": { "alias": "pushMd"; "required": false; }; "pushSm": { "alias": "pushSm"; "required": false; }; "pushXl": { "alias": "pushXl"; "required": false; }; "pushXs": { "alias": "pushXs"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeLg": { "alias": "sizeLg"; "required": false; }; "sizeMd": { "alias": "sizeMd"; "required": false; }; "sizeSm": { "alias": "sizeSm"; "required": false; }; "sizeXl": { "alias": "sizeXl"; "required": false; }; "sizeXs": { "alias": "sizeXs"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
390
333
  }
391
334
  export declare interface IonCol extends Components.IonCol {
392
335
  }
393
336
  export declare class IonContent {
394
337
  protected z: NgZone;
395
338
  protected el: HTMLIonContentElement;
396
- ionScrollStart: EventEmitter<IonContentCustomEvent<IIonContentScrollBaseDetail>>;
397
- ionScroll: EventEmitter<IonContentCustomEvent<IIonContentScrollDetail>>;
398
- ionScrollEnd: EventEmitter<IonContentCustomEvent<IIonContentScrollBaseDetail>>;
399
339
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
400
340
  static ɵfac: i0.ɵɵFactoryDeclaration<IonContent, never>;
401
- static ɵcmp: i0.ɵɵComponentDeclaration<IonContent, "ion-content", never, { "color": { "alias": "color"; "required": false; }; "fixedSlotPlacement": { "alias": "fixedSlotPlacement"; "required": false; }; "forceOverscroll": { "alias": "forceOverscroll"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "scrollEvents": { "alias": "scrollEvents"; "required": false; }; "scrollX": { "alias": "scrollX"; "required": false; }; "scrollY": { "alias": "scrollY"; "required": false; }; }, { "ionScrollStart": "ionScrollStart"; "ionScroll": "ionScroll"; "ionScrollEnd": "ionScrollEnd"; }, never, ["*"], false, never>;
341
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonContent, "ion-content", never, { "color": { "alias": "color"; "required": false; }; "fixedSlotPlacement": { "alias": "fixedSlotPlacement"; "required": false; }; "forceOverscroll": { "alias": "forceOverscroll"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollEvents": { "alias": "scrollEvents"; "required": false; }; "scrollX": { "alias": "scrollX"; "required": false; }; "scrollY": { "alias": "scrollY"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
402
342
  }
403
343
  export declare interface IonContent extends Components.IonContent {
404
344
  /**
405
345
  * Emitted when the scroll has started. This event is disabled by default.
406
346
  Set `scrollEvents` to `true` to enable.
407
347
  */
408
- ionScrollStart: EventEmitter<IonContentCustomEvent<IIonContentScrollBaseDetail>>;
348
+ ionScrollStart: EventEmitter<CustomEvent<IIonContentScrollBaseDetail>>;
409
349
  /**
410
350
  * Emitted while scrolling. This event is disabled by default.
411
351
  Set `scrollEvents` to `true` to enable.
412
352
  */
413
- ionScroll: EventEmitter<IonContentCustomEvent<IIonContentScrollDetail>>;
353
+ ionScroll: EventEmitter<CustomEvent<IIonContentScrollDetail>>;
414
354
  /**
415
355
  * Emitted when the scroll has ended. This event is disabled by default.
416
356
  Set `scrollEvents` to `true` to enable.
417
357
  */
418
- ionScrollEnd: EventEmitter<IonContentCustomEvent<IIonContentScrollBaseDetail>>;
358
+ ionScrollEnd: EventEmitter<CustomEvent<IIonContentScrollBaseDetail>>;
419
359
  }
420
360
  export declare class IonDatetime {
421
361
  protected z: NgZone;
422
362
  protected el: HTMLIonDatetimeElement;
423
- ionCancel: EventEmitter<IonDatetimeCustomEvent<void>>;
424
- ionChange: EventEmitter<IonDatetimeCustomEvent<IIonDatetimeDatetimeChangeEventDetail>>;
425
- ionFocus: EventEmitter<IonDatetimeCustomEvent<void>>;
426
- ionBlur: EventEmitter<IonDatetimeCustomEvent<void>>;
427
363
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
428
364
  static ɵfac: i0.ɵɵFactoryDeclaration<IonDatetime, never>;
429
- static ɵcmp: i0.ɵɵComponentDeclaration<IonDatetime, "ion-datetime", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "color": { "alias": "color"; "required": false; }; "dayValues": { "alias": "dayValues"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "doneText": { "alias": "doneText"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; "highlightedDates": { "alias": "highlightedDates"; "required": false; }; "hourCycle": { "alias": "hourCycle"; "required": false; }; "hourValues": { "alias": "hourValues"; "required": false; }; "isDateEnabled": { "alias": "isDateEnabled"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minuteValues": { "alias": "minuteValues"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "monthValues": { "alias": "monthValues"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "preferWheel": { "alias": "preferWheel"; "required": false; }; "presentation": { "alias": "presentation"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showAdjacentDays": { "alias": "showAdjacentDays"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "showDefaultButtons": { "alias": "showDefaultButtons"; "required": false; }; "showDefaultTimeLabel": { "alias": "showDefaultTimeLabel"; "required": false; }; "showDefaultTitle": { "alias": "showDefaultTitle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "titleSelectedDatesFormatter": { "alias": "titleSelectedDatesFormatter"; "required": false; }; "value": { "alias": "value"; "required": false; }; "yearValues": { "alias": "yearValues"; "required": false; }; }, { "ionCancel": "ionCancel"; "ionChange": "ionChange"; "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
365
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonDatetime, "ion-datetime", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "clearText": { "alias": "clearText"; "required": false; }; "color": { "alias": "color"; "required": false; }; "dayValues": { "alias": "dayValues"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "doneText": { "alias": "doneText"; "required": false; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; "highlightedDates": { "alias": "highlightedDates"; "required": false; }; "hourCycle": { "alias": "hourCycle"; "required": false; }; "hourValues": { "alias": "hourValues"; "required": false; }; "isDateEnabled": { "alias": "isDateEnabled"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minuteValues": { "alias": "minuteValues"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "monthValues": { "alias": "monthValues"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "preferWheel": { "alias": "preferWheel"; "required": false; }; "presentation": { "alias": "presentation"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showAdjacentDays": { "alias": "showAdjacentDays"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "showDefaultButtons": { "alias": "showDefaultButtons"; "required": false; }; "showDefaultTimeLabel": { "alias": "showDefaultTimeLabel"; "required": false; }; "showDefaultTitle": { "alias": "showDefaultTitle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "titleSelectedDatesFormatter": { "alias": "titleSelectedDatesFormatter"; "required": false; }; "value": { "alias": "value"; "required": false; }; "yearValues": { "alias": "yearValues"; "required": false; }; }, {}, never, ["*"], false, never>;
430
366
  }
431
367
  export declare interface IonDatetime extends Components.IonDatetime {
432
368
  /**
433
369
  * Emitted when the datetime selection was cancelled.
434
370
  */
435
- ionCancel: EventEmitter<IonDatetimeCustomEvent<void>>;
371
+ ionCancel: EventEmitter<CustomEvent<void>>;
436
372
  /**
437
373
  * Emitted when the value (selected date) has changed.
438
374
 
439
375
  This event will not emit when programmatically setting the `value` property.
440
376
  */
441
- ionChange: EventEmitter<IonDatetimeCustomEvent<IIonDatetimeDatetimeChangeEventDetail>>;
377
+ ionChange: EventEmitter<CustomEvent<IIonDatetimeDatetimeChangeEventDetail>>;
442
378
  /**
443
379
  * Emitted when the datetime has focus.
444
380
  */
445
- ionFocus: EventEmitter<IonDatetimeCustomEvent<void>>;
381
+ ionFocus: EventEmitter<CustomEvent<void>>;
446
382
  /**
447
383
  * Emitted when the datetime loses focus.
448
384
  */
449
- ionBlur: EventEmitter<IonDatetimeCustomEvent<void>>;
385
+ ionBlur: EventEmitter<CustomEvent<void>>;
450
386
  }
451
387
  export declare class IonDatetimeButton {
452
388
  protected z: NgZone;
453
389
  protected el: HTMLIonDatetimeButtonElement;
454
390
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
455
391
  static ɵfac: i0.ɵɵFactoryDeclaration<IonDatetimeButton, never>;
456
- static ɵcmp: i0.ɵɵComponentDeclaration<IonDatetimeButton, "ion-datetime-button", never, { "color": { "alias": "color"; "required": false; }; "datetime": { "alias": "datetime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
392
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonDatetimeButton, "ion-datetime-button", never, { "color": { "alias": "color"; "required": false; }; "datetime": { "alias": "datetime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
457
393
  }
458
394
  export declare interface IonDatetimeButton extends Components.IonDatetimeButton {
459
395
  }
396
+ export declare class IonDivider {
397
+ protected z: NgZone;
398
+ protected el: HTMLIonDividerElement;
399
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
400
+ static ɵfac: i0.ɵɵFactoryDeclaration<IonDivider, never>;
401
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonDivider, "ion-divider", never, { "inset": { "alias": "inset"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], false, never>;
402
+ }
403
+ export declare interface IonDivider extends Components.IonDivider {
404
+ }
460
405
  export declare class IonFab {
461
406
  protected z: NgZone;
462
407
  protected el: HTMLIonFabElement;
463
408
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
464
409
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFab, never>;
465
- static ɵcmp: i0.ɵɵComponentDeclaration<IonFab, "ion-fab", never, { "activated": { "alias": "activated"; "required": false; }; "edge": { "alias": "edge"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
410
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonFab, "ion-fab", never, { "activated": { "alias": "activated"; "required": false; }; "edge": { "alias": "edge"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
466
411
  }
467
412
  export declare interface IonFab extends Components.IonFab {
468
413
  }
469
414
  export declare class IonFabButton {
470
415
  protected z: NgZone;
471
416
  protected el: HTMLIonFabButtonElement;
472
- ionFocus: EventEmitter<IonFabButtonCustomEvent<void>>;
473
- ionBlur: EventEmitter<IonFabButtonCustomEvent<void>>;
474
417
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
475
418
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFabButton, never>;
476
- static ɵcmp: i0.ɵɵComponentDeclaration<IonFabButton, "ion-fab-button", never, { "activated": { "alias": "activated"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "form": { "alias": "form"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "show": { "alias": "show"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
419
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonFabButton, "ion-fab-button", never, { "activated": { "alias": "activated"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "form": { "alias": "form"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "show": { "alias": "show"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
477
420
  }
478
421
  export declare interface IonFabButton extends Components.IonFabButton {
479
422
  /**
480
423
  * Emitted when the button has focus.
481
424
  */
482
- ionFocus: EventEmitter<IonFabButtonCustomEvent<void>>;
425
+ ionFocus: EventEmitter<CustomEvent<void>>;
483
426
  /**
484
427
  * Emitted when the button loses focus.
485
428
  */
486
- ionBlur: EventEmitter<IonFabButtonCustomEvent<void>>;
429
+ ionBlur: EventEmitter<CustomEvent<void>>;
487
430
  }
488
431
  export declare class IonFabList {
489
432
  protected z: NgZone;
490
433
  protected el: HTMLIonFabListElement;
491
434
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
492
435
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFabList, never>;
493
- static ɵcmp: i0.ɵɵComponentDeclaration<IonFabList, "ion-fab-list", never, { "activated": { "alias": "activated"; "required": false; }; "side": { "alias": "side"; "required": false; }; }, {}, never, ["*"], false, never>;
436
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonFabList, "ion-fab-list", never, { "activated": { "alias": "activated"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "side": { "alias": "side"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
494
437
  }
495
438
  export declare interface IonFabList extends Components.IonFabList {
496
439
  }
@@ -499,16 +442,34 @@ export declare class IonFooter {
499
442
  protected el: HTMLIonFooterElement;
500
443
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
501
444
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFooter, never>;
502
- static ɵcmp: i0.ɵɵComponentDeclaration<IonFooter, "ion-footer", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
445
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonFooter, "ion-footer", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollEffect": { "alias": "scrollEffect"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
503
446
  }
504
447
  export declare interface IonFooter extends Components.IonFooter {
505
448
  }
449
+ export declare class IonGallery {
450
+ protected z: NgZone;
451
+ protected el: HTMLIonGalleryElement;
452
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<IonGallery, never>;
454
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonGallery, "ion-gallery", never, { "columns": { "alias": "columns"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "order": { "alias": "order"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
455
+ }
456
+ export declare interface IonGallery extends Components.IonGallery {
457
+ }
458
+ export declare class IonGalleryItem {
459
+ protected z: NgZone;
460
+ protected el: HTMLIonGalleryItemElement;
461
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
462
+ static ɵfac: i0.ɵɵFactoryDeclaration<IonGalleryItem, never>;
463
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonGalleryItem, "ion-gallery-item", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
464
+ }
465
+ export declare interface IonGalleryItem extends Components.IonGalleryItem {
466
+ }
506
467
  export declare class IonGrid {
507
468
  protected z: NgZone;
508
469
  protected el: HTMLIonGridElement;
509
470
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
510
471
  static ɵfac: i0.ɵɵFactoryDeclaration<IonGrid, never>;
511
- static ɵcmp: i0.ɵɵComponentDeclaration<IonGrid, "ion-grid", never, { "fixed": { "alias": "fixed"; "required": false; }; }, {}, never, ["*"], false, never>;
472
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonGrid, "ion-grid", never, { "fixed": { "alias": "fixed"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
512
473
  }
513
474
  export declare interface IonGrid extends Components.IonGrid {
514
475
  }
@@ -517,7 +478,7 @@ export declare class IonHeader {
517
478
  protected el: HTMLIonHeaderElement;
518
479
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
519
480
  static ɵfac: i0.ɵɵFactoryDeclaration<IonHeader, never>;
520
- static ɵcmp: i0.ɵɵComponentDeclaration<IonHeader, "ion-header", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
481
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonHeader, "ion-header", never, { "collapse": { "alias": "collapse"; "required": false; }; "divider": { "alias": "divider"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollEffect": { "alias": "scrollEffect"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
521
482
  }
522
483
  export declare interface IonHeader extends Components.IonHeader {
523
484
  }
@@ -533,34 +494,30 @@ export declare interface IonIcon extends Components.IonIcon {
533
494
  export declare class IonImg {
534
495
  protected z: NgZone;
535
496
  protected el: HTMLIonImgElement;
536
- ionImgWillLoad: EventEmitter<IonImgCustomEvent<void>>;
537
- ionImgDidLoad: EventEmitter<IonImgCustomEvent<void>>;
538
- ionError: EventEmitter<IonImgCustomEvent<void>>;
539
497
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
540
498
  static ɵfac: i0.ɵɵFactoryDeclaration<IonImg, never>;
541
- static ɵcmp: i0.ɵɵComponentDeclaration<IonImg, "ion-img", never, { "alt": { "alias": "alt"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, { "ionImgWillLoad": "ionImgWillLoad"; "ionImgDidLoad": "ionImgDidLoad"; "ionError": "ionError"; }, never, ["*"], false, never>;
499
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonImg, "ion-img", never, { "alt": { "alias": "alt"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "src": { "alias": "src"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
542
500
  }
543
501
  export declare interface IonImg extends Components.IonImg {
544
502
  /**
545
503
  * Emitted when the img src has been set
546
504
  */
547
- ionImgWillLoad: EventEmitter<IonImgCustomEvent<void>>;
505
+ ionImgWillLoad: EventEmitter<CustomEvent<void>>;
548
506
  /**
549
507
  * Emitted when the image has finished loading
550
508
  */
551
- ionImgDidLoad: EventEmitter<IonImgCustomEvent<void>>;
509
+ ionImgDidLoad: EventEmitter<CustomEvent<void>>;
552
510
  /**
553
511
  * Emitted when the img fails to load
554
512
  */
555
- ionError: EventEmitter<IonImgCustomEvent<void>>;
513
+ ionError: EventEmitter<CustomEvent<void>>;
556
514
  }
557
515
  export declare class IonInfiniteScroll {
558
516
  protected z: NgZone;
559
517
  protected el: HTMLIonInfiniteScrollElement;
560
- ionInfinite: EventEmitter<IonInfiniteScrollCustomEvent<void>>;
561
518
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
562
519
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInfiniteScroll, never>;
563
- static ɵcmp: i0.ɵɵComponentDeclaration<IonInfiniteScroll, "ion-infinite-scroll", never, { "disabled": { "alias": "disabled"; "required": false; }; "position": { "alias": "position"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; }, { "ionInfinite": "ionInfinite"; }, never, ["*"], false, never>;
520
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonInfiniteScroll, "ion-infinite-scroll", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "preserveRerenderScrollPosition": { "alias": "preserveRerenderScrollPosition"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; }, {}, never, ["*"], false, never>;
564
521
  }
565
522
  export declare interface IonInfiniteScroll extends Components.IonInfiniteScroll {
566
523
  /**
@@ -569,27 +526,23 @@ export declare interface IonInfiniteScroll extends Components.IonInfiniteScroll
569
526
  you must call the infinite scroll's `complete()` method when
570
527
  your async operation has completed.
571
528
  */
572
- ionInfinite: EventEmitter<IonInfiniteScrollCustomEvent<void>>;
529
+ ionInfinite: EventEmitter<CustomEvent<void>>;
573
530
  }
574
531
  export declare class IonInfiniteScrollContent {
575
532
  protected z: NgZone;
576
533
  protected el: HTMLIonInfiniteScrollContentElement;
577
534
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
578
535
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInfiniteScrollContent, never>;
579
- static ɵcmp: i0.ɵɵComponentDeclaration<IonInfiniteScrollContent, "ion-infinite-scroll-content", never, { "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; }, {}, never, ["*"], false, never>;
536
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonInfiniteScrollContent, "ion-infinite-scroll-content", never, { "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
580
537
  }
581
538
  export declare interface IonInfiniteScrollContent extends Components.IonInfiniteScrollContent {
582
539
  }
583
540
  export declare class IonInput {
584
541
  protected z: NgZone;
585
542
  protected el: HTMLIonInputElement;
586
- ionInput: EventEmitter<IonInputCustomEvent<IIonInputInputInputEventDetail>>;
587
- ionChange: EventEmitter<IonInputCustomEvent<IIonInputInputChangeEventDetail>>;
588
- ionBlur: EventEmitter<IonInputCustomEvent<FocusEvent>>;
589
- ionFocus: EventEmitter<IonInputCustomEvent<FocusEvent>>;
590
543
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
591
544
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInput, never>;
592
- static ɵcmp: i0.ɵɵComponentDeclaration<IonInput, "ion-input", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearInput": { "alias": "clearInput"; "required": false; }; "clearInputIcon": { "alias": "clearInputIcon"; "required": false; }; "clearOnEdit": { "alias": "clearOnEdit"; "required": false; }; "color": { "alias": "color"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "counterFormatter": { "alias": "counterFormatter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionInput": "ionInput"; "ionChange": "ionChange"; "ionBlur": "ionBlur"; "ionFocus": "ionFocus"; }, never, ["*"], false, never>;
545
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonInput, "ion-input", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearInput": { "alias": "clearInput"; "required": false; }; "clearInputIcon": { "alias": "clearInputIcon"; "required": false; }; "clearOnEdit": { "alias": "clearOnEdit"; "required": false; }; "color": { "alias": "color"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "counterFormatter": { "alias": "counterFormatter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
593
546
  }
594
547
  export declare interface IonInput extends Components.IonInput {
595
548
  /**
@@ -602,7 +555,7 @@ export declare interface IonInput extends Components.IonInput {
602
555
  the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If
603
556
  the input is cleared on edit, the type is `null`.
604
557
  */
605
- ionInput: EventEmitter<IonInputCustomEvent<IIonInputInputInputEventDetail>>;
558
+ ionInput: EventEmitter<CustomEvent<IIonInputInputInputEventDetail>>;
606
559
  /**
607
560
  * The `ionChange` event is fired when the user modifies the input's value.
608
561
  Unlike the `ionInput` event, the `ionChange` event is only fired when changes
@@ -617,27 +570,22 @@ export declare interface IonInput extends Components.IonInput {
617
570
 
618
571
  This event will not emit when programmatically setting the `value` property.
619
572
  */
620
- ionChange: EventEmitter<IonInputCustomEvent<IIonInputInputChangeEventDetail>>;
573
+ ionChange: EventEmitter<CustomEvent<IIonInputInputChangeEventDetail>>;
621
574
  /**
622
575
  * Emitted when the input loses focus.
623
576
  */
624
- ionBlur: EventEmitter<IonInputCustomEvent<FocusEvent>>;
577
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
625
578
  /**
626
579
  * Emitted when the input has focus.
627
580
  */
628
- ionFocus: EventEmitter<IonInputCustomEvent<FocusEvent>>;
581
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
629
582
  }
630
583
  export declare class IonInputOtp {
631
584
  protected z: NgZone;
632
585
  protected el: HTMLIonInputOtpElement;
633
- ionInput: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpInputEventDetail>>;
634
- ionChange: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpChangeEventDetail>>;
635
- ionComplete: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpCompleteEventDetail>>;
636
- ionBlur: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
637
- ionFocus: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
638
586
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
639
587
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInputOtp, never>;
640
- static ɵcmp: i0.ɵɵComponentDeclaration<IonInputOtp, "ion-input-otp", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "length": { "alias": "length"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "separators": { "alias": "separators"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionInput": "ionInput"; "ionChange": "ionChange"; "ionComplete": "ionComplete"; "ionBlur": "ionBlur"; "ionFocus": "ionFocus"; }, never, ["*"], false, never>;
588
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonInputOtp, "ion-input-otp", never, { "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "length": { "alias": "length"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "separators": { "alias": "separators"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
641
589
  }
642
590
  export declare interface IonInputOtp extends Components.IonInputOtp {
643
591
  /**
@@ -650,7 +598,7 @@ export declare interface IonInputOtp extends Components.IonInputOtp {
650
598
  the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If
651
599
  the input is cleared on edit, the type is `null`.
652
600
  */
653
- ionInput: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpInputEventDetail>>;
601
+ ionInput: EventEmitter<CustomEvent<IIonInputOtpInputOtpInputEventDetail>>;
654
602
  /**
655
603
  * The `ionChange` event is fired when the user modifies the input's value.
656
604
  Unlike the `ionInput` event, the `ionChange` event is only fired when changes
@@ -661,19 +609,19 @@ export declare interface IonInputOtp extends Components.IonInputOtp {
661
609
 
662
610
  This event will not emit when programmatically setting the `value` property.
663
611
  */
664
- ionChange: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpChangeEventDetail>>;
612
+ ionChange: EventEmitter<CustomEvent<IIonInputOtpInputOtpChangeEventDetail>>;
665
613
  /**
666
614
  * Emitted when all input boxes have been filled with valid values.
667
615
  */
668
- ionComplete: EventEmitter<IonInputOtpCustomEvent<IIonInputOtpInputOtpCompleteEventDetail>>;
616
+ ionComplete: EventEmitter<CustomEvent<IIonInputOtpInputOtpCompleteEventDetail>>;
669
617
  /**
670
618
  * Emitted when the input group loses focus.
671
619
  */
672
- ionBlur: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
620
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
673
621
  /**
674
622
  * Emitted when the input group has focus.
675
623
  */
676
- ionFocus: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
624
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
677
625
  }
678
626
  export declare class IonInputPasswordToggle {
679
627
  protected z: NgZone;
@@ -689,7 +637,7 @@ export declare class IonItem {
689
637
  protected el: HTMLIonItemElement;
690
638
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
691
639
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItem, never>;
692
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItem, "ion-item", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "detail": { "alias": "detail"; "required": false; }; "detailIcon": { "alias": "detailIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
640
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItem, "ion-item", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "detail": { "alias": "detail"; "required": false; }; "detailIcon": { "alias": "detailIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
693
641
  }
694
642
  export declare interface IonItem extends Components.IonItem {
695
643
  }
@@ -698,7 +646,7 @@ export declare class IonItemDivider {
698
646
  protected el: HTMLIonItemDividerElement;
699
647
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
700
648
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemDivider, never>;
701
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItemDivider, "ion-item-divider", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, {}, never, ["*"], false, never>;
649
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItemDivider, "ion-item-divider", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
702
650
  }
703
651
  export declare interface IonItemDivider extends Components.IonItemDivider {
704
652
  }
@@ -707,7 +655,7 @@ export declare class IonItemGroup {
707
655
  protected el: HTMLIonItemGroupElement;
708
656
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
709
657
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemGroup, never>;
710
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItemGroup, "ion-item-group", never, {}, {}, never, ["*"], false, never>;
658
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItemGroup, "ion-item-group", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
711
659
  }
712
660
  export declare interface IonItemGroup extends Components.IonItemGroup {
713
661
  }
@@ -716,44 +664,42 @@ export declare class IonItemOption {
716
664
  protected el: HTMLIonItemOptionElement;
717
665
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
718
666
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemOption, never>;
719
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItemOption, "ion-item-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
667
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItemOption, "ion-item-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "href": { "alias": "href"; "required": false; }; "hue": { "alias": "hue"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
720
668
  }
721
669
  export declare interface IonItemOption extends Components.IonItemOption {
722
670
  }
723
671
  export declare class IonItemOptions {
724
672
  protected z: NgZone;
725
673
  protected el: HTMLIonItemOptionsElement;
726
- ionSwipe: EventEmitter<IonItemOptionsCustomEvent<any>>;
727
674
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
728
675
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemOptions, never>;
729
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItemOptions, "ion-item-options", never, { "side": { "alias": "side"; "required": false; }; }, { "ionSwipe": "ionSwipe"; }, never, ["*"], false, never>;
676
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItemOptions, "ion-item-options", never, { "mode": { "alias": "mode"; "required": false; }; "side": { "alias": "side"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
730
677
  }
731
678
  export declare interface IonItemOptions extends Components.IonItemOptions {
732
679
  /**
733
680
  * Emitted when the item has been fully swiped.
734
681
  */
735
- ionSwipe: EventEmitter<IonItemOptionsCustomEvent<any>>;
682
+ ionSwipe: EventEmitter<CustomEvent<any>>;
736
683
  }
737
684
  export declare class IonItemSliding {
738
685
  protected z: NgZone;
739
686
  protected el: HTMLIonItemSlidingElement;
740
- ionDrag: EventEmitter<IonItemSlidingCustomEvent<any>>;
741
687
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
742
688
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemSliding, never>;
743
- static ɵcmp: i0.ɵɵComponentDeclaration<IonItemSliding, "ion-item-sliding", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "ionDrag": "ionDrag"; }, never, ["*"], false, never>;
689
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonItemSliding, "ion-item-sliding", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
744
690
  }
745
691
  export declare interface IonItemSliding extends Components.IonItemSliding {
746
692
  /**
747
693
  * Emitted when the sliding position changes.
748
694
  */
749
- ionDrag: EventEmitter<IonItemSlidingCustomEvent<any>>;
695
+ ionDrag: EventEmitter<CustomEvent<any>>;
750
696
  }
751
697
  export declare class IonLabel {
752
698
  protected z: NgZone;
753
699
  protected el: HTMLIonLabelElement;
754
700
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
755
701
  static ɵfac: i0.ɵɵFactoryDeclaration<IonLabel, never>;
756
- static ɵcmp: i0.ɵɵComponentDeclaration<IonLabel, "ion-label", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
702
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonLabel, "ion-label", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
757
703
  }
758
704
  export declare interface IonLabel extends Components.IonLabel {
759
705
  }
@@ -762,7 +708,7 @@ export declare class IonList {
762
708
  protected el: HTMLIonListElement;
763
709
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
764
710
  static ɵfac: i0.ɵɵFactoryDeclaration<IonList, never>;
765
- static ɵcmp: i0.ɵɵComponentDeclaration<IonList, "ion-list", never, { "inset": { "alias": "inset"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
711
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonList, "ion-list", never, { "inset": { "alias": "inset"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
766
712
  }
767
713
  export declare interface IonList extends Components.IonList {
768
714
  }
@@ -771,98 +717,86 @@ export declare class IonListHeader {
771
717
  protected el: HTMLIonListHeaderElement;
772
718
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
773
719
  static ɵfac: i0.ɵɵFactoryDeclaration<IonListHeader, never>;
774
- static ɵcmp: i0.ɵɵComponentDeclaration<IonListHeader, "ion-list-header", never, { "color": { "alias": "color"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
720
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonListHeader, "ion-list-header", never, { "color": { "alias": "color"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
775
721
  }
776
722
  export declare interface IonListHeader extends Components.IonListHeader {
777
723
  }
778
724
  export declare class IonLoading {
779
725
  protected z: NgZone;
780
726
  protected el: HTMLIonLoadingElement;
781
- ionLoadingDidPresent: EventEmitter<IonLoadingCustomEvent<void>>;
782
- ionLoadingWillPresent: EventEmitter<IonLoadingCustomEvent<void>>;
783
- ionLoadingWillDismiss: EventEmitter<IonLoadingCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
784
- ionLoadingDidDismiss: EventEmitter<IonLoadingCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
785
- didPresent: EventEmitter<IonLoadingCustomEvent<void>>;
786
- willPresent: EventEmitter<IonLoadingCustomEvent<void>>;
787
- willDismiss: EventEmitter<IonLoadingCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
788
- didDismiss: EventEmitter<IonLoadingCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
789
727
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
790
728
  static ɵfac: i0.ɵɵFactoryDeclaration<IonLoading, never>;
791
- static ɵcmp: i0.ɵɵComponentDeclaration<IonLoading, "ion-loading", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; }; "spinner": { "alias": "spinner"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionLoadingDidPresent": "ionLoadingDidPresent"; "ionLoadingWillPresent": "ionLoadingWillPresent"; "ionLoadingWillDismiss": "ionLoadingWillDismiss"; "ionLoadingDidDismiss": "ionLoadingDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], false, never>;
729
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonLoading, "ion-loading", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; }; "spinner": { "alias": "spinner"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
792
730
  }
793
731
  export declare interface IonLoading extends Components.IonLoading {
794
732
  /**
795
733
  * Emitted after the loading has presented.
796
734
  */
797
- ionLoadingDidPresent: EventEmitter<IonLoadingCustomEvent<void>>;
735
+ ionLoadingDidPresent: EventEmitter<CustomEvent<void>>;
798
736
  /**
799
737
  * Emitted before the loading has presented.
800
738
  */
801
- ionLoadingWillPresent: EventEmitter<IonLoadingCustomEvent<void>>;
739
+ ionLoadingWillPresent: EventEmitter<CustomEvent<void>>;
802
740
  /**
803
741
  * Emitted before the loading has dismissed.
804
742
  */
805
- ionLoadingWillDismiss: EventEmitter<IonLoadingCustomEvent<IIonLoadingOverlayEventDetail>>;
743
+ ionLoadingWillDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
806
744
  /**
807
745
  * Emitted after the loading has dismissed.
808
746
  */
809
- ionLoadingDidDismiss: EventEmitter<IonLoadingCustomEvent<IIonLoadingOverlayEventDetail>>;
747
+ ionLoadingDidDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
810
748
  /**
811
749
  * Emitted after the loading indicator has presented.
812
750
  Shorthand for ionLoadingWillDismiss.
813
751
  */
814
- didPresent: EventEmitter<IonLoadingCustomEvent<void>>;
752
+ didPresent: EventEmitter<CustomEvent<void>>;
815
753
  /**
816
754
  * Emitted before the loading indicator has presented.
817
755
  Shorthand for ionLoadingWillPresent.
818
756
  */
819
- willPresent: EventEmitter<IonLoadingCustomEvent<void>>;
757
+ willPresent: EventEmitter<CustomEvent<void>>;
820
758
  /**
821
759
  * Emitted before the loading indicator has dismissed.
822
760
  Shorthand for ionLoadingWillDismiss.
823
761
  */
824
- willDismiss: EventEmitter<IonLoadingCustomEvent<IIonLoadingOverlayEventDetail>>;
762
+ willDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
825
763
  /**
826
764
  * Emitted after the loading indicator has dismissed.
827
765
  Shorthand for ionLoadingDidDismiss.
828
766
  */
829
- didDismiss: EventEmitter<IonLoadingCustomEvent<IIonLoadingOverlayEventDetail>>;
767
+ didDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
830
768
  }
831
769
  export declare class IonMenu {
832
770
  protected z: NgZone;
833
771
  protected el: HTMLIonMenuElement;
834
- ionWillOpen: EventEmitter<IonMenuCustomEvent<void>>;
835
- ionWillClose: EventEmitter<IonMenuCustomEvent<IIonMenuMenuCloseEventDetail>>;
836
- ionDidOpen: EventEmitter<IonMenuCustomEvent<void>>;
837
- ionDidClose: EventEmitter<IonMenuCustomEvent<IIonMenuMenuCloseEventDetail>>;
838
772
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
839
773
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenu, never>;
840
- static ɵcmp: i0.ɵɵComponentDeclaration<IonMenu, "ion-menu", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "maxEdgeStart": { "alias": "maxEdgeStart"; "required": false; }; "menuId": { "alias": "menuId"; "required": false; }; "side": { "alias": "side"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "ionWillOpen": "ionWillOpen"; "ionWillClose": "ionWillClose"; "ionDidOpen": "ionDidOpen"; "ionDidClose": "ionDidClose"; }, never, ["*"], false, never>;
774
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonMenu, "ion-menu", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "maxEdgeStart": { "alias": "maxEdgeStart"; "required": false; }; "menuId": { "alias": "menuId"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "side": { "alias": "side"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
841
775
  }
842
776
  export declare interface IonMenu extends Components.IonMenu {
843
777
  /**
844
778
  * Emitted when the menu is about to be opened.
845
779
  */
846
- ionWillOpen: EventEmitter<IonMenuCustomEvent<void>>;
780
+ ionWillOpen: EventEmitter<CustomEvent<void>>;
847
781
  /**
848
782
  * Emitted when the menu is about to be closed.
849
783
  */
850
- ionWillClose: EventEmitter<IonMenuCustomEvent<IIonMenuMenuCloseEventDetail>>;
784
+ ionWillClose: EventEmitter<CustomEvent<IIonMenuMenuCloseEventDetail>>;
851
785
  /**
852
786
  * Emitted when the menu is open.
853
787
  */
854
- ionDidOpen: EventEmitter<IonMenuCustomEvent<void>>;
788
+ ionDidOpen: EventEmitter<CustomEvent<void>>;
855
789
  /**
856
790
  * Emitted when the menu is closed.
857
791
  */
858
- ionDidClose: EventEmitter<IonMenuCustomEvent<IIonMenuMenuCloseEventDetail>>;
792
+ ionDidClose: EventEmitter<CustomEvent<IIonMenuMenuCloseEventDetail>>;
859
793
  }
860
794
  export declare class IonMenuButton {
861
795
  protected z: NgZone;
862
796
  protected el: HTMLIonMenuButtonElement;
863
797
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
864
798
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenuButton, never>;
865
- static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuButton, "ion-menu-button", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
799
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuButton, "ion-menu-button", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
866
800
  }
867
801
  export declare interface IonMenuButton extends Components.IonMenuButton {
868
802
  }
@@ -871,7 +805,7 @@ export declare class IonMenuToggle {
871
805
  protected el: HTMLIonMenuToggleElement;
872
806
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
873
807
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenuToggle, never>;
874
- static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuToggle, "ion-menu-toggle", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; }, {}, never, ["*"], false, never>;
808
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuToggle, "ion-menu-toggle", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
875
809
  }
876
810
  export declare interface IonMenuToggle extends Components.IonMenuToggle {
877
811
  }
@@ -880,7 +814,7 @@ export declare class IonNavLink {
880
814
  protected el: HTMLIonNavLinkElement;
881
815
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
882
816
  static ɵfac: i0.ɵɵFactoryDeclaration<IonNavLink, never>;
883
- static ɵcmp: i0.ɵɵComponentDeclaration<IonNavLink, "ion-nav-link", never, { "component": { "alias": "component"; "required": false; }; "componentProps": { "alias": "componentProps"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; }, {}, never, ["*"], false, never>;
817
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonNavLink, "ion-nav-link", never, { "component": { "alias": "component"; "required": false; }; "componentProps": { "alias": "componentProps"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
884
818
  }
885
819
  export declare interface IonNavLink extends Components.IonNavLink {
886
820
  }
@@ -889,7 +823,7 @@ export declare class IonNote {
889
823
  protected el: HTMLIonNoteElement;
890
824
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
891
825
  static ɵfac: i0.ɵɵFactoryDeclaration<IonNote, never>;
892
- static ɵcmp: i0.ɵɵComponentDeclaration<IonNote, "ion-note", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
826
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonNote, "ion-note", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
893
827
  }
894
828
  export declare interface IonNote extends Components.IonNote {
895
829
  }
@@ -898,17 +832,16 @@ export declare class IonPicker {
898
832
  protected el: HTMLIonPickerElement;
899
833
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
900
834
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPicker, never>;
901
- static ɵcmp: i0.ɵɵComponentDeclaration<IonPicker, "ion-picker", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
835
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonPicker, "ion-picker", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
902
836
  }
903
837
  export declare interface IonPicker extends Components.IonPicker {
904
838
  }
905
839
  export declare class IonPickerColumn {
906
840
  protected z: NgZone;
907
841
  protected el: HTMLIonPickerColumnElement;
908
- ionChange: EventEmitter<IonPickerColumnCustomEvent<IIonPickerColumnPickerColumnChangeEventDetail>>;
909
842
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
910
843
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPickerColumn, never>;
911
- static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerColumn, "ion-picker-column", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; }, never, ["*"], false, never>;
844
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerColumn, "ion-picker-column", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
912
845
  }
913
846
  export declare interface IonPickerColumn extends Components.IonPickerColumn {
914
847
  /**
@@ -916,52 +849,94 @@ export declare interface IonPickerColumn extends Components.IonPickerColumn {
916
849
 
917
850
  This event will not emit when programmatically setting the `value` property.
918
851
  */
919
- ionChange: EventEmitter<IonPickerColumnCustomEvent<IIonPickerColumnPickerColumnChangeEventDetail>>;
852
+ ionChange: EventEmitter<CustomEvent<IIonPickerColumnPickerColumnChangeEventDetail>>;
920
853
  }
921
854
  export declare class IonPickerColumnOption {
922
855
  protected z: NgZone;
923
856
  protected el: HTMLIonPickerColumnOptionElement;
924
857
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
925
858
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPickerColumnOption, never>;
926
- static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerColumnOption, "ion-picker-column-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
859
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerColumnOption, "ion-picker-column-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
927
860
  }
928
861
  export declare interface IonPickerColumnOption extends Components.IonPickerColumnOption {
929
862
  }
863
+ export declare class IonPickerLegacy {
864
+ protected z: NgZone;
865
+ protected el: HTMLIonPickerLegacyElement;
866
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
867
+ static ɵfac: i0.ɵɵFactoryDeclaration<IonPickerLegacy, never>;
868
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerLegacy, "ion-picker-legacy", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showBackdrop": { "alias": "showBackdrop"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
869
+ }
870
+ export declare interface IonPickerLegacy extends Components.IonPickerLegacy {
871
+ /**
872
+ * Emitted after the picker has presented.
873
+ */
874
+ ionPickerDidPresent: EventEmitter<CustomEvent<void>>;
875
+ /**
876
+ * Emitted before the picker has presented.
877
+ */
878
+ ionPickerWillPresent: EventEmitter<CustomEvent<void>>;
879
+ /**
880
+ * Emitted before the picker has dismissed.
881
+ */
882
+ ionPickerWillDismiss: EventEmitter<CustomEvent<IIonPickerLegacyOverlayEventDetail>>;
883
+ /**
884
+ * Emitted after the picker has dismissed.
885
+ */
886
+ ionPickerDidDismiss: EventEmitter<CustomEvent<IIonPickerLegacyOverlayEventDetail>>;
887
+ /**
888
+ * Emitted after the picker has presented.
889
+ Shorthand for ionPickerWillDismiss.
890
+ */
891
+ didPresent: EventEmitter<CustomEvent<void>>;
892
+ /**
893
+ * Emitted before the picker has presented.
894
+ Shorthand for ionPickerWillPresent.
895
+ */
896
+ willPresent: EventEmitter<CustomEvent<void>>;
897
+ /**
898
+ * Emitted before the picker has dismissed.
899
+ Shorthand for ionPickerWillDismiss.
900
+ */
901
+ willDismiss: EventEmitter<CustomEvent<IIonPickerLegacyOverlayEventDetail>>;
902
+ /**
903
+ * Emitted after the picker has dismissed.
904
+ Shorthand for ionPickerDidDismiss.
905
+ */
906
+ didDismiss: EventEmitter<CustomEvent<IIonPickerLegacyOverlayEventDetail>>;
907
+ }
930
908
  export declare class IonProgressBar {
931
909
  protected z: NgZone;
932
910
  protected el: HTMLIonProgressBarElement;
933
911
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
934
912
  static ɵfac: i0.ɵɵFactoryDeclaration<IonProgressBar, never>;
935
- static ɵcmp: i0.ɵɵComponentDeclaration<IonProgressBar, "ion-progress-bar", never, { "buffer": { "alias": "buffer"; "required": false; }; "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "reversed": { "alias": "reversed"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
913
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonProgressBar, "ion-progress-bar", never, { "buffer": { "alias": "buffer"; "required": false; }; "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "reversed": { "alias": "reversed"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
936
914
  }
937
915
  export declare interface IonProgressBar extends Components.IonProgressBar {
938
916
  }
939
917
  export declare class IonRadio {
940
918
  protected z: NgZone;
941
919
  protected el: HTMLIonRadioElement;
942
- ionFocus: EventEmitter<IonRadioCustomEvent<void>>;
943
- ionBlur: EventEmitter<IonRadioCustomEvent<void>>;
944
920
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
945
921
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRadio, never>;
946
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRadio, "ion-radio", never, { "alignment": { "alias": "alignment"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
922
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRadio, "ion-radio", never, { "alignment": { "alias": "alignment"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
947
923
  }
948
924
  export declare interface IonRadio extends Components.IonRadio {
949
925
  /**
950
926
  * Emitted when the radio button has focus.
951
927
  */
952
- ionFocus: EventEmitter<IonRadioCustomEvent<void>>;
928
+ ionFocus: EventEmitter<CustomEvent<void>>;
953
929
  /**
954
930
  * Emitted when the radio button loses focus.
955
931
  */
956
- ionBlur: EventEmitter<IonRadioCustomEvent<void>>;
932
+ ionBlur: EventEmitter<CustomEvent<void>>;
957
933
  }
958
934
  export declare class IonRadioGroup {
959
935
  protected z: NgZone;
960
936
  protected el: HTMLIonRadioGroupElement;
961
- ionChange: EventEmitter<IonRadioGroupCustomEvent<IIonRadioGroupRadioGroupChangeEventDetail<any>>>;
962
937
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
963
938
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRadioGroup, never>;
964
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRadioGroup, "ion-radio-group", never, { "allowEmptySelection": { "alias": "allowEmptySelection"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; }, never, ["*"], false, never>;
939
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRadioGroup, "ion-radio-group", never, { "allowEmptySelection": { "alias": "allowEmptySelection"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
965
940
  }
966
941
  export declare interface IonRadioGroup extends Components.IonRadioGroup {
967
942
  /**
@@ -969,20 +944,14 @@ export declare interface IonRadioGroup extends Components.IonRadioGroup {
969
944
 
970
945
  This event will not emit when programmatically setting the `value` property.
971
946
  */
972
- ionChange: EventEmitter<IonRadioGroupCustomEvent<IIonRadioGroupRadioGroupChangeEventDetail>>;
947
+ ionChange: EventEmitter<CustomEvent<IIonRadioGroupRadioGroupChangeEventDetail>>;
973
948
  }
974
949
  export declare class IonRange {
975
950
  protected z: NgZone;
976
951
  protected el: HTMLIonRangeElement;
977
- ionChange: EventEmitter<IonRangeCustomEvent<IIonRangeRangeChangeEventDetail>>;
978
- ionInput: EventEmitter<IonRangeCustomEvent<IIonRangeRangeChangeEventDetail>>;
979
- ionFocus: EventEmitter<IonRangeCustomEvent<void>>;
980
- ionBlur: EventEmitter<IonRangeCustomEvent<void>>;
981
- ionKnobMoveStart: EventEmitter<IonRangeCustomEvent<IIonRangeRangeKnobMoveStartEventDetail>>;
982
- ionKnobMoveEnd: EventEmitter<IonRangeCustomEvent<IIonRangeRangeKnobMoveEndEventDetail>>;
983
952
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
984
953
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRange, never>;
985
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRange, "ion-range", never, { "activeBarStart": { "alias": "activeBarStart"; "required": false; }; "color": { "alias": "color"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dualKnobs": { "alias": "dualKnobs"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pin": { "alias": "pin"; "required": false; }; "pinFormatter": { "alias": "pinFormatter"; "required": false; }; "snaps": { "alias": "snaps"; "required": false; }; "step": { "alias": "step"; "required": false; }; "ticks": { "alias": "ticks"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; "ionInput": "ionInput"; "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; "ionKnobMoveStart": "ionKnobMoveStart"; "ionKnobMoveEnd": "ionKnobMoveEnd"; }, never, ["*"], false, never>;
954
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRange, "ion-range", never, { "activeBarStart": { "alias": "activeBarStart"; "required": false; }; "color": { "alias": "color"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dualKnobs": { "alias": "dualKnobs"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pin": { "alias": "pin"; "required": false; }; "pinFormatter": { "alias": "pinFormatter"; "required": false; }; "snaps": { "alias": "snaps"; "required": false; }; "step": { "alias": "step"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "ticks": { "alias": "ticks"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
986
955
  }
987
956
  export declare interface IonRange extends Components.IonRange {
988
957
  /**
@@ -993,43 +962,38 @@ export declare interface IonRange extends Components.IonRange {
993
962
 
994
963
  This event will not emit when programmatically setting the `value` property.
995
964
  */
996
- ionChange: EventEmitter<IonRangeCustomEvent<IIonRangeRangeChangeEventDetail>>;
965
+ ionChange: EventEmitter<CustomEvent<IIonRangeRangeChangeEventDetail>>;
997
966
  /**
998
967
  * The `ionInput` event is fired for `<ion-range>` elements when the value
999
968
  is modified. Unlike `ionChange`, `ionInput` is fired continuously
1000
969
  while the user is dragging the knob.
1001
970
  */
1002
- ionInput: EventEmitter<IonRangeCustomEvent<IIonRangeRangeChangeEventDetail>>;
971
+ ionInput: EventEmitter<CustomEvent<IIonRangeRangeChangeEventDetail>>;
1003
972
  /**
1004
973
  * Emitted when the range has focus.
1005
974
  */
1006
- ionFocus: EventEmitter<IonRangeCustomEvent<void>>;
975
+ ionFocus: EventEmitter<CustomEvent<void>>;
1007
976
  /**
1008
977
  * Emitted when the range loses focus.
1009
978
  */
1010
- ionBlur: EventEmitter<IonRangeCustomEvent<void>>;
979
+ ionBlur: EventEmitter<CustomEvent<void>>;
1011
980
  /**
1012
981
  * Emitted when the user starts moving the range knob, whether through
1013
982
  mouse drag, touch gesture, or keyboard interaction.
1014
983
  */
1015
- ionKnobMoveStart: EventEmitter<IonRangeCustomEvent<IIonRangeRangeKnobMoveStartEventDetail>>;
984
+ ionKnobMoveStart: EventEmitter<CustomEvent<IIonRangeRangeKnobMoveStartEventDetail>>;
1016
985
  /**
1017
986
  * Emitted when the user finishes moving the range knob, whether through
1018
987
  mouse drag, touch gesture, or keyboard interaction.
1019
988
  */
1020
- ionKnobMoveEnd: EventEmitter<IonRangeCustomEvent<IIonRangeRangeKnobMoveEndEventDetail>>;
989
+ ionKnobMoveEnd: EventEmitter<CustomEvent<IIonRangeRangeKnobMoveEndEventDetail>>;
1021
990
  }
1022
991
  export declare class IonRefresher {
1023
992
  protected z: NgZone;
1024
993
  protected el: HTMLIonRefresherElement;
1025
- ionRefresh: EventEmitter<IonRefresherCustomEvent<IIonRefresherRefresherEventDetail>>;
1026
- ionPull: EventEmitter<IonRefresherCustomEvent<void>>;
1027
- ionStart: EventEmitter<IonRefresherCustomEvent<void>>;
1028
- ionPullStart: EventEmitter<IonRefresherCustomEvent<void>>;
1029
- ionPullEnd: EventEmitter<IonRefresherCustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
1030
994
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1031
995
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRefresher, never>;
1032
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRefresher, "ion-refresher", never, { "closeDuration": { "alias": "closeDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "pullFactor": { "alias": "pullFactor"; "required": false; }; "pullMax": { "alias": "pullMax"; "required": false; }; "pullMin": { "alias": "pullMin"; "required": false; }; "snapbackDuration": { "alias": "snapbackDuration"; "required": false; }; }, { "ionRefresh": "ionRefresh"; "ionPull": "ionPull"; "ionStart": "ionStart"; "ionPullStart": "ionPullStart"; "ionPullEnd": "ionPullEnd"; }, never, ["*"], false, never>;
996
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRefresher, "ion-refresher", never, { "closeDuration": { "alias": "closeDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "pullFactor": { "alias": "pullFactor"; "required": false; }; "pullMax": { "alias": "pullMax"; "required": false; }; "pullMin": { "alias": "pullMin"; "required": false; }; "snapbackDuration": { "alias": "snapbackDuration"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1033
997
  }
1034
998
  export declare interface IonRefresher extends Components.IonRefresher {
1035
999
  /**
@@ -1038,32 +1002,32 @@ export declare interface IonRefresher extends Components.IonRefresher {
1038
1002
  Updates the refresher state to `refreshing`. The `complete()` method should be
1039
1003
  called when the async operation has completed.
1040
1004
  */
1041
- ionRefresh: EventEmitter<IonRefresherCustomEvent<IIonRefresherRefresherEventDetail>>;
1005
+ ionRefresh: EventEmitter<CustomEvent<IIonRefresherRefresherEventDetail>>;
1042
1006
  /**
1043
1007
  * Emitted while the user is pulling down the content and exposing the refresher.
1044
1008
  */
1045
- ionPull: EventEmitter<IonRefresherCustomEvent<void>>;
1009
+ ionPull: EventEmitter<CustomEvent<void>>;
1046
1010
  /**
1047
1011
  * Emitted when the user begins to start pulling down. @deprecated Use `ionPullStart` instead.
1048
1012
  */
1049
- ionStart: EventEmitter<IonRefresherCustomEvent<void>>;
1013
+ ionStart: EventEmitter<CustomEvent<void>>;
1050
1014
  /**
1051
1015
  * Emitted when the user begins to start pulling down.
1052
1016
  */
1053
- ionPullStart: EventEmitter<IonRefresherCustomEvent<void>>;
1017
+ ionPullStart: EventEmitter<CustomEvent<void>>;
1054
1018
  /**
1055
1019
  * Emitted when the refresher has returned to the inactive state
1056
1020
  after a pull gesture. This fires whether the refresh completed
1057
1021
  successfully or was canceled.
1058
1022
  */
1059
- ionPullEnd: EventEmitter<IonRefresherCustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
1023
+ ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
1060
1024
  }
1061
1025
  export declare class IonRefresherContent {
1062
1026
  protected z: NgZone;
1063
1027
  protected el: HTMLIonRefresherContentElement;
1064
1028
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1065
1029
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRefresherContent, never>;
1066
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRefresherContent, "ion-refresher-content", never, { "pullingIcon": { "alias": "pullingIcon"; "required": false; }; "pullingText": { "alias": "pullingText"; "required": false; }; "refreshingSpinner": { "alias": "refreshingSpinner"; "required": false; }; "refreshingText": { "alias": "refreshingText"; "required": false; }; }, {}, never, ["*"], false, never>;
1030
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRefresherContent, "ion-refresher-content", never, { "mode": { "alias": "mode"; "required": false; }; "pullingIcon": { "alias": "pullingIcon"; "required": false; }; "pullingText": { "alias": "pullingText"; "required": false; }; "refreshingSpinner": { "alias": "refreshingSpinner"; "required": false; }; "refreshingText": { "alias": "refreshingText"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1067
1031
  }
1068
1032
  export declare interface IonRefresherContent extends Components.IonRefresherContent {
1069
1033
  }
@@ -1072,20 +1036,16 @@ export declare class IonReorder {
1072
1036
  protected el: HTMLIonReorderElement;
1073
1037
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1074
1038
  static ɵfac: i0.ɵɵFactoryDeclaration<IonReorder, never>;
1075
- static ɵcmp: i0.ɵɵComponentDeclaration<IonReorder, "ion-reorder", never, {}, {}, never, ["*"], false, never>;
1039
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonReorder, "ion-reorder", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1076
1040
  }
1077
1041
  export declare interface IonReorder extends Components.IonReorder {
1078
1042
  }
1079
1043
  export declare class IonReorderGroup {
1080
1044
  protected z: NgZone;
1081
1045
  protected el: HTMLIonReorderGroupElement;
1082
- ionItemReorder: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupItemReorderEventDetail>>;
1083
- ionReorderStart: EventEmitter<IonReorderGroupCustomEvent<void>>;
1084
- ionReorderMove: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
1085
- ionReorderEnd: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupReorderEndEventDetail>>;
1086
1046
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1087
1047
  static ɵfac: i0.ɵɵFactoryDeclaration<IonReorderGroup, never>;
1088
- static ɵcmp: i0.ɵɵComponentDeclaration<IonReorderGroup, "ion-reorder-group", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "ionItemReorder": "ionItemReorder"; "ionReorderStart": "ionReorderStart"; "ionReorderMove": "ionReorderMove"; "ionReorderEnd": "ionReorderEnd"; }, never, ["*"], false, never>;
1048
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonReorderGroup, "ion-reorder-group", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1089
1049
  }
1090
1050
  export declare interface IonReorderGroup extends Components.IonReorderGroup {
1091
1051
  /**
@@ -1094,15 +1054,15 @@ export declare interface IonReorderGroup extends Components.IonReorderGroup {
1094
1054
  being different you should now add checks as they are always emitted
1095
1055
  in `ionReorderEnd`, even when they are the same.
1096
1056
  */
1097
- ionItemReorder: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupItemReorderEventDetail>>;
1057
+ ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
1098
1058
  /**
1099
1059
  * Event that is emitted when the reorder gesture starts.
1100
1060
  */
1101
- ionReorderStart: EventEmitter<IonReorderGroupCustomEvent<void>>;
1061
+ ionReorderStart: EventEmitter<CustomEvent<void>>;
1102
1062
  /**
1103
1063
  * Event that is emitted as the reorder gesture moves.
1104
1064
  */
1105
- ionReorderMove: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
1065
+ ionReorderMove: EventEmitter<CustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
1106
1066
  /**
1107
1067
  * Event that is emitted when the reorder gesture ends.
1108
1068
  The from and to properties are always available, regardless of
@@ -1111,14 +1071,14 @@ export declare interface IonReorderGroup extends Components.IonReorderGroup {
1111
1071
  Once the event has been emitted, the `complete()` method then needs
1112
1072
  to be called in order to finalize the reorder action.
1113
1073
  */
1114
- ionReorderEnd: EventEmitter<IonReorderGroupCustomEvent<IIonReorderGroupReorderEndEventDetail>>;
1074
+ ionReorderEnd: EventEmitter<CustomEvent<IIonReorderGroupReorderEndEventDetail>>;
1115
1075
  }
1116
1076
  export declare class IonRippleEffect {
1117
1077
  protected z: NgZone;
1118
1078
  protected el: HTMLIonRippleEffectElement;
1119
1079
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1120
1080
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRippleEffect, never>;
1121
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRippleEffect, "ion-ripple-effect", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1081
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRippleEffect, "ion-ripple-effect", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1122
1082
  }
1123
1083
  export declare interface IonRippleEffect extends Components.IonRippleEffect {
1124
1084
  }
@@ -1127,28 +1087,22 @@ export declare class IonRow {
1127
1087
  protected el: HTMLIonRowElement;
1128
1088
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1129
1089
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRow, never>;
1130
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRow, "ion-row", never, {}, {}, never, ["*"], false, never>;
1090
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonRow, "ion-row", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1131
1091
  }
1132
1092
  export declare interface IonRow extends Components.IonRow {
1133
1093
  }
1134
1094
  export declare class IonSearchbar {
1135
1095
  protected z: NgZone;
1136
1096
  protected el: HTMLIonSearchbarElement;
1137
- ionInput: EventEmitter<IonSearchbarCustomEvent<IIonSearchbarSearchbarInputEventDetail>>;
1138
- ionChange: EventEmitter<IonSearchbarCustomEvent<IIonSearchbarSearchbarChangeEventDetail>>;
1139
- ionCancel: EventEmitter<IonSearchbarCustomEvent<void>>;
1140
- ionClear: EventEmitter<IonSearchbarCustomEvent<void>>;
1141
- ionBlur: EventEmitter<IonSearchbarCustomEvent<void>>;
1142
- ionFocus: EventEmitter<IonSearchbarCustomEvent<void>>;
1143
1097
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1144
1098
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSearchbar, never>;
1145
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSearchbar, "ion-searchbar", never, { "animated": { "alias": "animated"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "cancelButtonIcon": { "alias": "cancelButtonIcon"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "clearIcon": { "alias": "clearIcon"; "required": false; }; "color": { "alias": "color"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchIcon": { "alias": "searchIcon"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionInput": "ionInput"; "ionChange": "ionChange"; "ionCancel": "ionCancel"; "ionClear": "ionClear"; "ionBlur": "ionBlur"; "ionFocus": "ionFocus"; }, never, ["*"], false, never>;
1099
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSearchbar, "ion-searchbar", never, { "animated": { "alias": "animated"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "autocorrect": { "alias": "autocorrect"; "required": false; }; "cancelButtonIcon": { "alias": "cancelButtonIcon"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "clearIcon": { "alias": "clearIcon"; "required": false; }; "color": { "alias": "color"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchIcon": { "alias": "searchIcon"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1146
1100
  }
1147
1101
  export declare interface IonSearchbar extends Components.IonSearchbar {
1148
1102
  /**
1149
1103
  * Emitted when the `value` of the `ion-searchbar` element has changed.
1150
1104
  */
1151
- ionInput: EventEmitter<IonSearchbarCustomEvent<IIonSearchbarSearchbarInputEventDetail>>;
1105
+ ionInput: EventEmitter<CustomEvent<IIonSearchbarSearchbarInputEventDetail>>;
1152
1106
  /**
1153
1107
  * The `ionChange` event is fired for `<ion-searchbar>` elements when the user
1154
1108
  modifies the element's value. Unlike the `ionInput` event, the `ionChange`
@@ -1161,31 +1115,30 @@ export declare interface IonSearchbar extends Components.IonSearchbar {
1161
1115
 
1162
1116
  This event will not emit when programmatically setting the `value` property.
1163
1117
  */
1164
- ionChange: EventEmitter<IonSearchbarCustomEvent<IIonSearchbarSearchbarChangeEventDetail>>;
1118
+ ionChange: EventEmitter<CustomEvent<IIonSearchbarSearchbarChangeEventDetail>>;
1165
1119
  /**
1166
1120
  * Emitted when the cancel button is clicked.
1167
1121
  */
1168
- ionCancel: EventEmitter<IonSearchbarCustomEvent<void>>;
1122
+ ionCancel: EventEmitter<CustomEvent<void>>;
1169
1123
  /**
1170
1124
  * Emitted when the clear input button is clicked.
1171
1125
  */
1172
- ionClear: EventEmitter<IonSearchbarCustomEvent<void>>;
1126
+ ionClear: EventEmitter<CustomEvent<void>>;
1173
1127
  /**
1174
1128
  * Emitted when the input loses focus.
1175
1129
  */
1176
- ionBlur: EventEmitter<IonSearchbarCustomEvent<void>>;
1130
+ ionBlur: EventEmitter<CustomEvent<void>>;
1177
1131
  /**
1178
1132
  * Emitted when the input has focus.
1179
1133
  */
1180
- ionFocus: EventEmitter<IonSearchbarCustomEvent<void>>;
1134
+ ionFocus: EventEmitter<CustomEvent<void>>;
1181
1135
  }
1182
1136
  export declare class IonSegment {
1183
1137
  protected z: NgZone;
1184
1138
  protected el: HTMLIonSegmentElement;
1185
- ionChange: EventEmitter<IonSegmentCustomEvent<IIonSegmentSegmentChangeEventDetail>>;
1186
1139
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1187
1140
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegment, never>;
1188
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSegment, "ion-segment", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; }, never, ["*"], false, never>;
1141
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSegment, "ion-segment", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "selectOnFocus": { "alias": "selectOnFocus"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1189
1142
  }
1190
1143
  export declare interface IonSegment extends Components.IonSegment {
1191
1144
  /**
@@ -1193,14 +1146,14 @@ export declare interface IonSegment extends Components.IonSegment {
1193
1146
 
1194
1147
  This event will not emit when programmatically setting the `value` property.
1195
1148
  */
1196
- ionChange: EventEmitter<IonSegmentCustomEvent<IIonSegmentSegmentChangeEventDetail>>;
1149
+ ionChange: EventEmitter<CustomEvent<IIonSegmentSegmentChangeEventDetail>>;
1197
1150
  }
1198
1151
  export declare class IonSegmentButton {
1199
1152
  protected z: NgZone;
1200
1153
  protected el: HTMLIonSegmentButtonElement;
1201
1154
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1202
1155
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentButton, never>;
1203
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentButton, "ion-segment-button", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1156
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentButton, "ion-segment-button", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1204
1157
  }
1205
1158
  export declare interface IonSegmentButton extends Components.IonSegmentButton {
1206
1159
  }
@@ -1216,28 +1169,22 @@ export declare interface IonSegmentContent extends Components.IonSegmentContent
1216
1169
  export declare class IonSegmentView {
1217
1170
  protected z: NgZone;
1218
1171
  protected el: HTMLIonSegmentViewElement;
1219
- ionSegmentViewScroll: EventEmitter<IonSegmentViewCustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
1220
1172
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1221
1173
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentView, never>;
1222
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentView, "ion-segment-view", never, { "disabled": { "alias": "disabled"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; }, { "ionSegmentViewScroll": "ionSegmentViewScroll"; }, never, ["*"], false, never>;
1174
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentView, "ion-segment-view", never, { "disabled": { "alias": "disabled"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; }, {}, never, ["*"], false, never>;
1223
1175
  }
1224
1176
  export declare interface IonSegmentView extends Components.IonSegmentView {
1225
1177
  /**
1226
1178
  * Emitted when the segment view is scrolled.
1227
1179
  */
1228
- ionSegmentViewScroll: EventEmitter<IonSegmentViewCustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
1180
+ ionSegmentViewScroll: EventEmitter<CustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
1229
1181
  }
1230
1182
  export declare class IonSelect {
1231
1183
  protected z: NgZone;
1232
1184
  protected el: HTMLIonSelectElement;
1233
- ionChange: EventEmitter<IonSelectCustomEvent<IIonSelectSelectChangeEventDetail<any>>>;
1234
- ionCancel: EventEmitter<IonSelectCustomEvent<void>>;
1235
- ionDismiss: EventEmitter<IonSelectCustomEvent<void>>;
1236
- ionFocus: EventEmitter<IonSelectCustomEvent<void>>;
1237
- ionBlur: EventEmitter<IonSelectCustomEvent<void>>;
1238
1185
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1239
1186
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelect, never>;
1240
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSelect, "ion-select", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "color": { "alias": "color"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "expandedIcon": { "alias": "expandedIcon"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "interface": { "alias": "interface"; "required": false; }; "interfaceOptions": { "alias": "interfaceOptions"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "okText": { "alias": "okText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "selectedText": { "alias": "selectedText"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; "ionCancel": "ionCancel"; "ionDismiss": "ionDismiss"; "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
1187
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSelect, "ion-select", never, { "cancelIcon": { "alias": "cancelIcon"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "color": { "alias": "color"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "expandedIcon": { "alias": "expandedIcon"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "interface": { "alias": "interface"; "required": false; }; "interfaceOptions": { "alias": "interfaceOptions"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "okText": { "alias": "okText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "selectedText": { "alias": "selectedText"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1241
1188
  }
1242
1189
  export declare interface IonSelect extends Components.IonSelect {
1243
1190
  /**
@@ -1245,30 +1192,30 @@ export declare interface IonSelect extends Components.IonSelect {
1245
1192
 
1246
1193
  This event will not emit when programmatically setting the `value` property.
1247
1194
  */
1248
- ionChange: EventEmitter<IonSelectCustomEvent<IIonSelectSelectChangeEventDetail>>;
1195
+ ionChange: EventEmitter<CustomEvent<IIonSelectSelectChangeEventDetail>>;
1249
1196
  /**
1250
1197
  * Emitted when the selection is cancelled.
1251
1198
  */
1252
- ionCancel: EventEmitter<IonSelectCustomEvent<void>>;
1199
+ ionCancel: EventEmitter<CustomEvent<void>>;
1253
1200
  /**
1254
1201
  * Emitted when the overlay is dismissed.
1255
1202
  */
1256
- ionDismiss: EventEmitter<IonSelectCustomEvent<void>>;
1203
+ ionDismiss: EventEmitter<CustomEvent<void>>;
1257
1204
  /**
1258
1205
  * Emitted when the select has focus.
1259
1206
  */
1260
- ionFocus: EventEmitter<IonSelectCustomEvent<void>>;
1207
+ ionFocus: EventEmitter<CustomEvent<void>>;
1261
1208
  /**
1262
1209
  * Emitted when the select loses focus.
1263
1210
  */
1264
- ionBlur: EventEmitter<IonSelectCustomEvent<void>>;
1211
+ ionBlur: EventEmitter<CustomEvent<void>>;
1265
1212
  }
1266
1213
  export declare class IonSelectModal {
1267
1214
  protected z: NgZone;
1268
1215
  protected el: HTMLIonSelectModalElement;
1269
1216
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1270
1217
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectModal, never>;
1271
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], false, never>;
1218
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "cancelIcon": { "alias": "cancelIcon"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], false, never>;
1272
1219
  }
1273
1220
  export declare interface IonSelectModal extends Components.IonSelectModal {
1274
1221
  }
@@ -1277,7 +1224,7 @@ export declare class IonSelectOption {
1277
1224
  protected el: HTMLIonSelectOptionElement;
1278
1225
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1279
1226
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectOption, never>;
1280
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectOption, "ion-select-option", never, { "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1227
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectOption, "ion-select-option", never, { "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1281
1228
  }
1282
1229
  export declare interface IonSelectOption extends Components.IonSelectOption {
1283
1230
  }
@@ -1286,7 +1233,7 @@ export declare class IonSkeletonText {
1286
1233
  protected el: HTMLIonSkeletonTextElement;
1287
1234
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1288
1235
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSkeletonText, never>;
1289
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSkeletonText, "ion-skeleton-text", never, { "animated": { "alias": "animated"; "required": false; }; }, {}, never, ["*"], false, never>;
1236
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSkeletonText, "ion-skeleton-text", never, { "animated": { "alias": "animated"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1290
1237
  }
1291
1238
  export declare interface IonSkeletonText extends Components.IonSkeletonText {
1292
1239
  }
@@ -1295,25 +1242,22 @@ export declare class IonSpinner {
1295
1242
  protected el: HTMLIonSpinnerElement;
1296
1243
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1297
1244
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSpinner, never>;
1298
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSpinner, "ion-spinner", never, { "color": { "alias": "color"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "name": { "alias": "name"; "required": false; }; "paused": { "alias": "paused"; "required": false; }; }, {}, never, ["*"], false, never>;
1245
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSpinner, "ion-spinner", never, { "color": { "alias": "color"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "paused": { "alias": "paused"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1299
1246
  }
1300
1247
  export declare interface IonSpinner extends Components.IonSpinner {
1301
1248
  }
1302
1249
  export declare class IonSplitPane {
1303
1250
  protected z: NgZone;
1304
1251
  protected el: HTMLIonSplitPaneElement;
1305
- ionSplitPaneVisible: EventEmitter<IonSplitPaneCustomEvent<{
1306
- visible: boolean;
1307
- }>>;
1308
1252
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1309
1253
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSplitPane, never>;
1310
- static ɵcmp: i0.ɵɵComponentDeclaration<IonSplitPane, "ion-split-pane", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "when": { "alias": "when"; "required": false; }; }, { "ionSplitPaneVisible": "ionSplitPaneVisible"; }, never, ["*"], false, never>;
1254
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonSplitPane, "ion-split-pane", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "when": { "alias": "when"; "required": false; }; }, {}, never, ["*"], false, never>;
1311
1255
  }
1312
1256
  export declare interface IonSplitPane extends Components.IonSplitPane {
1313
1257
  /**
1314
1258
  * Expression to be called when the split-pane visibility has changed
1315
1259
  */
1316
- ionSplitPaneVisible: EventEmitter<IonSplitPaneCustomEvent<{
1260
+ ionSplitPaneVisible: EventEmitter<CustomEvent<{
1317
1261
  visible: boolean;
1318
1262
  }>>;
1319
1263
  }
@@ -1322,7 +1266,7 @@ export declare class IonTab {
1322
1266
  protected el: HTMLIonTabElement;
1323
1267
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1324
1268
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTab, never>;
1325
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTab, "ion-tab", never, { "component": { "alias": "component"; "required": false; }; "tab": { "alias": "tab"; "required": true; }; }, {}, never, ["*"], false, never>;
1269
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonTab, "ion-tab", never, { "component": { "alias": "component"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "tab": { "alias": "tab"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1326
1270
  }
1327
1271
  export declare interface IonTab extends Components.IonTab {
1328
1272
  }
@@ -1331,7 +1275,7 @@ export declare class IonTabBar {
1331
1275
  protected el: HTMLIonTabBarElement;
1332
1276
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1333
1277
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTabBar, never>;
1334
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTabBar, "ion-tab-bar", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "selectedTab": { "alias": "selectedTab"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
1278
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonTabBar, "ion-tab-bar", never, { "color": { "alias": "color"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "scrollEffect": { "alias": "scrollEffect"; "required": false; }; "selectedTab": { "alias": "selectedTab"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
1335
1279
  }
1336
1280
  export declare interface IonTabBar extends Components.IonTabBar {
1337
1281
  }
@@ -1340,7 +1284,7 @@ export declare class IonTabButton {
1340
1284
  protected el: HTMLIonTabButtonElement;
1341
1285
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1342
1286
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTabButton, never>;
1343
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTabButton, "ion-tab-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tab": { "alias": "tab"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
1287
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonTabButton, "ion-tab-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "tab": { "alias": "tab"; "required": false; }; "target": { "alias": "target"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1344
1288
  }
1345
1289
  export declare interface IonTabButton extends Components.IonTabButton {
1346
1290
  }
@@ -1349,20 +1293,16 @@ export declare class IonText {
1349
1293
  protected el: HTMLIonTextElement;
1350
1294
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1351
1295
  static ɵfac: i0.ɵɵFactoryDeclaration<IonText, never>;
1352
- static ɵcmp: i0.ɵɵComponentDeclaration<IonText, "ion-text", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
1296
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonText, "ion-text", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1353
1297
  }
1354
1298
  export declare interface IonText extends Components.IonText {
1355
1299
  }
1356
1300
  export declare class IonTextarea {
1357
1301
  protected z: NgZone;
1358
1302
  protected el: HTMLIonTextareaElement;
1359
- ionChange: EventEmitter<IonTextareaCustomEvent<IIonTextareaTextareaChangeEventDetail>>;
1360
- ionInput: EventEmitter<IonTextareaCustomEvent<IIonTextareaTextareaInputEventDetail>>;
1361
- ionBlur: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1362
- ionFocus: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1363
1303
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1364
1304
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTextarea, never>;
1365
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTextarea, "ion-textarea", never, { "autoGrow": { "alias": "autoGrow"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearOnEdit": { "alias": "clearOnEdit"; "required": false; }; "color": { "alias": "color"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "counterFormatter": { "alias": "counterFormatter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, { "ionChange": "ionChange"; "ionInput": "ionInput"; "ionBlur": "ionBlur"; "ionFocus": "ionFocus"; }, never, ["*"], false, never>;
1305
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonTextarea, "ion-textarea", never, { "autoGrow": { "alias": "autoGrow"; "required": false; }; "autocapitalize": { "alias": "autocapitalize"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "clearOnEdit": { "alias": "clearOnEdit"; "required": false; }; "color": { "alias": "color"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "counterFormatter": { "alias": "counterFormatter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellcheck": { "alias": "spellcheck"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
1366
1306
  }
1367
1307
  export declare interface IonTextarea extends Components.IonTextarea {
1368
1308
  /**
@@ -1372,7 +1312,7 @@ export declare interface IonTextarea extends Components.IonTextarea {
1372
1312
 
1373
1313
  This event will not emit when programmatically setting the `value` property.
1374
1314
  */
1375
- ionChange: EventEmitter<IonTextareaCustomEvent<IIonTextareaTextareaChangeEventDetail>>;
1315
+ ionChange: EventEmitter<CustomEvent<IIonTextareaTextareaChangeEventDetail>>;
1376
1316
  /**
1377
1317
  * The `ionInput` event is fired each time the user modifies the textarea's value.
1378
1318
  Unlike the `ionChange` event, the `ionInput` event is fired for each alteration
@@ -1381,22 +1321,22 @@ export declare interface IonTextarea extends Components.IonTextarea {
1381
1321
  When `clearOnEdit` is enabled, the `ionInput` event will be fired when
1382
1322
  the user clears the textarea by performing a keydown event.
1383
1323
  */
1384
- ionInput: EventEmitter<IonTextareaCustomEvent<IIonTextareaTextareaInputEventDetail>>;
1324
+ ionInput: EventEmitter<CustomEvent<IIonTextareaTextareaInputEventDetail>>;
1385
1325
  /**
1386
1326
  * Emitted when the input loses focus.
1387
1327
  */
1388
- ionBlur: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1328
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
1389
1329
  /**
1390
1330
  * Emitted when the input has focus.
1391
1331
  */
1392
- ionFocus: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1332
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
1393
1333
  }
1394
1334
  export declare class IonThumbnail {
1395
1335
  protected z: NgZone;
1396
1336
  protected el: HTMLIonThumbnailElement;
1397
1337
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1398
1338
  static ɵfac: i0.ɵɵFactoryDeclaration<IonThumbnail, never>;
1399
- static ɵcmp: i0.ɵɵComponentDeclaration<IonThumbnail, "ion-thumbnail", never, {}, {}, never, ["*"], false, never>;
1339
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonThumbnail, "ion-thumbnail", never, { "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1400
1340
  }
1401
1341
  export declare interface IonThumbnail extends Components.IonThumbnail {
1402
1342
  }
@@ -1405,72 +1345,61 @@ export declare class IonTitle {
1405
1345
  protected el: HTMLIonTitleElement;
1406
1346
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1407
1347
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTitle, never>;
1408
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTitle, "ion-title", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1348
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonTitle, "ion-title", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, ["*"], false, never>;
1409
1349
  }
1410
1350
  export declare interface IonTitle extends Components.IonTitle {
1411
1351
  }
1412
1352
  export declare class IonToast {
1413
1353
  protected z: NgZone;
1414
1354
  protected el: HTMLIonToastElement;
1415
- ionToastDidPresent: EventEmitter<IonToastCustomEvent<void>>;
1416
- ionToastWillPresent: EventEmitter<IonToastCustomEvent<void>>;
1417
- ionToastWillDismiss: EventEmitter<IonToastCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
1418
- ionToastDidDismiss: EventEmitter<IonToastCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
1419
- didPresent: EventEmitter<IonToastCustomEvent<void>>;
1420
- willPresent: EventEmitter<IonToastCustomEvent<void>>;
1421
- willDismiss: EventEmitter<IonToastCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
1422
- didDismiss: EventEmitter<IonToastCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
1423
1355
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1424
1356
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToast, never>;
1425
- static ɵcmp: i0.ɵɵComponentDeclaration<IonToast, "ion-toast", never, { "animated": { "alias": "animated"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "color": { "alias": "color"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positionAnchor": { "alias": "positionAnchor"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionToastDidPresent": "ionToastDidPresent"; "ionToastWillPresent": "ionToastWillPresent"; "ionToastWillDismiss": "ionToastWillDismiss"; "ionToastDidDismiss": "ionToastDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], false, never>;
1357
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonToast, "ion-toast", never, { "animated": { "alias": "animated"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "color": { "alias": "color"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "hue": { "alias": "hue"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positionAnchor": { "alias": "positionAnchor"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "swipeGesture": { "alias": "swipeGesture"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
1426
1358
  }
1427
1359
  export declare interface IonToast extends Components.IonToast {
1428
1360
  /**
1429
1361
  * Emitted after the toast has presented.
1430
1362
  */
1431
- ionToastDidPresent: EventEmitter<IonToastCustomEvent<void>>;
1363
+ ionToastDidPresent: EventEmitter<CustomEvent<void>>;
1432
1364
  /**
1433
1365
  * Emitted before the toast has presented.
1434
1366
  */
1435
- ionToastWillPresent: EventEmitter<IonToastCustomEvent<void>>;
1367
+ ionToastWillPresent: EventEmitter<CustomEvent<void>>;
1436
1368
  /**
1437
1369
  * Emitted before the toast has dismissed.
1438
1370
  */
1439
- ionToastWillDismiss: EventEmitter<IonToastCustomEvent<IIonToastOverlayEventDetail>>;
1371
+ ionToastWillDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1440
1372
  /**
1441
1373
  * Emitted after the toast has dismissed.
1442
1374
  */
1443
- ionToastDidDismiss: EventEmitter<IonToastCustomEvent<IIonToastOverlayEventDetail>>;
1375
+ ionToastDidDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1444
1376
  /**
1445
1377
  * Emitted after the toast has presented.
1446
1378
  Shorthand for ionToastWillDismiss.
1447
1379
  */
1448
- didPresent: EventEmitter<IonToastCustomEvent<void>>;
1380
+ didPresent: EventEmitter<CustomEvent<void>>;
1449
1381
  /**
1450
1382
  * Emitted before the toast has presented.
1451
1383
  Shorthand for ionToastWillPresent.
1452
1384
  */
1453
- willPresent: EventEmitter<IonToastCustomEvent<void>>;
1385
+ willPresent: EventEmitter<CustomEvent<void>>;
1454
1386
  /**
1455
1387
  * Emitted before the toast has dismissed.
1456
1388
  Shorthand for ionToastWillDismiss.
1457
1389
  */
1458
- willDismiss: EventEmitter<IonToastCustomEvent<IIonToastOverlayEventDetail>>;
1390
+ willDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1459
1391
  /**
1460
1392
  * Emitted after the toast has dismissed.
1461
1393
  Shorthand for ionToastDidDismiss.
1462
1394
  */
1463
- didDismiss: EventEmitter<IonToastCustomEvent<IIonToastOverlayEventDetail>>;
1395
+ didDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1464
1396
  }
1465
1397
  export declare class IonToggle {
1466
1398
  protected z: NgZone;
1467
1399
  protected el: HTMLIonToggleElement;
1468
- ionChange: EventEmitter<IonToggleCustomEvent<IIonToggleToggleChangeEventDetail<any>>>;
1469
- ionFocus: EventEmitter<IonToggleCustomEvent<void>>;
1470
- ionBlur: EventEmitter<IonToggleCustomEvent<void>>;
1471
1400
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1472
1401
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToggle, never>;
1473
- static ɵcmp: i0.ɵɵComponentDeclaration<IonToggle, "ion-toggle", never, { "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableOnOffLabels": { "alias": "enableOnOffLabels"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], false, never>;
1402
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonToggle, "ion-toggle", never, { "alignment": { "alias": "alignment"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableOnOffLabels": { "alias": "enableOnOffLabels"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1474
1403
  }
1475
1404
  export declare interface IonToggle extends Components.IonToggle {
1476
1405
  /**
@@ -1478,22 +1407,22 @@ export declare interface IonToggle extends Components.IonToggle {
1478
1407
 
1479
1408
  This event will not emit when programmatically setting the `checked` property.
1480
1409
  */
1481
- ionChange: EventEmitter<IonToggleCustomEvent<IIonToggleToggleChangeEventDetail>>;
1410
+ ionChange: EventEmitter<CustomEvent<IIonToggleToggleChangeEventDetail>>;
1482
1411
  /**
1483
1412
  * Emitted when the toggle has focus.
1484
1413
  */
1485
- ionFocus: EventEmitter<IonToggleCustomEvent<void>>;
1414
+ ionFocus: EventEmitter<CustomEvent<void>>;
1486
1415
  /**
1487
1416
  * Emitted when the toggle loses focus.
1488
1417
  */
1489
- ionBlur: EventEmitter<IonToggleCustomEvent<void>>;
1418
+ ionBlur: EventEmitter<CustomEvent<void>>;
1490
1419
  }
1491
1420
  export declare class IonToolbar {
1492
1421
  protected z: NgZone;
1493
1422
  protected el: HTMLIonToolbarElement;
1494
1423
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1495
1424
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToolbar, never>;
1496
- static ɵcmp: i0.ɵɵComponentDeclaration<IonToolbar, "ion-toolbar", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
1425
+ static ɵcmp: i0.ɵɵComponentDeclaration<IonToolbar, "ion-toolbar", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "titlePlacement": { "alias": "titlePlacement"; "required": false; }; }, {}, never, ["*"], false, never>;
1497
1426
  }
1498
1427
  export declare interface IonToolbar extends Components.IonToolbar {
1499
1428
  }