@ionic/angular 8.8.19-dev.11786735826.1fad7c0a → 8.8.19-dev.11786832241.150538c7
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 +0 -1
- package/dist/common/directives/control-value-accessors/index.d.ts +1 -0
- package/dist/common/directives/control-value-accessors/index.js +2 -0
- package/dist/common/directives/control-value-accessors/index.js.map +1 -0
- package/dist/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
- 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/dist/common/directives/navigation/back-button.d.ts +23 -0
- 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.d.ts +45 -0
- package/dist/common/directives/navigation/nav-params.js +47 -0
- package/dist/common/directives/navigation/nav-params.js.map +1 -0
- package/dist/common/directives/navigation/nav.d.ts +21 -0
- package/dist/common/directives/navigation/nav.js +49 -0
- package/dist/common/directives/navigation/nav.js.map +1 -0
- package/dist/common/directives/navigation/router-link-delegate.d.ts +70 -0
- package/dist/common/directives/navigation/router-link-delegate.js +188 -0
- package/dist/common/directives/navigation/router-link-delegate.js.map +1 -0
- package/dist/common/directives/navigation/router-outlet.d.ts +104 -0
- 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.d.ts +42 -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.d.ts +38 -0
- package/dist/common/directives/navigation/stack-utils.js +73 -0
- package/dist/common/directives/navigation/stack-utils.js.map +1 -0
- package/dist/common/directives/navigation/tabs.d.ts +91 -0
- package/dist/common/directives/navigation/tabs.js +290 -0
- package/dist/common/directives/navigation/tabs.js.map +1 -0
- package/dist/common/index.d.ts +22 -0
- package/dist/common/index.js +20 -0
- package/dist/common/index.js.map +1 -0
- package/dist/common/overlays/modal.d.ts +62 -0
- package/dist/common/overlays/modal.js +96 -0
- package/dist/common/overlays/modal.js.map +1 -0
- package/dist/common/overlays/popover.d.ts +46 -0
- package/dist/common/overlays/popover.js +84 -0
- package/dist/common/overlays/popover.js.map +1 -0
- package/dist/common/providers/angular-delegate.d.ts +28 -0
- package/dist/common/providers/angular-delegate.js +229 -0
- package/dist/common/providers/angular-delegate.js.map +1 -0
- package/dist/common/providers/config.d.ts +11 -0
- package/dist/common/providers/config.js +44 -0
- package/dist/common/providers/config.js.map +1 -0
- package/dist/common/providers/dom-controller.d.ts +16 -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.d.ts +78 -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.d.ts +116 -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.d.ts +174 -0
- package/dist/common/providers/platform.js +256 -0
- package/dist/common/providers/platform.js.map +1 -0
- package/dist/common/types/interfaces.d.ts +8 -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.d.ts +27 -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.d.ts +16 -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.d.ts +21 -0
- package/dist/common/utils/overlay.js +26 -0
- package/dist/common/utils/overlay.js.map +1 -0
- package/dist/common/utils/proxy.d.ts +8 -0
- package/dist/common/utils/proxy.js +47 -0
- package/dist/common/utils/proxy.js.map +1 -0
- package/dist/common/utils/routing.d.ts +28 -0
- package/dist/common/utils/routing.js +55 -0
- package/dist/common/utils/routing.js.map +1 -0
- package/dist/common/utils/util.d.ts +1 -0
- package/dist/common/utils/util.js +10 -0
- package/dist/common/utils/util.js.map +1 -0
- package/dist/lazy/app-initialize.d.ts +3 -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.d.ts +9 -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/dist/lazy/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
- 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.d.ts +4 -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/dist/lazy/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
- 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/dist/lazy/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
- 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/dist/lazy/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
- 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.d.ts +9 -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.d.ts +8 -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.d.ts +25 -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.d.ts +13 -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.d.ts +16 -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.d.ts +6 -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.d.ts +6 -0
- package/dist/lazy/directives/overlays/popover.js +18 -0
- package/dist/lazy/directives/overlays/popover.js.map +1 -0
- package/dist/lazy/directives/proxies-list.d.ts +2 -0
- package/dist/lazy/directives/proxies-list.js +89 -0
- package/dist/lazy/directives/proxies-list.js.map +1 -0
- package/{types/ionic-angular-lazy.d.ts → dist/lazy/directives/proxies.d.ts} +339 -503
- package/{fesm2022/ionic-angular-lazy.mjs → dist/lazy/directives/proxies.js} +91 -882
- package/dist/lazy/directives/proxies.js.map +1 -0
- package/dist/lazy/directives/validators/index.d.ts +2 -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.d.ts +12 -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.d.ts +12 -0
- package/dist/lazy/directives/validators/min-validator.js +26 -0
- package/dist/lazy/directives/validators/min-validator.js.map +1 -0
- package/dist/lazy/index.d.ts +26 -0
- 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.d.ts +8 -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.d.ts +8 -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.d.ts +25 -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.d.ts +13 -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.d.ts +8 -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.d.ts +7 -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.d.ts +12 -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.d.ts +9 -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.d.ts +8 -0
- package/dist/lazy/providers/toast-controller.js +18 -0
- package/dist/lazy/providers/toast-controller.js.map +1 -0
- package/dist/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- 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.d.ts +30 -0
- package/dist/standalone/directives/checkbox.js +75 -0
- package/dist/standalone/directives/checkbox.js.map +1 -0
- package/dist/standalone/directives/datetime.d.ts +30 -0
- package/dist/standalone/directives/datetime.js +93 -0
- package/dist/standalone/directives/datetime.js.map +1 -0
- package/dist/standalone/directives/icon.d.ts +9 -0
- package/dist/standalone/directives/icon.js +35 -0
- package/dist/standalone/directives/icon.js.map +1 -0
- package/dist/standalone/directives/index.d.ts +12 -0
- package/dist/standalone/directives/index.js +13 -0
- package/dist/standalone/directives/index.js.map +1 -0
- package/dist/standalone/directives/input-otp.d.ts +49 -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.d.ts +47 -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.d.ts +18 -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.d.ts +47 -0
- package/dist/standalone/directives/range.js +77 -0
- package/dist/standalone/directives/range.js.map +1 -0
- package/dist/standalone/directives/searchbar.d.ts +45 -0
- package/dist/standalone/directives/searchbar.js +81 -0
- package/dist/standalone/directives/searchbar.js.map +1 -0
- package/dist/standalone/directives/segment.d.ts +19 -0
- package/dist/standalone/directives/segment.js +59 -0
- package/dist/standalone/directives/segment.js.map +1 -0
- package/dist/standalone/directives/select.d.ts +34 -0
- package/dist/standalone/directives/select.js +83 -0
- package/dist/standalone/directives/select.js.map +1 -0
- package/dist/standalone/directives/textarea.d.ts +37 -0
- package/dist/standalone/directives/textarea.js +90 -0
- package/dist/standalone/directives/textarea.js.map +1 -0
- package/dist/standalone/directives/toggle.d.ts +28 -0
- package/dist/standalone/directives/toggle.js +75 -0
- package/dist/standalone/directives/toggle.js.map +1 -0
- package/dist/standalone/index.d.ts +22 -0
- package/dist/standalone/index.js +24 -0
- package/dist/standalone/index.js.map +1 -0
- package/dist/standalone/navigation/back-button.d.ts +9 -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.d.ts +8 -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.d.ts +10 -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.d.ts +25 -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.d.ts +13 -0
- package/dist/standalone/navigation/tabs.js +57 -0
- package/dist/standalone/navigation/tabs.js.map +1 -0
- package/dist/standalone/overlays/modal.d.ts +6 -0
- package/dist/standalone/overlays/modal.js +32 -0
- package/dist/standalone/overlays/modal.js.map +1 -0
- package/dist/standalone/overlays/popover.d.ts +6 -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.d.ts +8 -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.d.ts +8 -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.d.ts +25 -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.d.ts +13 -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.d.ts +7 -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.d.ts +8 -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.d.ts +7 -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.d.ts +12 -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.d.ts +9 -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.d.ts +8 -0
- package/dist/standalone/providers/toast-controller.js +20 -0
- package/dist/standalone/providers/toast-controller.js.map +1 -0
- package/package.json +165 -23
- package/fesm2022/ionic-angular-common.mjs +0 -2802
- package/fesm2022/ionic-angular-common.mjs.map +0 -1
- package/fesm2022/ionic-angular-lazy.mjs.map +0 -1
- package/fesm2022/ionic-angular.mjs +0 -3644
- package/fesm2022/ionic-angular.mjs.map +0 -1
- package/types/ionic-angular-common.d.ts +0 -1031
- package/types/ionic-angular.d.ts +0 -1560
- /package/{schematics → dist/schematics}/add/files/root/theme/variables.css +0 -0
- /package/{schematics → dist/schematics}/add/index.js +0 -0
- /package/{schematics → dist/schematics}/add/schema.json +0 -0
- /package/{schematics → dist/schematics}/collection.json +0 -0
- /package/{schematics → dist/schematics}/utils/ast.js +0 -0
- /package/{schematics → dist/schematics}/utils/config.js +0 -0
- /package/{schematics → dist/schematics}/utils/package.js +0 -0
|
@@ -1,249 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { HostListener, Directive, ChangeDetectionStrategy, Component, EventEmitter, Output, ViewContainerRef, ViewChild, Attribute, Optional, SkipSelf, ContentChildren, ContentChild, forwardRef, Injectable, inject, Injector, EnvironmentInjector, NgZone, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR, NG_VALIDATORS, MaxValidator, MinValidator } from '@angular/forms';
|
|
4
|
-
import * as i2$1 from '@ionic/angular/common';
|
|
5
|
-
import { ValueAccessor, setIonicClasses, IonRouterOutlet as IonRouterOutlet$1, IonTabs as IonTabs$1, IonBackButton as IonBackButton$1, IonNav as IonNav$1, RouterLinkDelegateDirective as RouterLinkDelegateDirective$1, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegateDirective$1, IonModal as IonModal$1, IonPopover as IonPopover$1, OverlayBaseController, MenuController as MenuController$1, AngularDelegate, raf, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';
|
|
6
|
-
export { AngularDelegate, Config, DomController, IonModalToken, IonicRouteStrategy, NavController, NavParams, Platform } from '@ionic/angular/common';
|
|
7
|
-
import { __decorate } from 'tslib';
|
|
8
|
-
import { fromEvent } from 'rxjs';
|
|
9
|
-
import * as i1 from '@angular/common';
|
|
10
|
-
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
11
|
-
import * as i2 from '@angular/router';
|
|
12
|
-
import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, popoverController, toastController, setupConfig } from '@ionic/core';
|
|
13
|
-
export { IonicSafeString, IonicSlides, createAnimation, createGesture, getIonPageElement, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation, openURL } from '@ionic/core';
|
|
14
|
-
import { defineCustomElements } from '@ionic/core/loader';
|
|
15
|
-
|
|
16
|
-
class BooleanValueAccessorDirective extends ValueAccessor {
|
|
17
|
-
constructor(injector, el) {
|
|
18
|
-
super(injector, el);
|
|
19
|
-
}
|
|
20
|
-
writeValue(value) {
|
|
21
|
-
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
22
|
-
setIonicClasses(this.elementRef);
|
|
23
|
-
}
|
|
24
|
-
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
25
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
26
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
27
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
28
|
-
_handleIonChange(ev) {
|
|
29
|
-
const el = ev.target;
|
|
30
|
-
this.handleValueChange(el, el.checked);
|
|
31
|
-
}
|
|
32
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: BooleanValueAccessorDirective, isStandalone: false, selector: "ion-checkbox,ion-toggle", host: { listeners: { "ionChange": "_handleIonChange($event)" } }, providers: [
|
|
34
|
-
{
|
|
35
|
-
provide: NG_VALUE_ACCESSOR,
|
|
36
|
-
useExisting: BooleanValueAccessorDirective,
|
|
37
|
-
multi: true,
|
|
38
|
-
},
|
|
39
|
-
], usesInheritance: true, ngImport: i0 });
|
|
40
|
-
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
42
|
-
type: Directive,
|
|
43
|
-
args: [{
|
|
44
|
-
standalone: false,
|
|
45
|
-
selector: 'ion-checkbox,ion-toggle',
|
|
46
|
-
providers: [
|
|
47
|
-
{
|
|
48
|
-
provide: NG_VALUE_ACCESSOR,
|
|
49
|
-
useExisting: BooleanValueAccessorDirective,
|
|
50
|
-
multi: true,
|
|
51
|
-
},
|
|
52
|
-
],
|
|
53
|
-
}]
|
|
54
|
-
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleIonChange: [{
|
|
55
|
-
type: HostListener,
|
|
56
|
-
args: ['ionChange', ['$event']]
|
|
57
|
-
}] } });
|
|
58
|
-
|
|
59
|
-
class NumericValueAccessorDirective extends ValueAccessor {
|
|
60
|
-
el;
|
|
61
|
-
constructor(injector, el) {
|
|
62
|
-
super(injector, el);
|
|
63
|
-
this.el = el;
|
|
64
|
-
}
|
|
65
|
-
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
66
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
67
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
68
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
69
|
-
handleInputEvent(ev) {
|
|
70
|
-
const el = ev.target;
|
|
71
|
-
this.handleValueChange(el, el.value);
|
|
72
|
-
}
|
|
73
|
-
registerOnChange(fn) {
|
|
74
|
-
if (this.el.nativeElement.tagName === 'ION-INPUT' || this.el.nativeElement.tagName === 'ION-INPUT-OTP') {
|
|
75
|
-
super.registerOnChange((value) => {
|
|
76
|
-
fn(value === '' ? null : parseFloat(value));
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
else {
|
|
80
|
-
super.registerOnChange(fn);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NumericValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
84
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: NumericValueAccessorDirective, isStandalone: false, selector: "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", host: { listeners: { "ionInput": "handleInputEvent($event)" } }, providers: [
|
|
85
|
-
{
|
|
86
|
-
provide: NG_VALUE_ACCESSOR,
|
|
87
|
-
useExisting: NumericValueAccessorDirective,
|
|
88
|
-
multi: true,
|
|
89
|
-
},
|
|
90
|
-
], usesInheritance: true, ngImport: i0 });
|
|
91
|
-
}
|
|
92
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NumericValueAccessorDirective, decorators: [{
|
|
93
|
-
type: Directive,
|
|
94
|
-
args: [{
|
|
95
|
-
standalone: false,
|
|
96
|
-
selector: 'ion-input[type=number],ion-input-otp:not([type=text]),ion-range',
|
|
97
|
-
providers: [
|
|
98
|
-
{
|
|
99
|
-
provide: NG_VALUE_ACCESSOR,
|
|
100
|
-
useExisting: NumericValueAccessorDirective,
|
|
101
|
-
multi: true,
|
|
102
|
-
},
|
|
103
|
-
],
|
|
104
|
-
}]
|
|
105
|
-
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
106
|
-
type: HostListener,
|
|
107
|
-
args: ['ionInput', ['$event']]
|
|
108
|
-
}] } });
|
|
109
|
-
|
|
110
|
-
class SelectValueAccessorDirective extends ValueAccessor {
|
|
111
|
-
constructor(injector, el) {
|
|
112
|
-
super(injector, el);
|
|
113
|
-
}
|
|
114
|
-
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
115
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
116
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
117
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
118
|
-
_handleChangeEvent(ev) {
|
|
119
|
-
const el = ev.target;
|
|
120
|
-
this.handleValueChange(el, el.value);
|
|
121
|
-
}
|
|
122
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
123
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: SelectValueAccessorDirective, isStandalone: false, selector: "ion-select, ion-radio-group, ion-segment, ion-datetime", host: { listeners: { "ionChange": "_handleChangeEvent($event)" } }, providers: [
|
|
124
|
-
{
|
|
125
|
-
provide: NG_VALUE_ACCESSOR,
|
|
126
|
-
useExisting: SelectValueAccessorDirective,
|
|
127
|
-
multi: true,
|
|
128
|
-
},
|
|
129
|
-
], usesInheritance: true, ngImport: i0 });
|
|
130
|
-
}
|
|
131
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
132
|
-
type: Directive,
|
|
133
|
-
args: [{
|
|
134
|
-
standalone: false,
|
|
135
|
-
/* tslint:disable-next-line:directive-selector */
|
|
136
|
-
selector: 'ion-select, ion-radio-group, ion-segment, ion-datetime',
|
|
137
|
-
providers: [
|
|
138
|
-
{
|
|
139
|
-
provide: NG_VALUE_ACCESSOR,
|
|
140
|
-
useExisting: SelectValueAccessorDirective,
|
|
141
|
-
multi: true,
|
|
142
|
-
},
|
|
143
|
-
],
|
|
144
|
-
}]
|
|
145
|
-
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleChangeEvent: [{
|
|
146
|
-
type: HostListener,
|
|
147
|
-
args: ['ionChange', ['$event']]
|
|
148
|
-
}] } });
|
|
149
|
-
|
|
150
|
-
class TextValueAccessorDirective extends ValueAccessor {
|
|
151
|
-
constructor(injector, el) {
|
|
152
|
-
super(injector, el);
|
|
153
|
-
}
|
|
154
|
-
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
155
|
-
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
156
|
-
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
157
|
-
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
158
|
-
_handleInputEvent(ev) {
|
|
159
|
-
const el = ev.target;
|
|
160
|
-
this.handleValueChange(el, el.value);
|
|
161
|
-
}
|
|
162
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
163
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: TextValueAccessorDirective, isStandalone: false, selector: "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", host: { listeners: { "ionInput": "_handleInputEvent($event)" } }, providers: [
|
|
164
|
-
{
|
|
165
|
-
provide: NG_VALUE_ACCESSOR,
|
|
166
|
-
useExisting: TextValueAccessorDirective,
|
|
167
|
-
multi: true,
|
|
168
|
-
},
|
|
169
|
-
], usesInheritance: true, ngImport: i0 });
|
|
170
|
-
}
|
|
171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
172
|
-
type: Directive,
|
|
173
|
-
args: [{
|
|
174
|
-
standalone: false,
|
|
175
|
-
selector: 'ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar',
|
|
176
|
-
providers: [
|
|
177
|
-
{
|
|
178
|
-
provide: NG_VALUE_ACCESSOR,
|
|
179
|
-
useExisting: TextValueAccessorDirective,
|
|
180
|
-
multi: true,
|
|
181
|
-
},
|
|
182
|
-
],
|
|
183
|
-
}]
|
|
184
|
-
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleInputEvent: [{
|
|
185
|
-
type: HostListener,
|
|
186
|
-
args: ['ionInput', ['$event']]
|
|
187
|
-
}] } });
|
|
188
|
-
|
|
189
|
-
/* eslint-disable */
|
|
1
|
+
import { __decorate } from "tslib";
|
|
190
2
|
/* tslint:disable */
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
get() {
|
|
196
|
-
return this.el[item];
|
|
197
|
-
},
|
|
198
|
-
set(val) {
|
|
199
|
-
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
200
|
-
},
|
|
201
|
-
/**
|
|
202
|
-
* In the event that proxyInputs is called
|
|
203
|
-
* multiple times re-defining these inputs
|
|
204
|
-
* will cause an error to be thrown. As a result
|
|
205
|
-
* we set configurable: true to indicate these
|
|
206
|
-
* properties can be changed.
|
|
207
|
-
*/
|
|
208
|
-
configurable: true,
|
|
209
|
-
});
|
|
210
|
-
});
|
|
211
|
-
};
|
|
212
|
-
const proxyMethods = (Cmp, methods) => {
|
|
213
|
-
const Prototype = Cmp.prototype;
|
|
214
|
-
methods.forEach((methodName) => {
|
|
215
|
-
Prototype[methodName] = function () {
|
|
216
|
-
const args = arguments;
|
|
217
|
-
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
218
|
-
};
|
|
219
|
-
});
|
|
220
|
-
};
|
|
221
|
-
const proxyOutputs = (instance, el, events) => {
|
|
222
|
-
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
223
|
-
};
|
|
224
|
-
const defineCustomElement = (tagName, customElement) => {
|
|
225
|
-
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
226
|
-
customElements.define(tagName, customElement);
|
|
227
|
-
}
|
|
228
|
-
};
|
|
229
|
-
// tslint:disable-next-line: only-arrow-functions
|
|
230
|
-
function ProxyCmp(opts) {
|
|
231
|
-
const decorator = function (cls) {
|
|
232
|
-
const { defineCustomElementFn, inputs, methods } = opts;
|
|
233
|
-
if (defineCustomElementFn !== undefined) {
|
|
234
|
-
defineCustomElementFn();
|
|
235
|
-
}
|
|
236
|
-
if (inputs) {
|
|
237
|
-
proxyInputs(cls, inputs);
|
|
238
|
-
}
|
|
239
|
-
if (methods) {
|
|
240
|
-
proxyMethods(cls, methods);
|
|
241
|
-
}
|
|
242
|
-
return cls;
|
|
243
|
-
};
|
|
244
|
-
return decorator;
|
|
245
|
-
}
|
|
246
|
-
|
|
3
|
+
/* auto-generated angular directive proxies */
|
|
4
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
|
|
5
|
+
import { ProxyCmp } from './angular-component-lib/utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
247
7
|
let IonAccordion = class IonAccordion {
|
|
248
8
|
z;
|
|
249
9
|
el;
|
|
@@ -260,6 +20,7 @@ IonAccordion = __decorate([
|
|
|
260
20
|
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
261
21
|
})
|
|
262
22
|
], IonAccordion);
|
|
23
|
+
export { IonAccordion };
|
|
263
24
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, decorators: [{
|
|
264
25
|
type: Component,
|
|
265
26
|
args: [{
|
|
@@ -288,6 +49,7 @@ IonAccordionGroup = __decorate([
|
|
|
288
49
|
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
289
50
|
})
|
|
290
51
|
], IonAccordionGroup);
|
|
52
|
+
export { IonAccordionGroup };
|
|
291
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
292
54
|
type: Component,
|
|
293
55
|
args: [{
|
|
@@ -327,6 +89,7 @@ IonActionSheet = __decorate([
|
|
|
327
89
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
328
90
|
})
|
|
329
91
|
], IonActionSheet);
|
|
92
|
+
export { IonActionSheet };
|
|
330
93
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
331
94
|
type: Component,
|
|
332
95
|
args: [{
|
|
@@ -380,6 +143,7 @@ IonAlert = __decorate([
|
|
|
380
143
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
381
144
|
})
|
|
382
145
|
], IonAlert);
|
|
146
|
+
export { IonAlert };
|
|
383
147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, decorators: [{
|
|
384
148
|
type: Component,
|
|
385
149
|
args: [{
|
|
@@ -424,6 +188,7 @@ IonApp = __decorate([
|
|
|
424
188
|
methods: ['setFocus']
|
|
425
189
|
})
|
|
426
190
|
], IonApp);
|
|
191
|
+
export { IonApp };
|
|
427
192
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, decorators: [{
|
|
428
193
|
type: Component,
|
|
429
194
|
args: [{
|
|
@@ -449,6 +214,7 @@ let IonAvatar = class IonAvatar {
|
|
|
449
214
|
IonAvatar = __decorate([
|
|
450
215
|
ProxyCmp({})
|
|
451
216
|
], IonAvatar);
|
|
217
|
+
export { IonAvatar };
|
|
452
218
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, decorators: [{
|
|
453
219
|
type: Component,
|
|
454
220
|
args: [{
|
|
@@ -477,6 +243,7 @@ IonBackdrop = __decorate([
|
|
|
477
243
|
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
478
244
|
})
|
|
479
245
|
], IonBackdrop);
|
|
246
|
+
export { IonBackdrop };
|
|
480
247
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
481
248
|
type: Component,
|
|
482
249
|
args: [{
|
|
@@ -507,6 +274,7 @@ IonBadge = __decorate([
|
|
|
507
274
|
inputs: ['color', 'mode']
|
|
508
275
|
})
|
|
509
276
|
], IonBadge);
|
|
277
|
+
export { IonBadge };
|
|
510
278
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, decorators: [{
|
|
511
279
|
type: Component,
|
|
512
280
|
args: [{
|
|
@@ -536,6 +304,7 @@ IonBreadcrumb = __decorate([
|
|
|
536
304
|
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
537
305
|
})
|
|
538
306
|
], IonBreadcrumb);
|
|
307
|
+
export { IonBreadcrumb };
|
|
539
308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
540
309
|
type: Component,
|
|
541
310
|
args: [{
|
|
@@ -569,6 +338,7 @@ IonBreadcrumbs = __decorate([
|
|
|
569
338
|
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
570
339
|
})
|
|
571
340
|
], IonBreadcrumbs);
|
|
341
|
+
export { IonBreadcrumbs };
|
|
572
342
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
573
343
|
type: Component,
|
|
574
344
|
args: [{
|
|
@@ -601,6 +371,7 @@ IonButton = __decorate([
|
|
|
601
371
|
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
602
372
|
})
|
|
603
373
|
], IonButton);
|
|
374
|
+
export { IonButton };
|
|
604
375
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, decorators: [{
|
|
605
376
|
type: Component,
|
|
606
377
|
args: [{
|
|
@@ -633,6 +404,7 @@ IonButtons = __decorate([
|
|
|
633
404
|
inputs: ['collapse']
|
|
634
405
|
})
|
|
635
406
|
], IonButtons);
|
|
407
|
+
export { IonButtons };
|
|
636
408
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, decorators: [{
|
|
637
409
|
type: Component,
|
|
638
410
|
args: [{
|
|
@@ -660,6 +432,7 @@ IonCard = __decorate([
|
|
|
660
432
|
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
661
433
|
})
|
|
662
434
|
], IonCard);
|
|
435
|
+
export { IonCard };
|
|
663
436
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, decorators: [{
|
|
664
437
|
type: Component,
|
|
665
438
|
args: [{
|
|
@@ -687,6 +460,7 @@ IonCardContent = __decorate([
|
|
|
687
460
|
inputs: ['mode']
|
|
688
461
|
})
|
|
689
462
|
], IonCardContent);
|
|
463
|
+
export { IonCardContent };
|
|
690
464
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, decorators: [{
|
|
691
465
|
type: Component,
|
|
692
466
|
args: [{
|
|
@@ -714,6 +488,7 @@ IonCardHeader = __decorate([
|
|
|
714
488
|
inputs: ['color', 'mode', 'translucent']
|
|
715
489
|
})
|
|
716
490
|
], IonCardHeader);
|
|
491
|
+
export { IonCardHeader };
|
|
717
492
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
718
493
|
type: Component,
|
|
719
494
|
args: [{
|
|
@@ -741,6 +516,7 @@ IonCardSubtitle = __decorate([
|
|
|
741
516
|
inputs: ['color', 'mode']
|
|
742
517
|
})
|
|
743
518
|
], IonCardSubtitle);
|
|
519
|
+
export { IonCardSubtitle };
|
|
744
520
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
745
521
|
type: Component,
|
|
746
522
|
args: [{
|
|
@@ -768,6 +544,7 @@ IonCardTitle = __decorate([
|
|
|
768
544
|
inputs: ['color', 'mode']
|
|
769
545
|
})
|
|
770
546
|
], IonCardTitle);
|
|
547
|
+
export { IonCardTitle };
|
|
771
548
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
772
549
|
type: Component,
|
|
773
550
|
args: [{
|
|
@@ -798,6 +575,7 @@ IonCheckbox = __decorate([
|
|
|
798
575
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
799
576
|
})
|
|
800
577
|
], IonCheckbox);
|
|
578
|
+
export { IonCheckbox };
|
|
801
579
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
802
580
|
type: Component,
|
|
803
581
|
args: [{
|
|
@@ -832,6 +610,7 @@ IonChip = __decorate([
|
|
|
832
610
|
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
833
611
|
})
|
|
834
612
|
], IonChip);
|
|
613
|
+
export { IonChip };
|
|
835
614
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, decorators: [{
|
|
836
615
|
type: Component,
|
|
837
616
|
args: [{
|
|
@@ -859,6 +638,7 @@ IonCol = __decorate([
|
|
|
859
638
|
inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs']
|
|
860
639
|
})
|
|
861
640
|
], IonCol);
|
|
641
|
+
export { IonCol };
|
|
862
642
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, decorators: [{
|
|
863
643
|
type: Component,
|
|
864
644
|
args: [{
|
|
@@ -890,6 +670,7 @@ IonContent = __decorate([
|
|
|
890
670
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
891
671
|
})
|
|
892
672
|
], IonContent);
|
|
673
|
+
export { IonContent };
|
|
893
674
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, decorators: [{
|
|
894
675
|
type: Component,
|
|
895
676
|
args: [{
|
|
@@ -929,6 +710,7 @@ IonDatetime = __decorate([
|
|
|
929
710
|
methods: ['confirm', 'reset', 'cancel']
|
|
930
711
|
})
|
|
931
712
|
], IonDatetime);
|
|
713
|
+
export { IonDatetime };
|
|
932
714
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, decorators: [{
|
|
933
715
|
type: Component,
|
|
934
716
|
args: [{
|
|
@@ -965,6 +747,7 @@ IonDatetimeButton = __decorate([
|
|
|
965
747
|
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
966
748
|
})
|
|
967
749
|
], IonDatetimeButton);
|
|
750
|
+
export { IonDatetimeButton };
|
|
968
751
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
969
752
|
type: Component,
|
|
970
753
|
args: [{
|
|
@@ -993,6 +776,7 @@ IonFab = __decorate([
|
|
|
993
776
|
methods: ['close']
|
|
994
777
|
})
|
|
995
778
|
], IonFab);
|
|
779
|
+
export { IonFab };
|
|
996
780
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, decorators: [{
|
|
997
781
|
type: Component,
|
|
998
782
|
args: [{
|
|
@@ -1022,6 +806,7 @@ IonFabButton = __decorate([
|
|
|
1022
806
|
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
1023
807
|
})
|
|
1024
808
|
], IonFabButton);
|
|
809
|
+
export { IonFabButton };
|
|
1025
810
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1026
811
|
type: Component,
|
|
1027
812
|
args: [{
|
|
@@ -1054,6 +839,7 @@ IonFabList = __decorate([
|
|
|
1054
839
|
inputs: ['activated', 'side']
|
|
1055
840
|
})
|
|
1056
841
|
], IonFabList);
|
|
842
|
+
export { IonFabList };
|
|
1057
843
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, decorators: [{
|
|
1058
844
|
type: Component,
|
|
1059
845
|
args: [{
|
|
@@ -1081,6 +867,7 @@ IonFooter = __decorate([
|
|
|
1081
867
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1082
868
|
})
|
|
1083
869
|
], IonFooter);
|
|
870
|
+
export { IonFooter };
|
|
1084
871
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, decorators: [{
|
|
1085
872
|
type: Component,
|
|
1086
873
|
args: [{
|
|
@@ -1108,6 +895,7 @@ IonGrid = __decorate([
|
|
|
1108
895
|
inputs: ['fixed']
|
|
1109
896
|
})
|
|
1110
897
|
], IonGrid);
|
|
898
|
+
export { IonGrid };
|
|
1111
899
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, decorators: [{
|
|
1112
900
|
type: Component,
|
|
1113
901
|
args: [{
|
|
@@ -1135,6 +923,7 @@ IonHeader = __decorate([
|
|
|
1135
923
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1136
924
|
})
|
|
1137
925
|
], IonHeader);
|
|
926
|
+
export { IonHeader };
|
|
1138
927
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, decorators: [{
|
|
1139
928
|
type: Component,
|
|
1140
929
|
args: [{
|
|
@@ -1162,6 +951,7 @@ IonIcon = __decorate([
|
|
|
1162
951
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
|
|
1163
952
|
})
|
|
1164
953
|
], IonIcon);
|
|
954
|
+
export { IonIcon };
|
|
1165
955
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, decorators: [{
|
|
1166
956
|
type: Component,
|
|
1167
957
|
args: [{
|
|
@@ -1192,6 +982,7 @@ IonImg = __decorate([
|
|
|
1192
982
|
inputs: ['alt', 'src']
|
|
1193
983
|
})
|
|
1194
984
|
], IonImg);
|
|
985
|
+
export { IonImg };
|
|
1195
986
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, decorators: [{
|
|
1196
987
|
type: Component,
|
|
1197
988
|
args: [{
|
|
@@ -1228,6 +1019,7 @@ IonInfiniteScroll = __decorate([
|
|
|
1228
1019
|
methods: ['complete']
|
|
1229
1020
|
})
|
|
1230
1021
|
], IonInfiniteScroll);
|
|
1022
|
+
export { IonInfiniteScroll };
|
|
1231
1023
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1232
1024
|
type: Component,
|
|
1233
1025
|
args: [{
|
|
@@ -1258,6 +1050,7 @@ IonInfiniteScrollContent = __decorate([
|
|
|
1258
1050
|
inputs: ['loadingSpinner', 'loadingText']
|
|
1259
1051
|
})
|
|
1260
1052
|
], IonInfiniteScrollContent);
|
|
1053
|
+
export { IonInfiniteScrollContent };
|
|
1261
1054
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1262
1055
|
type: Component,
|
|
1263
1056
|
args: [{
|
|
@@ -1290,6 +1083,7 @@ IonInput = __decorate([
|
|
|
1290
1083
|
methods: ['setFocus', 'getInputElement']
|
|
1291
1084
|
})
|
|
1292
1085
|
], IonInput);
|
|
1086
|
+
export { IonInput };
|
|
1293
1087
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, decorators: [{
|
|
1294
1088
|
type: Component,
|
|
1295
1089
|
args: [{
|
|
@@ -1332,6 +1126,7 @@ IonInputOtp = __decorate([
|
|
|
1332
1126
|
methods: ['setFocus']
|
|
1333
1127
|
})
|
|
1334
1128
|
], IonInputOtp);
|
|
1129
|
+
export { IonInputOtp };
|
|
1335
1130
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
1336
1131
|
type: Component,
|
|
1337
1132
|
args: [{
|
|
@@ -1370,6 +1165,7 @@ IonInputPasswordToggle = __decorate([
|
|
|
1370
1165
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1371
1166
|
})
|
|
1372
1167
|
], IonInputPasswordToggle);
|
|
1168
|
+
export { IonInputPasswordToggle };
|
|
1373
1169
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1374
1170
|
type: Component,
|
|
1375
1171
|
args: [{
|
|
@@ -1397,6 +1193,7 @@ IonItem = __decorate([
|
|
|
1397
1193
|
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1398
1194
|
})
|
|
1399
1195
|
], IonItem);
|
|
1196
|
+
export { IonItem };
|
|
1400
1197
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, decorators: [{
|
|
1401
1198
|
type: Component,
|
|
1402
1199
|
args: [{
|
|
@@ -1424,6 +1221,7 @@ IonItemDivider = __decorate([
|
|
|
1424
1221
|
inputs: ['color', 'mode', 'sticky']
|
|
1425
1222
|
})
|
|
1426
1223
|
], IonItemDivider);
|
|
1224
|
+
export { IonItemDivider };
|
|
1427
1225
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1428
1226
|
type: Component,
|
|
1429
1227
|
args: [{
|
|
@@ -1449,6 +1247,7 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1449
1247
|
IonItemGroup = __decorate([
|
|
1450
1248
|
ProxyCmp({})
|
|
1451
1249
|
], IonItemGroup);
|
|
1250
|
+
export { IonItemGroup };
|
|
1452
1251
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1453
1252
|
type: Component,
|
|
1454
1253
|
args: [{
|
|
@@ -1476,6 +1275,7 @@ IonItemOption = __decorate([
|
|
|
1476
1275
|
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1477
1276
|
})
|
|
1478
1277
|
], IonItemOption);
|
|
1278
|
+
export { IonItemOption };
|
|
1479
1279
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1480
1280
|
type: Component,
|
|
1481
1281
|
args: [{
|
|
@@ -1504,6 +1304,7 @@ IonItemOptions = __decorate([
|
|
|
1504
1304
|
inputs: ['side']
|
|
1505
1305
|
})
|
|
1506
1306
|
], IonItemOptions);
|
|
1307
|
+
export { IonItemOptions };
|
|
1507
1308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1508
1309
|
type: Component,
|
|
1509
1310
|
args: [{
|
|
@@ -1536,6 +1337,7 @@ IonItemSliding = __decorate([
|
|
|
1536
1337
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1537
1338
|
})
|
|
1538
1339
|
], IonItemSliding);
|
|
1340
|
+
export { IonItemSliding };
|
|
1539
1341
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1540
1342
|
type: Component,
|
|
1541
1343
|
args: [{
|
|
@@ -1566,6 +1368,7 @@ IonLabel = __decorate([
|
|
|
1566
1368
|
inputs: ['color', 'mode', 'position']
|
|
1567
1369
|
})
|
|
1568
1370
|
], IonLabel);
|
|
1371
|
+
export { IonLabel };
|
|
1569
1372
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, decorators: [{
|
|
1570
1373
|
type: Component,
|
|
1571
1374
|
args: [{
|
|
@@ -1594,6 +1397,7 @@ IonList = __decorate([
|
|
|
1594
1397
|
methods: ['closeSlidingItems']
|
|
1595
1398
|
})
|
|
1596
1399
|
], IonList);
|
|
1400
|
+
export { IonList };
|
|
1597
1401
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, decorators: [{
|
|
1598
1402
|
type: Component,
|
|
1599
1403
|
args: [{
|
|
@@ -1621,6 +1425,7 @@ IonListHeader = __decorate([
|
|
|
1621
1425
|
inputs: ['color', 'lines', 'mode']
|
|
1622
1426
|
})
|
|
1623
1427
|
], IonListHeader);
|
|
1428
|
+
export { IonListHeader };
|
|
1624
1429
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1625
1430
|
type: Component,
|
|
1626
1431
|
args: [{
|
|
@@ -1657,6 +1462,7 @@ IonLoading = __decorate([
|
|
|
1657
1462
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1658
1463
|
})
|
|
1659
1464
|
], IonLoading);
|
|
1465
|
+
export { IonLoading };
|
|
1660
1466
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, decorators: [{
|
|
1661
1467
|
type: Component,
|
|
1662
1468
|
args: [{
|
|
@@ -1706,6 +1512,7 @@ IonMenu = __decorate([
|
|
|
1706
1512
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1707
1513
|
})
|
|
1708
1514
|
], IonMenu);
|
|
1515
|
+
export { IonMenu };
|
|
1709
1516
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, decorators: [{
|
|
1710
1517
|
type: Component,
|
|
1711
1518
|
args: [{
|
|
@@ -1742,6 +1549,7 @@ IonMenuButton = __decorate([
|
|
|
1742
1549
|
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1743
1550
|
})
|
|
1744
1551
|
], IonMenuButton);
|
|
1552
|
+
export { IonMenuButton };
|
|
1745
1553
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1746
1554
|
type: Component,
|
|
1747
1555
|
args: [{
|
|
@@ -1769,6 +1577,7 @@ IonMenuToggle = __decorate([
|
|
|
1769
1577
|
inputs: ['autoHide', 'menu']
|
|
1770
1578
|
})
|
|
1771
1579
|
], IonMenuToggle);
|
|
1580
|
+
export { IonMenuToggle };
|
|
1772
1581
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1773
1582
|
type: Component,
|
|
1774
1583
|
args: [{
|
|
@@ -1796,6 +1605,7 @@ IonNavLink = __decorate([
|
|
|
1796
1605
|
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1797
1606
|
})
|
|
1798
1607
|
], IonNavLink);
|
|
1608
|
+
export { IonNavLink };
|
|
1799
1609
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1800
1610
|
type: Component,
|
|
1801
1611
|
args: [{
|
|
@@ -1823,6 +1633,7 @@ IonNote = __decorate([
|
|
|
1823
1633
|
inputs: ['color', 'mode']
|
|
1824
1634
|
})
|
|
1825
1635
|
], IonNote);
|
|
1636
|
+
export { IonNote };
|
|
1826
1637
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, decorators: [{
|
|
1827
1638
|
type: Component,
|
|
1828
1639
|
args: [{
|
|
@@ -1850,6 +1661,7 @@ IonPicker = __decorate([
|
|
|
1850
1661
|
inputs: ['mode']
|
|
1851
1662
|
})
|
|
1852
1663
|
], IonPicker);
|
|
1664
|
+
export { IonPicker };
|
|
1853
1665
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, decorators: [{
|
|
1854
1666
|
type: Component,
|
|
1855
1667
|
args: [{
|
|
@@ -1879,6 +1691,7 @@ IonPickerColumn = __decorate([
|
|
|
1879
1691
|
methods: ['setFocus']
|
|
1880
1692
|
})
|
|
1881
1693
|
], IonPickerColumn);
|
|
1694
|
+
export { IonPickerColumn };
|
|
1882
1695
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1883
1696
|
type: Component,
|
|
1884
1697
|
args: [{
|
|
@@ -1909,6 +1722,7 @@ IonPickerColumnOption = __decorate([
|
|
|
1909
1722
|
inputs: ['color', 'disabled', 'value']
|
|
1910
1723
|
})
|
|
1911
1724
|
], IonPickerColumnOption);
|
|
1725
|
+
export { IonPickerColumnOption };
|
|
1912
1726
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1913
1727
|
type: Component,
|
|
1914
1728
|
args: [{
|
|
@@ -1936,6 +1750,7 @@ IonProgressBar = __decorate([
|
|
|
1936
1750
|
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1937
1751
|
})
|
|
1938
1752
|
], IonProgressBar);
|
|
1753
|
+
export { IonProgressBar };
|
|
1939
1754
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1940
1755
|
type: Component,
|
|
1941
1756
|
args: [{
|
|
@@ -1965,6 +1780,7 @@ IonRadio = __decorate([
|
|
|
1965
1780
|
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1966
1781
|
})
|
|
1967
1782
|
], IonRadio);
|
|
1783
|
+
export { IonRadio };
|
|
1968
1784
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, decorators: [{
|
|
1969
1785
|
type: Component,
|
|
1970
1786
|
args: [{
|
|
@@ -1998,6 +1814,7 @@ IonRadioGroup = __decorate([
|
|
|
1998
1814
|
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value']
|
|
1999
1815
|
})
|
|
2000
1816
|
], IonRadioGroup);
|
|
1817
|
+
export { IonRadioGroup };
|
|
2001
1818
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
2002
1819
|
type: Component,
|
|
2003
1820
|
args: [{
|
|
@@ -2034,6 +1851,7 @@ IonRange = __decorate([
|
|
|
2034
1851
|
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value']
|
|
2035
1852
|
})
|
|
2036
1853
|
], IonRange);
|
|
1854
|
+
export { IonRange };
|
|
2037
1855
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, decorators: [{
|
|
2038
1856
|
type: Component,
|
|
2039
1857
|
args: [{
|
|
@@ -2080,6 +1898,7 @@ IonRefresher = __decorate([
|
|
|
2080
1898
|
methods: ['complete', 'cancel', 'getProgress']
|
|
2081
1899
|
})
|
|
2082
1900
|
], IonRefresher);
|
|
1901
|
+
export { IonRefresher };
|
|
2083
1902
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, decorators: [{
|
|
2084
1903
|
type: Component,
|
|
2085
1904
|
args: [{
|
|
@@ -2118,6 +1937,7 @@ IonRefresherContent = __decorate([
|
|
|
2118
1937
|
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
2119
1938
|
})
|
|
2120
1939
|
], IonRefresherContent);
|
|
1940
|
+
export { IonRefresherContent };
|
|
2121
1941
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
2122
1942
|
type: Component,
|
|
2123
1943
|
args: [{
|
|
@@ -2143,6 +1963,7 @@ let IonReorder = class IonReorder {
|
|
|
2143
1963
|
IonReorder = __decorate([
|
|
2144
1964
|
ProxyCmp({})
|
|
2145
1965
|
], IonReorder);
|
|
1966
|
+
export { IonReorder };
|
|
2146
1967
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, decorators: [{
|
|
2147
1968
|
type: Component,
|
|
2148
1969
|
args: [{
|
|
@@ -2175,6 +1996,7 @@ IonReorderGroup = __decorate([
|
|
|
2175
1996
|
methods: ['complete']
|
|
2176
1997
|
})
|
|
2177
1998
|
], IonReorderGroup);
|
|
1999
|
+
export { IonReorderGroup };
|
|
2178
2000
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
2179
2001
|
type: Component,
|
|
2180
2002
|
args: [{
|
|
@@ -2212,6 +2034,7 @@ IonRippleEffect = __decorate([
|
|
|
2212
2034
|
methods: ['addRipple']
|
|
2213
2035
|
})
|
|
2214
2036
|
], IonRippleEffect);
|
|
2037
|
+
export { IonRippleEffect };
|
|
2215
2038
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2216
2039
|
type: Component,
|
|
2217
2040
|
args: [{
|
|
@@ -2237,6 +2060,7 @@ let IonRow = class IonRow {
|
|
|
2237
2060
|
IonRow = __decorate([
|
|
2238
2061
|
ProxyCmp({})
|
|
2239
2062
|
], IonRow);
|
|
2063
|
+
export { IonRow };
|
|
2240
2064
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, decorators: [{
|
|
2241
2065
|
type: Component,
|
|
2242
2066
|
args: [{
|
|
@@ -2271,6 +2095,7 @@ IonSearchbar = __decorate([
|
|
|
2271
2095
|
methods: ['setFocus', 'getInputElement']
|
|
2272
2096
|
})
|
|
2273
2097
|
], IonSearchbar);
|
|
2098
|
+
export { IonSearchbar };
|
|
2274
2099
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
2275
2100
|
type: Component,
|
|
2276
2101
|
args: [{
|
|
@@ -2312,6 +2137,7 @@ IonSegment = __decorate([
|
|
|
2312
2137
|
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value']
|
|
2313
2138
|
})
|
|
2314
2139
|
], IonSegment);
|
|
2140
|
+
export { IonSegment };
|
|
2315
2141
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, decorators: [{
|
|
2316
2142
|
type: Component,
|
|
2317
2143
|
args: [{
|
|
@@ -2342,6 +2168,7 @@ IonSegmentButton = __decorate([
|
|
|
2342
2168
|
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2343
2169
|
})
|
|
2344
2170
|
], IonSegmentButton);
|
|
2171
|
+
export { IonSegmentButton };
|
|
2345
2172
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2346
2173
|
type: Component,
|
|
2347
2174
|
args: [{
|
|
@@ -2367,6 +2194,7 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2367
2194
|
IonSegmentContent = __decorate([
|
|
2368
2195
|
ProxyCmp({})
|
|
2369
2196
|
], IonSegmentContent);
|
|
2197
|
+
export { IonSegmentContent };
|
|
2370
2198
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2371
2199
|
type: Component,
|
|
2372
2200
|
args: [{
|
|
@@ -2395,6 +2223,7 @@ IonSegmentView = __decorate([
|
|
|
2395
2223
|
inputs: ['disabled', 'swipeGesture']
|
|
2396
2224
|
})
|
|
2397
2225
|
], IonSegmentView);
|
|
2226
|
+
export { IonSegmentView };
|
|
2398
2227
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2399
2228
|
type: Component,
|
|
2400
2229
|
args: [{
|
|
@@ -2431,6 +2260,7 @@ IonSelect = __decorate([
|
|
|
2431
2260
|
methods: ['open']
|
|
2432
2261
|
})
|
|
2433
2262
|
], IonSelect);
|
|
2263
|
+
export { IonSelect };
|
|
2434
2264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, decorators: [{
|
|
2435
2265
|
type: Component,
|
|
2436
2266
|
args: [{
|
|
@@ -2469,6 +2299,7 @@ IonSelectModal = __decorate([
|
|
|
2469
2299
|
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2470
2300
|
})
|
|
2471
2301
|
], IonSelectModal);
|
|
2302
|
+
export { IonSelectModal };
|
|
2472
2303
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2473
2304
|
type: Component,
|
|
2474
2305
|
args: [{
|
|
@@ -2496,6 +2327,7 @@ IonSelectOption = __decorate([
|
|
|
2496
2327
|
inputs: ['description', 'disabled', 'justify', 'labelPlacement', 'mode', 'value']
|
|
2497
2328
|
})
|
|
2498
2329
|
], IonSelectOption);
|
|
2330
|
+
export { IonSelectOption };
|
|
2499
2331
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2500
2332
|
type: Component,
|
|
2501
2333
|
args: [{
|
|
@@ -2523,6 +2355,7 @@ IonSkeletonText = __decorate([
|
|
|
2523
2355
|
inputs: ['animated']
|
|
2524
2356
|
})
|
|
2525
2357
|
], IonSkeletonText);
|
|
2358
|
+
export { IonSkeletonText };
|
|
2526
2359
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2527
2360
|
type: Component,
|
|
2528
2361
|
args: [{
|
|
@@ -2550,6 +2383,7 @@ IonSpinner = __decorate([
|
|
|
2550
2383
|
inputs: ['color', 'duration', 'name', 'paused']
|
|
2551
2384
|
})
|
|
2552
2385
|
], IonSpinner);
|
|
2386
|
+
export { IonSpinner };
|
|
2553
2387
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2554
2388
|
type: Component,
|
|
2555
2389
|
args: [{
|
|
@@ -2578,6 +2412,7 @@ IonSplitPane = __decorate([
|
|
|
2578
2412
|
inputs: ['contentId', 'disabled', 'when']
|
|
2579
2413
|
})
|
|
2580
2414
|
], IonSplitPane);
|
|
2415
|
+
export { IonSplitPane };
|
|
2581
2416
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2582
2417
|
type: Component,
|
|
2583
2418
|
args: [{
|
|
@@ -2609,6 +2444,7 @@ IonTab = __decorate([
|
|
|
2609
2444
|
methods: ['setActive']
|
|
2610
2445
|
})
|
|
2611
2446
|
], IonTab);
|
|
2447
|
+
export { IonTab };
|
|
2612
2448
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, decorators: [{
|
|
2613
2449
|
type: Component,
|
|
2614
2450
|
args: [{
|
|
@@ -2636,6 +2472,7 @@ IonTabBar = __decorate([
|
|
|
2636
2472
|
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2637
2473
|
})
|
|
2638
2474
|
], IonTabBar);
|
|
2475
|
+
export { IonTabBar };
|
|
2639
2476
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2640
2477
|
type: Component,
|
|
2641
2478
|
args: [{
|
|
@@ -2663,6 +2500,7 @@ IonTabButton = __decorate([
|
|
|
2663
2500
|
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2664
2501
|
})
|
|
2665
2502
|
], IonTabButton);
|
|
2503
|
+
export { IonTabButton };
|
|
2666
2504
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2667
2505
|
type: Component,
|
|
2668
2506
|
args: [{
|
|
@@ -2690,6 +2528,7 @@ IonText = __decorate([
|
|
|
2690
2528
|
inputs: ['color', 'mode']
|
|
2691
2529
|
})
|
|
2692
2530
|
], IonText);
|
|
2531
|
+
export { IonText };
|
|
2693
2532
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, decorators: [{
|
|
2694
2533
|
type: Component,
|
|
2695
2534
|
args: [{
|
|
@@ -2722,6 +2561,7 @@ IonTextarea = __decorate([
|
|
|
2722
2561
|
methods: ['setFocus', 'getInputElement']
|
|
2723
2562
|
})
|
|
2724
2563
|
], IonTextarea);
|
|
2564
|
+
export { IonTextarea };
|
|
2725
2565
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, decorators: [{
|
|
2726
2566
|
type: Component,
|
|
2727
2567
|
args: [{
|
|
@@ -2756,6 +2596,7 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2756
2596
|
IonThumbnail = __decorate([
|
|
2757
2597
|
ProxyCmp({})
|
|
2758
2598
|
], IonThumbnail);
|
|
2599
|
+
export { IonThumbnail };
|
|
2759
2600
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2760
2601
|
type: Component,
|
|
2761
2602
|
args: [{
|
|
@@ -2783,6 +2624,7 @@ IonTitle = __decorate([
|
|
|
2783
2624
|
inputs: ['color', 'size']
|
|
2784
2625
|
})
|
|
2785
2626
|
], IonTitle);
|
|
2627
|
+
export { IonTitle };
|
|
2786
2628
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, decorators: [{
|
|
2787
2629
|
type: Component,
|
|
2788
2630
|
args: [{
|
|
@@ -2819,6 +2661,7 @@ IonToast = __decorate([
|
|
|
2819
2661
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2820
2662
|
})
|
|
2821
2663
|
], IonToast);
|
|
2664
|
+
export { IonToast };
|
|
2822
2665
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, decorators: [{
|
|
2823
2666
|
type: Component,
|
|
2824
2667
|
args: [{
|
|
@@ -2866,6 +2709,7 @@ IonToggle = __decorate([
|
|
|
2866
2709
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
2867
2710
|
})
|
|
2868
2711
|
], IonToggle);
|
|
2712
|
+
export { IonToggle };
|
|
2869
2713
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, decorators: [{
|
|
2870
2714
|
type: Component,
|
|
2871
2715
|
args: [{
|
|
@@ -2900,6 +2744,7 @@ IonToolbar = __decorate([
|
|
|
2900
2744
|
inputs: ['color', 'mode']
|
|
2901
2745
|
})
|
|
2902
2746
|
], IonToolbar);
|
|
2747
|
+
export { IonToolbar };
|
|
2903
2748
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2904
2749
|
type: Component,
|
|
2905
2750
|
args: [{
|
|
@@ -2911,640 +2756,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
2911
2756
|
standalone: false
|
|
2912
2757
|
}]
|
|
2913
2758
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2914
|
-
|
|
2915
|
-
class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
2916
|
-
parentOutlet;
|
|
2917
|
-
/**
|
|
2918
|
-
* `static: true` must be set so the query results are resolved
|
|
2919
|
-
* before change detection runs. Otherwise, the view container
|
|
2920
|
-
* ref will be ion-router-outlet instead of ng-container, and
|
|
2921
|
-
* the first view will be added as a sibling of ion-router-outlet
|
|
2922
|
-
* instead of a child.
|
|
2923
|
-
*/
|
|
2924
|
-
outletContent;
|
|
2925
|
-
/**
|
|
2926
|
-
* We need to pass in the correct instance of IonRouterOutlet
|
|
2927
|
-
* otherwise parentOutlet will be null in a nested outlet context.
|
|
2928
|
-
* This results in APIs such as NavController.pop not working
|
|
2929
|
-
* in nested outlets because the parent outlet cannot be found.
|
|
2930
|
-
*/
|
|
2931
|
-
constructor(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet) {
|
|
2932
|
-
super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
|
|
2933
|
-
this.parentOutlet = parentOutlet;
|
|
2934
|
-
}
|
|
2935
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
2936
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRouterOutlet, isStandalone: false, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
|
|
2937
|
-
}
|
|
2938
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, decorators: [{
|
|
2939
|
-
type: Component,
|
|
2940
|
-
args: [{
|
|
2941
|
-
standalone: false,
|
|
2942
|
-
selector: 'ion-router-outlet',
|
|
2943
|
-
template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
|
|
2944
|
-
}]
|
|
2945
|
-
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2946
|
-
type: Attribute,
|
|
2947
|
-
args: ['name']
|
|
2948
|
-
}] }, { type: undefined, decorators: [{
|
|
2949
|
-
type: Optional
|
|
2950
|
-
}, {
|
|
2951
|
-
type: Attribute,
|
|
2952
|
-
args: ['tabs']
|
|
2953
|
-
}] }, { type: i1.Location }, { type: i0.ElementRef }, { type: i2.Router }, { type: i0.NgZone }, { type: i2.ActivatedRoute }, { type: IonRouterOutlet, decorators: [{
|
|
2954
|
-
type: SkipSelf
|
|
2955
|
-
}, {
|
|
2956
|
-
type: Optional
|
|
2957
|
-
}] }], propDecorators: { outletContent: [{
|
|
2958
|
-
type: ViewChild,
|
|
2959
|
-
args: ['outletContent', { read: ViewContainerRef, static: true }]
|
|
2960
|
-
}] } });
|
|
2961
|
-
|
|
2962
|
-
class IonTabs extends IonTabs$1 {
|
|
2963
|
-
outlet;
|
|
2964
|
-
tabBar;
|
|
2965
|
-
tabBars;
|
|
2966
|
-
tabs;
|
|
2967
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2968
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabs, isStandalone: false, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
|
|
2969
|
-
<ng-content select="[slot=top]"></ng-content>
|
|
2970
|
-
<div class="tabs-inner" #tabsInner>
|
|
2971
|
-
<ion-router-outlet
|
|
2972
|
-
*ngIf="tabs.length === 0"
|
|
2973
|
-
#outlet
|
|
2974
|
-
tabs="true"
|
|
2975
|
-
(stackWillChange)="onStackWillChange($event)"
|
|
2976
|
-
(stackDidChange)="onStackDidChange($event)"
|
|
2977
|
-
></ion-router-outlet>
|
|
2978
|
-
<ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
|
|
2979
|
-
</div>
|
|
2980
|
-
<ng-content></ng-content>
|
|
2981
|
-
`, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }] });
|
|
2982
|
-
}
|
|
2983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, decorators: [{
|
|
2984
|
-
type: Component,
|
|
2985
|
-
args: [{ standalone: false, selector: 'ion-tabs', template: `
|
|
2986
|
-
<ng-content select="[slot=top]"></ng-content>
|
|
2987
|
-
<div class="tabs-inner" #tabsInner>
|
|
2988
|
-
<ion-router-outlet
|
|
2989
|
-
*ngIf="tabs.length === 0"
|
|
2990
|
-
#outlet
|
|
2991
|
-
tabs="true"
|
|
2992
|
-
(stackWillChange)="onStackWillChange($event)"
|
|
2993
|
-
(stackDidChange)="onStackDidChange($event)"
|
|
2994
|
-
></ion-router-outlet>
|
|
2995
|
-
<ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
|
|
2996
|
-
</div>
|
|
2997
|
-
<ng-content></ng-content>
|
|
2998
|
-
`, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"] }]
|
|
2999
|
-
}], propDecorators: { outlet: [{
|
|
3000
|
-
type: ViewChild,
|
|
3001
|
-
args: ['outlet', { read: IonRouterOutlet, static: false }]
|
|
3002
|
-
}], tabBar: [{
|
|
3003
|
-
type: ContentChild,
|
|
3004
|
-
args: [IonTabBar, { static: false }]
|
|
3005
|
-
}], tabBars: [{
|
|
3006
|
-
type: ContentChildren,
|
|
3007
|
-
args: [IonTabBar]
|
|
3008
|
-
}], tabs: [{
|
|
3009
|
-
type: ContentChildren,
|
|
3010
|
-
args: [IonTab]
|
|
3011
|
-
}] } });
|
|
3012
|
-
|
|
3013
|
-
class IonBackButton extends IonBackButton$1 {
|
|
3014
|
-
constructor(routerOutlet, navCtrl, config, r, z, c) {
|
|
3015
|
-
super(routerOutlet, navCtrl, config, r, z, c);
|
|
3016
|
-
}
|
|
3017
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3018
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackButton, isStandalone: false, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3019
|
-
}
|
|
3020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, decorators: [{
|
|
3021
|
-
type: Component,
|
|
3022
|
-
args: [{
|
|
3023
|
-
standalone: false,
|
|
3024
|
-
selector: 'ion-back-button',
|
|
3025
|
-
template: '<ng-content></ng-content>',
|
|
3026
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3027
|
-
}]
|
|
3028
|
-
}], ctorParameters: () => [{ type: IonRouterOutlet, decorators: [{
|
|
3029
|
-
type: Optional
|
|
3030
|
-
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
3031
|
-
|
|
3032
|
-
class IonNav extends IonNav$1 {
|
|
3033
|
-
constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
|
|
3034
|
-
super(ref, environmentInjector, injector, angularDelegate, z, c);
|
|
3035
|
-
}
|
|
3036
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3037
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNav, isStandalone: false, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3038
|
-
}
|
|
3039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, decorators: [{
|
|
3040
|
-
type: Component,
|
|
3041
|
-
args: [{
|
|
3042
|
-
standalone: false,
|
|
3043
|
-
selector: 'ion-nav',
|
|
3044
|
-
template: '<ng-content></ng-content>',
|
|
3045
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3046
|
-
}]
|
|
3047
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
3048
|
-
|
|
3049
|
-
/**
|
|
3050
|
-
* Adds support for Ionic routing directions and animations to the base Angular router link directive.
|
|
3051
|
-
*
|
|
3052
|
-
* When the router link is clicked, the directive will assign the direction and
|
|
3053
|
-
* animation so that the routing integration will transition correctly.
|
|
3054
|
-
*/
|
|
3055
|
-
class RouterLinkDelegateDirective extends RouterLinkDelegateDirective$1 {
|
|
3056
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3057
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: RouterLinkDelegateDirective, isStandalone: false, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3058
|
-
}
|
|
3059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
|
|
3060
|
-
type: Directive,
|
|
3061
|
-
args: [{
|
|
3062
|
-
standalone: false,
|
|
3063
|
-
selector: ':not(a):not(area)[routerLink]',
|
|
3064
|
-
}]
|
|
3065
|
-
}] });
|
|
3066
|
-
class RouterLinkWithHrefDelegateDirective extends RouterLinkWithHrefDelegateDirective$1 {
|
|
3067
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3068
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: RouterLinkWithHrefDelegateDirective, isStandalone: false, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3069
|
-
}
|
|
3070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
|
|
3071
|
-
type: Directive,
|
|
3072
|
-
args: [{
|
|
3073
|
-
standalone: false,
|
|
3074
|
-
selector: 'a[routerLink],area[routerLink]',
|
|
3075
|
-
}]
|
|
3076
|
-
}] });
|
|
3077
|
-
|
|
3078
|
-
class IonModal extends IonModal$1 {
|
|
3079
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3080
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonModal, isStandalone: false, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
3081
|
-
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
3082
|
-
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3083
|
-
}
|
|
3084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, decorators: [{
|
|
3085
|
-
type: Component,
|
|
3086
|
-
args: [{
|
|
3087
|
-
standalone: false,
|
|
3088
|
-
selector: 'ion-modal',
|
|
3089
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3090
|
-
template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
3091
|
-
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
3092
|
-
</div>`,
|
|
3093
|
-
}]
|
|
3094
|
-
}] });
|
|
3095
|
-
|
|
3096
|
-
class IonPopover extends IonPopover$1 {
|
|
3097
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3098
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPopover, isStandalone: false, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3099
|
-
}
|
|
3100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, decorators: [{
|
|
3101
|
-
type: Component,
|
|
3102
|
-
args: [{
|
|
3103
|
-
standalone: false,
|
|
3104
|
-
selector: 'ion-popover',
|
|
3105
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3106
|
-
template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`,
|
|
3107
|
-
}]
|
|
3108
|
-
}] });
|
|
3109
|
-
|
|
3110
|
-
/**
|
|
3111
|
-
* @description
|
|
3112
|
-
* Provider which adds `MaxValidator` to the `NG_VALIDATORS` multi-provider list.
|
|
3113
|
-
*/
|
|
3114
|
-
const ION_MAX_VALIDATOR = {
|
|
3115
|
-
provide: NG_VALIDATORS,
|
|
3116
|
-
useExisting: forwardRef(() => IonMaxValidator),
|
|
3117
|
-
multi: true,
|
|
3118
|
-
};
|
|
3119
|
-
class IonMaxValidator extends MaxValidator {
|
|
3120
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3121
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonMaxValidator, isStandalone: false, selector: "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", host: { properties: { "attr.max": "enabled(max) ? max : null" } }, providers: [ION_MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3122
|
-
}
|
|
3123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMaxValidator, decorators: [{
|
|
3124
|
-
type: Directive,
|
|
3125
|
-
args: [{
|
|
3126
|
-
standalone: false,
|
|
3127
|
-
selector: 'ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]',
|
|
3128
|
-
providers: [ION_MAX_VALIDATOR],
|
|
3129
|
-
host: { '[attr.max]': 'enabled(max) ? max : null' },
|
|
3130
|
-
}]
|
|
3131
|
-
}] });
|
|
3132
|
-
|
|
3133
|
-
/**
|
|
3134
|
-
* @description
|
|
3135
|
-
* Provider which adds `MinValidator` to the `NG_VALIDATORS` multi-provider list.
|
|
3136
|
-
*/
|
|
3137
|
-
const ION_MIN_VALIDATOR = {
|
|
3138
|
-
provide: NG_VALIDATORS,
|
|
3139
|
-
useExisting: forwardRef(() => IonMinValidator),
|
|
3140
|
-
multi: true,
|
|
3141
|
-
};
|
|
3142
|
-
class IonMinValidator extends MinValidator {
|
|
3143
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3144
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonMinValidator, isStandalone: false, selector: "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", host: { properties: { "attr.min": "enabled(min) ? min : null" } }, providers: [ION_MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3145
|
-
}
|
|
3146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMinValidator, decorators: [{
|
|
3147
|
-
type: Directive,
|
|
3148
|
-
args: [{
|
|
3149
|
-
standalone: false,
|
|
3150
|
-
selector: 'ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]',
|
|
3151
|
-
providers: [ION_MIN_VALIDATOR],
|
|
3152
|
-
host: { '[attr.min]': 'enabled(min) ? min : null' },
|
|
3153
|
-
}]
|
|
3154
|
-
}] });
|
|
3155
|
-
|
|
3156
|
-
class AlertController extends OverlayBaseController {
|
|
3157
|
-
constructor() {
|
|
3158
|
-
super(alertController);
|
|
3159
|
-
}
|
|
3160
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3161
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
3162
|
-
}
|
|
3163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, decorators: [{
|
|
3164
|
-
type: Injectable,
|
|
3165
|
-
args: [{
|
|
3166
|
-
providedIn: 'root',
|
|
3167
|
-
}]
|
|
3168
|
-
}], ctorParameters: () => [] });
|
|
3169
|
-
|
|
3170
|
-
class AnimationController {
|
|
3171
|
-
/**
|
|
3172
|
-
* Create a new animation
|
|
3173
|
-
*/
|
|
3174
|
-
create(animationId) {
|
|
3175
|
-
return createAnimation(animationId);
|
|
3176
|
-
}
|
|
3177
|
-
/**
|
|
3178
|
-
* EXPERIMENTAL
|
|
3179
|
-
*
|
|
3180
|
-
* Given a progression and a cubic bezier function,
|
|
3181
|
-
* this utility returns the time value(s) at which the
|
|
3182
|
-
* cubic bezier reaches the given time progression.
|
|
3183
|
-
*
|
|
3184
|
-
* If the cubic bezier never reaches the progression
|
|
3185
|
-
* the result will be an empty array.
|
|
3186
|
-
*
|
|
3187
|
-
* This is most useful for switching between easing curves
|
|
3188
|
-
* when doing a gesture animation (i.e. going from linear easing
|
|
3189
|
-
* during a drag, to another easing when `progressEnd` is called)
|
|
3190
|
-
*/
|
|
3191
|
-
easingTime(p0, p1, p2, p3, progression) {
|
|
3192
|
-
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
3193
|
-
}
|
|
3194
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3195
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
3196
|
-
}
|
|
3197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, decorators: [{
|
|
3198
|
-
type: Injectable,
|
|
3199
|
-
args: [{
|
|
3200
|
-
providedIn: 'root',
|
|
3201
|
-
}]
|
|
3202
|
-
}] });
|
|
3203
|
-
|
|
3204
|
-
class ActionSheetController extends OverlayBaseController {
|
|
3205
|
-
constructor() {
|
|
3206
|
-
super(actionSheetController);
|
|
3207
|
-
}
|
|
3208
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3209
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
3210
|
-
}
|
|
3211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
3212
|
-
type: Injectable,
|
|
3213
|
-
args: [{
|
|
3214
|
-
providedIn: 'root',
|
|
3215
|
-
}]
|
|
3216
|
-
}], ctorParameters: () => [] });
|
|
3217
|
-
|
|
3218
|
-
class GestureController {
|
|
3219
|
-
zone;
|
|
3220
|
-
constructor(zone) {
|
|
3221
|
-
this.zone = zone;
|
|
3222
|
-
}
|
|
3223
|
-
/**
|
|
3224
|
-
* Create a new gesture
|
|
3225
|
-
*/
|
|
3226
|
-
create(opts, runInsideAngularZone = false) {
|
|
3227
|
-
if (runInsideAngularZone) {
|
|
3228
|
-
Object.getOwnPropertyNames(opts).forEach((key) => {
|
|
3229
|
-
if (typeof opts[key] === 'function') {
|
|
3230
|
-
const fn = opts[key];
|
|
3231
|
-
opts[key] = (...props) => this.zone.run(() => fn(...props));
|
|
3232
|
-
}
|
|
3233
|
-
});
|
|
3234
|
-
}
|
|
3235
|
-
return createGesture(opts);
|
|
3236
|
-
}
|
|
3237
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3238
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
3239
|
-
}
|
|
3240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, decorators: [{
|
|
3241
|
-
type: Injectable,
|
|
3242
|
-
args: [{
|
|
3243
|
-
providedIn: 'root',
|
|
3244
|
-
}]
|
|
3245
|
-
}], ctorParameters: () => [{ type: i0.NgZone }] });
|
|
3246
|
-
|
|
3247
|
-
class LoadingController extends OverlayBaseController {
|
|
3248
|
-
constructor() {
|
|
3249
|
-
super(loadingController);
|
|
3250
|
-
}
|
|
3251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3252
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
3253
|
-
}
|
|
3254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, decorators: [{
|
|
3255
|
-
type: Injectable,
|
|
3256
|
-
args: [{
|
|
3257
|
-
providedIn: 'root',
|
|
3258
|
-
}]
|
|
3259
|
-
}], ctorParameters: () => [] });
|
|
3260
|
-
|
|
3261
|
-
class MenuController extends MenuController$1 {
|
|
3262
|
-
constructor() {
|
|
3263
|
-
super(menuController);
|
|
3264
|
-
}
|
|
3265
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3266
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
3267
|
-
}
|
|
3268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, decorators: [{
|
|
3269
|
-
type: Injectable,
|
|
3270
|
-
args: [{
|
|
3271
|
-
providedIn: 'root',
|
|
3272
|
-
}]
|
|
3273
|
-
}], ctorParameters: () => [] });
|
|
3274
|
-
|
|
3275
|
-
class ModalController extends OverlayBaseController {
|
|
3276
|
-
angularDelegate = inject(AngularDelegate);
|
|
3277
|
-
injector = inject(Injector);
|
|
3278
|
-
environmentInjector = inject(EnvironmentInjector);
|
|
3279
|
-
constructor() {
|
|
3280
|
-
super(modalController);
|
|
3281
|
-
}
|
|
3282
|
-
create(opts) {
|
|
3283
|
-
const { injector: customInjector, ...restOpts } = opts;
|
|
3284
|
-
return super.create({
|
|
3285
|
-
...restOpts,
|
|
3286
|
-
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
3287
|
-
});
|
|
3288
|
-
}
|
|
3289
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3290
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController });
|
|
3291
|
-
}
|
|
3292
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, decorators: [{
|
|
3293
|
-
type: Injectable
|
|
3294
|
-
}], ctorParameters: () => [] });
|
|
3295
|
-
|
|
3296
|
-
class PopoverController extends OverlayBaseController {
|
|
3297
|
-
angularDelegate = inject(AngularDelegate);
|
|
3298
|
-
injector = inject(Injector);
|
|
3299
|
-
environmentInjector = inject(EnvironmentInjector);
|
|
3300
|
-
constructor() {
|
|
3301
|
-
super(popoverController);
|
|
3302
|
-
}
|
|
3303
|
-
create(opts) {
|
|
3304
|
-
const { injector: customInjector, ...restOpts } = opts;
|
|
3305
|
-
return super.create({
|
|
3306
|
-
...restOpts,
|
|
3307
|
-
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
|
|
3308
|
-
});
|
|
3309
|
-
}
|
|
3310
|
-
}
|
|
3311
|
-
|
|
3312
|
-
class ToastController extends OverlayBaseController {
|
|
3313
|
-
constructor() {
|
|
3314
|
-
super(toastController);
|
|
3315
|
-
}
|
|
3316
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3317
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
3318
|
-
}
|
|
3319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, decorators: [{
|
|
3320
|
-
type: Injectable,
|
|
3321
|
-
args: [{
|
|
3322
|
-
providedIn: 'root',
|
|
3323
|
-
}]
|
|
3324
|
-
}], ctorParameters: () => [] });
|
|
3325
|
-
|
|
3326
|
-
// TODO(FW-2827): types
|
|
3327
|
-
const appInitialize = (config, doc, zone) => {
|
|
3328
|
-
return () => {
|
|
3329
|
-
const win = doc.defaultView;
|
|
3330
|
-
if (win && typeof window !== 'undefined') {
|
|
3331
|
-
setupConfig({
|
|
3332
|
-
...config,
|
|
3333
|
-
_zoneGate: (h) => zone.run(h),
|
|
3334
|
-
});
|
|
3335
|
-
const aelFn = '__zone_symbol__addEventListener' in doc.body ? '__zone_symbol__addEventListener' : 'addEventListener';
|
|
3336
|
-
return defineCustomElements(win, {
|
|
3337
|
-
exclude: ['ion-tabs'],
|
|
3338
|
-
syncQueue: true,
|
|
3339
|
-
raf,
|
|
3340
|
-
jmp: (h) => zone.runOutsideAngular(h),
|
|
3341
|
-
ael(elm, eventName, cb, opts) {
|
|
3342
|
-
elm[aelFn](eventName, cb, opts);
|
|
3343
|
-
},
|
|
3344
|
-
rel(elm, eventName, cb, opts) {
|
|
3345
|
-
elm.removeEventListener(eventName, cb, opts);
|
|
3346
|
-
},
|
|
3347
|
-
});
|
|
3348
|
-
}
|
|
3349
|
-
};
|
|
3350
|
-
};
|
|
3351
|
-
|
|
3352
|
-
const DIRECTIVES = [
|
|
3353
|
-
IonAccordion,
|
|
3354
|
-
IonAccordionGroup,
|
|
3355
|
-
IonActionSheet,
|
|
3356
|
-
IonAlert,
|
|
3357
|
-
IonApp,
|
|
3358
|
-
IonAvatar,
|
|
3359
|
-
IonBackdrop,
|
|
3360
|
-
IonBadge,
|
|
3361
|
-
IonBreadcrumb,
|
|
3362
|
-
IonBreadcrumbs,
|
|
3363
|
-
IonButton,
|
|
3364
|
-
IonButtons,
|
|
3365
|
-
IonCard,
|
|
3366
|
-
IonCardContent,
|
|
3367
|
-
IonCardHeader,
|
|
3368
|
-
IonCardSubtitle,
|
|
3369
|
-
IonCardTitle,
|
|
3370
|
-
IonCheckbox,
|
|
3371
|
-
IonChip,
|
|
3372
|
-
IonCol,
|
|
3373
|
-
IonContent,
|
|
3374
|
-
IonDatetime,
|
|
3375
|
-
IonDatetimeButton,
|
|
3376
|
-
IonFab,
|
|
3377
|
-
IonFabButton,
|
|
3378
|
-
IonFabList,
|
|
3379
|
-
IonFooter,
|
|
3380
|
-
IonGrid,
|
|
3381
|
-
IonHeader,
|
|
3382
|
-
IonIcon,
|
|
3383
|
-
IonImg,
|
|
3384
|
-
IonInfiniteScroll,
|
|
3385
|
-
IonInfiniteScrollContent,
|
|
3386
|
-
IonInput,
|
|
3387
|
-
IonInputOtp,
|
|
3388
|
-
IonInputPasswordToggle,
|
|
3389
|
-
IonItem,
|
|
3390
|
-
IonItemDivider,
|
|
3391
|
-
IonItemGroup,
|
|
3392
|
-
IonItemOption,
|
|
3393
|
-
IonItemOptions,
|
|
3394
|
-
IonItemSliding,
|
|
3395
|
-
IonLabel,
|
|
3396
|
-
IonList,
|
|
3397
|
-
IonListHeader,
|
|
3398
|
-
IonLoading,
|
|
3399
|
-
IonMenu,
|
|
3400
|
-
IonMenuButton,
|
|
3401
|
-
IonMenuToggle,
|
|
3402
|
-
IonNavLink,
|
|
3403
|
-
IonNote,
|
|
3404
|
-
IonPicker,
|
|
3405
|
-
IonPickerColumn,
|
|
3406
|
-
IonPickerColumnOption,
|
|
3407
|
-
IonProgressBar,
|
|
3408
|
-
IonRadio,
|
|
3409
|
-
IonRadioGroup,
|
|
3410
|
-
IonRange,
|
|
3411
|
-
IonRefresher,
|
|
3412
|
-
IonRefresherContent,
|
|
3413
|
-
IonReorder,
|
|
3414
|
-
IonReorderGroup,
|
|
3415
|
-
IonRippleEffect,
|
|
3416
|
-
IonRow,
|
|
3417
|
-
IonSearchbar,
|
|
3418
|
-
IonSegment,
|
|
3419
|
-
IonSegmentButton,
|
|
3420
|
-
IonSegmentContent,
|
|
3421
|
-
IonSegmentView,
|
|
3422
|
-
IonSelect,
|
|
3423
|
-
IonSelectModal,
|
|
3424
|
-
IonSelectOption,
|
|
3425
|
-
IonSkeletonText,
|
|
3426
|
-
IonSpinner,
|
|
3427
|
-
IonSplitPane,
|
|
3428
|
-
IonTab,
|
|
3429
|
-
IonTabBar,
|
|
3430
|
-
IonTabButton,
|
|
3431
|
-
IonText,
|
|
3432
|
-
IonTextarea,
|
|
3433
|
-
IonThumbnail,
|
|
3434
|
-
IonTitle,
|
|
3435
|
-
IonToast,
|
|
3436
|
-
IonToggle,
|
|
3437
|
-
IonToolbar
|
|
3438
|
-
];
|
|
3439
|
-
|
|
3440
|
-
const DECLARATIONS = [
|
|
3441
|
-
// generated proxies
|
|
3442
|
-
...DIRECTIVES,
|
|
3443
|
-
// manual proxies
|
|
3444
|
-
IonModal,
|
|
3445
|
-
IonPopover,
|
|
3446
|
-
// ngModel accessors
|
|
3447
|
-
BooleanValueAccessorDirective,
|
|
3448
|
-
NumericValueAccessorDirective,
|
|
3449
|
-
SelectValueAccessorDirective,
|
|
3450
|
-
TextValueAccessorDirective,
|
|
3451
|
-
// navigation
|
|
3452
|
-
IonTabs,
|
|
3453
|
-
IonRouterOutlet,
|
|
3454
|
-
IonBackButton,
|
|
3455
|
-
IonNav,
|
|
3456
|
-
RouterLinkDelegateDirective,
|
|
3457
|
-
RouterLinkWithHrefDelegateDirective,
|
|
3458
|
-
// validators
|
|
3459
|
-
IonMinValidator,
|
|
3460
|
-
IonMaxValidator,
|
|
3461
|
-
];
|
|
3462
|
-
/**
|
|
3463
|
-
* @deprecated `IonicModule` is deprecated and will be removed in a future major version.
|
|
3464
|
-
* Use `provideIonicAngular()` instead, which works in both standalone and NgModule-based
|
|
3465
|
-
* applications. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
|
|
3466
|
-
*/
|
|
3467
|
-
class IonicModule {
|
|
3468
|
-
/**
|
|
3469
|
-
* @deprecated `IonicModule.forRoot()` is deprecated and will be removed in a future major version.
|
|
3470
|
-
* Use `provideIonicAngular()` instead. Any config passed here can be passed as an object to that
|
|
3471
|
-
* function. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
|
|
3472
|
-
*/
|
|
3473
|
-
static forRoot(config = {}) {
|
|
3474
|
-
console.warn(`[Ionic Warning]: IonicModule has been deprecated in favor of provideIonicAngular() and will be removed in a future major version. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.`);
|
|
3475
|
-
return {
|
|
3476
|
-
ngModule: IonicModule,
|
|
3477
|
-
providers: [
|
|
3478
|
-
{
|
|
3479
|
-
provide: ConfigToken,
|
|
3480
|
-
useValue: config,
|
|
3481
|
-
},
|
|
3482
|
-
{
|
|
3483
|
-
provide: APP_INITIALIZER,
|
|
3484
|
-
useFactory: appInitialize,
|
|
3485
|
-
multi: true,
|
|
3486
|
-
deps: [ConfigToken, DOCUMENT, NgZone],
|
|
3487
|
-
},
|
|
3488
|
-
AngularDelegate,
|
|
3489
|
-
provideComponentInputBinding(),
|
|
3490
|
-
],
|
|
3491
|
-
};
|
|
3492
|
-
}
|
|
3493
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3494
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, declarations: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3495
|
-
// manual proxies
|
|
3496
|
-
IonModal,
|
|
3497
|
-
IonPopover,
|
|
3498
|
-
// ngModel accessors
|
|
3499
|
-
BooleanValueAccessorDirective,
|
|
3500
|
-
NumericValueAccessorDirective,
|
|
3501
|
-
SelectValueAccessorDirective,
|
|
3502
|
-
TextValueAccessorDirective,
|
|
3503
|
-
// navigation
|
|
3504
|
-
IonTabs,
|
|
3505
|
-
IonRouterOutlet,
|
|
3506
|
-
IonBackButton,
|
|
3507
|
-
IonNav,
|
|
3508
|
-
RouterLinkDelegateDirective,
|
|
3509
|
-
RouterLinkWithHrefDelegateDirective,
|
|
3510
|
-
// validators
|
|
3511
|
-
IonMinValidator,
|
|
3512
|
-
IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3513
|
-
// manual proxies
|
|
3514
|
-
IonModal,
|
|
3515
|
-
IonPopover,
|
|
3516
|
-
// ngModel accessors
|
|
3517
|
-
BooleanValueAccessorDirective,
|
|
3518
|
-
NumericValueAccessorDirective,
|
|
3519
|
-
SelectValueAccessorDirective,
|
|
3520
|
-
TextValueAccessorDirective,
|
|
3521
|
-
// navigation
|
|
3522
|
-
IonTabs,
|
|
3523
|
-
IonRouterOutlet,
|
|
3524
|
-
IonBackButton,
|
|
3525
|
-
IonNav,
|
|
3526
|
-
RouterLinkDelegateDirective,
|
|
3527
|
-
RouterLinkWithHrefDelegateDirective,
|
|
3528
|
-
// validators
|
|
3529
|
-
IonMinValidator,
|
|
3530
|
-
IonMaxValidator] });
|
|
3531
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
|
|
3532
|
-
}
|
|
3533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, decorators: [{
|
|
3534
|
-
type: NgModule,
|
|
3535
|
-
args: [{
|
|
3536
|
-
declarations: DECLARATIONS,
|
|
3537
|
-
exports: DECLARATIONS,
|
|
3538
|
-
providers: [ModalController, PopoverController],
|
|
3539
|
-
imports: [CommonModule],
|
|
3540
|
-
}]
|
|
3541
|
-
}] });
|
|
3542
|
-
|
|
3543
|
-
// DIRECTIVES
|
|
3544
|
-
|
|
3545
|
-
/**
|
|
3546
|
-
* Generated bundle index. Do not edit.
|
|
3547
|
-
*/
|
|
3548
|
-
|
|
3549
|
-
export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
|
|
3550
|
-
//# sourceMappingURL=ionic-angular-lazy.mjs.map
|
|
2759
|
+
//# sourceMappingURL=proxies.js.map
|