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

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