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