@ionic/angular 8.8.11-dev.11781186446.19d9a1cc → 8.8.11-dev.11781283724.13318488

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 (199) hide show
  1. package/README.md +1 -1
  2. package/app-initialize.d.ts +3 -0
  3. package/common/directives/control-value-accessors/index.d.ts +1 -0
  4. package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
  5. package/common/directives/navigation/back-button.d.ts +23 -0
  6. package/common/directives/navigation/nav-params.d.ts +45 -0
  7. package/common/directives/navigation/nav.d.ts +21 -0
  8. package/common/directives/navigation/router-link-delegate.d.ts +60 -0
  9. package/common/directives/navigation/router-outlet.d.ts +104 -0
  10. package/common/directives/navigation/stack-controller.d.ts +42 -0
  11. package/common/directives/navigation/stack-utils.d.ts +38 -0
  12. package/common/directives/navigation/tabs.d.ts +83 -0
  13. package/common/index.d.ts +22 -0
  14. package/common/overlays/modal.d.ts +62 -0
  15. package/common/overlays/popover.d.ts +46 -0
  16. package/common/providers/angular-delegate.d.ts +28 -0
  17. package/common/providers/config.d.ts +11 -0
  18. package/common/providers/dom-controller.d.ts +16 -0
  19. package/common/providers/menu-controller.d.ts +78 -0
  20. package/common/providers/nav-controller.d.ts +116 -0
  21. package/common/providers/platform.d.ts +174 -0
  22. package/common/types/interfaces.d.ts +8 -0
  23. package/common/types/ionic-lifecycle-hooks.d.ts +27 -0
  24. package/common/types/overlay-options.d.ts +16 -0
  25. package/common/utils/overlay.d.ts +21 -0
  26. package/common/utils/proxy.d.ts +8 -0
  27. package/common/utils/routing.d.ts +28 -0
  28. package/common/utils/util.d.ts +1 -0
  29. package/directives/angular-component-lib/utils.d.ts +9 -0
  30. package/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  31. package/directives/control-value-accessors/index.d.ts +4 -0
  32. package/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
  33. package/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
  34. package/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  35. package/directives/navigation/ion-back-button.d.ts +9 -0
  36. package/directives/navigation/ion-nav.d.ts +8 -0
  37. package/directives/navigation/ion-router-outlet.d.ts +25 -0
  38. package/directives/navigation/ion-tabs.d.ts +13 -0
  39. package/directives/navigation/router-link-delegate.d.ts +16 -0
  40. package/directives/overlays/modal.d.ts +6 -0
  41. package/directives/overlays/popover.d.ts +6 -0
  42. package/directives/proxies-list.d.ts +2 -0
  43. package/{types/ionic-angular.d.ts → directives/proxies.d.ts} +398 -651
  44. package/directives/validators/index.d.ts +2 -0
  45. package/directives/validators/max-validator.d.ts +12 -0
  46. package/directives/validators/min-validator.d.ts +12 -0
  47. package/esm2022/app-initialize.mjs +29 -0
  48. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  49. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  50. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  51. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  52. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  53. package/esm2022/common/directives/navigation/router-link-delegate.mjs +156 -0
  54. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  55. package/esm2022/common/directives/navigation/stack-controller.mjs +280 -0
  56. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  57. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  58. package/esm2022/common/index.mjs +20 -0
  59. package/esm2022/common/ionic-angular-common.mjs +5 -0
  60. package/esm2022/common/overlays/modal.mjs +103 -0
  61. package/esm2022/common/overlays/popover.mjs +91 -0
  62. package/esm2022/common/providers/angular-delegate.mjs +203 -0
  63. package/esm2022/common/providers/config.mjs +45 -0
  64. package/esm2022/common/providers/dom-controller.mjs +45 -0
  65. package/esm2022/common/providers/menu-controller.mjs +114 -0
  66. package/esm2022/common/providers/nav-controller.mjs +235 -0
  67. package/esm2022/common/providers/platform.mjs +258 -0
  68. package/esm2022/common/types/interfaces.mjs +2 -0
  69. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  70. package/esm2022/common/types/overlay-options.mjs +2 -0
  71. package/esm2022/common/utils/overlay.mjs +26 -0
  72. package/esm2022/common/utils/proxy.mjs +47 -0
  73. package/esm2022/common/utils/routing.mjs +55 -0
  74. package/esm2022/common/utils/util.mjs +10 -0
  75. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  76. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  77. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  78. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  79. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  80. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  81. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  82. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  83. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  84. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  85. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  86. package/esm2022/directives/overlays/modal.mjs +22 -0
  87. package/esm2022/directives/overlays/popover.mjs +18 -0
  88. package/esm2022/directives/proxies-list.mjs +90 -0
  89. package/esm2022/directives/proxies.mjs +2373 -0
  90. package/esm2022/directives/validators/index.mjs +3 -0
  91. package/esm2022/directives/validators/max-validator.mjs +27 -0
  92. package/esm2022/directives/validators/min-validator.mjs +27 -0
  93. package/esm2022/index.mjs +32 -0
  94. package/esm2022/ionic-angular.mjs +5 -0
  95. package/esm2022/ionic-module.mjs +111 -0
  96. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  97. package/esm2022/providers/alert-controller.mjs +19 -0
  98. package/esm2022/providers/animation-controller.mjs +38 -0
  99. package/esm2022/providers/gesture-controller.mjs +33 -0
  100. package/esm2022/providers/loading-controller.mjs +19 -0
  101. package/esm2022/providers/menu-controller.mjs +19 -0
  102. package/esm2022/providers/modal-controller.mjs +26 -0
  103. package/esm2022/providers/picker-controller.mjs +22 -0
  104. package/esm2022/providers/popover-controller.mjs +19 -0
  105. package/esm2022/providers/toast-controller.mjs +19 -0
  106. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  107. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  108. package/esm2022/standalone/directives/datetime.mjs +95 -0
  109. package/esm2022/standalone/directives/icon.mjs +35 -0
  110. package/esm2022/standalone/directives/index.mjs +13 -0
  111. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  112. package/esm2022/standalone/directives/input.mjs +113 -0
  113. package/esm2022/standalone/directives/proxies.mjs +2260 -0
  114. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  115. package/esm2022/standalone/directives/range.mjs +78 -0
  116. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  117. package/esm2022/standalone/directives/segment.mjs +60 -0
  118. package/esm2022/standalone/directives/select.mjs +84 -0
  119. package/esm2022/standalone/directives/textarea.mjs +91 -0
  120. package/esm2022/standalone/directives/toggle.mjs +76 -0
  121. package/esm2022/standalone/index.mjs +25 -0
  122. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  123. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  124. package/esm2022/standalone/navigation/nav.mjs +28 -0
  125. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  126. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  127. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  128. package/esm2022/standalone/overlays/modal.mjs +32 -0
  129. package/esm2022/standalone/overlays/popover.mjs +28 -0
  130. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  131. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  132. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  133. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  134. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  135. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  136. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  137. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  138. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  139. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  140. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  141. package/fesm2022/ionic-angular-common.mjs +84 -96
  142. package/fesm2022/ionic-angular-common.mjs.map +1 -1
  143. package/fesm2022/ionic-angular-standalone.mjs +632 -717
  144. package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
  145. package/fesm2022/ionic-angular.mjs +533 -919
  146. package/fesm2022/ionic-angular.mjs.map +1 -1
  147. package/index.d.ts +27 -0
  148. package/ionic-module.d.ts +28 -0
  149. package/package.json +16 -16
  150. package/providers/action-sheet-controller.d.ts +8 -0
  151. package/providers/alert-controller.d.ts +8 -0
  152. package/providers/animation-controller.d.ts +25 -0
  153. package/providers/gesture-controller.d.ts +13 -0
  154. package/providers/loading-controller.d.ts +8 -0
  155. package/providers/menu-controller.d.ts +7 -0
  156. package/providers/modal-controller.d.ts +12 -0
  157. package/providers/picker-controller.d.ts +11 -0
  158. package/providers/popover-controller.d.ts +9 -0
  159. package/providers/toast-controller.d.ts +8 -0
  160. package/schematics/add/index.js +1 -1
  161. package/schematics/utils/ast.js +2 -1
  162. package/schematics/utils/config.js +11 -10
  163. package/schematics/utils/package.js +2 -1
  164. package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
  165. package/standalone/directives/checkbox.d.ts +30 -0
  166. package/standalone/directives/datetime.d.ts +30 -0
  167. package/standalone/directives/icon.d.ts +9 -0
  168. package/standalone/directives/index.d.ts +12 -0
  169. package/standalone/directives/input-otp.d.ts +49 -0
  170. package/standalone/directives/input.d.ts +47 -0
  171. package/standalone/directives/proxies.d.ts +1035 -0
  172. package/standalone/directives/radio-group.d.ts +18 -0
  173. package/standalone/directives/range.d.ts +47 -0
  174. package/standalone/directives/searchbar.d.ts +45 -0
  175. package/standalone/directives/segment.d.ts +19 -0
  176. package/standalone/directives/select.d.ts +34 -0
  177. package/standalone/directives/textarea.d.ts +37 -0
  178. package/standalone/directives/toggle.d.ts +28 -0
  179. package/standalone/index.d.ts +23 -0
  180. package/standalone/navigation/back-button.d.ts +9 -0
  181. package/standalone/navigation/nav.d.ts +8 -0
  182. package/standalone/navigation/router-link-delegate.d.ts +10 -0
  183. package/standalone/navigation/router-outlet.d.ts +25 -0
  184. package/standalone/navigation/tabs.d.ts +13 -0
  185. package/standalone/overlays/modal.d.ts +6 -0
  186. package/standalone/overlays/popover.d.ts +6 -0
  187. package/standalone/providers/action-sheet-controller.d.ts +8 -0
  188. package/standalone/providers/alert-controller.d.ts +8 -0
  189. package/standalone/providers/animation-controller.d.ts +25 -0
  190. package/standalone/providers/gesture-controller.d.ts +13 -0
  191. package/standalone/providers/ionic-angular.d.ts +7 -0
  192. package/standalone/providers/loading-controller.d.ts +8 -0
  193. package/standalone/providers/menu-controller.d.ts +7 -0
  194. package/standalone/providers/modal-controller.d.ts +12 -0
  195. package/standalone/providers/picker-controller.d.ts +11 -0
  196. package/standalone/providers/popover-controller.d.ts +9 -0
  197. package/standalone/providers/toast-controller.d.ts +8 -0
  198. package/types/ionic-angular-common.d.ts +0 -1013
  199. package/types/ionic-angular-standalone.d.ts +0 -1560
@@ -1,569 +1,522 @@
1
- import * as i0 from '@angular/core';
2
- import { Injector, ElementRef, NgZone, ChangeDetectorRef, EventEmitter, ViewContainerRef, QueryList, EnvironmentInjector, Provider, ModuleWithProviders } from '@angular/core';
3
- import { ValueAccessor, IonRouterOutlet as IonRouterOutlet$1, IonTabs as IonTabs$1, IonBackButton as IonBackButton$1, NavController, Config, IonNav as IonNav$1, AngularDelegate, RouterLinkDelegateDirective as RouterLinkDelegateDirective$1, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegateDirective$1, IonModal as IonModal$1, IonPopover as IonPopover$1, OverlayBaseController, MenuController as MenuController$1, ModalOptions, PopoverOptions } from '@ionic/angular/common';
4
- export { AngularDelegate, Config, DomController, IonModalToken, IonicRouteStrategy, ModalOptions, NavController, NavParams, Platform, PopoverOptions, ViewDidEnter, ViewDidLeave, ViewWillEnter, ViewWillLeave } from '@ionic/angular/common';
5
- import { Components, IonAccordionGroupCustomEvent, AccordionGroupChangeEventDetail, IonActionSheetCustomEvent, OverlayEventDetail, IonAlertCustomEvent, IonBackdropCustomEvent, IonBreadcrumbCustomEvent, IonBreadcrumbsCustomEvent, BreadcrumbCollapsedClickEventDetail, IonButtonCustomEvent, IonCheckboxCustomEvent, CheckboxChangeEventDetail, IonContentCustomEvent, ScrollBaseDetail, ScrollDetail, IonDatetimeCustomEvent, DatetimeChangeEventDetail, IonFabButtonCustomEvent, IonImgCustomEvent, IonInfiniteScrollCustomEvent, IonInputCustomEvent, InputInputEventDetail, InputChangeEventDetail, IonInputOtpCustomEvent, InputOtpInputEventDetail, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, IonItemOptionsCustomEvent, IonItemSlidingCustomEvent, IonLoadingCustomEvent, IonMenuCustomEvent, MenuCloseEventDetail, IonPickerColumnCustomEvent, PickerColumnChangeEventDetail, IonRadioCustomEvent, IonRadioGroupCustomEvent, RadioGroupChangeEventDetail, IonRangeCustomEvent, RangeChangeEventDetail, RangeKnobMoveStartEventDetail, RangeKnobMoveEndEventDetail, IonRefresherCustomEvent, RefresherEventDetail, RefresherPullEndEventDetail, IonReorderGroupCustomEvent, ItemReorderEventDetail, ReorderMoveEventDetail, ReorderEndEventDetail, IonSearchbarCustomEvent, SearchbarInputEventDetail, SearchbarChangeEventDetail, IonSegmentCustomEvent, SegmentChangeEventDetail, IonSegmentViewCustomEvent, SegmentViewScrollEvent, IonSelectCustomEvent, SelectChangeEventDetail, IonSplitPaneCustomEvent, IonTextareaCustomEvent, TextareaChangeEventDetail, TextareaInputEventDetail, IonToastCustomEvent, IonToggleCustomEvent, ToggleChangeEventDetail, AlertOptions, Animation, ActionSheetOptions, GestureConfig, Gesture, LoadingOptions, ToastOptions, IonicConfig } from '@ionic/core';
6
- export { AccordionGroupChangeEventDetail, AccordionGroupCustomEvent, ActionSheetButton, ActionSheetOptions, AlertButton, AlertInput, AlertOptions, Animation, AnimationBuilder, AnimationCallbackOptions, AnimationDirection, AnimationFill, AnimationKeyFrames, AnimationLifecycle, BackButtonEvent, BreadcrumbCollapsedClickEventDetail, BreadcrumbCustomEvent, CheckboxChangeEventDetail, CheckboxCustomEvent, DatetimeChangeEventDetail, DatetimeCustomEvent, Gesture, GestureConfig, GestureDetail, InfiniteScrollCustomEvent, InputChangeEventDetail, InputCustomEvent, InputOtpChangeEventDetail, InputOtpCompleteEventDetail, InputOtpCustomEvent, InputOtpInputEventDetail, IonicSafeString, IonicSlides, ItemReorderCustomEvent, ItemReorderEventDetail, ItemSlidingCustomEvent, LoadingOptions, MenuCustomEvent, ModalDragEventDetail, NavComponentWithProps, NavCustomEvent, PlatformConfig, RadioGroupChangeEventDetail, RadioGroupCustomEvent, RangeChangeEventDetail, RangeCustomEvent, RangeKnobMoveEndEventDetail, RangeKnobMoveStartEventDetail, RefresherCustomEvent, RefresherEventDetail, RefresherPullEndCustomEvent, RefresherPullEndEventDetail, ReorderEndCustomEvent, ReorderEndEventDetail, ReorderMoveCustomEvent, ReorderMoveEventDetail, RouterCustomEvent, RouterEventDetail, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDetail, SearchbarChangeEventDetail, SearchbarCustomEvent, SearchbarInputEventDetail, SegmentChangeEventDetail, SegmentCustomEvent, SegmentValue, SelectChangeEventDetail, SelectCustomEvent, SpinnerTypes, TabsCustomEvent, TextareaChangeEventDetail, TextareaCustomEvent, ToastButton, ToastLayout, ToastOptions, ToggleChangeEventDetail, ToggleCustomEvent, TransitionOptions, createAnimation, createGesture, getIonPageElement, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation, openURL } from '@ionic/core';
7
- import * as i15 from '@angular/common';
8
- import { Location } from '@angular/common';
9
- import { Router, ActivatedRoute } from '@angular/router';
10
- import { MaxValidator, MinValidator } from '@angular/forms';
11
-
12
- declare class BooleanValueAccessorDirective extends ValueAccessor {
13
- constructor(injector: Injector, el: ElementRef);
14
- writeValue(value: boolean): void;
15
- _handleIonChange(el: HTMLIonCheckboxElement | HTMLIonToggleElement): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessorDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessorDirective, "ion-checkbox,ion-toggle", never, {}, {}, never, never, false, never>;
18
- }
19
-
20
- declare class NumericValueAccessorDirective extends ValueAccessor {
21
- private el;
22
- constructor(injector: Injector, el: ElementRef<HTMLInputElement | HTMLIonRangeElement>);
23
- handleInputEvent(el: HTMLIonInputElement | HTMLIonInputOtpElement | HTMLIonRangeElement): void;
24
- registerOnChange(fn: (_: number | null) => void): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<NumericValueAccessorDirective, never>;
26
- static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessorDirective, "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", never, {}, {}, never, never, false, never>;
27
- }
28
-
29
- declare class SelectValueAccessorDirective extends ValueAccessor {
30
- constructor(injector: Injector, el: ElementRef);
31
- _handleChangeEvent(el: HTMLIonSelectElement | HTMLIonRadioGroupElement | HTMLIonSegmentElement | HTMLIonDatetimeElement): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectValueAccessorDirective, never>;
33
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectValueAccessorDirective, "ion-select, ion-radio-group, ion-segment, ion-datetime", never, {}, {}, never, never, false, never>;
34
- }
35
-
36
- declare class TextValueAccessorDirective extends ValueAccessor {
37
- constructor(injector: Injector, el: ElementRef);
38
- _handleInputEvent(el: HTMLIonInputElement | HTMLIonInputOtpElement | HTMLIonTextareaElement | HTMLIonSearchbarElement): void;
39
- static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessorDirective, never>;
40
- static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessorDirective, "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", never, {}, {}, never, never, false, never>;
41
- }
42
-
43
- declare class IonAccordion {
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
+ import { Components } from '@ionic/core';
3
+ import type { AccordionGroupChangeEventDetail as IIonAccordionGroupAccordionGroupChangeEventDetail } from '@ionic/core';
4
+ import type { OverlayEventDetail as IIonActionSheetOverlayEventDetail } from '@ionic/core';
5
+ import type { OverlayEventDetail as IIonAlertOverlayEventDetail } from '@ionic/core';
6
+ import type { BreadcrumbCollapsedClickEventDetail as IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail } from '@ionic/core';
7
+ import type { CheckboxChangeEventDetail as IIonCheckboxCheckboxChangeEventDetail } from '@ionic/core';
8
+ import type { ScrollBaseDetail as IIonContentScrollBaseDetail } from '@ionic/core';
9
+ import type { ScrollDetail as IIonContentScrollDetail } from '@ionic/core';
10
+ import type { DatetimeChangeEventDetail as IIonDatetimeDatetimeChangeEventDetail } from '@ionic/core';
11
+ import type { InputInputEventDetail as IIonInputInputInputEventDetail } from '@ionic/core';
12
+ import type { InputChangeEventDetail as IIonInputInputChangeEventDetail } from '@ionic/core';
13
+ import type { InputOtpInputEventDetail as IIonInputOtpInputOtpInputEventDetail } from '@ionic/core';
14
+ import type { InputOtpChangeEventDetail as IIonInputOtpInputOtpChangeEventDetail } from '@ionic/core';
15
+ import type { InputOtpCompleteEventDetail as IIonInputOtpInputOtpCompleteEventDetail } from '@ionic/core';
16
+ import type { OverlayEventDetail as IIonLoadingOverlayEventDetail } from '@ionic/core';
17
+ import type { MenuCloseEventDetail as IIonMenuMenuCloseEventDetail } from '@ionic/core';
18
+ import type { PickerColumnChangeEventDetail as IIonPickerColumnPickerColumnChangeEventDetail } from '@ionic/core';
19
+ import type { OverlayEventDetail as IIonPickerLegacyOverlayEventDetail } from '@ionic/core';
20
+ import type { RadioGroupChangeEventDetail as IIonRadioGroupRadioGroupChangeEventDetail } from '@ionic/core';
21
+ import type { RangeChangeEventDetail as IIonRangeRangeChangeEventDetail } from '@ionic/core';
22
+ import type { RangeKnobMoveStartEventDetail as IIonRangeRangeKnobMoveStartEventDetail } from '@ionic/core';
23
+ import type { RangeKnobMoveEndEventDetail as IIonRangeRangeKnobMoveEndEventDetail } from '@ionic/core';
24
+ import type { RefresherEventDetail as IIonRefresherRefresherEventDetail } from '@ionic/core';
25
+ import type { RefresherPullEndEventDetail as IIonRefresherRefresherPullEndEventDetail } from '@ionic/core';
26
+ import type { ItemReorderEventDetail as IIonReorderGroupItemReorderEventDetail } from '@ionic/core';
27
+ import type { ReorderMoveEventDetail as IIonReorderGroupReorderMoveEventDetail } from '@ionic/core';
28
+ import type { ReorderEndEventDetail as IIonReorderGroupReorderEndEventDetail } from '@ionic/core';
29
+ import type { SearchbarInputEventDetail as IIonSearchbarSearchbarInputEventDetail } from '@ionic/core';
30
+ import type { SearchbarChangeEventDetail as IIonSearchbarSearchbarChangeEventDetail } from '@ionic/core';
31
+ import type { SegmentChangeEventDetail as IIonSegmentSegmentChangeEventDetail } from '@ionic/core';
32
+ import type { SegmentViewScrollEvent as IIonSegmentViewSegmentViewScrollEvent } from '@ionic/core';
33
+ import type { SelectChangeEventDetail as IIonSelectSelectChangeEventDetail } from '@ionic/core';
34
+ import type { TextareaChangeEventDetail as IIonTextareaTextareaChangeEventDetail } from '@ionic/core';
35
+ import type { TextareaInputEventDetail as IIonTextareaTextareaInputEventDetail } from '@ionic/core';
36
+ import type { OverlayEventDetail as IIonToastOverlayEventDetail } from '@ionic/core';
37
+ import type { ToggleChangeEventDetail as IIonToggleToggleChangeEventDetail } from '@ionic/core';
38
+ import * as i0 from "@angular/core";
39
+ export declare class IonAccordion {
44
40
  protected z: NgZone;
45
41
  protected el: HTMLIonAccordionElement;
46
42
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
47
43
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordion, never>;
48
44
  static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordion, "ion-accordion", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "toggleIconSlot": { "alias": "toggleIconSlot"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
49
45
  }
50
- declare interface IonAccordion extends Components.IonAccordion {
46
+ export declare interface IonAccordion extends Components.IonAccordion {
51
47
  }
52
- declare class IonAccordionGroup {
48
+ export declare class IonAccordionGroup {
53
49
  protected z: NgZone;
54
50
  protected el: HTMLIonAccordionGroupElement;
55
- ionChange: EventEmitter<IonAccordionGroupCustomEvent<AccordionGroupChangeEventDetail<any>>>;
56
51
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
57
52
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordionGroup, never>;
58
- 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>;
59
54
  }
60
- declare interface IonAccordionGroup extends Components.IonAccordionGroup {
55
+ export declare interface IonAccordionGroup extends Components.IonAccordionGroup {
61
56
  /**
62
57
  * Emitted when the value property has changed as a result of a user action such as a click.
63
58
 
64
59
  This event will not emit when programmatically setting the `value` property.
65
60
  */
66
- ionChange: EventEmitter<IonAccordionGroupCustomEvent<AccordionGroupChangeEventDetail>>;
61
+ ionChange: EventEmitter<CustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>;
67
62
  }
68
- declare class IonActionSheet {
63
+ export declare class IonActionSheet {
69
64
  protected z: NgZone;
70
65
  protected el: HTMLIonActionSheetElement;
71
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
72
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
73
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail<any>>>;
74
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail<any>>>;
75
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
76
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
77
- willDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail<any>>>;
78
- didDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail<any>>>;
79
66
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
80
67
  static ɵfac: i0.ɵɵFactoryDeclaration<IonActionSheet, never>;
81
- 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>;
82
69
  }
83
- declare interface IonActionSheet extends Components.IonActionSheet {
70
+ export declare interface IonActionSheet extends Components.IonActionSheet {
84
71
  /**
85
72
  * Emitted after the action sheet has presented.
86
73
  */
87
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
74
+ ionActionSheetDidPresent: EventEmitter<CustomEvent<void>>;
88
75
  /**
89
76
  * Emitted before the action sheet has presented.
90
77
  */
91
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
78
+ ionActionSheetWillPresent: EventEmitter<CustomEvent<void>>;
92
79
  /**
93
80
  * Emitted before the action sheet has dismissed.
94
81
  */
95
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail>>;
82
+ ionActionSheetWillDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
96
83
  /**
97
84
  * Emitted after the action sheet has dismissed.
98
85
  */
99
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail>>;
86
+ ionActionSheetDidDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
100
87
  /**
101
88
  * Emitted after the action sheet has presented.
102
89
  Shorthand for ionActionSheetWillDismiss.
103
90
  */
104
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
91
+ didPresent: EventEmitter<CustomEvent<void>>;
105
92
  /**
106
93
  * Emitted before the action sheet has presented.
107
94
  Shorthand for ionActionSheetWillPresent.
108
95
  */
109
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
96
+ willPresent: EventEmitter<CustomEvent<void>>;
110
97
  /**
111
98
  * Emitted before the action sheet has dismissed.
112
99
  Shorthand for ionActionSheetWillDismiss.
113
100
  */
114
- willDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail>>;
101
+ willDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
115
102
  /**
116
103
  * Emitted after the action sheet has dismissed.
117
104
  Shorthand for ionActionSheetDidDismiss.
118
105
  */
119
- didDismiss: EventEmitter<IonActionSheetCustomEvent<OverlayEventDetail>>;
106
+ didDismiss: EventEmitter<CustomEvent<IIonActionSheetOverlayEventDetail>>;
120
107
  }
121
- declare class IonAlert {
108
+ export declare class IonAlert {
122
109
  protected z: NgZone;
123
110
  protected el: HTMLIonAlertElement;
124
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
125
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
126
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail<any>>>;
127
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail<any>>>;
128
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
129
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
130
- willDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail<any>>>;
131
- didDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail<any>>>;
132
111
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
133
112
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAlert, never>;
134
- 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>;
135
114
  }
136
- declare interface IonAlert extends Components.IonAlert {
115
+ export declare interface IonAlert extends Components.IonAlert {
137
116
  /**
138
117
  * Emitted after the alert has presented.
139
118
  */
140
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
119
+ ionAlertDidPresent: EventEmitter<CustomEvent<void>>;
141
120
  /**
142
121
  * Emitted before the alert has presented.
143
122
  */
144
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
123
+ ionAlertWillPresent: EventEmitter<CustomEvent<void>>;
145
124
  /**
146
125
  * Emitted before the alert has dismissed.
147
126
  */
148
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail>>;
127
+ ionAlertWillDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
149
128
  /**
150
129
  * Emitted after the alert has dismissed.
151
130
  */
152
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail>>;
131
+ ionAlertDidDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
153
132
  /**
154
133
  * Emitted after the alert has presented.
155
134
  Shorthand for ionAlertWillDismiss.
156
135
  */
157
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
136
+ didPresent: EventEmitter<CustomEvent<void>>;
158
137
  /**
159
138
  * Emitted before the alert has presented.
160
139
  Shorthand for ionAlertWillPresent.
161
140
  */
162
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
141
+ willPresent: EventEmitter<CustomEvent<void>>;
163
142
  /**
164
143
  * Emitted before the alert has dismissed.
165
144
  Shorthand for ionAlertWillDismiss.
166
145
  */
167
- willDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail>>;
146
+ willDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
168
147
  /**
169
148
  * Emitted after the alert has dismissed.
170
149
  Shorthand for ionAlertDidDismiss.
171
150
  */
172
- didDismiss: EventEmitter<IonAlertCustomEvent<OverlayEventDetail>>;
151
+ didDismiss: EventEmitter<CustomEvent<IIonAlertOverlayEventDetail>>;
173
152
  }
174
- declare class IonApp {
153
+ export declare class IonApp {
175
154
  protected z: NgZone;
176
155
  protected el: HTMLIonAppElement;
177
156
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
178
157
  static ɵfac: i0.ɵɵFactoryDeclaration<IonApp, never>;
179
158
  static ɵcmp: i0.ɵɵComponentDeclaration<IonApp, "ion-app", never, {}, {}, never, ["*"], false, never>;
180
159
  }
181
- declare interface IonApp extends Components.IonApp {
160
+ export declare interface IonApp extends Components.IonApp {
182
161
  }
183
- declare class IonAvatar {
162
+ export declare class IonAvatar {
184
163
  protected z: NgZone;
185
164
  protected el: HTMLIonAvatarElement;
186
165
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
187
166
  static ɵfac: i0.ɵɵFactoryDeclaration<IonAvatar, never>;
188
167
  static ɵcmp: i0.ɵɵComponentDeclaration<IonAvatar, "ion-avatar", never, {}, {}, never, ["*"], false, never>;
189
168
  }
190
- declare interface IonAvatar extends Components.IonAvatar {
169
+ export declare interface IonAvatar extends Components.IonAvatar {
191
170
  }
192
- declare class IonBackdrop {
171
+ export declare class IonBackdrop {
193
172
  protected z: NgZone;
194
173
  protected el: HTMLIonBackdropElement;
195
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
196
174
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
197
175
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBackdrop, never>;
198
- 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>;
199
177
  }
200
- declare interface IonBackdrop extends Components.IonBackdrop {
178
+ export declare interface IonBackdrop extends Components.IonBackdrop {
201
179
  /**
202
180
  * Emitted when the backdrop is tapped.
203
181
  */
204
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
182
+ ionBackdropTap: EventEmitter<CustomEvent<void>>;
205
183
  }
206
- declare class IonBadge {
184
+ export declare class IonBadge {
207
185
  protected z: NgZone;
208
186
  protected el: HTMLIonBadgeElement;
209
187
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
210
188
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBadge, never>;
211
189
  static ɵcmp: i0.ɵɵComponentDeclaration<IonBadge, "ion-badge", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
212
190
  }
213
- declare interface IonBadge extends Components.IonBadge {
191
+ export declare interface IonBadge extends Components.IonBadge {
214
192
  }
215
- declare class IonBreadcrumb {
193
+ export declare class IonBreadcrumb {
216
194
  protected z: NgZone;
217
195
  protected el: HTMLIonBreadcrumbElement;
218
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
219
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
220
196
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
221
197
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBreadcrumb, never>;
222
- 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>;
223
199
  }
224
- declare interface IonBreadcrumb extends Components.IonBreadcrumb {
200
+ export declare interface IonBreadcrumb extends Components.IonBreadcrumb {
225
201
  /**
226
202
  * Emitted when the breadcrumb has focus.
227
203
  */
228
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
204
+ ionFocus: EventEmitter<CustomEvent<void>>;
229
205
  /**
230
206
  * Emitted when the breadcrumb loses focus.
231
207
  */
232
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
208
+ ionBlur: EventEmitter<CustomEvent<void>>;
233
209
  }
234
- declare class IonBreadcrumbs {
210
+ export declare class IonBreadcrumbs {
235
211
  protected z: NgZone;
236
212
  protected el: HTMLIonBreadcrumbsElement;
237
- ionCollapsedClick: EventEmitter<IonBreadcrumbsCustomEvent<BreadcrumbCollapsedClickEventDetail>>;
238
213
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
239
214
  static ɵfac: i0.ɵɵFactoryDeclaration<IonBreadcrumbs, never>;
240
- 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>;
241
216
  }
242
- declare interface IonBreadcrumbs extends Components.IonBreadcrumbs {
217
+ export declare interface IonBreadcrumbs extends Components.IonBreadcrumbs {
243
218
  /**
244
219
  * Emitted when the collapsed indicator is clicked on.
245
220
  */
246
- ionCollapsedClick: EventEmitter<IonBreadcrumbsCustomEvent<BreadcrumbCollapsedClickEventDetail>>;
221
+ ionCollapsedClick: EventEmitter<CustomEvent<IIonBreadcrumbsBreadcrumbCollapsedClickEventDetail>>;
247
222
  }
248
- declare class IonButton {
223
+ export declare class IonButton {
249
224
  protected z: NgZone;
250
225
  protected el: HTMLIonButtonElement;
251
- ionFocus: EventEmitter<IonButtonCustomEvent<void>>;
252
- ionBlur: EventEmitter<IonButtonCustomEvent<void>>;
253
226
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
254
227
  static ɵfac: i0.ɵɵFactoryDeclaration<IonButton, never>;
255
- 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>;
256
229
  }
257
- declare interface IonButton extends Components.IonButton {
230
+ export declare interface IonButton extends Components.IonButton {
258
231
  /**
259
232
  * Emitted when the button has focus.
260
233
  */
261
- ionFocus: EventEmitter<IonButtonCustomEvent<void>>;
234
+ ionFocus: EventEmitter<CustomEvent<void>>;
262
235
  /**
263
236
  * Emitted when the button loses focus.
264
237
  */
265
- ionBlur: EventEmitter<IonButtonCustomEvent<void>>;
238
+ ionBlur: EventEmitter<CustomEvent<void>>;
266
239
  }
267
- declare class IonButtons {
240
+ export declare class IonButtons {
268
241
  protected z: NgZone;
269
242
  protected el: HTMLIonButtonsElement;
270
243
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
271
244
  static ɵfac: i0.ɵɵFactoryDeclaration<IonButtons, never>;
272
245
  static ɵcmp: i0.ɵɵComponentDeclaration<IonButtons, "ion-buttons", never, { "collapse": { "alias": "collapse"; "required": false; }; }, {}, never, ["*"], false, never>;
273
246
  }
274
- declare interface IonButtons extends Components.IonButtons {
247
+ export declare interface IonButtons extends Components.IonButtons {
275
248
  }
276
- declare class IonCard {
249
+ export declare class IonCard {
277
250
  protected z: NgZone;
278
251
  protected el: HTMLIonCardElement;
279
252
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
280
253
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCard, never>;
281
254
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCard, "ion-card", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
282
255
  }
283
- declare interface IonCard extends Components.IonCard {
256
+ export declare interface IonCard extends Components.IonCard {
284
257
  }
285
- declare class IonCardContent {
258
+ export declare class IonCardContent {
286
259
  protected z: NgZone;
287
260
  protected el: HTMLIonCardContentElement;
288
261
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
289
262
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardContent, never>;
290
263
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCardContent, "ion-card-content", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
291
264
  }
292
- declare interface IonCardContent extends Components.IonCardContent {
265
+ export declare interface IonCardContent extends Components.IonCardContent {
293
266
  }
294
- declare class IonCardHeader {
267
+ export declare class IonCardHeader {
295
268
  protected z: NgZone;
296
269
  protected el: HTMLIonCardHeaderElement;
297
270
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
298
271
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardHeader, never>;
299
272
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCardHeader, "ion-card-header", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
300
273
  }
301
- declare interface IonCardHeader extends Components.IonCardHeader {
274
+ export declare interface IonCardHeader extends Components.IonCardHeader {
302
275
  }
303
- declare class IonCardSubtitle {
276
+ export declare class IonCardSubtitle {
304
277
  protected z: NgZone;
305
278
  protected el: HTMLIonCardSubtitleElement;
306
279
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
307
280
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardSubtitle, never>;
308
281
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCardSubtitle, "ion-card-subtitle", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
309
282
  }
310
- declare interface IonCardSubtitle extends Components.IonCardSubtitle {
283
+ export declare interface IonCardSubtitle extends Components.IonCardSubtitle {
311
284
  }
312
- declare class IonCardTitle {
285
+ export declare class IonCardTitle {
313
286
  protected z: NgZone;
314
287
  protected el: HTMLIonCardTitleElement;
315
288
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
316
289
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCardTitle, never>;
317
290
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCardTitle, "ion-card-title", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
318
291
  }
319
- declare interface IonCardTitle extends Components.IonCardTitle {
292
+ export declare interface IonCardTitle extends Components.IonCardTitle {
320
293
  }
321
- declare class IonCheckbox {
294
+ export declare class IonCheckbox {
322
295
  protected z: NgZone;
323
296
  protected el: HTMLIonCheckboxElement;
324
- ionChange: EventEmitter<IonCheckboxCustomEvent<CheckboxChangeEventDetail<any>>>;
325
- ionFocus: EventEmitter<IonCheckboxCustomEvent<void>>;
326
- ionBlur: EventEmitter<IonCheckboxCustomEvent<void>>;
327
297
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
328
298
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCheckbox, never>;
329
- 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>;
330
300
  }
331
- declare interface IonCheckbox extends Components.IonCheckbox {
301
+ export declare interface IonCheckbox extends Components.IonCheckbox {
332
302
  /**
333
303
  * Emitted when the checked property has changed as a result of a user action such as a click.
334
304
 
335
305
  This event will not emit when programmatically setting the `checked` property.
336
306
  */
337
- ionChange: EventEmitter<IonCheckboxCustomEvent<CheckboxChangeEventDetail>>;
307
+ ionChange: EventEmitter<CustomEvent<IIonCheckboxCheckboxChangeEventDetail>>;
338
308
  /**
339
309
  * Emitted when the checkbox has focus.
340
310
  */
341
- ionFocus: EventEmitter<IonCheckboxCustomEvent<void>>;
311
+ ionFocus: EventEmitter<CustomEvent<void>>;
342
312
  /**
343
313
  * Emitted when the checkbox loses focus.
344
314
  */
345
- ionBlur: EventEmitter<IonCheckboxCustomEvent<void>>;
315
+ ionBlur: EventEmitter<CustomEvent<void>>;
346
316
  }
347
- declare class IonChip {
317
+ export declare class IonChip {
348
318
  protected z: NgZone;
349
319
  protected el: HTMLIonChipElement;
350
320
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
351
321
  static ɵfac: i0.ɵɵFactoryDeclaration<IonChip, never>;
352
322
  static ɵcmp: i0.ɵɵComponentDeclaration<IonChip, "ion-chip", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; }, {}, never, ["*"], false, never>;
353
323
  }
354
- declare interface IonChip extends Components.IonChip {
324
+ export declare interface IonChip extends Components.IonChip {
355
325
  }
356
- declare class IonCol {
326
+ export declare class IonCol {
357
327
  protected z: NgZone;
358
328
  protected el: HTMLIonColElement;
359
329
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
360
330
  static ɵfac: i0.ɵɵFactoryDeclaration<IonCol, never>;
361
331
  static ɵcmp: i0.ɵɵComponentDeclaration<IonCol, "ion-col", never, { "offset": { "alias": "offset"; "required": false; }; "offsetLg": { "alias": "offsetLg"; "required": false; }; "offsetMd": { "alias": "offsetMd"; "required": false; }; "offsetSm": { "alias": "offsetSm"; "required": false; }; "offsetXl": { "alias": "offsetXl"; "required": false; }; "offsetXs": { "alias": "offsetXs"; "required": false; }; "pull": { "alias": "pull"; "required": false; }; "pullLg": { "alias": "pullLg"; "required": false; }; "pullMd": { "alias": "pullMd"; "required": false; }; "pullSm": { "alias": "pullSm"; "required": false; }; "pullXl": { "alias": "pullXl"; "required": false; }; "pullXs": { "alias": "pullXs"; "required": false; }; "push": { "alias": "push"; "required": false; }; "pushLg": { "alias": "pushLg"; "required": false; }; "pushMd": { "alias": "pushMd"; "required": false; }; "pushSm": { "alias": "pushSm"; "required": false; }; "pushXl": { "alias": "pushXl"; "required": false; }; "pushXs": { "alias": "pushXs"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeLg": { "alias": "sizeLg"; "required": false; }; "sizeMd": { "alias": "sizeMd"; "required": false; }; "sizeSm": { "alias": "sizeSm"; "required": false; }; "sizeXl": { "alias": "sizeXl"; "required": false; }; "sizeXs": { "alias": "sizeXs"; "required": false; }; }, {}, never, ["*"], false, never>;
362
332
  }
363
- declare interface IonCol extends Components.IonCol {
333
+ export declare interface IonCol extends Components.IonCol {
364
334
  }
365
- declare class IonContent {
335
+ export declare class IonContent {
366
336
  protected z: NgZone;
367
337
  protected el: HTMLIonContentElement;
368
- ionScrollStart: EventEmitter<IonContentCustomEvent<ScrollBaseDetail>>;
369
- ionScroll: EventEmitter<IonContentCustomEvent<ScrollDetail>>;
370
- ionScrollEnd: EventEmitter<IonContentCustomEvent<ScrollBaseDetail>>;
371
338
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
372
339
  static ɵfac: i0.ɵɵFactoryDeclaration<IonContent, never>;
373
- 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>;
374
341
  }
375
- declare interface IonContent extends Components.IonContent {
342
+ export declare interface IonContent extends Components.IonContent {
376
343
  /**
377
344
  * Emitted when the scroll has started. This event is disabled by default.
378
345
  Set `scrollEvents` to `true` to enable.
379
346
  */
380
- ionScrollStart: EventEmitter<IonContentCustomEvent<ScrollBaseDetail>>;
347
+ ionScrollStart: EventEmitter<CustomEvent<IIonContentScrollBaseDetail>>;
381
348
  /**
382
349
  * Emitted while scrolling. This event is disabled by default.
383
350
  Set `scrollEvents` to `true` to enable.
384
351
  */
385
- ionScroll: EventEmitter<IonContentCustomEvent<ScrollDetail>>;
352
+ ionScroll: EventEmitter<CustomEvent<IIonContentScrollDetail>>;
386
353
  /**
387
354
  * Emitted when the scroll has ended. This event is disabled by default.
388
355
  Set `scrollEvents` to `true` to enable.
389
356
  */
390
- ionScrollEnd: EventEmitter<IonContentCustomEvent<ScrollBaseDetail>>;
357
+ ionScrollEnd: EventEmitter<CustomEvent<IIonContentScrollBaseDetail>>;
391
358
  }
392
- declare class IonDatetime {
359
+ export declare class IonDatetime {
393
360
  protected z: NgZone;
394
361
  protected el: HTMLIonDatetimeElement;
395
- ionCancel: EventEmitter<IonDatetimeCustomEvent<void>>;
396
- ionChange: EventEmitter<IonDatetimeCustomEvent<DatetimeChangeEventDetail>>;
397
- ionFocus: EventEmitter<IonDatetimeCustomEvent<void>>;
398
- ionBlur: EventEmitter<IonDatetimeCustomEvent<void>>;
399
362
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
400
363
  static ɵfac: i0.ɵɵFactoryDeclaration<IonDatetime, never>;
401
- 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>;
402
365
  }
403
- declare interface IonDatetime extends Components.IonDatetime {
366
+ export declare interface IonDatetime extends Components.IonDatetime {
404
367
  /**
405
368
  * Emitted when the datetime selection was cancelled.
406
369
  */
407
- ionCancel: EventEmitter<IonDatetimeCustomEvent<void>>;
370
+ ionCancel: EventEmitter<CustomEvent<void>>;
408
371
  /**
409
372
  * Emitted when the value (selected date) has changed.
410
373
 
411
374
  This event will not emit when programmatically setting the `value` property.
412
375
  */
413
- ionChange: EventEmitter<IonDatetimeCustomEvent<DatetimeChangeEventDetail>>;
376
+ ionChange: EventEmitter<CustomEvent<IIonDatetimeDatetimeChangeEventDetail>>;
414
377
  /**
415
378
  * Emitted when the datetime has focus.
416
379
  */
417
- ionFocus: EventEmitter<IonDatetimeCustomEvent<void>>;
380
+ ionFocus: EventEmitter<CustomEvent<void>>;
418
381
  /**
419
382
  * Emitted when the datetime loses focus.
420
383
  */
421
- ionBlur: EventEmitter<IonDatetimeCustomEvent<void>>;
384
+ ionBlur: EventEmitter<CustomEvent<void>>;
422
385
  }
423
- declare class IonDatetimeButton {
386
+ export declare class IonDatetimeButton {
424
387
  protected z: NgZone;
425
388
  protected el: HTMLIonDatetimeButtonElement;
426
389
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
427
390
  static ɵfac: i0.ɵɵFactoryDeclaration<IonDatetimeButton, never>;
428
391
  static ɵcmp: i0.ɵɵComponentDeclaration<IonDatetimeButton, "ion-datetime-button", never, { "color": { "alias": "color"; "required": false; }; "datetime": { "alias": "datetime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
429
392
  }
430
- declare interface IonDatetimeButton extends Components.IonDatetimeButton {
393
+ export declare interface IonDatetimeButton extends Components.IonDatetimeButton {
431
394
  }
432
- declare class IonFab {
395
+ export declare class IonFab {
433
396
  protected z: NgZone;
434
397
  protected el: HTMLIonFabElement;
435
398
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
436
399
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFab, never>;
437
400
  static ɵcmp: i0.ɵɵComponentDeclaration<IonFab, "ion-fab", never, { "activated": { "alias": "activated"; "required": false; }; "edge": { "alias": "edge"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
438
401
  }
439
- declare interface IonFab extends Components.IonFab {
402
+ export declare interface IonFab extends Components.IonFab {
440
403
  }
441
- declare class IonFabButton {
404
+ export declare class IonFabButton {
442
405
  protected z: NgZone;
443
406
  protected el: HTMLIonFabButtonElement;
444
- ionFocus: EventEmitter<IonFabButtonCustomEvent<void>>;
445
- ionBlur: EventEmitter<IonFabButtonCustomEvent<void>>;
446
407
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
447
408
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFabButton, never>;
448
- 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; }; "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; }; "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>;
449
410
  }
450
- declare interface IonFabButton extends Components.IonFabButton {
411
+ export declare interface IonFabButton extends Components.IonFabButton {
451
412
  /**
452
413
  * Emitted when the button has focus.
453
414
  */
454
- ionFocus: EventEmitter<IonFabButtonCustomEvent<void>>;
415
+ ionFocus: EventEmitter<CustomEvent<void>>;
455
416
  /**
456
417
  * Emitted when the button loses focus.
457
418
  */
458
- ionBlur: EventEmitter<IonFabButtonCustomEvent<void>>;
419
+ ionBlur: EventEmitter<CustomEvent<void>>;
459
420
  }
460
- declare class IonFabList {
421
+ export declare class IonFabList {
461
422
  protected z: NgZone;
462
423
  protected el: HTMLIonFabListElement;
463
424
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
464
425
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFabList, never>;
465
426
  static ɵcmp: i0.ɵɵComponentDeclaration<IonFabList, "ion-fab-list", never, { "activated": { "alias": "activated"; "required": false; }; "side": { "alias": "side"; "required": false; }; }, {}, never, ["*"], false, never>;
466
427
  }
467
- declare interface IonFabList extends Components.IonFabList {
428
+ export declare interface IonFabList extends Components.IonFabList {
468
429
  }
469
- declare class IonFooter {
430
+ export declare class IonFooter {
470
431
  protected z: NgZone;
471
432
  protected el: HTMLIonFooterElement;
472
433
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
473
434
  static ɵfac: i0.ɵɵFactoryDeclaration<IonFooter, never>;
474
435
  static ɵcmp: i0.ɵɵComponentDeclaration<IonFooter, "ion-footer", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
475
436
  }
476
- declare interface IonFooter extends Components.IonFooter {
437
+ export declare interface IonFooter extends Components.IonFooter {
477
438
  }
478
- declare class IonGrid {
439
+ export declare class IonGrid {
479
440
  protected z: NgZone;
480
441
  protected el: HTMLIonGridElement;
481
442
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
482
443
  static ɵfac: i0.ɵɵFactoryDeclaration<IonGrid, never>;
483
444
  static ɵcmp: i0.ɵɵComponentDeclaration<IonGrid, "ion-grid", never, { "fixed": { "alias": "fixed"; "required": false; }; }, {}, never, ["*"], false, never>;
484
445
  }
485
- declare interface IonGrid extends Components.IonGrid {
446
+ export declare interface IonGrid extends Components.IonGrid {
486
447
  }
487
- declare class IonHeader {
448
+ export declare class IonHeader {
488
449
  protected z: NgZone;
489
450
  protected el: HTMLIonHeaderElement;
490
451
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
491
452
  static ɵfac: i0.ɵɵFactoryDeclaration<IonHeader, never>;
492
453
  static ɵcmp: i0.ɵɵComponentDeclaration<IonHeader, "ion-header", never, { "collapse": { "alias": "collapse"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
493
454
  }
494
- declare interface IonHeader extends Components.IonHeader {
455
+ export declare interface IonHeader extends Components.IonHeader {
495
456
  }
496
- declare class IonIcon {
457
+ export declare class IonIcon {
497
458
  protected z: NgZone;
498
459
  protected el: HTMLIonIconElement;
499
460
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
500
461
  static ɵfac: i0.ɵɵFactoryDeclaration<IonIcon, never>;
501
462
  static ɵcmp: i0.ɵɵComponentDeclaration<IonIcon, "ion-icon", never, { "color": { "alias": "color"; "required": false; }; "flipRtl": { "alias": "flipRtl"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "ios": { "alias": "ios"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; "md": { "alias": "md"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "sanitize": { "alias": "sanitize"; "required": false; }; "size": { "alias": "size"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, {}, never, ["*"], false, never>;
502
463
  }
503
- declare interface IonIcon extends Components.IonIcon {
464
+ export declare interface IonIcon extends Components.IonIcon {
504
465
  }
505
- declare class IonImg {
466
+ export declare class IonImg {
506
467
  protected z: NgZone;
507
468
  protected el: HTMLIonImgElement;
508
- ionImgWillLoad: EventEmitter<IonImgCustomEvent<void>>;
509
- ionImgDidLoad: EventEmitter<IonImgCustomEvent<void>>;
510
- ionError: EventEmitter<IonImgCustomEvent<void>>;
511
469
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
512
470
  static ɵfac: i0.ɵɵFactoryDeclaration<IonImg, never>;
513
- 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>;
514
472
  }
515
- declare interface IonImg extends Components.IonImg {
473
+ export declare interface IonImg extends Components.IonImg {
516
474
  /**
517
475
  * Emitted when the img src has been set
518
476
  */
519
- ionImgWillLoad: EventEmitter<IonImgCustomEvent<void>>;
477
+ ionImgWillLoad: EventEmitter<CustomEvent<void>>;
520
478
  /**
521
479
  * Emitted when the image has finished loading
522
480
  */
523
- ionImgDidLoad: EventEmitter<IonImgCustomEvent<void>>;
481
+ ionImgDidLoad: EventEmitter<CustomEvent<void>>;
524
482
  /**
525
483
  * Emitted when the img fails to load
526
484
  */
527
- ionError: EventEmitter<IonImgCustomEvent<void>>;
485
+ ionError: EventEmitter<CustomEvent<void>>;
528
486
  }
529
- declare class IonInfiniteScroll {
487
+ export declare class IonInfiniteScroll {
530
488
  protected z: NgZone;
531
489
  protected el: HTMLIonInfiniteScrollElement;
532
- ionInfinite: EventEmitter<IonInfiniteScrollCustomEvent<void>>;
533
490
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
534
491
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInfiniteScroll, never>;
535
- 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>;
536
493
  }
537
- declare interface IonInfiniteScroll extends Components.IonInfiniteScroll {
494
+ export declare interface IonInfiniteScroll extends Components.IonInfiniteScroll {
538
495
  /**
539
496
  * Emitted when the scroll reaches
540
497
  the threshold distance. From within your infinite handler,
541
498
  you must call the infinite scroll's `complete()` method when
542
499
  your async operation has completed.
543
500
  */
544
- ionInfinite: EventEmitter<IonInfiniteScrollCustomEvent<void>>;
501
+ ionInfinite: EventEmitter<CustomEvent<void>>;
545
502
  }
546
- declare class IonInfiniteScrollContent {
503
+ export declare class IonInfiniteScrollContent {
547
504
  protected z: NgZone;
548
505
  protected el: HTMLIonInfiniteScrollContentElement;
549
506
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
550
507
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInfiniteScrollContent, never>;
551
508
  static ɵcmp: i0.ɵɵComponentDeclaration<IonInfiniteScrollContent, "ion-infinite-scroll-content", never, { "loadingSpinner": { "alias": "loadingSpinner"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; }, {}, never, ["*"], false, never>;
552
509
  }
553
- declare interface IonInfiniteScrollContent extends Components.IonInfiniteScrollContent {
510
+ export declare interface IonInfiniteScrollContent extends Components.IonInfiniteScrollContent {
554
511
  }
555
- declare class IonInput {
512
+ export declare class IonInput {
556
513
  protected z: NgZone;
557
514
  protected el: HTMLIonInputElement;
558
- ionInput: EventEmitter<IonInputCustomEvent<InputInputEventDetail>>;
559
- ionChange: EventEmitter<IonInputCustomEvent<InputChangeEventDetail>>;
560
- ionBlur: EventEmitter<IonInputCustomEvent<FocusEvent>>;
561
- ionFocus: EventEmitter<IonInputCustomEvent<FocusEvent>>;
562
515
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
563
516
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInput, never>;
564
- 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>;
565
518
  }
566
- declare interface IonInput extends Components.IonInput {
519
+ export declare interface IonInput extends Components.IonInput {
567
520
  /**
568
521
  * The `ionInput` event is fired each time the user modifies the input's value.
569
522
  Unlike the `ionChange` event, the `ionInput` event is fired for each alteration
@@ -574,7 +527,7 @@ declare interface IonInput extends Components.IonInput {
574
527
  the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If
575
528
  the input is cleared on edit, the type is `null`.
576
529
  */
577
- ionInput: EventEmitter<IonInputCustomEvent<InputInputEventDetail>>;
530
+ ionInput: EventEmitter<CustomEvent<IIonInputInputInputEventDetail>>;
578
531
  /**
579
532
  * The `ionChange` event is fired when the user modifies the input's value.
580
533
  Unlike the `ionInput` event, the `ionChange` event is only fired when changes
@@ -589,29 +542,24 @@ declare interface IonInput extends Components.IonInput {
589
542
 
590
543
  This event will not emit when programmatically setting the `value` property.
591
544
  */
592
- ionChange: EventEmitter<IonInputCustomEvent<InputChangeEventDetail>>;
545
+ ionChange: EventEmitter<CustomEvent<IIonInputInputChangeEventDetail>>;
593
546
  /**
594
547
  * Emitted when the input loses focus.
595
548
  */
596
- ionBlur: EventEmitter<IonInputCustomEvent<FocusEvent>>;
549
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
597
550
  /**
598
551
  * Emitted when the input has focus.
599
552
  */
600
- ionFocus: EventEmitter<IonInputCustomEvent<FocusEvent>>;
553
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
601
554
  }
602
- declare class IonInputOtp {
555
+ export declare class IonInputOtp {
603
556
  protected z: NgZone;
604
557
  protected el: HTMLIonInputOtpElement;
605
- ionInput: EventEmitter<IonInputOtpCustomEvent<InputOtpInputEventDetail>>;
606
- ionChange: EventEmitter<IonInputOtpCustomEvent<InputOtpChangeEventDetail>>;
607
- ionComplete: EventEmitter<IonInputOtpCustomEvent<InputOtpCompleteEventDetail>>;
608
- ionBlur: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
609
- ionFocus: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
610
558
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
611
559
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInputOtp, never>;
612
- 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>;
613
561
  }
614
- declare interface IonInputOtp extends Components.IonInputOtp {
562
+ export declare interface IonInputOtp extends Components.IonInputOtp {
615
563
  /**
616
564
  * The `ionInput` event is fired each time the user modifies the input's value.
617
565
  Unlike the `ionChange` event, the `ionInput` event is fired for each alteration
@@ -622,7 +570,7 @@ declare interface IonInputOtp extends Components.IonInputOtp {
622
570
  the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If
623
571
  the input is cleared on edit, the type is `null`.
624
572
  */
625
- ionInput: EventEmitter<IonInputOtpCustomEvent<InputOtpInputEventDetail>>;
573
+ ionInput: EventEmitter<CustomEvent<IIonInputOtpInputOtpInputEventDetail>>;
626
574
  /**
627
575
  * The `ionChange` event is fired when the user modifies the input's value.
628
576
  Unlike the `ionInput` event, the `ionChange` event is only fired when changes
@@ -633,330 +581,351 @@ declare interface IonInputOtp extends Components.IonInputOtp {
633
581
 
634
582
  This event will not emit when programmatically setting the `value` property.
635
583
  */
636
- ionChange: EventEmitter<IonInputOtpCustomEvent<InputOtpChangeEventDetail>>;
584
+ ionChange: EventEmitter<CustomEvent<IIonInputOtpInputOtpChangeEventDetail>>;
637
585
  /**
638
586
  * Emitted when all input boxes have been filled with valid values.
639
587
  */
640
- ionComplete: EventEmitter<IonInputOtpCustomEvent<InputOtpCompleteEventDetail>>;
588
+ ionComplete: EventEmitter<CustomEvent<IIonInputOtpInputOtpCompleteEventDetail>>;
641
589
  /**
642
590
  * Emitted when the input group loses focus.
643
591
  */
644
- ionBlur: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
592
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
645
593
  /**
646
594
  * Emitted when the input group has focus.
647
595
  */
648
- ionFocus: EventEmitter<IonInputOtpCustomEvent<FocusEvent>>;
596
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
649
597
  }
650
- declare class IonInputPasswordToggle {
598
+ export declare class IonInputPasswordToggle {
651
599
  protected z: NgZone;
652
600
  protected el: HTMLIonInputPasswordToggleElement;
653
601
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
654
602
  static ɵfac: i0.ɵɵFactoryDeclaration<IonInputPasswordToggle, never>;
655
603
  static ɵcmp: i0.ɵɵComponentDeclaration<IonInputPasswordToggle, "ion-input-password-toggle", never, { "color": { "alias": "color"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; }, {}, never, ["*"], false, never>;
656
604
  }
657
- declare interface IonInputPasswordToggle extends Components.IonInputPasswordToggle {
605
+ export declare interface IonInputPasswordToggle extends Components.IonInputPasswordToggle {
658
606
  }
659
- declare class IonItem {
607
+ export declare class IonItem {
660
608
  protected z: NgZone;
661
609
  protected el: HTMLIonItemElement;
662
610
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
663
611
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItem, never>;
664
612
  static ɵcmp: i0.ɵɵComponentDeclaration<IonItem, "ion-item", never, { "button": { "alias": "button"; "required": false; }; "color": { "alias": "color"; "required": false; }; "detail": { "alias": "detail"; "required": false; }; "detailIcon": { "alias": "detailIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
665
613
  }
666
- declare interface IonItem extends Components.IonItem {
614
+ export declare interface IonItem extends Components.IonItem {
667
615
  }
668
- declare class IonItemDivider {
616
+ export declare class IonItemDivider {
669
617
  protected z: NgZone;
670
618
  protected el: HTMLIonItemDividerElement;
671
619
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
672
620
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemDivider, never>;
673
621
  static ɵcmp: i0.ɵɵComponentDeclaration<IonItemDivider, "ion-item-divider", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, {}, never, ["*"], false, never>;
674
622
  }
675
- declare interface IonItemDivider extends Components.IonItemDivider {
623
+ export declare interface IonItemDivider extends Components.IonItemDivider {
676
624
  }
677
- declare class IonItemGroup {
625
+ export declare class IonItemGroup {
678
626
  protected z: NgZone;
679
627
  protected el: HTMLIonItemGroupElement;
680
628
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
681
629
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemGroup, never>;
682
630
  static ɵcmp: i0.ɵɵComponentDeclaration<IonItemGroup, "ion-item-group", never, {}, {}, never, ["*"], false, never>;
683
631
  }
684
- declare interface IonItemGroup extends Components.IonItemGroup {
632
+ export declare interface IonItemGroup extends Components.IonItemGroup {
685
633
  }
686
- declare class IonItemOption {
634
+ export declare class IonItemOption {
687
635
  protected z: NgZone;
688
636
  protected el: HTMLIonItemOptionElement;
689
637
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
690
638
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemOption, never>;
691
639
  static ɵcmp: i0.ɵɵComponentDeclaration<IonItemOption, "ion-item-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
692
640
  }
693
- declare interface IonItemOption extends Components.IonItemOption {
641
+ export declare interface IonItemOption extends Components.IonItemOption {
694
642
  }
695
- declare class IonItemOptions {
643
+ export declare class IonItemOptions {
696
644
  protected z: NgZone;
697
645
  protected el: HTMLIonItemOptionsElement;
698
- ionSwipe: EventEmitter<IonItemOptionsCustomEvent<any>>;
699
646
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
700
647
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemOptions, never>;
701
- 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>;
702
649
  }
703
- declare interface IonItemOptions extends Components.IonItemOptions {
650
+ export declare interface IonItemOptions extends Components.IonItemOptions {
704
651
  /**
705
652
  * Emitted when the item has been fully swiped.
706
653
  */
707
- ionSwipe: EventEmitter<IonItemOptionsCustomEvent<any>>;
654
+ ionSwipe: EventEmitter<CustomEvent<any>>;
708
655
  }
709
- declare class IonItemSliding {
656
+ export declare class IonItemSliding {
710
657
  protected z: NgZone;
711
658
  protected el: HTMLIonItemSlidingElement;
712
- ionDrag: EventEmitter<IonItemSlidingCustomEvent<any>>;
713
659
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
714
660
  static ɵfac: i0.ɵɵFactoryDeclaration<IonItemSliding, never>;
715
- 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>;
716
662
  }
717
- declare interface IonItemSliding extends Components.IonItemSliding {
663
+ export declare interface IonItemSliding extends Components.IonItemSliding {
718
664
  /**
719
665
  * Emitted when the sliding position changes.
720
666
  */
721
- ionDrag: EventEmitter<IonItemSlidingCustomEvent<any>>;
667
+ ionDrag: EventEmitter<CustomEvent<any>>;
722
668
  }
723
- declare class IonLabel {
669
+ export declare class IonLabel {
724
670
  protected z: NgZone;
725
671
  protected el: HTMLIonLabelElement;
726
672
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
727
673
  static ɵfac: i0.ɵɵFactoryDeclaration<IonLabel, never>;
728
674
  static ɵcmp: i0.ɵɵComponentDeclaration<IonLabel, "ion-label", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
729
675
  }
730
- declare interface IonLabel extends Components.IonLabel {
676
+ export declare interface IonLabel extends Components.IonLabel {
731
677
  }
732
- declare class IonList {
678
+ export declare class IonList {
733
679
  protected z: NgZone;
734
680
  protected el: HTMLIonListElement;
735
681
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
736
682
  static ɵfac: i0.ɵɵFactoryDeclaration<IonList, never>;
737
683
  static ɵcmp: i0.ɵɵComponentDeclaration<IonList, "ion-list", never, { "inset": { "alias": "inset"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
738
684
  }
739
- declare interface IonList extends Components.IonList {
685
+ export declare interface IonList extends Components.IonList {
740
686
  }
741
- declare class IonListHeader {
687
+ export declare class IonListHeader {
742
688
  protected z: NgZone;
743
689
  protected el: HTMLIonListHeaderElement;
744
690
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
745
691
  static ɵfac: i0.ɵɵFactoryDeclaration<IonListHeader, never>;
746
692
  static ɵcmp: i0.ɵɵComponentDeclaration<IonListHeader, "ion-list-header", never, { "color": { "alias": "color"; "required": false; }; "lines": { "alias": "lines"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
747
693
  }
748
- declare interface IonListHeader extends Components.IonListHeader {
694
+ export declare interface IonListHeader extends Components.IonListHeader {
749
695
  }
750
- declare class IonLoading {
696
+ export declare class IonLoading {
751
697
  protected z: NgZone;
752
698
  protected el: HTMLIonLoadingElement;
753
- ionLoadingDidPresent: EventEmitter<IonLoadingCustomEvent<void>>;
754
- ionLoadingWillPresent: EventEmitter<IonLoadingCustomEvent<void>>;
755
- ionLoadingWillDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail<any>>>;
756
- ionLoadingDidDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail<any>>>;
757
- didPresent: EventEmitter<IonLoadingCustomEvent<void>>;
758
- willPresent: EventEmitter<IonLoadingCustomEvent<void>>;
759
- willDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail<any>>>;
760
- didDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail<any>>>;
761
699
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
762
700
  static ɵfac: i0.ɵɵFactoryDeclaration<IonLoading, never>;
763
- 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>;
764
702
  }
765
- declare interface IonLoading extends Components.IonLoading {
703
+ export declare interface IonLoading extends Components.IonLoading {
766
704
  /**
767
705
  * Emitted after the loading has presented.
768
706
  */
769
- ionLoadingDidPresent: EventEmitter<IonLoadingCustomEvent<void>>;
707
+ ionLoadingDidPresent: EventEmitter<CustomEvent<void>>;
770
708
  /**
771
709
  * Emitted before the loading has presented.
772
710
  */
773
- ionLoadingWillPresent: EventEmitter<IonLoadingCustomEvent<void>>;
711
+ ionLoadingWillPresent: EventEmitter<CustomEvent<void>>;
774
712
  /**
775
713
  * Emitted before the loading has dismissed.
776
714
  */
777
- ionLoadingWillDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail>>;
715
+ ionLoadingWillDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
778
716
  /**
779
717
  * Emitted after the loading has dismissed.
780
718
  */
781
- ionLoadingDidDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail>>;
719
+ ionLoadingDidDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
782
720
  /**
783
721
  * Emitted after the loading indicator has presented.
784
722
  Shorthand for ionLoadingWillDismiss.
785
723
  */
786
- didPresent: EventEmitter<IonLoadingCustomEvent<void>>;
724
+ didPresent: EventEmitter<CustomEvent<void>>;
787
725
  /**
788
726
  * Emitted before the loading indicator has presented.
789
727
  Shorthand for ionLoadingWillPresent.
790
728
  */
791
- willPresent: EventEmitter<IonLoadingCustomEvent<void>>;
729
+ willPresent: EventEmitter<CustomEvent<void>>;
792
730
  /**
793
731
  * Emitted before the loading indicator has dismissed.
794
732
  Shorthand for ionLoadingWillDismiss.
795
733
  */
796
- willDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail>>;
734
+ willDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
797
735
  /**
798
736
  * Emitted after the loading indicator has dismissed.
799
737
  Shorthand for ionLoadingDidDismiss.
800
738
  */
801
- didDismiss: EventEmitter<IonLoadingCustomEvent<OverlayEventDetail>>;
739
+ didDismiss: EventEmitter<CustomEvent<IIonLoadingOverlayEventDetail>>;
802
740
  }
803
- declare class IonMenu {
741
+ export declare class IonMenu {
804
742
  protected z: NgZone;
805
743
  protected el: HTMLIonMenuElement;
806
- ionWillOpen: EventEmitter<IonMenuCustomEvent<void>>;
807
- ionWillClose: EventEmitter<IonMenuCustomEvent<MenuCloseEventDetail>>;
808
- ionDidOpen: EventEmitter<IonMenuCustomEvent<void>>;
809
- ionDidClose: EventEmitter<IonMenuCustomEvent<MenuCloseEventDetail>>;
810
744
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
811
745
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenu, never>;
812
- 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>;
813
747
  }
814
- declare interface IonMenu extends Components.IonMenu {
748
+ export declare interface IonMenu extends Components.IonMenu {
815
749
  /**
816
750
  * Emitted when the menu is about to be opened.
817
751
  */
818
- ionWillOpen: EventEmitter<IonMenuCustomEvent<void>>;
752
+ ionWillOpen: EventEmitter<CustomEvent<void>>;
819
753
  /**
820
754
  * Emitted when the menu is about to be closed.
821
755
  */
822
- ionWillClose: EventEmitter<IonMenuCustomEvent<MenuCloseEventDetail>>;
756
+ ionWillClose: EventEmitter<CustomEvent<IIonMenuMenuCloseEventDetail>>;
823
757
  /**
824
758
  * Emitted when the menu is open.
825
759
  */
826
- ionDidOpen: EventEmitter<IonMenuCustomEvent<void>>;
760
+ ionDidOpen: EventEmitter<CustomEvent<void>>;
827
761
  /**
828
762
  * Emitted when the menu is closed.
829
763
  */
830
- ionDidClose: EventEmitter<IonMenuCustomEvent<MenuCloseEventDetail>>;
764
+ ionDidClose: EventEmitter<CustomEvent<IIonMenuMenuCloseEventDetail>>;
831
765
  }
832
- declare class IonMenuButton {
766
+ export declare class IonMenuButton {
833
767
  protected z: NgZone;
834
768
  protected el: HTMLIonMenuButtonElement;
835
769
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
836
770
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenuButton, never>;
837
771
  static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuButton, "ion-menu-button", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
838
772
  }
839
- declare interface IonMenuButton extends Components.IonMenuButton {
773
+ export declare interface IonMenuButton extends Components.IonMenuButton {
840
774
  }
841
- declare class IonMenuToggle {
775
+ export declare class IonMenuToggle {
842
776
  protected z: NgZone;
843
777
  protected el: HTMLIonMenuToggleElement;
844
778
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
845
779
  static ɵfac: i0.ɵɵFactoryDeclaration<IonMenuToggle, never>;
846
780
  static ɵcmp: i0.ɵɵComponentDeclaration<IonMenuToggle, "ion-menu-toggle", never, { "autoHide": { "alias": "autoHide"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; }, {}, never, ["*"], false, never>;
847
781
  }
848
- declare interface IonMenuToggle extends Components.IonMenuToggle {
782
+ export declare interface IonMenuToggle extends Components.IonMenuToggle {
849
783
  }
850
- declare class IonNavLink {
784
+ export declare class IonNavLink {
851
785
  protected z: NgZone;
852
786
  protected el: HTMLIonNavLinkElement;
853
787
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
854
788
  static ɵfac: i0.ɵɵFactoryDeclaration<IonNavLink, never>;
855
789
  static ɵcmp: i0.ɵɵComponentDeclaration<IonNavLink, "ion-nav-link", never, { "component": { "alias": "component"; "required": false; }; "componentProps": { "alias": "componentProps"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; }, {}, never, ["*"], false, never>;
856
790
  }
857
- declare interface IonNavLink extends Components.IonNavLink {
791
+ export declare interface IonNavLink extends Components.IonNavLink {
858
792
  }
859
- declare class IonNote {
793
+ export declare class IonNote {
860
794
  protected z: NgZone;
861
795
  protected el: HTMLIonNoteElement;
862
796
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
863
797
  static ɵfac: i0.ɵɵFactoryDeclaration<IonNote, never>;
864
798
  static ɵcmp: i0.ɵɵComponentDeclaration<IonNote, "ion-note", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
865
799
  }
866
- declare interface IonNote extends Components.IonNote {
800
+ export declare interface IonNote extends Components.IonNote {
867
801
  }
868
- declare class IonPicker {
802
+ export declare class IonPicker {
869
803
  protected z: NgZone;
870
804
  protected el: HTMLIonPickerElement;
871
805
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
872
806
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPicker, never>;
873
807
  static ɵcmp: i0.ɵɵComponentDeclaration<IonPicker, "ion-picker", never, { "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
874
808
  }
875
- declare interface IonPicker extends Components.IonPicker {
809
+ export declare interface IonPicker extends Components.IonPicker {
876
810
  }
877
- declare class IonPickerColumn {
811
+ export declare class IonPickerColumn {
878
812
  protected z: NgZone;
879
813
  protected el: HTMLIonPickerColumnElement;
880
- ionChange: EventEmitter<IonPickerColumnCustomEvent<PickerColumnChangeEventDetail>>;
881
814
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
882
815
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPickerColumn, never>;
883
- 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>;
884
817
  }
885
- declare interface IonPickerColumn extends Components.IonPickerColumn {
818
+ export declare interface IonPickerColumn extends Components.IonPickerColumn {
886
819
  /**
887
820
  * Emitted when the value has changed.
888
821
 
889
822
  This event will not emit when programmatically setting the `value` property.
890
823
  */
891
- ionChange: EventEmitter<IonPickerColumnCustomEvent<PickerColumnChangeEventDetail>>;
824
+ ionChange: EventEmitter<CustomEvent<IIonPickerColumnPickerColumnChangeEventDetail>>;
892
825
  }
893
- declare class IonPickerColumnOption {
826
+ export declare class IonPickerColumnOption {
894
827
  protected z: NgZone;
895
828
  protected el: HTMLIonPickerColumnOptionElement;
896
829
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
897
830
  static ɵfac: i0.ɵɵFactoryDeclaration<IonPickerColumnOption, never>;
898
831
  static ɵcmp: i0.ɵɵComponentDeclaration<IonPickerColumnOption, "ion-picker-column-option", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
899
832
  }
900
- declare interface IonPickerColumnOption extends Components.IonPickerColumnOption {
833
+ export declare interface IonPickerColumnOption extends Components.IonPickerColumnOption {
901
834
  }
902
- declare class IonProgressBar {
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
+ }
880
+ export declare class IonProgressBar {
903
881
  protected z: NgZone;
904
882
  protected el: HTMLIonProgressBarElement;
905
883
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
906
884
  static ɵfac: i0.ɵɵFactoryDeclaration<IonProgressBar, never>;
907
885
  static ɵcmp: i0.ɵɵComponentDeclaration<IonProgressBar, "ion-progress-bar", never, { "buffer": { "alias": "buffer"; "required": false; }; "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "reversed": { "alias": "reversed"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
908
886
  }
909
- declare interface IonProgressBar extends Components.IonProgressBar {
887
+ export declare interface IonProgressBar extends Components.IonProgressBar {
910
888
  }
911
- declare class IonRadio {
889
+ export declare class IonRadio {
912
890
  protected z: NgZone;
913
891
  protected el: HTMLIonRadioElement;
914
- ionFocus: EventEmitter<IonRadioCustomEvent<void>>;
915
- ionBlur: EventEmitter<IonRadioCustomEvent<void>>;
916
892
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
917
893
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRadio, never>;
918
- 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>;
919
895
  }
920
- declare interface IonRadio extends Components.IonRadio {
896
+ export declare interface IonRadio extends Components.IonRadio {
921
897
  /**
922
898
  * Emitted when the radio button has focus.
923
899
  */
924
- ionFocus: EventEmitter<IonRadioCustomEvent<void>>;
900
+ ionFocus: EventEmitter<CustomEvent<void>>;
925
901
  /**
926
902
  * Emitted when the radio button loses focus.
927
903
  */
928
- ionBlur: EventEmitter<IonRadioCustomEvent<void>>;
904
+ ionBlur: EventEmitter<CustomEvent<void>>;
929
905
  }
930
- declare class IonRadioGroup {
906
+ export declare class IonRadioGroup {
931
907
  protected z: NgZone;
932
908
  protected el: HTMLIonRadioGroupElement;
933
- ionChange: EventEmitter<IonRadioGroupCustomEvent<RadioGroupChangeEventDetail<any>>>;
934
909
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
935
910
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRadioGroup, never>;
936
- 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>;
937
912
  }
938
- declare interface IonRadioGroup extends Components.IonRadioGroup {
913
+ export declare interface IonRadioGroup extends Components.IonRadioGroup {
939
914
  /**
940
915
  * Emitted when the value has changed.
941
916
 
942
917
  This event will not emit when programmatically setting the `value` property.
943
918
  */
944
- ionChange: EventEmitter<IonRadioGroupCustomEvent<RadioGroupChangeEventDetail>>;
919
+ ionChange: EventEmitter<CustomEvent<IIonRadioGroupRadioGroupChangeEventDetail>>;
945
920
  }
946
- declare class IonRange {
921
+ export declare class IonRange {
947
922
  protected z: NgZone;
948
923
  protected el: HTMLIonRangeElement;
949
- ionChange: EventEmitter<IonRangeCustomEvent<RangeChangeEventDetail>>;
950
- ionInput: EventEmitter<IonRangeCustomEvent<RangeChangeEventDetail>>;
951
- ionFocus: EventEmitter<IonRangeCustomEvent<void>>;
952
- ionBlur: EventEmitter<IonRangeCustomEvent<void>>;
953
- ionKnobMoveStart: EventEmitter<IonRangeCustomEvent<RangeKnobMoveStartEventDetail>>;
954
- ionKnobMoveEnd: EventEmitter<IonRangeCustomEvent<RangeKnobMoveEndEventDetail>>;
955
924
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
956
925
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRange, never>;
957
- 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>;
958
927
  }
959
- declare interface IonRange extends Components.IonRange {
928
+ export declare interface IonRange extends Components.IonRange {
960
929
  /**
961
930
  * The `ionChange` event is fired for `<ion-range>` elements when the user
962
931
  modifies the element's value:
@@ -965,116 +934,107 @@ declare interface IonRange extends Components.IonRange {
965
934
 
966
935
  This event will not emit when programmatically setting the `value` property.
967
936
  */
968
- ionChange: EventEmitter<IonRangeCustomEvent<RangeChangeEventDetail>>;
937
+ ionChange: EventEmitter<CustomEvent<IIonRangeRangeChangeEventDetail>>;
969
938
  /**
970
939
  * The `ionInput` event is fired for `<ion-range>` elements when the value
971
940
  is modified. Unlike `ionChange`, `ionInput` is fired continuously
972
941
  while the user is dragging the knob.
973
942
  */
974
- ionInput: EventEmitter<IonRangeCustomEvent<RangeChangeEventDetail>>;
943
+ ionInput: EventEmitter<CustomEvent<IIonRangeRangeChangeEventDetail>>;
975
944
  /**
976
945
  * Emitted when the range has focus.
977
946
  */
978
- ionFocus: EventEmitter<IonRangeCustomEvent<void>>;
947
+ ionFocus: EventEmitter<CustomEvent<void>>;
979
948
  /**
980
949
  * Emitted when the range loses focus.
981
950
  */
982
- ionBlur: EventEmitter<IonRangeCustomEvent<void>>;
951
+ ionBlur: EventEmitter<CustomEvent<void>>;
983
952
  /**
984
953
  * Emitted when the user starts moving the range knob, whether through
985
954
  mouse drag, touch gesture, or keyboard interaction.
986
955
  */
987
- ionKnobMoveStart: EventEmitter<IonRangeCustomEvent<RangeKnobMoveStartEventDetail>>;
956
+ ionKnobMoveStart: EventEmitter<CustomEvent<IIonRangeRangeKnobMoveStartEventDetail>>;
988
957
  /**
989
958
  * Emitted when the user finishes moving the range knob, whether through
990
959
  mouse drag, touch gesture, or keyboard interaction.
991
960
  */
992
- ionKnobMoveEnd: EventEmitter<IonRangeCustomEvent<RangeKnobMoveEndEventDetail>>;
961
+ ionKnobMoveEnd: EventEmitter<CustomEvent<IIonRangeRangeKnobMoveEndEventDetail>>;
993
962
  }
994
- declare class IonRefresher {
963
+ export declare class IonRefresher {
995
964
  protected z: NgZone;
996
965
  protected el: HTMLIonRefresherElement;
997
- ionRefresh: EventEmitter<IonRefresherCustomEvent<RefresherEventDetail>>;
998
- ionPull: EventEmitter<IonRefresherCustomEvent<void>>;
999
- ionStart: EventEmitter<IonRefresherCustomEvent<void>>;
1000
- ionPullStart: EventEmitter<IonRefresherCustomEvent<void>>;
1001
- ionPullEnd: EventEmitter<IonRefresherCustomEvent<RefresherPullEndEventDetail>>;
1002
966
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1003
967
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRefresher, never>;
1004
- 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>;
1005
969
  }
1006
- declare interface IonRefresher extends Components.IonRefresher {
970
+ export declare interface IonRefresher extends Components.IonRefresher {
1007
971
  /**
1008
972
  * Emitted when the user lets go of the content and has pulled down
1009
973
  further than the `pullMin` or pulls the content down and exceeds the pullMax.
1010
974
  Updates the refresher state to `refreshing`. The `complete()` method should be
1011
975
  called when the async operation has completed.
1012
976
  */
1013
- ionRefresh: EventEmitter<IonRefresherCustomEvent<RefresherEventDetail>>;
977
+ ionRefresh: EventEmitter<CustomEvent<IIonRefresherRefresherEventDetail>>;
1014
978
  /**
1015
979
  * Emitted while the user is pulling down the content and exposing the refresher.
1016
980
  */
1017
- ionPull: EventEmitter<IonRefresherCustomEvent<void>>;
981
+ ionPull: EventEmitter<CustomEvent<void>>;
1018
982
  /**
1019
983
  * Emitted when the user begins to start pulling down. @deprecated Use `ionPullStart` instead.
1020
984
  */
1021
- ionStart: EventEmitter<IonRefresherCustomEvent<void>>;
985
+ ionStart: EventEmitter<CustomEvent<void>>;
1022
986
  /**
1023
987
  * Emitted when the user begins to start pulling down.
1024
988
  */
1025
- ionPullStart: EventEmitter<IonRefresherCustomEvent<void>>;
989
+ ionPullStart: EventEmitter<CustomEvent<void>>;
1026
990
  /**
1027
991
  * Emitted when the refresher has returned to the inactive state
1028
992
  after a pull gesture. This fires whether the refresh completed
1029
993
  successfully or was canceled.
1030
994
  */
1031
- ionPullEnd: EventEmitter<IonRefresherCustomEvent<RefresherPullEndEventDetail>>;
995
+ ionPullEnd: EventEmitter<CustomEvent<IIonRefresherRefresherPullEndEventDetail>>;
1032
996
  }
1033
- declare class IonRefresherContent {
997
+ export declare class IonRefresherContent {
1034
998
  protected z: NgZone;
1035
999
  protected el: HTMLIonRefresherContentElement;
1036
1000
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1037
1001
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRefresherContent, never>;
1038
1002
  static ɵcmp: i0.ɵɵComponentDeclaration<IonRefresherContent, "ion-refresher-content", never, { "pullingIcon": { "alias": "pullingIcon"; "required": false; }; "pullingText": { "alias": "pullingText"; "required": false; }; "refreshingSpinner": { "alias": "refreshingSpinner"; "required": false; }; "refreshingText": { "alias": "refreshingText"; "required": false; }; }, {}, never, ["*"], false, never>;
1039
1003
  }
1040
- declare interface IonRefresherContent extends Components.IonRefresherContent {
1004
+ export declare interface IonRefresherContent extends Components.IonRefresherContent {
1041
1005
  }
1042
- declare class IonReorder {
1006
+ export declare class IonReorder {
1043
1007
  protected z: NgZone;
1044
1008
  protected el: HTMLIonReorderElement;
1045
1009
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1046
1010
  static ɵfac: i0.ɵɵFactoryDeclaration<IonReorder, never>;
1047
1011
  static ɵcmp: i0.ɵɵComponentDeclaration<IonReorder, "ion-reorder", never, {}, {}, never, ["*"], false, never>;
1048
1012
  }
1049
- declare interface IonReorder extends Components.IonReorder {
1013
+ export declare interface IonReorder extends Components.IonReorder {
1050
1014
  }
1051
- declare class IonReorderGroup {
1015
+ export declare class IonReorderGroup {
1052
1016
  protected z: NgZone;
1053
1017
  protected el: HTMLIonReorderGroupElement;
1054
- ionItemReorder: EventEmitter<IonReorderGroupCustomEvent<ItemReorderEventDetail>>;
1055
- ionReorderStart: EventEmitter<IonReorderGroupCustomEvent<void>>;
1056
- ionReorderMove: EventEmitter<IonReorderGroupCustomEvent<ReorderMoveEventDetail>>;
1057
- ionReorderEnd: EventEmitter<IonReorderGroupCustomEvent<ReorderEndEventDetail>>;
1058
1018
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1059
1019
  static ɵfac: i0.ɵɵFactoryDeclaration<IonReorderGroup, never>;
1060
- 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>;
1061
1021
  }
1062
- declare interface IonReorderGroup extends Components.IonReorderGroup {
1022
+ export declare interface IonReorderGroup extends Components.IonReorderGroup {
1063
1023
  /**
1064
1024
  * Event that needs to be listened to in order to complete the reorder action. @deprecated Use `ionReorderEnd` instead. If you are accessing
1065
1025
  `event.detail.from` or `event.detail.to` and relying on them
1066
1026
  being different you should now add checks as they are always emitted
1067
1027
  in `ionReorderEnd`, even when they are the same.
1068
1028
  */
1069
- ionItemReorder: EventEmitter<IonReorderGroupCustomEvent<ItemReorderEventDetail>>;
1029
+ ionItemReorder: EventEmitter<CustomEvent<IIonReorderGroupItemReorderEventDetail>>;
1070
1030
  /**
1071
1031
  * Event that is emitted when the reorder gesture starts.
1072
1032
  */
1073
- ionReorderStart: EventEmitter<IonReorderGroupCustomEvent<void>>;
1033
+ ionReorderStart: EventEmitter<CustomEvent<void>>;
1074
1034
  /**
1075
1035
  * Event that is emitted as the reorder gesture moves.
1076
1036
  */
1077
- ionReorderMove: EventEmitter<IonReorderGroupCustomEvent<ReorderMoveEventDetail>>;
1037
+ ionReorderMove: EventEmitter<CustomEvent<IIonReorderGroupReorderMoveEventDetail>>;
1078
1038
  /**
1079
1039
  * Event that is emitted when the reorder gesture ends.
1080
1040
  The from and to properties are always available, regardless of
@@ -1083,44 +1043,38 @@ declare interface IonReorderGroup extends Components.IonReorderGroup {
1083
1043
  Once the event has been emitted, the `complete()` method then needs
1084
1044
  to be called in order to finalize the reorder action.
1085
1045
  */
1086
- ionReorderEnd: EventEmitter<IonReorderGroupCustomEvent<ReorderEndEventDetail>>;
1046
+ ionReorderEnd: EventEmitter<CustomEvent<IIonReorderGroupReorderEndEventDetail>>;
1087
1047
  }
1088
- declare class IonRippleEffect {
1048
+ export declare class IonRippleEffect {
1089
1049
  protected z: NgZone;
1090
1050
  protected el: HTMLIonRippleEffectElement;
1091
1051
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1092
1052
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRippleEffect, never>;
1093
1053
  static ɵcmp: i0.ɵɵComponentDeclaration<IonRippleEffect, "ion-ripple-effect", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1094
1054
  }
1095
- declare interface IonRippleEffect extends Components.IonRippleEffect {
1055
+ export declare interface IonRippleEffect extends Components.IonRippleEffect {
1096
1056
  }
1097
- declare class IonRow {
1057
+ export declare class IonRow {
1098
1058
  protected z: NgZone;
1099
1059
  protected el: HTMLIonRowElement;
1100
1060
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1101
1061
  static ɵfac: i0.ɵɵFactoryDeclaration<IonRow, never>;
1102
1062
  static ɵcmp: i0.ɵɵComponentDeclaration<IonRow, "ion-row", never, {}, {}, never, ["*"], false, never>;
1103
1063
  }
1104
- declare interface IonRow extends Components.IonRow {
1064
+ export declare interface IonRow extends Components.IonRow {
1105
1065
  }
1106
- declare class IonSearchbar {
1066
+ export declare class IonSearchbar {
1107
1067
  protected z: NgZone;
1108
1068
  protected el: HTMLIonSearchbarElement;
1109
- ionInput: EventEmitter<IonSearchbarCustomEvent<SearchbarInputEventDetail>>;
1110
- ionChange: EventEmitter<IonSearchbarCustomEvent<SearchbarChangeEventDetail>>;
1111
- ionCancel: EventEmitter<IonSearchbarCustomEvent<void>>;
1112
- ionClear: EventEmitter<IonSearchbarCustomEvent<void>>;
1113
- ionBlur: EventEmitter<IonSearchbarCustomEvent<void>>;
1114
- ionFocus: EventEmitter<IonSearchbarCustomEvent<void>>;
1115
1069
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1116
1070
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSearchbar, never>;
1117
- 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>;
1118
1072
  }
1119
- declare interface IonSearchbar extends Components.IonSearchbar {
1073
+ export declare interface IonSearchbar extends Components.IonSearchbar {
1120
1074
  /**
1121
1075
  * Emitted when the `value` of the `ion-searchbar` element has changed.
1122
1076
  */
1123
- ionInput: EventEmitter<IonSearchbarCustomEvent<SearchbarInputEventDetail>>;
1077
+ ionInput: EventEmitter<CustomEvent<IIonSearchbarSearchbarInputEventDetail>>;
1124
1078
  /**
1125
1079
  * The `ionChange` event is fired for `<ion-searchbar>` elements when the user
1126
1080
  modifies the element's value. Unlike the `ionInput` event, the `ionChange`
@@ -1133,210 +1087,196 @@ declare interface IonSearchbar extends Components.IonSearchbar {
1133
1087
 
1134
1088
  This event will not emit when programmatically setting the `value` property.
1135
1089
  */
1136
- ionChange: EventEmitter<IonSearchbarCustomEvent<SearchbarChangeEventDetail>>;
1090
+ ionChange: EventEmitter<CustomEvent<IIonSearchbarSearchbarChangeEventDetail>>;
1137
1091
  /**
1138
1092
  * Emitted when the cancel button is clicked.
1139
1093
  */
1140
- ionCancel: EventEmitter<IonSearchbarCustomEvent<void>>;
1094
+ ionCancel: EventEmitter<CustomEvent<void>>;
1141
1095
  /**
1142
1096
  * Emitted when the clear input button is clicked.
1143
1097
  */
1144
- ionClear: EventEmitter<IonSearchbarCustomEvent<void>>;
1098
+ ionClear: EventEmitter<CustomEvent<void>>;
1145
1099
  /**
1146
1100
  * Emitted when the input loses focus.
1147
1101
  */
1148
- ionBlur: EventEmitter<IonSearchbarCustomEvent<void>>;
1102
+ ionBlur: EventEmitter<CustomEvent<void>>;
1149
1103
  /**
1150
1104
  * Emitted when the input has focus.
1151
1105
  */
1152
- ionFocus: EventEmitter<IonSearchbarCustomEvent<void>>;
1106
+ ionFocus: EventEmitter<CustomEvent<void>>;
1153
1107
  }
1154
- declare class IonSegment {
1108
+ export declare class IonSegment {
1155
1109
  protected z: NgZone;
1156
1110
  protected el: HTMLIonSegmentElement;
1157
- ionChange: EventEmitter<IonSegmentCustomEvent<SegmentChangeEventDetail>>;
1158
1111
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1159
1112
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegment, never>;
1160
- 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>;
1161
1114
  }
1162
- declare interface IonSegment extends Components.IonSegment {
1115
+ export declare interface IonSegment extends Components.IonSegment {
1163
1116
  /**
1164
1117
  * Emitted when the value property has changed and any dragging pointer has been released from `ion-segment`.
1165
1118
 
1166
1119
  This event will not emit when programmatically setting the `value` property.
1167
1120
  */
1168
- ionChange: EventEmitter<IonSegmentCustomEvent<SegmentChangeEventDetail>>;
1121
+ ionChange: EventEmitter<CustomEvent<IIonSegmentSegmentChangeEventDetail>>;
1169
1122
  }
1170
- declare class IonSegmentButton {
1123
+ export declare class IonSegmentButton {
1171
1124
  protected z: NgZone;
1172
1125
  protected el: HTMLIonSegmentButtonElement;
1173
1126
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1174
1127
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentButton, never>;
1175
1128
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentButton, "ion-segment-button", never, { "contentId": { "alias": "contentId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1176
1129
  }
1177
- declare interface IonSegmentButton extends Components.IonSegmentButton {
1130
+ export declare interface IonSegmentButton extends Components.IonSegmentButton {
1178
1131
  }
1179
- declare class IonSegmentContent {
1132
+ export declare class IonSegmentContent {
1180
1133
  protected z: NgZone;
1181
1134
  protected el: HTMLIonSegmentContentElement;
1182
1135
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1183
1136
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentContent, never>;
1184
1137
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSegmentContent, "ion-segment-content", never, {}, {}, never, ["*"], false, never>;
1185
1138
  }
1186
- declare interface IonSegmentContent extends Components.IonSegmentContent {
1139
+ export declare interface IonSegmentContent extends Components.IonSegmentContent {
1187
1140
  }
1188
- declare class IonSegmentView {
1141
+ export declare class IonSegmentView {
1189
1142
  protected z: NgZone;
1190
1143
  protected el: HTMLIonSegmentViewElement;
1191
- ionSegmentViewScroll: EventEmitter<IonSegmentViewCustomEvent<SegmentViewScrollEvent>>;
1192
1144
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1193
1145
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSegmentView, never>;
1194
- 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>;
1195
1147
  }
1196
- declare interface IonSegmentView extends Components.IonSegmentView {
1148
+ export declare interface IonSegmentView extends Components.IonSegmentView {
1197
1149
  /**
1198
1150
  * Emitted when the segment view is scrolled.
1199
1151
  */
1200
- ionSegmentViewScroll: EventEmitter<IonSegmentViewCustomEvent<SegmentViewScrollEvent>>;
1152
+ ionSegmentViewScroll: EventEmitter<CustomEvent<IIonSegmentViewSegmentViewScrollEvent>>;
1201
1153
  }
1202
- declare class IonSelect {
1154
+ export declare class IonSelect {
1203
1155
  protected z: NgZone;
1204
1156
  protected el: HTMLIonSelectElement;
1205
- ionChange: EventEmitter<IonSelectCustomEvent<SelectChangeEventDetail<any>>>;
1206
- ionCancel: EventEmitter<IonSelectCustomEvent<void>>;
1207
- ionDismiss: EventEmitter<IonSelectCustomEvent<void>>;
1208
- ionFocus: EventEmitter<IonSelectCustomEvent<void>>;
1209
- ionBlur: EventEmitter<IonSelectCustomEvent<void>>;
1210
1157
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1211
1158
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelect, never>;
1212
- 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>;
1213
1160
  }
1214
- declare interface IonSelect extends Components.IonSelect {
1161
+ export declare interface IonSelect extends Components.IonSelect {
1215
1162
  /**
1216
1163
  * Emitted when the value has changed.
1217
1164
 
1218
1165
  This event will not emit when programmatically setting the `value` property.
1219
1166
  */
1220
- ionChange: EventEmitter<IonSelectCustomEvent<SelectChangeEventDetail>>;
1167
+ ionChange: EventEmitter<CustomEvent<IIonSelectSelectChangeEventDetail>>;
1221
1168
  /**
1222
1169
  * Emitted when the selection is cancelled.
1223
1170
  */
1224
- ionCancel: EventEmitter<IonSelectCustomEvent<void>>;
1171
+ ionCancel: EventEmitter<CustomEvent<void>>;
1225
1172
  /**
1226
1173
  * Emitted when the overlay is dismissed.
1227
1174
  */
1228
- ionDismiss: EventEmitter<IonSelectCustomEvent<void>>;
1175
+ ionDismiss: EventEmitter<CustomEvent<void>>;
1229
1176
  /**
1230
1177
  * Emitted when the select has focus.
1231
1178
  */
1232
- ionFocus: EventEmitter<IonSelectCustomEvent<void>>;
1179
+ ionFocus: EventEmitter<CustomEvent<void>>;
1233
1180
  /**
1234
1181
  * Emitted when the select loses focus.
1235
1182
  */
1236
- ionBlur: EventEmitter<IonSelectCustomEvent<void>>;
1183
+ ionBlur: EventEmitter<CustomEvent<void>>;
1237
1184
  }
1238
- declare class IonSelectModal {
1185
+ export declare class IonSelectModal {
1239
1186
  protected z: NgZone;
1240
1187
  protected el: HTMLIonSelectModalElement;
1241
1188
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1242
1189
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectModal, never>;
1243
1190
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectModal, "ion-select-modal", never, { "cancelText": { "alias": "cancelText"; "required": false; }; "header": { "alias": "header"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, ["*"], false, never>;
1244
1191
  }
1245
- declare interface IonSelectModal extends Components.IonSelectModal {
1192
+ export declare interface IonSelectModal extends Components.IonSelectModal {
1246
1193
  }
1247
- declare class IonSelectOption {
1194
+ export declare class IonSelectOption {
1248
1195
  protected z: NgZone;
1249
1196
  protected el: HTMLIonSelectOptionElement;
1250
1197
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1251
1198
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSelectOption, never>;
1252
1199
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSelectOption, "ion-select-option", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1253
1200
  }
1254
- declare interface IonSelectOption extends Components.IonSelectOption {
1201
+ export declare interface IonSelectOption extends Components.IonSelectOption {
1255
1202
  }
1256
- declare class IonSkeletonText {
1203
+ export declare class IonSkeletonText {
1257
1204
  protected z: NgZone;
1258
1205
  protected el: HTMLIonSkeletonTextElement;
1259
1206
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1260
1207
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSkeletonText, never>;
1261
1208
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSkeletonText, "ion-skeleton-text", never, { "animated": { "alias": "animated"; "required": false; }; }, {}, never, ["*"], false, never>;
1262
1209
  }
1263
- declare interface IonSkeletonText extends Components.IonSkeletonText {
1210
+ export declare interface IonSkeletonText extends Components.IonSkeletonText {
1264
1211
  }
1265
- declare class IonSpinner {
1212
+ export declare class IonSpinner {
1266
1213
  protected z: NgZone;
1267
1214
  protected el: HTMLIonSpinnerElement;
1268
1215
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1269
1216
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSpinner, never>;
1270
1217
  static ɵcmp: i0.ɵɵComponentDeclaration<IonSpinner, "ion-spinner", never, { "color": { "alias": "color"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; "name": { "alias": "name"; "required": false; }; "paused": { "alias": "paused"; "required": false; }; }, {}, never, ["*"], false, never>;
1271
1218
  }
1272
- declare interface IonSpinner extends Components.IonSpinner {
1219
+ export declare interface IonSpinner extends Components.IonSpinner {
1273
1220
  }
1274
- declare class IonSplitPane {
1221
+ export declare class IonSplitPane {
1275
1222
  protected z: NgZone;
1276
1223
  protected el: HTMLIonSplitPaneElement;
1277
- ionSplitPaneVisible: EventEmitter<IonSplitPaneCustomEvent<{
1278
- visible: boolean;
1279
- }>>;
1280
1224
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1281
1225
  static ɵfac: i0.ɵɵFactoryDeclaration<IonSplitPane, never>;
1282
- 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>;
1283
1227
  }
1284
- declare interface IonSplitPane extends Components.IonSplitPane {
1228
+ export declare interface IonSplitPane extends Components.IonSplitPane {
1285
1229
  /**
1286
1230
  * Expression to be called when the split-pane visibility has changed
1287
1231
  */
1288
- ionSplitPaneVisible: EventEmitter<IonSplitPaneCustomEvent<{
1232
+ ionSplitPaneVisible: EventEmitter<CustomEvent<{
1289
1233
  visible: boolean;
1290
1234
  }>>;
1291
1235
  }
1292
- declare class IonTab {
1236
+ export declare class IonTab {
1293
1237
  protected z: NgZone;
1294
1238
  protected el: HTMLIonTabElement;
1295
1239
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1296
1240
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTab, never>;
1297
- 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>;
1298
1242
  }
1299
- declare interface IonTab extends Components.IonTab {
1243
+ export declare interface IonTab extends Components.IonTab {
1300
1244
  }
1301
- declare class IonTabBar {
1245
+ export declare class IonTabBar {
1302
1246
  protected z: NgZone;
1303
1247
  protected el: HTMLIonTabBarElement;
1304
1248
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1305
1249
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTabBar, never>;
1306
1250
  static ɵcmp: i0.ɵɵComponentDeclaration<IonTabBar, "ion-tab-bar", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "selectedTab": { "alias": "selectedTab"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; }, {}, never, ["*"], false, never>;
1307
1251
  }
1308
- declare interface IonTabBar extends Components.IonTabBar {
1252
+ export declare interface IonTabBar extends Components.IonTabBar {
1309
1253
  }
1310
- declare class IonTabButton {
1254
+ export declare class IonTabButton {
1311
1255
  protected z: NgZone;
1312
1256
  protected el: HTMLIonTabButtonElement;
1313
1257
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1314
1258
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTabButton, never>;
1315
1259
  static ɵcmp: i0.ɵɵComponentDeclaration<IonTabButton, "ion-tab-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tab": { "alias": "tab"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
1316
1260
  }
1317
- declare interface IonTabButton extends Components.IonTabButton {
1261
+ export declare interface IonTabButton extends Components.IonTabButton {
1318
1262
  }
1319
- declare class IonText {
1263
+ export declare class IonText {
1320
1264
  protected z: NgZone;
1321
1265
  protected el: HTMLIonTextElement;
1322
1266
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1323
1267
  static ɵfac: i0.ɵɵFactoryDeclaration<IonText, never>;
1324
1268
  static ɵcmp: i0.ɵɵComponentDeclaration<IonText, "ion-text", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
1325
1269
  }
1326
- declare interface IonText extends Components.IonText {
1270
+ export declare interface IonText extends Components.IonText {
1327
1271
  }
1328
- declare class IonTextarea {
1272
+ export declare class IonTextarea {
1329
1273
  protected z: NgZone;
1330
1274
  protected el: HTMLIonTextareaElement;
1331
- ionChange: EventEmitter<IonTextareaCustomEvent<TextareaChangeEventDetail>>;
1332
- ionInput: EventEmitter<IonTextareaCustomEvent<TextareaInputEventDetail>>;
1333
- ionBlur: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1334
- ionFocus: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1335
1275
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1336
1276
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTextarea, never>;
1337
- 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>;
1338
1278
  }
1339
- declare interface IonTextarea extends Components.IonTextarea {
1279
+ export declare interface IonTextarea extends Components.IonTextarea {
1340
1280
  /**
1341
1281
  * The `ionChange` event is fired when the user modifies the textarea's value.
1342
1282
  Unlike the `ionInput` event, the `ionChange` event is fired when
@@ -1344,7 +1284,7 @@ declare interface IonTextarea extends Components.IonTextarea {
1344
1284
 
1345
1285
  This event will not emit when programmatically setting the `value` property.
1346
1286
  */
1347
- ionChange: EventEmitter<IonTextareaCustomEvent<TextareaChangeEventDetail>>;
1287
+ ionChange: EventEmitter<CustomEvent<IIonTextareaTextareaChangeEventDetail>>;
1348
1288
  /**
1349
1289
  * The `ionInput` event is fired each time the user modifies the textarea's value.
1350
1290
  Unlike the `ionChange` event, the `ionInput` event is fired for each alteration
@@ -1353,301 +1293,108 @@ declare interface IonTextarea extends Components.IonTextarea {
1353
1293
  When `clearOnEdit` is enabled, the `ionInput` event will be fired when
1354
1294
  the user clears the textarea by performing a keydown event.
1355
1295
  */
1356
- ionInput: EventEmitter<IonTextareaCustomEvent<TextareaInputEventDetail>>;
1296
+ ionInput: EventEmitter<CustomEvent<IIonTextareaTextareaInputEventDetail>>;
1357
1297
  /**
1358
1298
  * Emitted when the input loses focus.
1359
1299
  */
1360
- ionBlur: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1300
+ ionBlur: EventEmitter<CustomEvent<FocusEvent>>;
1361
1301
  /**
1362
1302
  * Emitted when the input has focus.
1363
1303
  */
1364
- ionFocus: EventEmitter<IonTextareaCustomEvent<FocusEvent>>;
1304
+ ionFocus: EventEmitter<CustomEvent<FocusEvent>>;
1365
1305
  }
1366
- declare class IonThumbnail {
1306
+ export declare class IonThumbnail {
1367
1307
  protected z: NgZone;
1368
1308
  protected el: HTMLIonThumbnailElement;
1369
1309
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1370
1310
  static ɵfac: i0.ɵɵFactoryDeclaration<IonThumbnail, never>;
1371
1311
  static ɵcmp: i0.ɵɵComponentDeclaration<IonThumbnail, "ion-thumbnail", never, {}, {}, never, ["*"], false, never>;
1372
1312
  }
1373
- declare interface IonThumbnail extends Components.IonThumbnail {
1313
+ export declare interface IonThumbnail extends Components.IonThumbnail {
1374
1314
  }
1375
- declare class IonTitle {
1315
+ export declare class IonTitle {
1376
1316
  protected z: NgZone;
1377
1317
  protected el: HTMLIonTitleElement;
1378
1318
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1379
1319
  static ɵfac: i0.ɵɵFactoryDeclaration<IonTitle, never>;
1380
1320
  static ɵcmp: i0.ɵɵComponentDeclaration<IonTitle, "ion-title", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1381
1321
  }
1382
- declare interface IonTitle extends Components.IonTitle {
1322
+ export declare interface IonTitle extends Components.IonTitle {
1383
1323
  }
1384
- declare class IonToast {
1324
+ export declare class IonToast {
1385
1325
  protected z: NgZone;
1386
1326
  protected el: HTMLIonToastElement;
1387
- ionToastDidPresent: EventEmitter<IonToastCustomEvent<void>>;
1388
- ionToastWillPresent: EventEmitter<IonToastCustomEvent<void>>;
1389
- ionToastWillDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail<any>>>;
1390
- ionToastDidDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail<any>>>;
1391
- didPresent: EventEmitter<IonToastCustomEvent<void>>;
1392
- willPresent: EventEmitter<IonToastCustomEvent<void>>;
1393
- willDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail<any>>>;
1394
- didDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail<any>>>;
1395
1327
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1396
1328
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToast, never>;
1397
- 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>;
1398
1330
  }
1399
- declare interface IonToast extends Components.IonToast {
1331
+ export declare interface IonToast extends Components.IonToast {
1400
1332
  /**
1401
1333
  * Emitted after the toast has presented.
1402
1334
  */
1403
- ionToastDidPresent: EventEmitter<IonToastCustomEvent<void>>;
1335
+ ionToastDidPresent: EventEmitter<CustomEvent<void>>;
1404
1336
  /**
1405
1337
  * Emitted before the toast has presented.
1406
1338
  */
1407
- ionToastWillPresent: EventEmitter<IonToastCustomEvent<void>>;
1339
+ ionToastWillPresent: EventEmitter<CustomEvent<void>>;
1408
1340
  /**
1409
1341
  * Emitted before the toast has dismissed.
1410
1342
  */
1411
- ionToastWillDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail>>;
1343
+ ionToastWillDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1412
1344
  /**
1413
1345
  * Emitted after the toast has dismissed.
1414
1346
  */
1415
- ionToastDidDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail>>;
1347
+ ionToastDidDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1416
1348
  /**
1417
1349
  * Emitted after the toast has presented.
1418
1350
  Shorthand for ionToastWillDismiss.
1419
1351
  */
1420
- didPresent: EventEmitter<IonToastCustomEvent<void>>;
1352
+ didPresent: EventEmitter<CustomEvent<void>>;
1421
1353
  /**
1422
1354
  * Emitted before the toast has presented.
1423
1355
  Shorthand for ionToastWillPresent.
1424
1356
  */
1425
- willPresent: EventEmitter<IonToastCustomEvent<void>>;
1357
+ willPresent: EventEmitter<CustomEvent<void>>;
1426
1358
  /**
1427
1359
  * Emitted before the toast has dismissed.
1428
1360
  Shorthand for ionToastWillDismiss.
1429
1361
  */
1430
- willDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail>>;
1362
+ willDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1431
1363
  /**
1432
1364
  * Emitted after the toast has dismissed.
1433
1365
  Shorthand for ionToastDidDismiss.
1434
1366
  */
1435
- didDismiss: EventEmitter<IonToastCustomEvent<OverlayEventDetail>>;
1367
+ didDismiss: EventEmitter<CustomEvent<IIonToastOverlayEventDetail>>;
1436
1368
  }
1437
- declare class IonToggle {
1369
+ export declare class IonToggle {
1438
1370
  protected z: NgZone;
1439
1371
  protected el: HTMLIonToggleElement;
1440
- ionChange: EventEmitter<IonToggleCustomEvent<ToggleChangeEventDetail<any>>>;
1441
- ionFocus: EventEmitter<IonToggleCustomEvent<void>>;
1442
- ionBlur: EventEmitter<IonToggleCustomEvent<void>>;
1443
1372
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1444
1373
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToggle, never>;
1445
- 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>;
1446
1375
  }
1447
- declare interface IonToggle extends Components.IonToggle {
1376
+ export declare interface IonToggle extends Components.IonToggle {
1448
1377
  /**
1449
1378
  * Emitted when the user switches the toggle on or off.
1450
1379
 
1451
1380
  This event will not emit when programmatically setting the `checked` property.
1452
1381
  */
1453
- ionChange: EventEmitter<IonToggleCustomEvent<ToggleChangeEventDetail>>;
1382
+ ionChange: EventEmitter<CustomEvent<IIonToggleToggleChangeEventDetail>>;
1454
1383
  /**
1455
1384
  * Emitted when the toggle has focus.
1456
1385
  */
1457
- ionFocus: EventEmitter<IonToggleCustomEvent<void>>;
1386
+ ionFocus: EventEmitter<CustomEvent<void>>;
1458
1387
  /**
1459
1388
  * Emitted when the toggle loses focus.
1460
1389
  */
1461
- ionBlur: EventEmitter<IonToggleCustomEvent<void>>;
1390
+ ionBlur: EventEmitter<CustomEvent<void>>;
1462
1391
  }
1463
- declare class IonToolbar {
1392
+ export declare class IonToolbar {
1464
1393
  protected z: NgZone;
1465
1394
  protected el: HTMLIonToolbarElement;
1466
1395
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1467
1396
  static ɵfac: i0.ɵɵFactoryDeclaration<IonToolbar, never>;
1468
1397
  static ɵcmp: i0.ɵɵComponentDeclaration<IonToolbar, "ion-toolbar", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], false, never>;
1469
1398
  }
1470
- declare interface IonToolbar extends Components.IonToolbar {
1471
- }
1472
-
1473
- declare class IonRouterOutlet extends IonRouterOutlet$1 {
1474
- readonly parentOutlet?: IonRouterOutlet | undefined;
1475
- /**
1476
- * `static: true` must be set so the query results are resolved
1477
- * before change detection runs. Otherwise, the view container
1478
- * ref will be ion-router-outlet instead of ng-container, and
1479
- * the first view will be added as a sibling of ion-router-outlet
1480
- * instead of a child.
1481
- */
1482
- outletContent: ViewContainerRef;
1483
- /**
1484
- * We need to pass in the correct instance of IonRouterOutlet
1485
- * otherwise parentOutlet will be null in a nested outlet context.
1486
- * This results in APIs such as NavController.pop not working
1487
- * in nested outlets because the parent outlet cannot be found.
1488
- */
1489
- constructor(name: string, tabs: string, commonLocation: Location, elementRef: ElementRef, router: Router, zone: NgZone, activatedRoute: ActivatedRoute, parentOutlet?: IonRouterOutlet | undefined);
1490
- static ɵfac: i0.ɵɵFactoryDeclaration<IonRouterOutlet, [{ attribute: "name"; }, { attribute: "tabs"; optional: true; }, null, null, null, null, null, { optional: true; skipSelf: true; }]>;
1491
- static ɵcmp: i0.ɵɵComponentDeclaration<IonRouterOutlet, "ion-router-outlet", never, {}, {}, never, ["*"], false, never>;
1492
- }
1493
-
1494
- declare class IonTabs extends IonTabs$1 {
1495
- outlet: IonRouterOutlet;
1496
- tabBar: IonTabBar | undefined;
1497
- tabBars: QueryList<IonTabBar>;
1498
- tabs: QueryList<IonTab>;
1499
- static ɵfac: i0.ɵɵFactoryDeclaration<IonTabs, never>;
1500
- static ɵcmp: i0.ɵɵComponentDeclaration<IonTabs, "ion-tabs", never, {}, {}, ["tabBar", "tabBars", "tabs"], ["[slot=top]", "ion-tab", "*"], false, never>;
1501
- }
1502
-
1503
- declare class IonBackButton extends IonBackButton$1 {
1504
- constructor(routerOutlet: IonRouterOutlet, navCtrl: NavController, config: Config, r: ElementRef, z: NgZone, c: ChangeDetectorRef);
1505
- static ɵfac: i0.ɵɵFactoryDeclaration<IonBackButton, [{ optional: true; }, null, null, null, null, null]>;
1506
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBackButton, "ion-back-button", never, {}, {}, never, ["*"], false, never>;
1507
- }
1508
-
1509
- declare class IonNav extends IonNav$1 {
1510
- constructor(ref: ElementRef, environmentInjector: EnvironmentInjector, injector: Injector, angularDelegate: AngularDelegate, z: NgZone, c: ChangeDetectorRef);
1511
- static ɵfac: i0.ɵɵFactoryDeclaration<IonNav, never>;
1512
- static ɵcmp: i0.ɵɵComponentDeclaration<IonNav, "ion-nav", never, {}, {}, never, ["*"], false, never>;
1513
- }
1514
-
1515
- /**
1516
- * Adds support for Ionic routing directions and animations to the base Angular router link directive.
1517
- *
1518
- * When the router link is clicked, the directive will assign the direction and
1519
- * animation so that the routing integration will transition correctly.
1520
- */
1521
- declare class RouterLinkDelegateDirective extends RouterLinkDelegateDirective$1 {
1522
- static ɵfac: i0.ɵɵFactoryDeclaration<RouterLinkDelegateDirective, never>;
1523
- static ɵdir: i0.ɵɵDirectiveDeclaration<RouterLinkDelegateDirective, ":not(a):not(area)[routerLink]", never, {}, {}, never, never, false, never>;
1524
- }
1525
- declare class RouterLinkWithHrefDelegateDirective extends RouterLinkWithHrefDelegateDirective$1 {
1526
- static ɵfac: i0.ɵɵFactoryDeclaration<RouterLinkWithHrefDelegateDirective, never>;
1527
- static ɵdir: i0.ɵɵDirectiveDeclaration<RouterLinkWithHrefDelegateDirective, "a[routerLink],area[routerLink]", never, {}, {}, never, never, false, never>;
1528
- }
1529
-
1530
- declare class IonModal extends IonModal$1 {
1531
- static ɵfac: i0.ɵɵFactoryDeclaration<IonModal, never>;
1532
- static ɵcmp: i0.ɵɵComponentDeclaration<IonModal, "ion-modal", never, {}, {}, never, never, false, never>;
1533
- }
1534
-
1535
- declare class IonPopover extends IonPopover$1 {
1536
- static ɵfac: i0.ɵɵFactoryDeclaration<IonPopover, never>;
1537
- static ɵcmp: i0.ɵɵComponentDeclaration<IonPopover, "ion-popover", never, {}, {}, never, never, false, never>;
1538
- }
1539
-
1540
- /**
1541
- * @description
1542
- * Provider which adds `MaxValidator` to the `NG_VALIDATORS` multi-provider list.
1543
- */
1544
- declare const ION_MAX_VALIDATOR: Provider;
1545
- declare class IonMaxValidator extends MaxValidator {
1546
- static ɵfac: i0.ɵɵFactoryDeclaration<IonMaxValidator, never>;
1547
- static ɵdir: i0.ɵɵDirectiveDeclaration<IonMaxValidator, "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", never, {}, {}, never, never, false, never>;
1548
- }
1549
-
1550
- /**
1551
- * @description
1552
- * Provider which adds `MinValidator` to the `NG_VALIDATORS` multi-provider list.
1553
- */
1554
- declare const ION_MIN_VALIDATOR: Provider;
1555
- declare class IonMinValidator extends MinValidator {
1556
- static ɵfac: i0.ɵɵFactoryDeclaration<IonMinValidator, never>;
1557
- static ɵdir: i0.ɵɵDirectiveDeclaration<IonMinValidator, "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", never, {}, {}, never, never, false, never>;
1558
- }
1559
-
1560
- declare class AlertController extends OverlayBaseController<AlertOptions, HTMLIonAlertElement> {
1561
- constructor();
1562
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertController, never>;
1563
- static ɵprov: i0.ɵɵInjectableDeclaration<AlertController>;
1564
- }
1565
-
1566
- declare class AnimationController {
1567
- /**
1568
- * Create a new animation
1569
- */
1570
- create(animationId?: string): Animation;
1571
- /**
1572
- * EXPERIMENTAL
1573
- *
1574
- * Given a progression and a cubic bezier function,
1575
- * this utility returns the time value(s) at which the
1576
- * cubic bezier reaches the given time progression.
1577
- *
1578
- * If the cubic bezier never reaches the progression
1579
- * the result will be an empty array.
1580
- *
1581
- * This is most useful for switching between easing curves
1582
- * when doing a gesture animation (i.e. going from linear easing
1583
- * during a drag, to another easing when `progressEnd` is called)
1584
- */
1585
- easingTime(p0: number[], p1: number[], p2: number[], p3: number[], progression: number): number[];
1586
- static ɵfac: i0.ɵɵFactoryDeclaration<AnimationController, never>;
1587
- static ɵprov: i0.ɵɵInjectableDeclaration<AnimationController>;
1588
- }
1589
-
1590
- declare class ActionSheetController extends OverlayBaseController<ActionSheetOptions, HTMLIonActionSheetElement> {
1591
- constructor();
1592
- static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetController, never>;
1593
- static ɵprov: i0.ɵɵInjectableDeclaration<ActionSheetController>;
1594
- }
1595
-
1596
- declare class GestureController {
1597
- private zone;
1598
- constructor(zone: NgZone);
1599
- /**
1600
- * Create a new gesture
1601
- */
1602
- create(opts: GestureConfig, runInsideAngularZone?: boolean): Gesture;
1603
- static ɵfac: i0.ɵɵFactoryDeclaration<GestureController, never>;
1604
- static ɵprov: i0.ɵɵInjectableDeclaration<GestureController>;
1605
- }
1606
-
1607
- declare class LoadingController extends OverlayBaseController<LoadingOptions, HTMLIonLoadingElement> {
1608
- constructor();
1609
- static ɵfac: i0.ɵɵFactoryDeclaration<LoadingController, never>;
1610
- static ɵprov: i0.ɵɵInjectableDeclaration<LoadingController>;
1611
- }
1612
-
1613
- declare class MenuController extends MenuController$1 {
1614
- constructor();
1615
- static ɵfac: i0.ɵɵFactoryDeclaration<MenuController, never>;
1616
- static ɵprov: i0.ɵɵInjectableDeclaration<MenuController>;
1617
- }
1618
-
1619
- declare class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
1620
- private angularDelegate;
1621
- private injector;
1622
- private environmentInjector;
1623
- constructor();
1624
- create(opts: ModalOptions): Promise<HTMLIonModalElement>;
1625
- static ɵfac: i0.ɵɵFactoryDeclaration<ModalController, never>;
1626
- static ɵprov: i0.ɵɵInjectableDeclaration<ModalController>;
1627
- }
1628
-
1629
- declare class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {
1630
- private angularDelegate;
1631
- private injector;
1632
- private environmentInjector;
1633
- constructor();
1634
- create(opts: PopoverOptions): Promise<HTMLIonPopoverElement>;
1635
- }
1636
-
1637
- declare class ToastController extends OverlayBaseController<ToastOptions, HTMLIonToastElement> {
1638
- constructor();
1639
- static ɵfac: i0.ɵɵFactoryDeclaration<ToastController, never>;
1640
- static ɵprov: i0.ɵɵInjectableDeclaration<ToastController>;
1641
- }
1642
-
1643
- type OptInAngularFeatures = {
1644
- useSetInputAPI?: boolean;
1645
- };
1646
- declare class IonicModule {
1647
- static forRoot(config?: IonicConfig & OptInAngularFeatures): ModuleWithProviders<IonicModule>;
1648
- static ɵfac: i0.ɵɵFactoryDeclaration<IonicModule, never>;
1649
- static ɵmod: i0.ɵɵNgModuleDeclaration<IonicModule, [typeof IonAccordion, typeof IonAccordionGroup, typeof IonActionSheet, typeof IonAlert, typeof IonApp, typeof IonAvatar, typeof IonBackdrop, typeof IonBadge, typeof IonBreadcrumb, typeof IonBreadcrumbs, typeof IonButton, typeof IonButtons, typeof IonCard, typeof IonCardContent, typeof IonCardHeader, typeof IonCardSubtitle, typeof IonCardTitle, typeof IonCheckbox, typeof IonChip, typeof IonCol, typeof IonContent, typeof IonDatetime, typeof IonDatetimeButton, typeof IonFab, typeof IonFabButton, typeof IonFabList, typeof IonFooter, typeof IonGrid, typeof IonHeader, typeof IonIcon, typeof IonImg, typeof IonInfiniteScroll, typeof IonInfiniteScrollContent, typeof IonInput, typeof IonInputOtp, typeof IonInputPasswordToggle, typeof IonItem, typeof IonItemDivider, typeof IonItemGroup, typeof IonItemOption, typeof IonItemOptions, typeof IonItemSliding, typeof IonLabel, typeof IonList, typeof IonListHeader, typeof IonLoading, typeof IonMenu, typeof IonMenuButton, typeof IonMenuToggle, typeof IonNavLink, typeof IonNote, typeof IonPicker, typeof IonPickerColumn, typeof IonPickerColumnOption, typeof IonProgressBar, typeof IonRadio, typeof IonRadioGroup, typeof IonRange, typeof IonRefresher, typeof IonRefresherContent, typeof IonReorder, typeof IonReorderGroup, typeof IonRippleEffect, typeof IonRow, typeof IonSearchbar, typeof IonSegment, typeof IonSegmentButton, typeof IonSegmentContent, typeof IonSegmentView, typeof IonSelect, typeof IonSelectModal, typeof IonSelectOption, typeof IonSkeletonText, typeof IonSpinner, typeof IonSplitPane, typeof IonTab, typeof IonTabBar, typeof IonTabButton, typeof IonText, typeof IonTextarea, typeof IonThumbnail, typeof IonTitle, typeof IonToast, typeof IonToggle, typeof IonToolbar, typeof IonModal, typeof IonPopover, typeof BooleanValueAccessorDirective, typeof NumericValueAccessorDirective, typeof SelectValueAccessorDirective, typeof TextValueAccessorDirective, typeof IonTabs, typeof IonRouterOutlet, typeof IonBackButton, typeof IonNav, typeof RouterLinkDelegateDirective, typeof RouterLinkWithHrefDelegateDirective, typeof IonMinValidator, typeof IonMaxValidator], [typeof i15.CommonModule], [typeof IonAccordion, typeof IonAccordionGroup, typeof IonActionSheet, typeof IonAlert, typeof IonApp, typeof IonAvatar, typeof IonBackdrop, typeof IonBadge, typeof IonBreadcrumb, typeof IonBreadcrumbs, typeof IonButton, typeof IonButtons, typeof IonCard, typeof IonCardContent, typeof IonCardHeader, typeof IonCardSubtitle, typeof IonCardTitle, typeof IonCheckbox, typeof IonChip, typeof IonCol, typeof IonContent, typeof IonDatetime, typeof IonDatetimeButton, typeof IonFab, typeof IonFabButton, typeof IonFabList, typeof IonFooter, typeof IonGrid, typeof IonHeader, typeof IonIcon, typeof IonImg, typeof IonInfiniteScroll, typeof IonInfiniteScrollContent, typeof IonInput, typeof IonInputOtp, typeof IonInputPasswordToggle, typeof IonItem, typeof IonItemDivider, typeof IonItemGroup, typeof IonItemOption, typeof IonItemOptions, typeof IonItemSliding, typeof IonLabel, typeof IonList, typeof IonListHeader, typeof IonLoading, typeof IonMenu, typeof IonMenuButton, typeof IonMenuToggle, typeof IonNavLink, typeof IonNote, typeof IonPicker, typeof IonPickerColumn, typeof IonPickerColumnOption, typeof IonProgressBar, typeof IonRadio, typeof IonRadioGroup, typeof IonRange, typeof IonRefresher, typeof IonRefresherContent, typeof IonReorder, typeof IonReorderGroup, typeof IonRippleEffect, typeof IonRow, typeof IonSearchbar, typeof IonSegment, typeof IonSegmentButton, typeof IonSegmentContent, typeof IonSegmentView, typeof IonSelect, typeof IonSelectModal, typeof IonSelectOption, typeof IonSkeletonText, typeof IonSpinner, typeof IonSplitPane, typeof IonTab, typeof IonTabBar, typeof IonTabButton, typeof IonText, typeof IonTextarea, typeof IonThumbnail, typeof IonTitle, typeof IonToast, typeof IonToggle, typeof IonToolbar, typeof IonModal, typeof IonPopover, typeof BooleanValueAccessorDirective, typeof NumericValueAccessorDirective, typeof SelectValueAccessorDirective, typeof TextValueAccessorDirective, typeof IonTabs, typeof IonRouterOutlet, typeof IonBackButton, typeof IonNav, typeof RouterLinkDelegateDirective, typeof RouterLinkWithHrefDelegateDirective, typeof IonMinValidator, typeof IonMaxValidator]>;
1650
- static ɵinj: i0.ɵɵInjectorDeclaration<IonicModule>;
1651
- }
1652
-
1653
- export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
1399
+ export declare interface IonToolbar extends Components.IonToolbar {
1400
+ }