@ionic/angular 8.8.18-dev.11786487682.1e6f798f → 8.8.18-dev.11786663039.1d61e2fe

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