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