@ionic/angular 8.8.14-dev.11784243422.11f0110c → 8.8.14-dev.11785507167.1f41b13b
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 +1 -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 +66 -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 +54 -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 +279 -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 +101 -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 +89 -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} +266 -1052
- 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 +81 -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 +100 -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 +40 -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 +95 -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 +118 -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 +45 -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 +41 -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 +67 -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 +67 -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 +41 -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 +40 -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 +45 -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 +41 -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 +48 -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 +45 -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 +48 -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 +41 -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 +41 -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 +41 -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 +41 -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 +41 -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 +41 -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 +41 -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 +41 -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 +52 -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 +41 -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 +48 -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 +41 -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 +42 -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 +41 -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 +41 -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 +41 -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 +51 -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 +41 -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 +46 -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 +41 -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 +41 -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 +40 -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 +41 -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 +45 -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 +46 -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 +41 -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 +41 -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 +41 -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 +42 -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 +67 -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 +41 -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 +41 -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 +55 -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 +41 -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 +41 -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 +41 -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 +46 -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 +41 -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 +41 -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 +48 -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 +41 -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 +58 -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 +55 -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 +40 -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 +42 -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 +40 -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 +41 -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 +40 -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 +45 -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 +41 -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 +41 -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 +41 -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 +41 -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 +45 -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 +41 -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 +41 -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 +42 -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 +41 -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 +40 -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 +41 -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 +67 -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 +41 -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 +65 -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 +83 -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 +87 -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 +65 -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 +89 -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 +96 -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 +81 -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 +37 -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 +33 -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 +65 -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 +37 -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 +33 -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 +163 -22
- package/fesm2022/ionic-angular-common.mjs +0 -2799
- 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,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
190
7
|
/* 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
|
-
|
|
8
|
+
/* auto-generated angular directive proxies */
|
|
9
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
|
|
10
|
+
import { ProxyCmp } from './angular-component-lib/utils';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
247
12
|
let IonAccordion = class IonAccordion {
|
|
248
13
|
z;
|
|
249
14
|
el;
|
|
@@ -252,14 +17,15 @@ let IonAccordion = class IonAccordion {
|
|
|
252
17
|
c.detach();
|
|
253
18
|
this.el = r.nativeElement;
|
|
254
19
|
}
|
|
255
|
-
|
|
256
|
-
|
|
20
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
21
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordion, isStandalone: false, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
257
22
|
};
|
|
258
23
|
IonAccordion = __decorate([
|
|
259
24
|
ProxyCmp({
|
|
260
25
|
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
261
26
|
})
|
|
262
27
|
], IonAccordion);
|
|
28
|
+
export { IonAccordion };
|
|
263
29
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, decorators: [{
|
|
264
30
|
type: Component,
|
|
265
31
|
args: [{
|
|
@@ -280,14 +46,15 @@ let IonAccordionGroup = class IonAccordionGroup {
|
|
|
280
46
|
c.detach();
|
|
281
47
|
this.el = r.nativeElement;
|
|
282
48
|
}
|
|
283
|
-
|
|
284
|
-
|
|
49
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
50
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordionGroup, isStandalone: false, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
285
51
|
};
|
|
286
52
|
IonAccordionGroup = __decorate([
|
|
287
53
|
ProxyCmp({
|
|
288
54
|
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
289
55
|
})
|
|
290
56
|
], IonAccordionGroup);
|
|
57
|
+
export { IonAccordionGroup };
|
|
291
58
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
292
59
|
type: Component,
|
|
293
60
|
args: [{
|
|
@@ -318,8 +85,8 @@ let IonActionSheet = class IonActionSheet {
|
|
|
318
85
|
c.detach();
|
|
319
86
|
this.el = r.nativeElement;
|
|
320
87
|
}
|
|
321
|
-
|
|
322
|
-
|
|
88
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
89
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonActionSheet, isStandalone: false, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionActionSheetDidPresent: "ionActionSheetDidPresent", ionActionSheetWillPresent: "ionActionSheetWillPresent", ionActionSheetWillDismiss: "ionActionSheetWillDismiss", ionActionSheetDidDismiss: "ionActionSheetDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
323
90
|
};
|
|
324
91
|
IonActionSheet = __decorate([
|
|
325
92
|
ProxyCmp({
|
|
@@ -327,6 +94,7 @@ IonActionSheet = __decorate([
|
|
|
327
94
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
328
95
|
})
|
|
329
96
|
], IonActionSheet);
|
|
97
|
+
export { IonActionSheet };
|
|
330
98
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
331
99
|
type: Component,
|
|
332
100
|
args: [{
|
|
@@ -371,8 +139,8 @@ let IonAlert = class IonAlert {
|
|
|
371
139
|
c.detach();
|
|
372
140
|
this.el = r.nativeElement;
|
|
373
141
|
}
|
|
374
|
-
|
|
375
|
-
|
|
142
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
143
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAlert, isStandalone: false, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionAlertDidPresent: "ionAlertDidPresent", ionAlertWillPresent: "ionAlertWillPresent", ionAlertWillDismiss: "ionAlertWillDismiss", ionAlertDidDismiss: "ionAlertDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
376
144
|
};
|
|
377
145
|
IonAlert = __decorate([
|
|
378
146
|
ProxyCmp({
|
|
@@ -380,6 +148,7 @@ IonAlert = __decorate([
|
|
|
380
148
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
381
149
|
})
|
|
382
150
|
], IonAlert);
|
|
151
|
+
export { IonAlert };
|
|
383
152
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, decorators: [{
|
|
384
153
|
type: Component,
|
|
385
154
|
args: [{
|
|
@@ -416,14 +185,15 @@ let IonApp = class IonApp {
|
|
|
416
185
|
c.detach();
|
|
417
186
|
this.el = r.nativeElement;
|
|
418
187
|
}
|
|
419
|
-
|
|
420
|
-
|
|
188
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonApp, isStandalone: false, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
421
190
|
};
|
|
422
191
|
IonApp = __decorate([
|
|
423
192
|
ProxyCmp({
|
|
424
193
|
methods: ['setFocus']
|
|
425
194
|
})
|
|
426
195
|
], IonApp);
|
|
196
|
+
export { IonApp };
|
|
427
197
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, decorators: [{
|
|
428
198
|
type: Component,
|
|
429
199
|
args: [{
|
|
@@ -443,12 +213,13 @@ let IonAvatar = class IonAvatar {
|
|
|
443
213
|
c.detach();
|
|
444
214
|
this.el = r.nativeElement;
|
|
445
215
|
}
|
|
446
|
-
|
|
447
|
-
|
|
216
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
217
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAvatar, isStandalone: false, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
448
218
|
};
|
|
449
219
|
IonAvatar = __decorate([
|
|
450
220
|
ProxyCmp({})
|
|
451
221
|
], IonAvatar);
|
|
222
|
+
export { IonAvatar };
|
|
452
223
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, decorators: [{
|
|
453
224
|
type: Component,
|
|
454
225
|
args: [{
|
|
@@ -469,14 +240,15 @@ let IonBackdrop = class IonBackdrop {
|
|
|
469
240
|
c.detach();
|
|
470
241
|
this.el = r.nativeElement;
|
|
471
242
|
}
|
|
472
|
-
|
|
473
|
-
|
|
243
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
244
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackdrop, isStandalone: false, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, outputs: { ionBackdropTap: "ionBackdropTap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
474
245
|
};
|
|
475
246
|
IonBackdrop = __decorate([
|
|
476
247
|
ProxyCmp({
|
|
477
248
|
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
478
249
|
})
|
|
479
250
|
], IonBackdrop);
|
|
251
|
+
export { IonBackdrop };
|
|
480
252
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
481
253
|
type: Component,
|
|
482
254
|
args: [{
|
|
@@ -499,14 +271,15 @@ let IonBadge = class IonBadge {
|
|
|
499
271
|
c.detach();
|
|
500
272
|
this.el = r.nativeElement;
|
|
501
273
|
}
|
|
502
|
-
|
|
503
|
-
|
|
274
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
275
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBadge, isStandalone: false, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
504
276
|
};
|
|
505
277
|
IonBadge = __decorate([
|
|
506
278
|
ProxyCmp({
|
|
507
279
|
inputs: ['color', 'mode']
|
|
508
280
|
})
|
|
509
281
|
], IonBadge);
|
|
282
|
+
export { IonBadge };
|
|
510
283
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, decorators: [{
|
|
511
284
|
type: Component,
|
|
512
285
|
args: [{
|
|
@@ -528,14 +301,15 @@ let IonBreadcrumb = class IonBreadcrumb {
|
|
|
528
301
|
c.detach();
|
|
529
302
|
this.el = r.nativeElement;
|
|
530
303
|
}
|
|
531
|
-
|
|
532
|
-
|
|
304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumb, isStandalone: false, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
533
306
|
};
|
|
534
307
|
IonBreadcrumb = __decorate([
|
|
535
308
|
ProxyCmp({
|
|
536
309
|
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
537
310
|
})
|
|
538
311
|
], IonBreadcrumb);
|
|
312
|
+
export { IonBreadcrumb };
|
|
539
313
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
540
314
|
type: Component,
|
|
541
315
|
args: [{
|
|
@@ -561,14 +335,15 @@ let IonBreadcrumbs = class IonBreadcrumbs {
|
|
|
561
335
|
c.detach();
|
|
562
336
|
this.el = r.nativeElement;
|
|
563
337
|
}
|
|
564
|
-
|
|
565
|
-
|
|
338
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
339
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumbs, isStandalone: false, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode" }, outputs: { ionCollapsedClick: "ionCollapsedClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
566
340
|
};
|
|
567
341
|
IonBreadcrumbs = __decorate([
|
|
568
342
|
ProxyCmp({
|
|
569
343
|
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
570
344
|
})
|
|
571
345
|
], IonBreadcrumbs);
|
|
346
|
+
export { IonBreadcrumbs };
|
|
572
347
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
573
348
|
type: Component,
|
|
574
349
|
args: [{
|
|
@@ -593,14 +368,15 @@ let IonButton = class IonButton {
|
|
|
593
368
|
c.detach();
|
|
594
369
|
this.el = r.nativeElement;
|
|
595
370
|
}
|
|
596
|
-
|
|
597
|
-
|
|
371
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
372
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButton, isStandalone: false, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
598
373
|
};
|
|
599
374
|
IonButton = __decorate([
|
|
600
375
|
ProxyCmp({
|
|
601
376
|
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
602
377
|
})
|
|
603
378
|
], IonButton);
|
|
379
|
+
export { IonButton };
|
|
604
380
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, decorators: [{
|
|
605
381
|
type: Component,
|
|
606
382
|
args: [{
|
|
@@ -625,14 +401,15 @@ let IonButtons = class IonButtons {
|
|
|
625
401
|
c.detach();
|
|
626
402
|
this.el = r.nativeElement;
|
|
627
403
|
}
|
|
628
|
-
|
|
629
|
-
|
|
404
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
405
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButtons, isStandalone: false, selector: "ion-buttons", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
630
406
|
};
|
|
631
407
|
IonButtons = __decorate([
|
|
632
408
|
ProxyCmp({
|
|
633
409
|
inputs: ['collapse']
|
|
634
410
|
})
|
|
635
411
|
], IonButtons);
|
|
412
|
+
export { IonButtons };
|
|
636
413
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, decorators: [{
|
|
637
414
|
type: Component,
|
|
638
415
|
args: [{
|
|
@@ -652,14 +429,15 @@ let IonCard = class IonCard {
|
|
|
652
429
|
c.detach();
|
|
653
430
|
this.el = r.nativeElement;
|
|
654
431
|
}
|
|
655
|
-
|
|
656
|
-
|
|
432
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCard, isStandalone: false, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
657
434
|
};
|
|
658
435
|
IonCard = __decorate([
|
|
659
436
|
ProxyCmp({
|
|
660
437
|
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
661
438
|
})
|
|
662
439
|
], IonCard);
|
|
440
|
+
export { IonCard };
|
|
663
441
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, decorators: [{
|
|
664
442
|
type: Component,
|
|
665
443
|
args: [{
|
|
@@ -679,14 +457,15 @@ let IonCardContent = class IonCardContent {
|
|
|
679
457
|
c.detach();
|
|
680
458
|
this.el = r.nativeElement;
|
|
681
459
|
}
|
|
682
|
-
|
|
683
|
-
|
|
460
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
461
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardContent, isStandalone: false, selector: "ion-card-content", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
684
462
|
};
|
|
685
463
|
IonCardContent = __decorate([
|
|
686
464
|
ProxyCmp({
|
|
687
465
|
inputs: ['mode']
|
|
688
466
|
})
|
|
689
467
|
], IonCardContent);
|
|
468
|
+
export { IonCardContent };
|
|
690
469
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, decorators: [{
|
|
691
470
|
type: Component,
|
|
692
471
|
args: [{
|
|
@@ -706,14 +485,15 @@ let IonCardHeader = class IonCardHeader {
|
|
|
706
485
|
c.detach();
|
|
707
486
|
this.el = r.nativeElement;
|
|
708
487
|
}
|
|
709
|
-
|
|
710
|
-
|
|
488
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
489
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardHeader, isStandalone: false, selector: "ion-card-header", inputs: { color: "color", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
711
490
|
};
|
|
712
491
|
IonCardHeader = __decorate([
|
|
713
492
|
ProxyCmp({
|
|
714
493
|
inputs: ['color', 'mode', 'translucent']
|
|
715
494
|
})
|
|
716
495
|
], IonCardHeader);
|
|
496
|
+
export { IonCardHeader };
|
|
717
497
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
718
498
|
type: Component,
|
|
719
499
|
args: [{
|
|
@@ -733,14 +513,15 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
733
513
|
c.detach();
|
|
734
514
|
this.el = r.nativeElement;
|
|
735
515
|
}
|
|
736
|
-
|
|
737
|
-
|
|
516
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
517
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardSubtitle, isStandalone: false, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
738
518
|
};
|
|
739
519
|
IonCardSubtitle = __decorate([
|
|
740
520
|
ProxyCmp({
|
|
741
521
|
inputs: ['color', 'mode']
|
|
742
522
|
})
|
|
743
523
|
], IonCardSubtitle);
|
|
524
|
+
export { IonCardSubtitle };
|
|
744
525
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
745
526
|
type: Component,
|
|
746
527
|
args: [{
|
|
@@ -760,14 +541,15 @@ let IonCardTitle = class IonCardTitle {
|
|
|
760
541
|
c.detach();
|
|
761
542
|
this.el = r.nativeElement;
|
|
762
543
|
}
|
|
763
|
-
|
|
764
|
-
|
|
544
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
545
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardTitle, isStandalone: false, selector: "ion-card-title", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
765
546
|
};
|
|
766
547
|
IonCardTitle = __decorate([
|
|
767
548
|
ProxyCmp({
|
|
768
549
|
inputs: ['color', 'mode']
|
|
769
550
|
})
|
|
770
551
|
], IonCardTitle);
|
|
552
|
+
export { IonCardTitle };
|
|
771
553
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
772
554
|
type: Component,
|
|
773
555
|
args: [{
|
|
@@ -790,14 +572,15 @@ let IonCheckbox = class IonCheckbox {
|
|
|
790
572
|
c.detach();
|
|
791
573
|
this.el = r.nativeElement;
|
|
792
574
|
}
|
|
793
|
-
|
|
794
|
-
|
|
575
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
576
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCheckbox, isStandalone: false, selector: "ion-checkbox", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", value: "value" }, outputs: { ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
795
577
|
};
|
|
796
578
|
IonCheckbox = __decorate([
|
|
797
579
|
ProxyCmp({
|
|
798
580
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
799
581
|
})
|
|
800
582
|
], IonCheckbox);
|
|
583
|
+
export { IonCheckbox };
|
|
801
584
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
802
585
|
type: Component,
|
|
803
586
|
args: [{
|
|
@@ -824,14 +607,15 @@ let IonChip = class IonChip {
|
|
|
824
607
|
c.detach();
|
|
825
608
|
this.el = r.nativeElement;
|
|
826
609
|
}
|
|
827
|
-
|
|
828
|
-
|
|
610
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
611
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonChip, isStandalone: false, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
829
612
|
};
|
|
830
613
|
IonChip = __decorate([
|
|
831
614
|
ProxyCmp({
|
|
832
615
|
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
833
616
|
})
|
|
834
617
|
], IonChip);
|
|
618
|
+
export { IonChip };
|
|
835
619
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, decorators: [{
|
|
836
620
|
type: Component,
|
|
837
621
|
args: [{
|
|
@@ -851,14 +635,15 @@ let IonCol = class IonCol {
|
|
|
851
635
|
c.detach();
|
|
852
636
|
this.el = r.nativeElement;
|
|
853
637
|
}
|
|
854
|
-
|
|
855
|
-
|
|
638
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
639
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCol, isStandalone: false, selector: "ion-col", inputs: { offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
856
640
|
};
|
|
857
641
|
IonCol = __decorate([
|
|
858
642
|
ProxyCmp({
|
|
859
643
|
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
644
|
})
|
|
861
645
|
], IonCol);
|
|
646
|
+
export { IonCol };
|
|
862
647
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, decorators: [{
|
|
863
648
|
type: Component,
|
|
864
649
|
args: [{
|
|
@@ -881,8 +666,8 @@ let IonContent = class IonContent {
|
|
|
881
666
|
c.detach();
|
|
882
667
|
this.el = r.nativeElement;
|
|
883
668
|
}
|
|
884
|
-
|
|
885
|
-
|
|
669
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
670
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonContent, isStandalone: false, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY" }, outputs: { ionScrollStart: "ionScrollStart", ionScroll: "ionScroll", ionScrollEnd: "ionScrollEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
886
671
|
};
|
|
887
672
|
IonContent = __decorate([
|
|
888
673
|
ProxyCmp({
|
|
@@ -890,6 +675,7 @@ IonContent = __decorate([
|
|
|
890
675
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
891
676
|
})
|
|
892
677
|
], IonContent);
|
|
678
|
+
export { IonContent };
|
|
893
679
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, decorators: [{
|
|
894
680
|
type: Component,
|
|
895
681
|
args: [{
|
|
@@ -920,8 +706,8 @@ let IonDatetime = class IonDatetime {
|
|
|
920
706
|
c.detach();
|
|
921
707
|
this.el = r.nativeElement;
|
|
922
708
|
}
|
|
923
|
-
|
|
924
|
-
|
|
709
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
710
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetime, isStandalone: false, selector: "ion-datetime", inputs: { cancelText: "cancelText", clearText: "clearText", color: "color", dayValues: "dayValues", disabled: "disabled", doneText: "doneText", firstDayOfWeek: "firstDayOfWeek", formatOptions: "formatOptions", highlightedDates: "highlightedDates", hourCycle: "hourCycle", hourValues: "hourValues", isDateEnabled: "isDateEnabled", locale: "locale", max: "max", min: "min", minuteValues: "minuteValues", mode: "mode", monthValues: "monthValues", multiple: "multiple", name: "name", preferWheel: "preferWheel", presentation: "presentation", readonly: "readonly", showAdjacentDays: "showAdjacentDays", showClearButton: "showClearButton", showDefaultButtons: "showDefaultButtons", showDefaultTimeLabel: "showDefaultTimeLabel", showDefaultTitle: "showDefaultTitle", size: "size", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, outputs: { ionCancel: "ionCancel", ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
925
711
|
};
|
|
926
712
|
IonDatetime = __decorate([
|
|
927
713
|
ProxyCmp({
|
|
@@ -929,6 +715,7 @@ IonDatetime = __decorate([
|
|
|
929
715
|
methods: ['confirm', 'reset', 'cancel']
|
|
930
716
|
})
|
|
931
717
|
], IonDatetime);
|
|
718
|
+
export { IonDatetime };
|
|
932
719
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, decorators: [{
|
|
933
720
|
type: Component,
|
|
934
721
|
args: [{
|
|
@@ -957,14 +744,15 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
957
744
|
c.detach();
|
|
958
745
|
this.el = r.nativeElement;
|
|
959
746
|
}
|
|
960
|
-
|
|
961
|
-
|
|
747
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
748
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetimeButton, isStandalone: false, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
962
749
|
};
|
|
963
750
|
IonDatetimeButton = __decorate([
|
|
964
751
|
ProxyCmp({
|
|
965
752
|
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
966
753
|
})
|
|
967
754
|
], IonDatetimeButton);
|
|
755
|
+
export { IonDatetimeButton };
|
|
968
756
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
969
757
|
type: Component,
|
|
970
758
|
args: [{
|
|
@@ -984,8 +772,8 @@ let IonFab = class IonFab {
|
|
|
984
772
|
c.detach();
|
|
985
773
|
this.el = r.nativeElement;
|
|
986
774
|
}
|
|
987
|
-
|
|
988
|
-
|
|
775
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
776
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFab, isStandalone: false, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
989
777
|
};
|
|
990
778
|
IonFab = __decorate([
|
|
991
779
|
ProxyCmp({
|
|
@@ -993,6 +781,7 @@ IonFab = __decorate([
|
|
|
993
781
|
methods: ['close']
|
|
994
782
|
})
|
|
995
783
|
], IonFab);
|
|
784
|
+
export { IonFab };
|
|
996
785
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, decorators: [{
|
|
997
786
|
type: Component,
|
|
998
787
|
args: [{
|
|
@@ -1014,14 +803,15 @@ let IonFabButton = class IonFabButton {
|
|
|
1014
803
|
c.detach();
|
|
1015
804
|
this.el = r.nativeElement;
|
|
1016
805
|
}
|
|
1017
|
-
|
|
1018
|
-
|
|
806
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
807
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabButton, isStandalone: false, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", translucent: "translucent", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1019
808
|
};
|
|
1020
809
|
IonFabButton = __decorate([
|
|
1021
810
|
ProxyCmp({
|
|
1022
811
|
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
1023
812
|
})
|
|
1024
813
|
], IonFabButton);
|
|
814
|
+
export { IonFabButton };
|
|
1025
815
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1026
816
|
type: Component,
|
|
1027
817
|
args: [{
|
|
@@ -1046,14 +836,15 @@ let IonFabList = class IonFabList {
|
|
|
1046
836
|
c.detach();
|
|
1047
837
|
this.el = r.nativeElement;
|
|
1048
838
|
}
|
|
1049
|
-
|
|
1050
|
-
|
|
839
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
840
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabList, isStandalone: false, selector: "ion-fab-list", inputs: { activated: "activated", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1051
841
|
};
|
|
1052
842
|
IonFabList = __decorate([
|
|
1053
843
|
ProxyCmp({
|
|
1054
844
|
inputs: ['activated', 'side']
|
|
1055
845
|
})
|
|
1056
846
|
], IonFabList);
|
|
847
|
+
export { IonFabList };
|
|
1057
848
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, decorators: [{
|
|
1058
849
|
type: Component,
|
|
1059
850
|
args: [{
|
|
@@ -1073,14 +864,15 @@ let IonFooter = class IonFooter {
|
|
|
1073
864
|
c.detach();
|
|
1074
865
|
this.el = r.nativeElement;
|
|
1075
866
|
}
|
|
1076
|
-
|
|
1077
|
-
|
|
867
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
868
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFooter, isStandalone: false, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1078
869
|
};
|
|
1079
870
|
IonFooter = __decorate([
|
|
1080
871
|
ProxyCmp({
|
|
1081
872
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1082
873
|
})
|
|
1083
874
|
], IonFooter);
|
|
875
|
+
export { IonFooter };
|
|
1084
876
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, decorators: [{
|
|
1085
877
|
type: Component,
|
|
1086
878
|
args: [{
|
|
@@ -1100,14 +892,15 @@ let IonGrid = class IonGrid {
|
|
|
1100
892
|
c.detach();
|
|
1101
893
|
this.el = r.nativeElement;
|
|
1102
894
|
}
|
|
1103
|
-
|
|
1104
|
-
|
|
895
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
896
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonGrid, isStandalone: false, selector: "ion-grid", inputs: { fixed: "fixed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1105
897
|
};
|
|
1106
898
|
IonGrid = __decorate([
|
|
1107
899
|
ProxyCmp({
|
|
1108
900
|
inputs: ['fixed']
|
|
1109
901
|
})
|
|
1110
902
|
], IonGrid);
|
|
903
|
+
export { IonGrid };
|
|
1111
904
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, decorators: [{
|
|
1112
905
|
type: Component,
|
|
1113
906
|
args: [{
|
|
@@ -1127,14 +920,15 @@ let IonHeader = class IonHeader {
|
|
|
1127
920
|
c.detach();
|
|
1128
921
|
this.el = r.nativeElement;
|
|
1129
922
|
}
|
|
1130
|
-
|
|
1131
|
-
|
|
923
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
924
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonHeader, isStandalone: false, selector: "ion-header", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1132
925
|
};
|
|
1133
926
|
IonHeader = __decorate([
|
|
1134
927
|
ProxyCmp({
|
|
1135
928
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1136
929
|
})
|
|
1137
930
|
], IonHeader);
|
|
931
|
+
export { IonHeader };
|
|
1138
932
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, decorators: [{
|
|
1139
933
|
type: Component,
|
|
1140
934
|
args: [{
|
|
@@ -1154,14 +948,15 @@ let IonIcon = class IonIcon {
|
|
|
1154
948
|
c.detach();
|
|
1155
949
|
this.el = r.nativeElement;
|
|
1156
950
|
}
|
|
1157
|
-
|
|
1158
|
-
|
|
951
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
952
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonIcon, isStandalone: false, selector: "ion-icon", inputs: { color: "color", flipRtl: "flipRtl", icon: "icon", ios: "ios", lazy: "lazy", md: "md", mode: "mode", name: "name", sanitize: "sanitize", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1159
953
|
};
|
|
1160
954
|
IonIcon = __decorate([
|
|
1161
955
|
ProxyCmp({
|
|
1162
956
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
|
|
1163
957
|
})
|
|
1164
958
|
], IonIcon);
|
|
959
|
+
export { IonIcon };
|
|
1165
960
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, decorators: [{
|
|
1166
961
|
type: Component,
|
|
1167
962
|
args: [{
|
|
@@ -1184,14 +979,15 @@ let IonImg = class IonImg {
|
|
|
1184
979
|
c.detach();
|
|
1185
980
|
this.el = r.nativeElement;
|
|
1186
981
|
}
|
|
1187
|
-
|
|
1188
|
-
|
|
982
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
983
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonImg, isStandalone: false, selector: "ion-img", inputs: { alt: "alt", src: "src" }, outputs: { ionImgWillLoad: "ionImgWillLoad", ionImgDidLoad: "ionImgDidLoad", ionError: "ionError" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1189
984
|
};
|
|
1190
985
|
IonImg = __decorate([
|
|
1191
986
|
ProxyCmp({
|
|
1192
987
|
inputs: ['alt', 'src']
|
|
1193
988
|
})
|
|
1194
989
|
], IonImg);
|
|
990
|
+
export { IonImg };
|
|
1195
991
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, decorators: [{
|
|
1196
992
|
type: Component,
|
|
1197
993
|
args: [{
|
|
@@ -1219,8 +1015,8 @@ let IonInfiniteScroll = class IonInfiniteScroll {
|
|
|
1219
1015
|
c.detach();
|
|
1220
1016
|
this.el = r.nativeElement;
|
|
1221
1017
|
}
|
|
1222
|
-
|
|
1223
|
-
|
|
1018
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1019
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScroll, isStandalone: false, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", position: "position", threshold: "threshold" }, outputs: { ionInfinite: "ionInfinite" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1224
1020
|
};
|
|
1225
1021
|
IonInfiniteScroll = __decorate([
|
|
1226
1022
|
ProxyCmp({
|
|
@@ -1228,6 +1024,7 @@ IonInfiniteScroll = __decorate([
|
|
|
1228
1024
|
methods: ['complete']
|
|
1229
1025
|
})
|
|
1230
1026
|
], IonInfiniteScroll);
|
|
1027
|
+
export { IonInfiniteScroll };
|
|
1231
1028
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1232
1029
|
type: Component,
|
|
1233
1030
|
args: [{
|
|
@@ -1250,14 +1047,15 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1250
1047
|
c.detach();
|
|
1251
1048
|
this.el = r.nativeElement;
|
|
1252
1049
|
}
|
|
1253
|
-
|
|
1254
|
-
|
|
1050
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1051
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScrollContent, isStandalone: false, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1255
1052
|
};
|
|
1256
1053
|
IonInfiniteScrollContent = __decorate([
|
|
1257
1054
|
ProxyCmp({
|
|
1258
1055
|
inputs: ['loadingSpinner', 'loadingText']
|
|
1259
1056
|
})
|
|
1260
1057
|
], IonInfiniteScrollContent);
|
|
1058
|
+
export { IonInfiniteScrollContent };
|
|
1261
1059
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1262
1060
|
type: Component,
|
|
1263
1061
|
args: [{
|
|
@@ -1281,8 +1079,8 @@ let IonInput = class IonInput {
|
|
|
1281
1079
|
c.detach();
|
|
1282
1080
|
this.el = r.nativeElement;
|
|
1283
1081
|
}
|
|
1284
|
-
|
|
1285
|
-
|
|
1082
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1083
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInput, isStandalone: false, selector: "ion-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearInputIcon: "clearInputIcon", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", spellcheck: "spellcheck", step: "step", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1286
1084
|
};
|
|
1287
1085
|
IonInput = __decorate([
|
|
1288
1086
|
ProxyCmp({
|
|
@@ -1290,6 +1088,7 @@ IonInput = __decorate([
|
|
|
1290
1088
|
methods: ['setFocus', 'getInputElement']
|
|
1291
1089
|
})
|
|
1292
1090
|
], IonInput);
|
|
1091
|
+
export { IonInput };
|
|
1293
1092
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, decorators: [{
|
|
1294
1093
|
type: Component,
|
|
1295
1094
|
args: [{
|
|
@@ -1323,8 +1122,8 @@ let IonInputOtp = class IonInputOtp {
|
|
|
1323
1122
|
c.detach();
|
|
1324
1123
|
this.el = r.nativeElement;
|
|
1325
1124
|
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1125
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1126
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputOtp, isStandalone: false, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionComplete: "ionComplete", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1328
1127
|
};
|
|
1329
1128
|
IonInputOtp = __decorate([
|
|
1330
1129
|
ProxyCmp({
|
|
@@ -1332,6 +1131,7 @@ IonInputOtp = __decorate([
|
|
|
1332
1131
|
methods: ['setFocus']
|
|
1333
1132
|
})
|
|
1334
1133
|
], IonInputOtp);
|
|
1134
|
+
export { IonInputOtp };
|
|
1335
1135
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
1336
1136
|
type: Component,
|
|
1337
1137
|
args: [{
|
|
@@ -1362,14 +1162,15 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
|
1362
1162
|
c.detach();
|
|
1363
1163
|
this.el = r.nativeElement;
|
|
1364
1164
|
}
|
|
1365
|
-
|
|
1366
|
-
|
|
1165
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputPasswordToggle, isStandalone: false, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1367
1167
|
};
|
|
1368
1168
|
IonInputPasswordToggle = __decorate([
|
|
1369
1169
|
ProxyCmp({
|
|
1370
1170
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1371
1171
|
})
|
|
1372
1172
|
], IonInputPasswordToggle);
|
|
1173
|
+
export { IonInputPasswordToggle };
|
|
1373
1174
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1374
1175
|
type: Component,
|
|
1375
1176
|
args: [{
|
|
@@ -1389,14 +1190,15 @@ let IonItem = class IonItem {
|
|
|
1389
1190
|
c.detach();
|
|
1390
1191
|
this.el = r.nativeElement;
|
|
1391
1192
|
}
|
|
1392
|
-
|
|
1393
|
-
|
|
1193
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1194
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItem, isStandalone: false, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1394
1195
|
};
|
|
1395
1196
|
IonItem = __decorate([
|
|
1396
1197
|
ProxyCmp({
|
|
1397
1198
|
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1398
1199
|
})
|
|
1399
1200
|
], IonItem);
|
|
1201
|
+
export { IonItem };
|
|
1400
1202
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, decorators: [{
|
|
1401
1203
|
type: Component,
|
|
1402
1204
|
args: [{
|
|
@@ -1416,14 +1218,15 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1416
1218
|
c.detach();
|
|
1417
1219
|
this.el = r.nativeElement;
|
|
1418
1220
|
}
|
|
1419
|
-
|
|
1420
|
-
|
|
1221
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1222
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemDivider, isStandalone: false, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1421
1223
|
};
|
|
1422
1224
|
IonItemDivider = __decorate([
|
|
1423
1225
|
ProxyCmp({
|
|
1424
1226
|
inputs: ['color', 'mode', 'sticky']
|
|
1425
1227
|
})
|
|
1426
1228
|
], IonItemDivider);
|
|
1229
|
+
export { IonItemDivider };
|
|
1427
1230
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1428
1231
|
type: Component,
|
|
1429
1232
|
args: [{
|
|
@@ -1443,12 +1246,13 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1443
1246
|
c.detach();
|
|
1444
1247
|
this.el = r.nativeElement;
|
|
1445
1248
|
}
|
|
1446
|
-
|
|
1447
|
-
|
|
1249
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1250
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemGroup, isStandalone: false, selector: "ion-item-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1448
1251
|
};
|
|
1449
1252
|
IonItemGroup = __decorate([
|
|
1450
1253
|
ProxyCmp({})
|
|
1451
1254
|
], IonItemGroup);
|
|
1255
|
+
export { IonItemGroup };
|
|
1452
1256
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1453
1257
|
type: Component,
|
|
1454
1258
|
args: [{
|
|
@@ -1468,14 +1272,15 @@ let IonItemOption = class IonItemOption {
|
|
|
1468
1272
|
c.detach();
|
|
1469
1273
|
this.el = r.nativeElement;
|
|
1470
1274
|
}
|
|
1471
|
-
|
|
1472
|
-
|
|
1275
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1276
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOption, isStandalone: false, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1473
1277
|
};
|
|
1474
1278
|
IonItemOption = __decorate([
|
|
1475
1279
|
ProxyCmp({
|
|
1476
1280
|
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1477
1281
|
})
|
|
1478
1282
|
], IonItemOption);
|
|
1283
|
+
export { IonItemOption };
|
|
1479
1284
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1480
1285
|
type: Component,
|
|
1481
1286
|
args: [{
|
|
@@ -1496,14 +1301,15 @@ let IonItemOptions = class IonItemOptions {
|
|
|
1496
1301
|
c.detach();
|
|
1497
1302
|
this.el = r.nativeElement;
|
|
1498
1303
|
}
|
|
1499
|
-
|
|
1500
|
-
|
|
1304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOptions, isStandalone: false, selector: "ion-item-options", inputs: { side: "side" }, outputs: { ionSwipe: "ionSwipe" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1501
1306
|
};
|
|
1502
1307
|
IonItemOptions = __decorate([
|
|
1503
1308
|
ProxyCmp({
|
|
1504
1309
|
inputs: ['side']
|
|
1505
1310
|
})
|
|
1506
1311
|
], IonItemOptions);
|
|
1312
|
+
export { IonItemOptions };
|
|
1507
1313
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1508
1314
|
type: Component,
|
|
1509
1315
|
args: [{
|
|
@@ -1527,8 +1333,8 @@ let IonItemSliding = class IonItemSliding {
|
|
|
1527
1333
|
c.detach();
|
|
1528
1334
|
this.el = r.nativeElement;
|
|
1529
1335
|
}
|
|
1530
|
-
|
|
1531
|
-
|
|
1336
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1337
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemSliding, isStandalone: false, selector: "ion-item-sliding", inputs: { disabled: "disabled" }, outputs: { ionDrag: "ionDrag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1532
1338
|
};
|
|
1533
1339
|
IonItemSliding = __decorate([
|
|
1534
1340
|
ProxyCmp({
|
|
@@ -1536,6 +1342,7 @@ IonItemSliding = __decorate([
|
|
|
1536
1342
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1537
1343
|
})
|
|
1538
1344
|
], IonItemSliding);
|
|
1345
|
+
export { IonItemSliding };
|
|
1539
1346
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1540
1347
|
type: Component,
|
|
1541
1348
|
args: [{
|
|
@@ -1558,14 +1365,15 @@ let IonLabel = class IonLabel {
|
|
|
1558
1365
|
c.detach();
|
|
1559
1366
|
this.el = r.nativeElement;
|
|
1560
1367
|
}
|
|
1561
|
-
|
|
1562
|
-
|
|
1368
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1369
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLabel, isStandalone: false, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1563
1370
|
};
|
|
1564
1371
|
IonLabel = __decorate([
|
|
1565
1372
|
ProxyCmp({
|
|
1566
1373
|
inputs: ['color', 'mode', 'position']
|
|
1567
1374
|
})
|
|
1568
1375
|
], IonLabel);
|
|
1376
|
+
export { IonLabel };
|
|
1569
1377
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, decorators: [{
|
|
1570
1378
|
type: Component,
|
|
1571
1379
|
args: [{
|
|
@@ -1585,8 +1393,8 @@ let IonList = class IonList {
|
|
|
1585
1393
|
c.detach();
|
|
1586
1394
|
this.el = r.nativeElement;
|
|
1587
1395
|
}
|
|
1588
|
-
|
|
1589
|
-
|
|
1396
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1397
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonList, isStandalone: false, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1590
1398
|
};
|
|
1591
1399
|
IonList = __decorate([
|
|
1592
1400
|
ProxyCmp({
|
|
@@ -1594,6 +1402,7 @@ IonList = __decorate([
|
|
|
1594
1402
|
methods: ['closeSlidingItems']
|
|
1595
1403
|
})
|
|
1596
1404
|
], IonList);
|
|
1405
|
+
export { IonList };
|
|
1597
1406
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, decorators: [{
|
|
1598
1407
|
type: Component,
|
|
1599
1408
|
args: [{
|
|
@@ -1613,14 +1422,15 @@ let IonListHeader = class IonListHeader {
|
|
|
1613
1422
|
c.detach();
|
|
1614
1423
|
this.el = r.nativeElement;
|
|
1615
1424
|
}
|
|
1616
|
-
|
|
1617
|
-
|
|
1425
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1426
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonListHeader, isStandalone: false, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1618
1427
|
};
|
|
1619
1428
|
IonListHeader = __decorate([
|
|
1620
1429
|
ProxyCmp({
|
|
1621
1430
|
inputs: ['color', 'lines', 'mode']
|
|
1622
1431
|
})
|
|
1623
1432
|
], IonListHeader);
|
|
1433
|
+
export { IonListHeader };
|
|
1624
1434
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1625
1435
|
type: Component,
|
|
1626
1436
|
args: [{
|
|
@@ -1648,8 +1458,8 @@ let IonLoading = class IonLoading {
|
|
|
1648
1458
|
c.detach();
|
|
1649
1459
|
this.el = r.nativeElement;
|
|
1650
1460
|
}
|
|
1651
|
-
|
|
1652
|
-
|
|
1461
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1462
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLoading, isStandalone: false, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", translucent: "translucent", trigger: "trigger" }, outputs: { ionLoadingDidPresent: "ionLoadingDidPresent", ionLoadingWillPresent: "ionLoadingWillPresent", ionLoadingWillDismiss: "ionLoadingWillDismiss", ionLoadingDidDismiss: "ionLoadingDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1653
1463
|
};
|
|
1654
1464
|
IonLoading = __decorate([
|
|
1655
1465
|
ProxyCmp({
|
|
@@ -1657,6 +1467,7 @@ IonLoading = __decorate([
|
|
|
1657
1467
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1658
1468
|
})
|
|
1659
1469
|
], IonLoading);
|
|
1470
|
+
export { IonLoading };
|
|
1660
1471
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, decorators: [{
|
|
1661
1472
|
type: Component,
|
|
1662
1473
|
args: [{
|
|
@@ -1697,8 +1508,8 @@ let IonMenu = class IonMenu {
|
|
|
1697
1508
|
c.detach();
|
|
1698
1509
|
this.el = r.nativeElement;
|
|
1699
1510
|
}
|
|
1700
|
-
|
|
1701
|
-
|
|
1511
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1512
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenu, isStandalone: false, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", side: "side", swipeGesture: "swipeGesture", type: "type" }, outputs: { ionWillOpen: "ionWillOpen", ionWillClose: "ionWillClose", ionDidOpen: "ionDidOpen", ionDidClose: "ionDidClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1702
1513
|
};
|
|
1703
1514
|
IonMenu = __decorate([
|
|
1704
1515
|
ProxyCmp({
|
|
@@ -1706,6 +1517,7 @@ IonMenu = __decorate([
|
|
|
1706
1517
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1707
1518
|
})
|
|
1708
1519
|
], IonMenu);
|
|
1520
|
+
export { IonMenu };
|
|
1709
1521
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, decorators: [{
|
|
1710
1522
|
type: Component,
|
|
1711
1523
|
args: [{
|
|
@@ -1734,14 +1546,15 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1734
1546
|
c.detach();
|
|
1735
1547
|
this.el = r.nativeElement;
|
|
1736
1548
|
}
|
|
1737
|
-
|
|
1738
|
-
|
|
1549
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1550
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuButton, isStandalone: false, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1739
1551
|
};
|
|
1740
1552
|
IonMenuButton = __decorate([
|
|
1741
1553
|
ProxyCmp({
|
|
1742
1554
|
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1743
1555
|
})
|
|
1744
1556
|
], IonMenuButton);
|
|
1557
|
+
export { IonMenuButton };
|
|
1745
1558
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1746
1559
|
type: Component,
|
|
1747
1560
|
args: [{
|
|
@@ -1761,14 +1574,15 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1761
1574
|
c.detach();
|
|
1762
1575
|
this.el = r.nativeElement;
|
|
1763
1576
|
}
|
|
1764
|
-
|
|
1765
|
-
|
|
1577
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1578
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuToggle, isStandalone: false, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1766
1579
|
};
|
|
1767
1580
|
IonMenuToggle = __decorate([
|
|
1768
1581
|
ProxyCmp({
|
|
1769
1582
|
inputs: ['autoHide', 'menu']
|
|
1770
1583
|
})
|
|
1771
1584
|
], IonMenuToggle);
|
|
1585
|
+
export { IonMenuToggle };
|
|
1772
1586
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1773
1587
|
type: Component,
|
|
1774
1588
|
args: [{
|
|
@@ -1788,14 +1602,15 @@ let IonNavLink = class IonNavLink {
|
|
|
1788
1602
|
c.detach();
|
|
1789
1603
|
this.el = r.nativeElement;
|
|
1790
1604
|
}
|
|
1791
|
-
|
|
1792
|
-
|
|
1605
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1606
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNavLink, isStandalone: false, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", routerAnimation: "routerAnimation", routerDirection: "routerDirection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1793
1607
|
};
|
|
1794
1608
|
IonNavLink = __decorate([
|
|
1795
1609
|
ProxyCmp({
|
|
1796
1610
|
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1797
1611
|
})
|
|
1798
1612
|
], IonNavLink);
|
|
1613
|
+
export { IonNavLink };
|
|
1799
1614
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1800
1615
|
type: Component,
|
|
1801
1616
|
args: [{
|
|
@@ -1815,14 +1630,15 @@ let IonNote = class IonNote {
|
|
|
1815
1630
|
c.detach();
|
|
1816
1631
|
this.el = r.nativeElement;
|
|
1817
1632
|
}
|
|
1818
|
-
|
|
1819
|
-
|
|
1633
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1634
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNote, isStandalone: false, selector: "ion-note", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1820
1635
|
};
|
|
1821
1636
|
IonNote = __decorate([
|
|
1822
1637
|
ProxyCmp({
|
|
1823
1638
|
inputs: ['color', 'mode']
|
|
1824
1639
|
})
|
|
1825
1640
|
], IonNote);
|
|
1641
|
+
export { IonNote };
|
|
1826
1642
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, decorators: [{
|
|
1827
1643
|
type: Component,
|
|
1828
1644
|
args: [{
|
|
@@ -1842,14 +1658,15 @@ let IonPicker = class IonPicker {
|
|
|
1842
1658
|
c.detach();
|
|
1843
1659
|
this.el = r.nativeElement;
|
|
1844
1660
|
}
|
|
1845
|
-
|
|
1846
|
-
|
|
1661
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1662
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPicker, isStandalone: false, selector: "ion-picker", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1847
1663
|
};
|
|
1848
1664
|
IonPicker = __decorate([
|
|
1849
1665
|
ProxyCmp({
|
|
1850
1666
|
inputs: ['mode']
|
|
1851
1667
|
})
|
|
1852
1668
|
], IonPicker);
|
|
1669
|
+
export { IonPicker };
|
|
1853
1670
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, decorators: [{
|
|
1854
1671
|
type: Component,
|
|
1855
1672
|
args: [{
|
|
@@ -1870,8 +1687,8 @@ let IonPickerColumn = class IonPickerColumn {
|
|
|
1870
1687
|
c.detach();
|
|
1871
1688
|
this.el = r.nativeElement;
|
|
1872
1689
|
}
|
|
1873
|
-
|
|
1874
|
-
|
|
1690
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1691
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumn, isStandalone: false, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1875
1692
|
};
|
|
1876
1693
|
IonPickerColumn = __decorate([
|
|
1877
1694
|
ProxyCmp({
|
|
@@ -1879,6 +1696,7 @@ IonPickerColumn = __decorate([
|
|
|
1879
1696
|
methods: ['setFocus']
|
|
1880
1697
|
})
|
|
1881
1698
|
], IonPickerColumn);
|
|
1699
|
+
export { IonPickerColumn };
|
|
1882
1700
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1883
1701
|
type: Component,
|
|
1884
1702
|
args: [{
|
|
@@ -1901,14 +1719,15 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1901
1719
|
c.detach();
|
|
1902
1720
|
this.el = r.nativeElement;
|
|
1903
1721
|
}
|
|
1904
|
-
|
|
1905
|
-
|
|
1722
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1723
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumnOption, isStandalone: false, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1906
1724
|
};
|
|
1907
1725
|
IonPickerColumnOption = __decorate([
|
|
1908
1726
|
ProxyCmp({
|
|
1909
1727
|
inputs: ['color', 'disabled', 'value']
|
|
1910
1728
|
})
|
|
1911
1729
|
], IonPickerColumnOption);
|
|
1730
|
+
export { IonPickerColumnOption };
|
|
1912
1731
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1913
1732
|
type: Component,
|
|
1914
1733
|
args: [{
|
|
@@ -1928,14 +1747,15 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1928
1747
|
c.detach();
|
|
1929
1748
|
this.el = r.nativeElement;
|
|
1930
1749
|
}
|
|
1931
|
-
|
|
1932
|
-
|
|
1750
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1751
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonProgressBar, isStandalone: false, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1933
1752
|
};
|
|
1934
1753
|
IonProgressBar = __decorate([
|
|
1935
1754
|
ProxyCmp({
|
|
1936
1755
|
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1937
1756
|
})
|
|
1938
1757
|
], IonProgressBar);
|
|
1758
|
+
export { IonProgressBar };
|
|
1939
1759
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1940
1760
|
type: Component,
|
|
1941
1761
|
args: [{
|
|
@@ -1957,14 +1777,15 @@ let IonRadio = class IonRadio {
|
|
|
1957
1777
|
c.detach();
|
|
1958
1778
|
this.el = r.nativeElement;
|
|
1959
1779
|
}
|
|
1960
|
-
|
|
1961
|
-
|
|
1780
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1781
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadio, isStandalone: false, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1962
1782
|
};
|
|
1963
1783
|
IonRadio = __decorate([
|
|
1964
1784
|
ProxyCmp({
|
|
1965
1785
|
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1966
1786
|
})
|
|
1967
1787
|
], IonRadio);
|
|
1788
|
+
export { IonRadio };
|
|
1968
1789
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, decorators: [{
|
|
1969
1790
|
type: Component,
|
|
1970
1791
|
args: [{
|
|
@@ -1990,14 +1811,15 @@ let IonRadioGroup = class IonRadioGroup {
|
|
|
1990
1811
|
c.detach();
|
|
1991
1812
|
this.el = r.nativeElement;
|
|
1992
1813
|
}
|
|
1993
|
-
|
|
1994
|
-
|
|
1814
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1815
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadioGroup, isStandalone: false, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", name: "name", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1995
1816
|
};
|
|
1996
1817
|
IonRadioGroup = __decorate([
|
|
1997
1818
|
ProxyCmp({
|
|
1998
1819
|
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value']
|
|
1999
1820
|
})
|
|
2000
1821
|
], IonRadioGroup);
|
|
1822
|
+
export { IonRadioGroup };
|
|
2001
1823
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
2002
1824
|
type: Component,
|
|
2003
1825
|
args: [{
|
|
@@ -2026,14 +1848,15 @@ let IonRange = class IonRange {
|
|
|
2026
1848
|
c.detach();
|
|
2027
1849
|
this.el = r.nativeElement;
|
|
2028
1850
|
}
|
|
2029
|
-
|
|
2030
|
-
|
|
1851
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1852
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRange, isStandalone: false, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", ticks: "ticks", value: "value" }, outputs: { ionChange: "ionChange", ionInput: "ionInput", ionFocus: "ionFocus", ionBlur: "ionBlur", ionKnobMoveStart: "ionKnobMoveStart", ionKnobMoveEnd: "ionKnobMoveEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2031
1853
|
};
|
|
2032
1854
|
IonRange = __decorate([
|
|
2033
1855
|
ProxyCmp({
|
|
2034
1856
|
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value']
|
|
2035
1857
|
})
|
|
2036
1858
|
], IonRange);
|
|
1859
|
+
export { IonRange };
|
|
2037
1860
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, decorators: [{
|
|
2038
1861
|
type: Component,
|
|
2039
1862
|
args: [{
|
|
@@ -2071,8 +1894,8 @@ let IonRefresher = class IonRefresher {
|
|
|
2071
1894
|
c.detach();
|
|
2072
1895
|
this.el = r.nativeElement;
|
|
2073
1896
|
}
|
|
2074
|
-
|
|
2075
|
-
|
|
1897
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1898
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresher, isStandalone: false, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration" }, outputs: { ionRefresh: "ionRefresh", ionPull: "ionPull", ionStart: "ionStart", ionPullStart: "ionPullStart", ionPullEnd: "ionPullEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2076
1899
|
};
|
|
2077
1900
|
IonRefresher = __decorate([
|
|
2078
1901
|
ProxyCmp({
|
|
@@ -2080,6 +1903,7 @@ IonRefresher = __decorate([
|
|
|
2080
1903
|
methods: ['complete', 'cancel', 'getProgress']
|
|
2081
1904
|
})
|
|
2082
1905
|
], IonRefresher);
|
|
1906
|
+
export { IonRefresher };
|
|
2083
1907
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, decorators: [{
|
|
2084
1908
|
type: Component,
|
|
2085
1909
|
args: [{
|
|
@@ -2110,14 +1934,15 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
2110
1934
|
c.detach();
|
|
2111
1935
|
this.el = r.nativeElement;
|
|
2112
1936
|
}
|
|
2113
|
-
|
|
2114
|
-
|
|
1937
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1938
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresherContent, isStandalone: false, selector: "ion-refresher-content", inputs: { pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2115
1939
|
};
|
|
2116
1940
|
IonRefresherContent = __decorate([
|
|
2117
1941
|
ProxyCmp({
|
|
2118
1942
|
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
2119
1943
|
})
|
|
2120
1944
|
], IonRefresherContent);
|
|
1945
|
+
export { IonRefresherContent };
|
|
2121
1946
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
2122
1947
|
type: Component,
|
|
2123
1948
|
args: [{
|
|
@@ -2137,12 +1962,13 @@ let IonReorder = class IonReorder {
|
|
|
2137
1962
|
c.detach();
|
|
2138
1963
|
this.el = r.nativeElement;
|
|
2139
1964
|
}
|
|
2140
|
-
|
|
2141
|
-
|
|
1965
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1966
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorder, isStandalone: false, selector: "ion-reorder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2142
1967
|
};
|
|
2143
1968
|
IonReorder = __decorate([
|
|
2144
1969
|
ProxyCmp({})
|
|
2145
1970
|
], IonReorder);
|
|
1971
|
+
export { IonReorder };
|
|
2146
1972
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, decorators: [{
|
|
2147
1973
|
type: Component,
|
|
2148
1974
|
args: [{
|
|
@@ -2166,8 +1992,8 @@ let IonReorderGroup = class IonReorderGroup {
|
|
|
2166
1992
|
c.detach();
|
|
2167
1993
|
this.el = r.nativeElement;
|
|
2168
1994
|
}
|
|
2169
|
-
|
|
2170
|
-
|
|
1995
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1996
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorderGroup, isStandalone: false, selector: "ion-reorder-group", inputs: { disabled: "disabled" }, outputs: { ionItemReorder: "ionItemReorder", ionReorderStart: "ionReorderStart", ionReorderMove: "ionReorderMove", ionReorderEnd: "ionReorderEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2171
1997
|
};
|
|
2172
1998
|
IonReorderGroup = __decorate([
|
|
2173
1999
|
ProxyCmp({
|
|
@@ -2175,6 +2001,7 @@ IonReorderGroup = __decorate([
|
|
|
2175
2001
|
methods: ['complete']
|
|
2176
2002
|
})
|
|
2177
2003
|
], IonReorderGroup);
|
|
2004
|
+
export { IonReorderGroup };
|
|
2178
2005
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
2179
2006
|
type: Component,
|
|
2180
2007
|
args: [{
|
|
@@ -2203,8 +2030,8 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
2203
2030
|
c.detach();
|
|
2204
2031
|
this.el = r.nativeElement;
|
|
2205
2032
|
}
|
|
2206
|
-
|
|
2207
|
-
|
|
2033
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2034
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRippleEffect, isStandalone: false, selector: "ion-ripple-effect", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2208
2035
|
};
|
|
2209
2036
|
IonRippleEffect = __decorate([
|
|
2210
2037
|
ProxyCmp({
|
|
@@ -2212,6 +2039,7 @@ IonRippleEffect = __decorate([
|
|
|
2212
2039
|
methods: ['addRipple']
|
|
2213
2040
|
})
|
|
2214
2041
|
], IonRippleEffect);
|
|
2042
|
+
export { IonRippleEffect };
|
|
2215
2043
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2216
2044
|
type: Component,
|
|
2217
2045
|
args: [{
|
|
@@ -2231,12 +2059,13 @@ let IonRow = class IonRow {
|
|
|
2231
2059
|
c.detach();
|
|
2232
2060
|
this.el = r.nativeElement;
|
|
2233
2061
|
}
|
|
2234
|
-
|
|
2235
|
-
|
|
2062
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2063
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRow, isStandalone: false, selector: "ion-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2236
2064
|
};
|
|
2237
2065
|
IonRow = __decorate([
|
|
2238
2066
|
ProxyCmp({})
|
|
2239
2067
|
], IonRow);
|
|
2068
|
+
export { IonRow };
|
|
2240
2069
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, decorators: [{
|
|
2241
2070
|
type: Component,
|
|
2242
2071
|
args: [{
|
|
@@ -2262,8 +2091,8 @@ let IonSearchbar = class IonSearchbar {
|
|
|
2262
2091
|
c.detach();
|
|
2263
2092
|
this.el = r.nativeElement;
|
|
2264
2093
|
}
|
|
2265
|
-
|
|
2266
|
-
|
|
2094
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2095
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSearchbar, isStandalone: false, selector: "ion-searchbar", inputs: { animated: "animated", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", showCancelButton: "showCancelButton", showClearButton: "showClearButton", spellcheck: "spellcheck", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionCancel: "ionCancel", ionClear: "ionClear", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2267
2096
|
};
|
|
2268
2097
|
IonSearchbar = __decorate([
|
|
2269
2098
|
ProxyCmp({
|
|
@@ -2271,6 +2100,7 @@ IonSearchbar = __decorate([
|
|
|
2271
2100
|
methods: ['setFocus', 'getInputElement']
|
|
2272
2101
|
})
|
|
2273
2102
|
], IonSearchbar);
|
|
2103
|
+
export { IonSearchbar };
|
|
2274
2104
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
2275
2105
|
type: Component,
|
|
2276
2106
|
args: [{
|
|
@@ -2304,14 +2134,15 @@ let IonSegment = class IonSegment {
|
|
|
2304
2134
|
c.detach();
|
|
2305
2135
|
this.el = r.nativeElement;
|
|
2306
2136
|
}
|
|
2307
|
-
|
|
2308
|
-
|
|
2137
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2138
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegment, isStandalone: false, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2309
2139
|
};
|
|
2310
2140
|
IonSegment = __decorate([
|
|
2311
2141
|
ProxyCmp({
|
|
2312
2142
|
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value']
|
|
2313
2143
|
})
|
|
2314
2144
|
], IonSegment);
|
|
2145
|
+
export { IonSegment };
|
|
2315
2146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, decorators: [{
|
|
2316
2147
|
type: Component,
|
|
2317
2148
|
args: [{
|
|
@@ -2334,14 +2165,15 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
2334
2165
|
c.detach();
|
|
2335
2166
|
this.el = r.nativeElement;
|
|
2336
2167
|
}
|
|
2337
|
-
|
|
2338
|
-
|
|
2168
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2169
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentButton, isStandalone: false, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2339
2170
|
};
|
|
2340
2171
|
IonSegmentButton = __decorate([
|
|
2341
2172
|
ProxyCmp({
|
|
2342
2173
|
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2343
2174
|
})
|
|
2344
2175
|
], IonSegmentButton);
|
|
2176
|
+
export { IonSegmentButton };
|
|
2345
2177
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2346
2178
|
type: Component,
|
|
2347
2179
|
args: [{
|
|
@@ -2361,12 +2193,13 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2361
2193
|
c.detach();
|
|
2362
2194
|
this.el = r.nativeElement;
|
|
2363
2195
|
}
|
|
2364
|
-
|
|
2365
|
-
|
|
2196
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2197
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentContent, isStandalone: false, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2366
2198
|
};
|
|
2367
2199
|
IonSegmentContent = __decorate([
|
|
2368
2200
|
ProxyCmp({})
|
|
2369
2201
|
], IonSegmentContent);
|
|
2202
|
+
export { IonSegmentContent };
|
|
2370
2203
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2371
2204
|
type: Component,
|
|
2372
2205
|
args: [{
|
|
@@ -2387,14 +2220,15 @@ let IonSegmentView = class IonSegmentView {
|
|
|
2387
2220
|
c.detach();
|
|
2388
2221
|
this.el = r.nativeElement;
|
|
2389
2222
|
}
|
|
2390
|
-
|
|
2391
|
-
|
|
2223
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2224
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentView, isStandalone: false, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, outputs: { ionSegmentViewScroll: "ionSegmentViewScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2392
2225
|
};
|
|
2393
2226
|
IonSegmentView = __decorate([
|
|
2394
2227
|
ProxyCmp({
|
|
2395
2228
|
inputs: ['disabled', 'swipeGesture']
|
|
2396
2229
|
})
|
|
2397
2230
|
], IonSegmentView);
|
|
2231
|
+
export { IonSegmentView };
|
|
2398
2232
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2399
2233
|
type: Component,
|
|
2400
2234
|
args: [{
|
|
@@ -2422,8 +2256,8 @@ let IonSelect = class IonSelect {
|
|
|
2422
2256
|
c.detach();
|
|
2423
2257
|
this.el = r.nativeElement;
|
|
2424
2258
|
}
|
|
2425
|
-
|
|
2426
|
-
|
|
2259
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2260
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelect, isStandalone: false, selector: "ion-select", inputs: { cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", required: "required", selectedText: "selectedText", shape: "shape", toggleIcon: "toggleIcon", value: "value" }, outputs: { ionChange: "ionChange", ionCancel: "ionCancel", ionDismiss: "ionDismiss", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2427
2261
|
};
|
|
2428
2262
|
IonSelect = __decorate([
|
|
2429
2263
|
ProxyCmp({
|
|
@@ -2431,6 +2265,7 @@ IonSelect = __decorate([
|
|
|
2431
2265
|
methods: ['open']
|
|
2432
2266
|
})
|
|
2433
2267
|
], IonSelect);
|
|
2268
|
+
export { IonSelect };
|
|
2434
2269
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, decorators: [{
|
|
2435
2270
|
type: Component,
|
|
2436
2271
|
args: [{
|
|
@@ -2461,14 +2296,15 @@ let IonSelectModal = class IonSelectModal {
|
|
|
2461
2296
|
c.detach();
|
|
2462
2297
|
this.el = r.nativeElement;
|
|
2463
2298
|
}
|
|
2464
|
-
|
|
2465
|
-
|
|
2299
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2300
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectModal, isStandalone: false, selector: "ion-select-modal", inputs: { cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2466
2301
|
};
|
|
2467
2302
|
IonSelectModal = __decorate([
|
|
2468
2303
|
ProxyCmp({
|
|
2469
2304
|
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2470
2305
|
})
|
|
2471
2306
|
], IonSelectModal);
|
|
2307
|
+
export { IonSelectModal };
|
|
2472
2308
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2473
2309
|
type: Component,
|
|
2474
2310
|
args: [{
|
|
@@ -2488,14 +2324,15 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2488
2324
|
c.detach();
|
|
2489
2325
|
this.el = r.nativeElement;
|
|
2490
2326
|
}
|
|
2491
|
-
|
|
2492
|
-
|
|
2327
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2328
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectOption, isStandalone: false, selector: "ion-select-option", inputs: { description: "description", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2493
2329
|
};
|
|
2494
2330
|
IonSelectOption = __decorate([
|
|
2495
2331
|
ProxyCmp({
|
|
2496
2332
|
inputs: ['description', 'disabled', 'justify', 'labelPlacement', 'mode', 'value']
|
|
2497
2333
|
})
|
|
2498
2334
|
], IonSelectOption);
|
|
2335
|
+
export { IonSelectOption };
|
|
2499
2336
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2500
2337
|
type: Component,
|
|
2501
2338
|
args: [{
|
|
@@ -2515,14 +2352,15 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2515
2352
|
c.detach();
|
|
2516
2353
|
this.el = r.nativeElement;
|
|
2517
2354
|
}
|
|
2518
|
-
|
|
2519
|
-
|
|
2355
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2356
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSkeletonText, isStandalone: false, selector: "ion-skeleton-text", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2520
2357
|
};
|
|
2521
2358
|
IonSkeletonText = __decorate([
|
|
2522
2359
|
ProxyCmp({
|
|
2523
2360
|
inputs: ['animated']
|
|
2524
2361
|
})
|
|
2525
2362
|
], IonSkeletonText);
|
|
2363
|
+
export { IonSkeletonText };
|
|
2526
2364
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2527
2365
|
type: Component,
|
|
2528
2366
|
args: [{
|
|
@@ -2542,14 +2380,15 @@ let IonSpinner = class IonSpinner {
|
|
|
2542
2380
|
c.detach();
|
|
2543
2381
|
this.el = r.nativeElement;
|
|
2544
2382
|
}
|
|
2545
|
-
|
|
2546
|
-
|
|
2383
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2384
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSpinner, isStandalone: false, selector: "ion-spinner", inputs: { color: "color", duration: "duration", name: "name", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2547
2385
|
};
|
|
2548
2386
|
IonSpinner = __decorate([
|
|
2549
2387
|
ProxyCmp({
|
|
2550
2388
|
inputs: ['color', 'duration', 'name', 'paused']
|
|
2551
2389
|
})
|
|
2552
2390
|
], IonSpinner);
|
|
2391
|
+
export { IonSpinner };
|
|
2553
2392
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2554
2393
|
type: Component,
|
|
2555
2394
|
args: [{
|
|
@@ -2570,14 +2409,15 @@ let IonSplitPane = class IonSplitPane {
|
|
|
2570
2409
|
c.detach();
|
|
2571
2410
|
this.el = r.nativeElement;
|
|
2572
2411
|
}
|
|
2573
|
-
|
|
2574
|
-
|
|
2412
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2413
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSplitPane, isStandalone: false, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", when: "when" }, outputs: { ionSplitPaneVisible: "ionSplitPaneVisible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2575
2414
|
};
|
|
2576
2415
|
IonSplitPane = __decorate([
|
|
2577
2416
|
ProxyCmp({
|
|
2578
2417
|
inputs: ['contentId', 'disabled', 'when']
|
|
2579
2418
|
})
|
|
2580
2419
|
], IonSplitPane);
|
|
2420
|
+
export { IonSplitPane };
|
|
2581
2421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2582
2422
|
type: Component,
|
|
2583
2423
|
args: [{
|
|
@@ -2600,8 +2440,8 @@ let IonTab = class IonTab {
|
|
|
2600
2440
|
c.detach();
|
|
2601
2441
|
this.el = r.nativeElement;
|
|
2602
2442
|
}
|
|
2603
|
-
|
|
2604
|
-
|
|
2443
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2444
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTab, isStandalone: false, selector: "ion-tab", inputs: { component: "component", tab: "tab" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2605
2445
|
};
|
|
2606
2446
|
IonTab = __decorate([
|
|
2607
2447
|
ProxyCmp({
|
|
@@ -2609,6 +2449,7 @@ IonTab = __decorate([
|
|
|
2609
2449
|
methods: ['setActive']
|
|
2610
2450
|
})
|
|
2611
2451
|
], IonTab);
|
|
2452
|
+
export { IonTab };
|
|
2612
2453
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, decorators: [{
|
|
2613
2454
|
type: Component,
|
|
2614
2455
|
args: [{
|
|
@@ -2628,14 +2469,15 @@ let IonTabBar = class IonTabBar {
|
|
|
2628
2469
|
c.detach();
|
|
2629
2470
|
this.el = r.nativeElement;
|
|
2630
2471
|
}
|
|
2631
|
-
|
|
2632
|
-
|
|
2472
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2473
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabBar, isStandalone: false, selector: "ion-tab-bar", inputs: { color: "color", mode: "mode", selectedTab: "selectedTab", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2633
2474
|
};
|
|
2634
2475
|
IonTabBar = __decorate([
|
|
2635
2476
|
ProxyCmp({
|
|
2636
2477
|
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2637
2478
|
})
|
|
2638
2479
|
], IonTabBar);
|
|
2480
|
+
export { IonTabBar };
|
|
2639
2481
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2640
2482
|
type: Component,
|
|
2641
2483
|
args: [{
|
|
@@ -2655,14 +2497,15 @@ let IonTabButton = class IonTabButton {
|
|
|
2655
2497
|
c.detach();
|
|
2656
2498
|
this.el = r.nativeElement;
|
|
2657
2499
|
}
|
|
2658
|
-
|
|
2659
|
-
|
|
2500
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2501
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabButton, isStandalone: false, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", tab: "tab", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2660
2502
|
};
|
|
2661
2503
|
IonTabButton = __decorate([
|
|
2662
2504
|
ProxyCmp({
|
|
2663
2505
|
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2664
2506
|
})
|
|
2665
2507
|
], IonTabButton);
|
|
2508
|
+
export { IonTabButton };
|
|
2666
2509
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2667
2510
|
type: Component,
|
|
2668
2511
|
args: [{
|
|
@@ -2682,14 +2525,15 @@ let IonText = class IonText {
|
|
|
2682
2525
|
c.detach();
|
|
2683
2526
|
this.el = r.nativeElement;
|
|
2684
2527
|
}
|
|
2685
|
-
|
|
2686
|
-
|
|
2528
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2529
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonText, isStandalone: false, selector: "ion-text", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2687
2530
|
};
|
|
2688
2531
|
IonText = __decorate([
|
|
2689
2532
|
ProxyCmp({
|
|
2690
2533
|
inputs: ['color', 'mode']
|
|
2691
2534
|
})
|
|
2692
2535
|
], IonText);
|
|
2536
|
+
export { IonText };
|
|
2693
2537
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, decorators: [{
|
|
2694
2538
|
type: Component,
|
|
2695
2539
|
args: [{
|
|
@@ -2713,8 +2557,8 @@ let IonTextarea = class IonTextarea {
|
|
|
2713
2557
|
c.detach();
|
|
2714
2558
|
this.el = r.nativeElement;
|
|
2715
2559
|
}
|
|
2716
|
-
|
|
2717
|
-
|
|
2560
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2561
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTextarea, isStandalone: false, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", spellcheck: "spellcheck", value: "value", wrap: "wrap" }, outputs: { ionChange: "ionChange", ionInput: "ionInput", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2718
2562
|
};
|
|
2719
2563
|
IonTextarea = __decorate([
|
|
2720
2564
|
ProxyCmp({
|
|
@@ -2722,6 +2566,7 @@ IonTextarea = __decorate([
|
|
|
2722
2566
|
methods: ['setFocus', 'getInputElement']
|
|
2723
2567
|
})
|
|
2724
2568
|
], IonTextarea);
|
|
2569
|
+
export { IonTextarea };
|
|
2725
2570
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, decorators: [{
|
|
2726
2571
|
type: Component,
|
|
2727
2572
|
args: [{
|
|
@@ -2750,12 +2595,13 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2750
2595
|
c.detach();
|
|
2751
2596
|
this.el = r.nativeElement;
|
|
2752
2597
|
}
|
|
2753
|
-
|
|
2754
|
-
|
|
2598
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2599
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonThumbnail, isStandalone: false, selector: "ion-thumbnail", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2755
2600
|
};
|
|
2756
2601
|
IonThumbnail = __decorate([
|
|
2757
2602
|
ProxyCmp({})
|
|
2758
2603
|
], IonThumbnail);
|
|
2604
|
+
export { IonThumbnail };
|
|
2759
2605
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2760
2606
|
type: Component,
|
|
2761
2607
|
args: [{
|
|
@@ -2775,14 +2621,15 @@ let IonTitle = class IonTitle {
|
|
|
2775
2621
|
c.detach();
|
|
2776
2622
|
this.el = r.nativeElement;
|
|
2777
2623
|
}
|
|
2778
|
-
|
|
2779
|
-
|
|
2624
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2625
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTitle, isStandalone: false, selector: "ion-title", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2780
2626
|
};
|
|
2781
2627
|
IonTitle = __decorate([
|
|
2782
2628
|
ProxyCmp({
|
|
2783
2629
|
inputs: ['color', 'size']
|
|
2784
2630
|
})
|
|
2785
2631
|
], IonTitle);
|
|
2632
|
+
export { IonTitle };
|
|
2786
2633
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, decorators: [{
|
|
2787
2634
|
type: Component,
|
|
2788
2635
|
args: [{
|
|
@@ -2810,8 +2657,8 @@ let IonToast = class IonToast {
|
|
|
2810
2657
|
c.detach();
|
|
2811
2658
|
this.el = r.nativeElement;
|
|
2812
2659
|
}
|
|
2813
|
-
|
|
2814
|
-
|
|
2660
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2661
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToast, isStandalone: false, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", swipeGesture: "swipeGesture", translucent: "translucent", trigger: "trigger" }, outputs: { ionToastDidPresent: "ionToastDidPresent", ionToastWillPresent: "ionToastWillPresent", ionToastWillDismiss: "ionToastWillDismiss", ionToastDidDismiss: "ionToastDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2815
2662
|
};
|
|
2816
2663
|
IonToast = __decorate([
|
|
2817
2664
|
ProxyCmp({
|
|
@@ -2819,6 +2666,7 @@ IonToast = __decorate([
|
|
|
2819
2666
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2820
2667
|
})
|
|
2821
2668
|
], IonToast);
|
|
2669
|
+
export { IonToast };
|
|
2822
2670
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, decorators: [{
|
|
2823
2671
|
type: Component,
|
|
2824
2672
|
args: [{
|
|
@@ -2858,14 +2706,15 @@ let IonToggle = class IonToggle {
|
|
|
2858
2706
|
c.detach();
|
|
2859
2707
|
this.el = r.nativeElement;
|
|
2860
2708
|
}
|
|
2861
|
-
|
|
2862
|
-
|
|
2709
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2710
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToggle, isStandalone: false, selector: "ion-toggle", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", value: "value" }, outputs: { ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2863
2711
|
};
|
|
2864
2712
|
IonToggle = __decorate([
|
|
2865
2713
|
ProxyCmp({
|
|
2866
2714
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
2867
2715
|
})
|
|
2868
2716
|
], IonToggle);
|
|
2717
|
+
export { IonToggle };
|
|
2869
2718
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, decorators: [{
|
|
2870
2719
|
type: Component,
|
|
2871
2720
|
args: [{
|
|
@@ -2892,14 +2741,15 @@ let IonToolbar = class IonToolbar {
|
|
|
2892
2741
|
c.detach();
|
|
2893
2742
|
this.el = r.nativeElement;
|
|
2894
2743
|
}
|
|
2895
|
-
|
|
2896
|
-
|
|
2744
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2745
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToolbar, isStandalone: false, selector: "ion-toolbar", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2897
2746
|
};
|
|
2898
2747
|
IonToolbar = __decorate([
|
|
2899
2748
|
ProxyCmp({
|
|
2900
2749
|
inputs: ['color', 'mode']
|
|
2901
2750
|
})
|
|
2902
2751
|
], IonToolbar);
|
|
2752
|
+
export { IonToolbar };
|
|
2903
2753
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2904
2754
|
type: Component,
|
|
2905
2755
|
args: [{
|
|
@@ -2911,640 +2761,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
|
|
|
2911
2761
|
standalone: false
|
|
2912
2762
|
}]
|
|
2913
2763
|
}], 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
|
|
2764
|
+
//# sourceMappingURL=proxies.js.map
|