@ionic/angular 8.8.19-dev.11787007863.1976a30e → 8.8.19-dev.11787083540.1511caf2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -9
- package/{dist/common → common}/directives/control-value-accessors/value-accessor.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/back-button.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/nav.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/router-link-delegate.d.ts +2 -2
- package/{dist/common → common}/directives/navigation/router-outlet.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/tabs.d.ts +1 -9
- package/{dist/common → common}/index.d.ts +1 -1
- package/{dist/common → common}/overlays/modal.d.ts +1 -1
- package/{dist/common → common}/overlays/popover.d.ts +1 -1
- package/{dist/common → common}/providers/angular-delegate.d.ts +2 -2
- package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/proxies-list.d.ts +1 -1
- package/{dist/lazy/directives → directives}/proxies.d.ts +191 -290
- package/esm2022/app-initialize.mjs +29 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
- package/esm2022/common/directives/navigation/back-button.mjs +61 -0
- package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
- package/esm2022/common/directives/navigation/nav.mjs +49 -0
- package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
- package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
- package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
- package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
- package/esm2022/common/directives/navigation/tabs.mjs +279 -0
- package/esm2022/common/index.mjs +20 -0
- package/esm2022/common/ionic-angular-common.mjs +5 -0
- package/esm2022/common/overlays/modal.mjs +103 -0
- package/esm2022/common/overlays/popover.mjs +91 -0
- package/esm2022/common/providers/angular-delegate.mjs +210 -0
- package/esm2022/common/providers/config.mjs +45 -0
- package/esm2022/common/providers/dom-controller.mjs +45 -0
- package/esm2022/common/providers/menu-controller.mjs +114 -0
- package/esm2022/common/providers/nav-controller.mjs +235 -0
- package/esm2022/common/providers/platform.mjs +258 -0
- package/esm2022/common/types/interfaces.mjs +2 -0
- package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
- package/esm2022/common/types/overlay-options.mjs +2 -0
- package/esm2022/common/utils/overlay.mjs +26 -0
- package/esm2022/common/utils/proxy.mjs +47 -0
- package/esm2022/common/utils/routing.mjs +55 -0
- package/esm2022/common/utils/util.mjs +10 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
- package/esm2022/directives/control-value-accessors/index.mjs +5 -0
- package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
- package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
- package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
- package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
- package/esm2022/directives/navigation/ion-nav.mjs +21 -0
- package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
- package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
- package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
- package/esm2022/directives/overlays/modal.mjs +22 -0
- package/esm2022/directives/overlays/popover.mjs +18 -0
- package/esm2022/directives/proxies-list.mjs +90 -0
- package/esm2022/directives/proxies.mjs +2373 -0
- package/esm2022/directives/validators/index.mjs +3 -0
- package/esm2022/directives/validators/max-validator.mjs +27 -0
- package/esm2022/directives/validators/min-validator.mjs +27 -0
- package/esm2022/index.mjs +32 -0
- package/esm2022/ionic-angular.mjs +5 -0
- package/esm2022/ionic-module.mjs +111 -0
- package/esm2022/providers/action-sheet-controller.mjs +19 -0
- package/esm2022/providers/alert-controller.mjs +19 -0
- package/esm2022/providers/animation-controller.mjs +38 -0
- package/esm2022/providers/gesture-controller.mjs +33 -0
- package/esm2022/providers/loading-controller.mjs +19 -0
- package/esm2022/providers/menu-controller.mjs +19 -0
- package/esm2022/providers/modal-controller.mjs +26 -0
- package/esm2022/providers/picker-controller.mjs +22 -0
- package/esm2022/providers/popover-controller.mjs +19 -0
- package/esm2022/providers/toast-controller.mjs +19 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/checkbox.mjs +76 -0
- package/esm2022/standalone/directives/datetime.mjs +95 -0
- package/esm2022/standalone/directives/icon.mjs +35 -0
- package/esm2022/standalone/directives/index.mjs +13 -0
- package/esm2022/standalone/directives/input-otp.mjs +90 -0
- package/esm2022/standalone/directives/input.mjs +113 -0
- package/esm2022/standalone/directives/proxies.mjs +2260 -0
- package/esm2022/standalone/directives/radio-group.mjs +60 -0
- package/esm2022/standalone/directives/range.mjs +78 -0
- package/esm2022/standalone/directives/searchbar.mjs +82 -0
- package/esm2022/standalone/directives/segment.mjs +60 -0
- package/esm2022/standalone/directives/select.mjs +84 -0
- package/esm2022/standalone/directives/textarea.mjs +91 -0
- package/esm2022/standalone/directives/toggle.mjs +76 -0
- package/esm2022/standalone/index.mjs +25 -0
- package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
- package/esm2022/standalone/navigation/back-button.mjs +32 -0
- package/esm2022/standalone/navigation/nav.mjs +28 -0
- package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
- package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
- package/esm2022/standalone/navigation/tabs.mjs +58 -0
- package/esm2022/standalone/overlays/modal.mjs +32 -0
- package/esm2022/standalone/overlays/popover.mjs +28 -0
- package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
- package/esm2022/standalone/providers/alert-controller.mjs +21 -0
- package/esm2022/standalone/providers/animation-controller.mjs +38 -0
- package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
- package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
- package/esm2022/standalone/providers/loading-controller.mjs +21 -0
- package/esm2022/standalone/providers/menu-controller.mjs +19 -0
- package/esm2022/standalone/providers/modal-controller.mjs +28 -0
- package/esm2022/standalone/providers/picker-controller.mjs +24 -0
- package/esm2022/standalone/providers/popover-controller.mjs +21 -0
- package/esm2022/standalone/providers/toast-controller.mjs +21 -0
- package/fesm2022/ionic-angular-common.mjs +2791 -0
- package/fesm2022/ionic-angular-common.mjs.map +1 -0
- package/fesm2022/ionic-angular-standalone.mjs +3562 -0
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
- package/fesm2022/ionic-angular.mjs +3139 -0
- package/fesm2022/ionic-angular.mjs.map +1 -0
- package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
- package/ionic-module.d.ts +28 -0
- package/package.json +30 -172
- package/providers/picker-controller.d.ts +11 -0
- package/{dist/schematics → schematics}/add/index.js +6 -6
- package/schematics/utils/ast.js +32 -0
- package/{dist/schematics → schematics}/utils/config.js +11 -10
- package/{dist/schematics → schematics}/utils/package.js +4 -6
- package/standalone/directives/proxies.d.ts +1035 -0
- package/{dist/standalone → standalone}/index.d.ts +2 -1
- package/standalone/providers/picker-controller.d.ts +11 -0
- package/dist/common/directives/control-value-accessors/index.js +0 -2
- package/dist/common/directives/control-value-accessors/index.js.map +0 -1
- package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
- package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
- package/dist/common/directives/navigation/back-button.js +0 -61
- package/dist/common/directives/navigation/back-button.js.map +0 -1
- package/dist/common/directives/navigation/nav-params.js +0 -47
- package/dist/common/directives/navigation/nav-params.js.map +0 -1
- package/dist/common/directives/navigation/nav.js +0 -49
- package/dist/common/directives/navigation/nav.js.map +0 -1
- package/dist/common/directives/navigation/router-link-delegate.js +0 -188
- package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
- package/dist/common/directives/navigation/router-outlet.js +0 -476
- package/dist/common/directives/navigation/router-outlet.js.map +0 -1
- package/dist/common/directives/navigation/stack-controller.js +0 -282
- package/dist/common/directives/navigation/stack-controller.js.map +0 -1
- package/dist/common/directives/navigation/stack-utils.js +0 -73
- package/dist/common/directives/navigation/stack-utils.js.map +0 -1
- package/dist/common/directives/navigation/tabs.js +0 -290
- package/dist/common/directives/navigation/tabs.js.map +0 -1
- package/dist/common/index.js +0 -20
- package/dist/common/index.js.map +0 -1
- package/dist/common/overlays/modal.js +0 -96
- package/dist/common/overlays/modal.js.map +0 -1
- package/dist/common/overlays/popover.js +0 -84
- package/dist/common/overlays/popover.js.map +0 -1
- package/dist/common/providers/angular-delegate.js +0 -229
- package/dist/common/providers/angular-delegate.js.map +0 -1
- package/dist/common/providers/config.js +0 -44
- package/dist/common/providers/config.js.map +0 -1
- package/dist/common/providers/dom-controller.js +0 -44
- package/dist/common/providers/dom-controller.js.map +0 -1
- package/dist/common/providers/menu-controller.js +0 -114
- package/dist/common/providers/menu-controller.js.map +0 -1
- package/dist/common/providers/nav-controller.js +0 -232
- package/dist/common/providers/nav-controller.js.map +0 -1
- package/dist/common/providers/platform.js +0 -256
- package/dist/common/providers/platform.js.map +0 -1
- package/dist/common/types/interfaces.js +0 -2
- package/dist/common/types/interfaces.js.map +0 -1
- package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
- package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
- package/dist/common/types/overlay-options.js +0 -2
- package/dist/common/types/overlay-options.js.map +0 -1
- package/dist/common/utils/overlay.js +0 -26
- package/dist/common/utils/overlay.js.map +0 -1
- package/dist/common/utils/proxy.js +0 -47
- package/dist/common/utils/proxy.js.map +0 -1
- package/dist/common/utils/routing.js +0 -55
- package/dist/common/utils/routing.js.map +0 -1
- package/dist/common/utils/util.js +0 -10
- package/dist/common/utils/util.js.map +0 -1
- package/dist/lazy/app-initialize.js +0 -29
- package/dist/lazy/app-initialize.js.map +0 -1
- package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
- package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
- package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/index.js +0 -5
- package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
- package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
- package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
- package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
- package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-nav.js +0 -21
- package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
- package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
- package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
- package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
- package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
- package/dist/lazy/directives/overlays/modal.js +0 -22
- package/dist/lazy/directives/overlays/modal.js.map +0 -1
- package/dist/lazy/directives/overlays/popover.js +0 -18
- package/dist/lazy/directives/overlays/popover.js.map +0 -1
- package/dist/lazy/directives/proxies-list.js +0 -89
- package/dist/lazy/directives/proxies-list.js.map +0 -1
- package/dist/lazy/directives/proxies.js +0 -2759
- package/dist/lazy/directives/proxies.js.map +0 -1
- package/dist/lazy/directives/validators/index.js +0 -3
- package/dist/lazy/directives/validators/index.js.map +0 -1
- package/dist/lazy/directives/validators/max-validator.js +0 -26
- package/dist/lazy/directives/validators/max-validator.js.map +0 -1
- package/dist/lazy/directives/validators/min-validator.js +0 -26
- package/dist/lazy/directives/validators/min-validator.js.map +0 -1
- package/dist/lazy/index.js +0 -34
- package/dist/lazy/index.js.map +0 -1
- package/dist/lazy/ionic-module.d.ts +0 -38
- package/dist/lazy/ionic-module.js +0 -121
- package/dist/lazy/ionic-module.js.map +0 -1
- package/dist/lazy/providers/action-sheet-controller.js +0 -18
- package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
- package/dist/lazy/providers/alert-controller.js +0 -18
- package/dist/lazy/providers/alert-controller.js.map +0 -1
- package/dist/lazy/providers/animation-controller.js +0 -37
- package/dist/lazy/providers/animation-controller.js.map +0 -1
- package/dist/lazy/providers/gesture-controller.js +0 -32
- package/dist/lazy/providers/gesture-controller.js.map +0 -1
- package/dist/lazy/providers/loading-controller.js +0 -18
- package/dist/lazy/providers/loading-controller.js.map +0 -1
- package/dist/lazy/providers/menu-controller.js +0 -18
- package/dist/lazy/providers/menu-controller.js.map +0 -1
- package/dist/lazy/providers/modal-controller.js +0 -25
- package/dist/lazy/providers/modal-controller.js.map +0 -1
- package/dist/lazy/providers/popover-controller.js +0 -19
- package/dist/lazy/providers/popover-controller.js.map +0 -1
- package/dist/lazy/providers/toast-controller.js +0 -18
- package/dist/lazy/providers/toast-controller.js.map +0 -1
- package/dist/schematics/utils/ast.js +0 -64
- package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
- package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
- package/dist/standalone/directives/checkbox.js +0 -75
- package/dist/standalone/directives/checkbox.js.map +0 -1
- package/dist/standalone/directives/datetime.js +0 -93
- package/dist/standalone/directives/datetime.js.map +0 -1
- package/dist/standalone/directives/icon.js +0 -35
- package/dist/standalone/directives/icon.js.map +0 -1
- package/dist/standalone/directives/index.js +0 -13
- package/dist/standalone/directives/index.js.map +0 -1
- package/dist/standalone/directives/input-otp.js +0 -89
- package/dist/standalone/directives/input-otp.js.map +0 -1
- package/dist/standalone/directives/input.js +0 -112
- package/dist/standalone/directives/input.js.map +0 -1
- package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
- package/dist/standalone/directives/ion-accordion-group.js +0 -40
- package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
- package/dist/standalone/directives/ion-accordion.d.ts +0 -12
- package/dist/standalone/directives/ion-accordion.js +0 -36
- package/dist/standalone/directives/ion-accordion.js.map +0 -1
- package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
- package/dist/standalone/directives/ion-action-sheet.js +0 -62
- package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
- package/dist/standalone/directives/ion-alert.d.ts +0 -58
- package/dist/standalone/directives/ion-alert.js +0 -62
- package/dist/standalone/directives/ion-alert.js.map +0 -1
- package/dist/standalone/directives/ion-app.d.ts +0 -12
- package/dist/standalone/directives/ion-app.js +0 -36
- package/dist/standalone/directives/ion-app.js.map +0 -1
- package/dist/standalone/directives/ion-avatar.d.ts +0 -12
- package/dist/standalone/directives/ion-avatar.js +0 -35
- package/dist/standalone/directives/ion-avatar.js.map +0 -1
- package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
- package/dist/standalone/directives/ion-backdrop.js +0 -40
- package/dist/standalone/directives/ion-backdrop.js.map +0 -1
- package/dist/standalone/directives/ion-badge.d.ts +0 -12
- package/dist/standalone/directives/ion-badge.js +0 -36
- package/dist/standalone/directives/ion-badge.js.map +0 -1
- package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
- package/dist/standalone/directives/ion-breadcrumb.js +0 -43
- package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
- package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
- package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
- package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
- package/dist/standalone/directives/ion-button.d.ts +0 -23
- package/dist/standalone/directives/ion-button.js +0 -43
- package/dist/standalone/directives/ion-button.js.map +0 -1
- package/dist/standalone/directives/ion-buttons.d.ts +0 -12
- package/dist/standalone/directives/ion-buttons.js +0 -36
- package/dist/standalone/directives/ion-buttons.js.map +0 -1
- package/dist/standalone/directives/ion-card-content.d.ts +0 -12
- package/dist/standalone/directives/ion-card-content.js +0 -36
- package/dist/standalone/directives/ion-card-content.js.map +0 -1
- package/dist/standalone/directives/ion-card-header.d.ts +0 -12
- package/dist/standalone/directives/ion-card-header.js +0 -36
- package/dist/standalone/directives/ion-card-header.js.map +0 -1
- package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
- package/dist/standalone/directives/ion-card-subtitle.js +0 -36
- package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
- package/dist/standalone/directives/ion-card-title.d.ts +0 -12
- package/dist/standalone/directives/ion-card-title.js +0 -36
- package/dist/standalone/directives/ion-card-title.js.map +0 -1
- package/dist/standalone/directives/ion-card.d.ts +0 -12
- package/dist/standalone/directives/ion-card.js +0 -36
- package/dist/standalone/directives/ion-card.js.map +0 -1
- package/dist/standalone/directives/ion-chip.d.ts +0 -12
- package/dist/standalone/directives/ion-chip.js +0 -36
- package/dist/standalone/directives/ion-chip.js.map +0 -1
- package/dist/standalone/directives/ion-col.d.ts +0 -12
- package/dist/standalone/directives/ion-col.js +0 -36
- package/dist/standalone/directives/ion-col.js.map +0 -1
- package/dist/standalone/directives/ion-content.d.ts +0 -33
- package/dist/standalone/directives/ion-content.js +0 -47
- package/dist/standalone/directives/ion-content.js.map +0 -1
- package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
- package/dist/standalone/directives/ion-datetime-button.js +0 -36
- package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
- package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
- package/dist/standalone/directives/ion-fab-button.js +0 -43
- package/dist/standalone/directives/ion-fab-button.js.map +0 -1
- package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
- package/dist/standalone/directives/ion-fab-list.js +0 -36
- package/dist/standalone/directives/ion-fab-list.js.map +0 -1
- package/dist/standalone/directives/ion-fab.d.ts +0 -12
- package/dist/standalone/directives/ion-fab.js +0 -37
- package/dist/standalone/directives/ion-fab.js.map +0 -1
- package/dist/standalone/directives/ion-footer.d.ts +0 -12
- package/dist/standalone/directives/ion-footer.js +0 -36
- package/dist/standalone/directives/ion-footer.js.map +0 -1
- package/dist/standalone/directives/ion-grid.d.ts +0 -12
- package/dist/standalone/directives/ion-grid.js +0 -36
- package/dist/standalone/directives/ion-grid.js.map +0 -1
- package/dist/standalone/directives/ion-header.d.ts +0 -12
- package/dist/standalone/directives/ion-header.js +0 -36
- package/dist/standalone/directives/ion-header.js.map +0 -1
- package/dist/standalone/directives/ion-img.d.ts +0 -28
- package/dist/standalone/directives/ion-img.js +0 -46
- package/dist/standalone/directives/ion-img.js.map +0 -1
- package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
- package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
- package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
- package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
- package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
- package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
- package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
- package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
- package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
- package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
- package/dist/standalone/directives/ion-item-divider.js +0 -36
- package/dist/standalone/directives/ion-item-divider.js.map +0 -1
- package/dist/standalone/directives/ion-item-group.d.ts +0 -12
- package/dist/standalone/directives/ion-item-group.js +0 -35
- package/dist/standalone/directives/ion-item-group.js.map +0 -1
- package/dist/standalone/directives/ion-item-option.d.ts +0 -12
- package/dist/standalone/directives/ion-item-option.js +0 -36
- package/dist/standalone/directives/ion-item-option.js.map +0 -1
- package/dist/standalone/directives/ion-item-options.d.ts +0 -18
- package/dist/standalone/directives/ion-item-options.js +0 -40
- package/dist/standalone/directives/ion-item-options.js.map +0 -1
- package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
- package/dist/standalone/directives/ion-item-sliding.js +0 -41
- package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
- package/dist/standalone/directives/ion-item.d.ts +0 -12
- package/dist/standalone/directives/ion-item.js +0 -36
- package/dist/standalone/directives/ion-item.js.map +0 -1
- package/dist/standalone/directives/ion-label.d.ts +0 -12
- package/dist/standalone/directives/ion-label.js +0 -36
- package/dist/standalone/directives/ion-label.js.map +0 -1
- package/dist/standalone/directives/ion-list-header.d.ts +0 -12
- package/dist/standalone/directives/ion-list-header.js +0 -36
- package/dist/standalone/directives/ion-list-header.js.map +0 -1
- package/dist/standalone/directives/ion-list.d.ts +0 -12
- package/dist/standalone/directives/ion-list.js +0 -37
- package/dist/standalone/directives/ion-list.js.map +0 -1
- package/dist/standalone/directives/ion-loading.d.ts +0 -58
- package/dist/standalone/directives/ion-loading.js +0 -62
- package/dist/standalone/directives/ion-loading.js.map +0 -1
- package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
- package/dist/standalone/directives/ion-menu-button.js +0 -36
- package/dist/standalone/directives/ion-menu-button.js.map +0 -1
- package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
- package/dist/standalone/directives/ion-menu-toggle.js +0 -36
- package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
- package/dist/standalone/directives/ion-menu.d.ts +0 -34
- package/dist/standalone/directives/ion-menu.js +0 -50
- package/dist/standalone/directives/ion-menu.js.map +0 -1
- package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
- package/dist/standalone/directives/ion-nav-link.js +0 -36
- package/dist/standalone/directives/ion-nav-link.js.map +0 -1
- package/dist/standalone/directives/ion-note.d.ts +0 -12
- package/dist/standalone/directives/ion-note.js +0 -36
- package/dist/standalone/directives/ion-note.js.map +0 -1
- package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
- package/dist/standalone/directives/ion-picker-column-option.js +0 -36
- package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
- package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
- package/dist/standalone/directives/ion-picker-column.js +0 -41
- package/dist/standalone/directives/ion-picker-column.js.map +0 -1
- package/dist/standalone/directives/ion-picker.d.ts +0 -12
- package/dist/standalone/directives/ion-picker.js +0 -36
- package/dist/standalone/directives/ion-picker.js.map +0 -1
- package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
- package/dist/standalone/directives/ion-progress-bar.js +0 -36
- package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
- package/dist/standalone/directives/ion-radio.d.ts +0 -23
- package/dist/standalone/directives/ion-radio.js +0 -43
- package/dist/standalone/directives/ion-radio.js.map +0 -1
- package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
- package/dist/standalone/directives/ion-refresher-content.js +0 -36
- package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
- package/dist/standalone/directives/ion-refresher.d.ts +0 -45
- package/dist/standalone/directives/ion-refresher.js +0 -53
- package/dist/standalone/directives/ion-refresher.js.map +0 -1
- package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
- package/dist/standalone/directives/ion-reorder-group.js +0 -50
- package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
- package/dist/standalone/directives/ion-reorder.d.ts +0 -12
- package/dist/standalone/directives/ion-reorder.js +0 -35
- package/dist/standalone/directives/ion-reorder.js.map +0 -1
- package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
- package/dist/standalone/directives/ion-ripple-effect.js +0 -37
- package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
- package/dist/standalone/directives/ion-row.d.ts +0 -12
- package/dist/standalone/directives/ion-row.js +0 -35
- package/dist/standalone/directives/ion-row.js.map +0 -1
- package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
- package/dist/standalone/directives/ion-segment-button.js +0 -36
- package/dist/standalone/directives/ion-segment-button.js.map +0 -1
- package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
- package/dist/standalone/directives/ion-segment-content.js +0 -35
- package/dist/standalone/directives/ion-segment-content.js.map +0 -1
- package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
- package/dist/standalone/directives/ion-segment-view.js +0 -40
- package/dist/standalone/directives/ion-segment-view.js.map +0 -1
- package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
- package/dist/standalone/directives/ion-select-modal.js +0 -36
- package/dist/standalone/directives/ion-select-modal.js.map +0 -1
- package/dist/standalone/directives/ion-select-option.d.ts +0 -12
- package/dist/standalone/directives/ion-select-option.js +0 -36
- package/dist/standalone/directives/ion-select-option.js.map +0 -1
- package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
- package/dist/standalone/directives/ion-skeleton-text.js +0 -36
- package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
- package/dist/standalone/directives/ion-spinner.d.ts +0 -12
- package/dist/standalone/directives/ion-spinner.js +0 -36
- package/dist/standalone/directives/ion-spinner.js.map +0 -1
- package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
- package/dist/standalone/directives/ion-split-pane.js +0 -40
- package/dist/standalone/directives/ion-split-pane.js.map +0 -1
- package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
- package/dist/standalone/directives/ion-tab-bar.js +0 -36
- package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
- package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
- package/dist/standalone/directives/ion-tab-button.js +0 -36
- package/dist/standalone/directives/ion-tab-button.js.map +0 -1
- package/dist/standalone/directives/ion-tab.d.ts +0 -12
- package/dist/standalone/directives/ion-tab.js +0 -37
- package/dist/standalone/directives/ion-tab.js.map +0 -1
- package/dist/standalone/directives/ion-text.d.ts +0 -12
- package/dist/standalone/directives/ion-text.js +0 -36
- package/dist/standalone/directives/ion-text.js.map +0 -1
- package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
- package/dist/standalone/directives/ion-thumbnail.js +0 -35
- package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
- package/dist/standalone/directives/ion-title.d.ts +0 -12
- package/dist/standalone/directives/ion-title.js +0 -36
- package/dist/standalone/directives/ion-title.js.map +0 -1
- package/dist/standalone/directives/ion-toast.d.ts +0 -58
- package/dist/standalone/directives/ion-toast.js +0 -62
- package/dist/standalone/directives/ion-toast.js.map +0 -1
- package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
- package/dist/standalone/directives/ion-toolbar.js +0 -36
- package/dist/standalone/directives/ion-toolbar.js.map +0 -1
- package/dist/standalone/directives/proxies.d.ts +0 -77
- package/dist/standalone/directives/proxies.js +0 -79
- package/dist/standalone/directives/proxies.js.map +0 -1
- package/dist/standalone/directives/radio-group.js +0 -59
- package/dist/standalone/directives/radio-group.js.map +0 -1
- package/dist/standalone/directives/range.js +0 -77
- package/dist/standalone/directives/range.js.map +0 -1
- package/dist/standalone/directives/searchbar.js +0 -81
- package/dist/standalone/directives/searchbar.js.map +0 -1
- package/dist/standalone/directives/segment.js +0 -59
- package/dist/standalone/directives/segment.js.map +0 -1
- package/dist/standalone/directives/select.js +0 -83
- package/dist/standalone/directives/select.js.map +0 -1
- package/dist/standalone/directives/textarea.js +0 -90
- package/dist/standalone/directives/textarea.js.map +0 -1
- package/dist/standalone/directives/toggle.js +0 -75
- package/dist/standalone/directives/toggle.js.map +0 -1
- package/dist/standalone/index.js +0 -24
- package/dist/standalone/index.js.map +0 -1
- package/dist/standalone/navigation/back-button.js +0 -32
- package/dist/standalone/navigation/back-button.js.map +0 -1
- package/dist/standalone/navigation/nav.js +0 -28
- package/dist/standalone/navigation/nav.js.map +0 -1
- package/dist/standalone/navigation/router-link-delegate.js +0 -26
- package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
- package/dist/standalone/navigation/router-outlet.js +0 -60
- package/dist/standalone/navigation/router-outlet.js.map +0 -1
- package/dist/standalone/navigation/tabs.js +0 -57
- package/dist/standalone/navigation/tabs.js.map +0 -1
- package/dist/standalone/overlays/modal.js +0 -32
- package/dist/standalone/overlays/modal.js.map +0 -1
- package/dist/standalone/overlays/popover.js +0 -28
- package/dist/standalone/overlays/popover.js.map +0 -1
- package/dist/standalone/providers/action-sheet-controller.js +0 -20
- package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
- package/dist/standalone/providers/alert-controller.js +0 -20
- package/dist/standalone/providers/alert-controller.js.map +0 -1
- package/dist/standalone/providers/animation-controller.js +0 -37
- package/dist/standalone/providers/animation-controller.js.map +0 -1
- package/dist/standalone/providers/gesture-controller.js +0 -32
- package/dist/standalone/providers/gesture-controller.js.map +0 -1
- package/dist/standalone/providers/ionic-angular.js +0 -38
- package/dist/standalone/providers/ionic-angular.js.map +0 -1
- package/dist/standalone/providers/loading-controller.js +0 -20
- package/dist/standalone/providers/loading-controller.js.map +0 -1
- package/dist/standalone/providers/menu-controller.js +0 -18
- package/dist/standalone/providers/menu-controller.js.map +0 -1
- package/dist/standalone/providers/modal-controller.js +0 -27
- package/dist/standalone/providers/modal-controller.js.map +0 -1
- package/dist/standalone/providers/popover-controller.js +0 -21
- package/dist/standalone/providers/popover-controller.js.map +0 -1
- package/dist/standalone/providers/toast-controller.js +0 -20
- package/dist/standalone/providers/toast-controller.js.map +0 -1
- /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
- /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
- /package/{dist/common → common}/providers/config.d.ts +0 -0
- /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/platform.d.ts +0 -0
- /package/{dist/common → common}/types/interfaces.d.ts +0 -0
- /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
- /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
- /package/{dist/common → common}/utils/overlay.d.ts +0 -0
- /package/{dist/common → common}/utils/proxy.d.ts +0 -0
- /package/{dist/common → common}/utils/routing.d.ts +0 -0
- /package/{dist/common → common}/utils/util.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
- /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
- /package/{dist/schematics → schematics}/add/schema.json +0 -0
- /package/{dist/schematics → schematics}/collection.json +0 -0
- /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
- /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
- /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { NgIf } from '@angular/common';
|
|
2
|
-
import { Component, ContentChild, ContentChildren, ViewChild } from '@angular/core';
|
|
3
|
-
import { IonTabs as IonTabsBase } from '@ionic/angular/common';
|
|
4
|
-
import { IonTabBar, IonTab } from '../directives/proxies';
|
|
5
|
-
import { IonRouterOutlet } from './router-outlet';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class IonTabs extends IonTabsBase {
|
|
8
|
-
outlet;
|
|
9
|
-
tabBar;
|
|
10
|
-
tabBars;
|
|
11
|
-
tabs;
|
|
12
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabs, isStandalone: true, 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: `
|
|
14
|
-
<ng-content select="[slot=top]"></ng-content>
|
|
15
|
-
<div class="tabs-inner" #tabsInner>
|
|
16
|
-
<ion-router-outlet
|
|
17
|
-
*ngIf="tabs.length === 0"
|
|
18
|
-
#outlet
|
|
19
|
-
tabs="true"
|
|
20
|
-
(stackWillChange)="onStackWillChange($event)"
|
|
21
|
-
(stackDidChange)="onStackDidChange($event)"
|
|
22
|
-
></ion-router-outlet>
|
|
23
|
-
<ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
|
|
24
|
-
</div>
|
|
25
|
-
<ng-content></ng-content>
|
|
26
|
-
`, isInline: true, styles: ["\n :host {\n display: flex;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n\n flex-direction: column;\n\n width: 100%;\n height: 100%;\n\n contain: layout size style;\n }\n .tabs-inner {\n position: relative;\n\n flex: 1;\n\n contain: layout size style;\n }\n "], dependencies: [{ kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
27
|
-
}
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, decorators: [{
|
|
29
|
-
type: Component,
|
|
30
|
-
args: [{ selector: 'ion-tabs', template: `
|
|
31
|
-
<ng-content select="[slot=top]"></ng-content>
|
|
32
|
-
<div class="tabs-inner" #tabsInner>
|
|
33
|
-
<ion-router-outlet
|
|
34
|
-
*ngIf="tabs.length === 0"
|
|
35
|
-
#outlet
|
|
36
|
-
tabs="true"
|
|
37
|
-
(stackWillChange)="onStackWillChange($event)"
|
|
38
|
-
(stackDidChange)="onStackDidChange($event)"
|
|
39
|
-
></ion-router-outlet>
|
|
40
|
-
<ng-content *ngIf="tabs.length > 0" select="ion-tab"></ng-content>
|
|
41
|
-
</div>
|
|
42
|
-
<ng-content></ng-content>
|
|
43
|
-
`, standalone: true, imports: [IonRouterOutlet, NgIf], styles: ["\n :host {\n display: flex;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n\n flex-direction: column;\n\n width: 100%;\n height: 100%;\n\n contain: layout size style;\n }\n .tabs-inner {\n position: relative;\n\n flex: 1;\n\n contain: layout size style;\n }\n "] }]
|
|
44
|
-
}], propDecorators: { outlet: [{
|
|
45
|
-
type: ViewChild,
|
|
46
|
-
args: ['outlet', { read: IonRouterOutlet, static: false }]
|
|
47
|
-
}], tabBar: [{
|
|
48
|
-
type: ContentChild,
|
|
49
|
-
args: [IonTabBar, { static: false }]
|
|
50
|
-
}], tabBars: [{
|
|
51
|
-
type: ContentChildren,
|
|
52
|
-
args: [IonTabBar]
|
|
53
|
-
}], tabs: [{
|
|
54
|
-
type: ContentChildren,
|
|
55
|
-
args: [IonTab]
|
|
56
|
-
}] } });
|
|
57
|
-
//# sourceMappingURL=tabs.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.js","sourceRoot":"","sources":["../../../src/standalone/navigation/tabs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,eAAe,EAAE,SAAS,EAAa,MAAM,eAAe,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAE/D,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAE1D,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;;AA+ClD,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACyB,MAAM,CAAkB;IAE3C,MAAM,CAAwB;IAC9C,OAAO,CAAuB;IACjC,IAAI,CAAoB;0HALtC,OAAO;8GAAP,OAAO,wGAGJ,SAAS,6DACN,SAAS,uCACT,MAAM,0GAJM,eAAe,oDA5ClC;;;;;;;;;;;;;GAaT,sdA4BS,eAAe,8DAAE,IAAI;;2FAEpB,OAAO;kBA7CnB,SAAS;+BACE,UAAU,YACV;;;;;;;;;;;;;GAaT,cACW,IAAI,WA2BP,CAAC,eAAe,EAAE,IAAI,CAAC;;sBAG/B,SAAS;uBAAC,QAAQ,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,KAAK,EAAE;;sBAE5D,YAAY;uBAAC,SAAS,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE;;sBACzC,eAAe;uBAAC,SAAS;;sBACzB,eAAe;uBAAC,MAAM","sourcesContent":["import { NgIf } from '@angular/common';\nimport { Component, ContentChild, ContentChildren, ViewChild, QueryList } from '@angular/core';\nimport { IonTabs as IonTabsBase } from '@ionic/angular/common';\n\nimport { IonTabBar, IonTab } from '../directives/proxies';\n\nimport { IonRouterOutlet } from './router-outlet';\n\n@Component({\n selector: 'ion-tabs',\n template: `\n <ng-content select=\"[slot=top]\"></ng-content>\n <div class=\"tabs-inner\" #tabsInner>\n <ion-router-outlet\n *ngIf=\"tabs.length === 0\"\n #outlet\n tabs=\"true\"\n (stackWillChange)=\"onStackWillChange($event)\"\n (stackDidChange)=\"onStackDidChange($event)\"\n ></ion-router-outlet>\n <ng-content *ngIf=\"tabs.length > 0\" select=\"ion-tab\"></ng-content>\n </div>\n <ng-content></ng-content>\n `,\n standalone: true,\n styles: [\n `\n :host {\n display: flex;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n\n flex-direction: column;\n\n width: 100%;\n height: 100%;\n\n contain: layout size style;\n }\n .tabs-inner {\n position: relative;\n\n flex: 1;\n\n contain: layout size style;\n }\n `,\n ],\n imports: [IonRouterOutlet, NgIf],\n})\nexport class IonTabs extends IonTabsBase {\n @ViewChild('outlet', { read: IonRouterOutlet, static: false }) outlet: IonRouterOutlet;\n\n @ContentChild(IonTabBar, { static: false }) tabBar: IonTabBar | undefined;\n @ContentChildren(IonTabBar) tabBars: QueryList<IonTabBar>;\n @ContentChildren(IonTab) tabs: QueryList<IonTab>;\n}\n"]}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import { IonModal as IonModalBase, ProxyCmp } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-modal.js';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/common";
|
|
8
|
-
let IonModal = class IonModal extends IonModalBase {
|
|
9
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonModal, isStandalone: true, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
11
|
-
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
12
|
-
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { 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 });
|
|
13
|
-
};
|
|
14
|
-
IonModal = __decorate([
|
|
15
|
-
ProxyCmp({
|
|
16
|
-
defineCustomElementFn: defineCustomElement,
|
|
17
|
-
})
|
|
18
|
-
], IonModal);
|
|
19
|
-
export { IonModal };
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, decorators: [{
|
|
21
|
-
type: Component,
|
|
22
|
-
args: [{
|
|
23
|
-
selector: 'ion-modal',
|
|
24
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
25
|
-
template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
26
|
-
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
27
|
-
</div>`,
|
|
28
|
-
standalone: true,
|
|
29
|
-
imports: [CommonModule],
|
|
30
|
-
}]
|
|
31
|
-
}] });
|
|
32
|
-
//# sourceMappingURL=modal.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"modal.js","sourceRoot":"","sources":["../../../src/standalone/overlays/modal.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,QAAQ,IAAI,YAAY,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;;AAcnE,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,YAAY;0HAA7B,QAAQ;8GAAR,QAAQ,4FANT;;SAEH,2DAEG,YAAY;;AAEX,QAAQ;IAZpB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;KAC3C,CAAC;GAUW,QAAQ,CAAwB;;2FAAhC,QAAQ;kBATpB,SAAS;mBAAC;oBACT,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE;;SAEH;oBACP,UAAU,EAAE,IAAI;oBAChB,OAAO,EAAE,CAAC,YAAY,CAAC;iBACxB","sourcesContent":["import { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { IonModal as IonModalBase, ProxyCmp } from '@ionic/angular/common';\nimport { defineCustomElement } from '@ionic/core/components/ion-modal.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n})\n@Component({\n selector: 'ion-modal',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `<div class=\"ion-delegate-host ion-page\" *ngIf=\"isCmpOpen || keepContentsMounted\">\n <ng-container [ngTemplateOutlet]=\"template\"></ng-container>\n </div>`,\n standalone: true,\n imports: [CommonModule],\n})\nexport class IonModal extends IonModalBase {}\n"]}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
-
import { IonPopover as IonPopoverBase, ProxyCmp } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-popover.js';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "@angular/common";
|
|
8
|
-
let IonPopover = class IonPopover extends IonPopoverBase {
|
|
9
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
10
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPopover, isStandalone: true, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { 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 });
|
|
11
|
-
};
|
|
12
|
-
IonPopover = __decorate([
|
|
13
|
-
ProxyCmp({
|
|
14
|
-
defineCustomElementFn: defineCustomElement,
|
|
15
|
-
})
|
|
16
|
-
], IonPopover);
|
|
17
|
-
export { IonPopover };
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, decorators: [{
|
|
19
|
-
type: Component,
|
|
20
|
-
args: [{
|
|
21
|
-
selector: 'ion-popover',
|
|
22
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
23
|
-
template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`,
|
|
24
|
-
standalone: true,
|
|
25
|
-
imports: [CommonModule],
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
|
28
|
-
//# sourceMappingURL=popover.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"popover.js","sourceRoot":"","sources":["../../../src/standalone/overlays/popover.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AACnE,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;;;AAYrE,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,cAAc;0HAAjC,UAAU;8GAAV,UAAU,8FAJX,sGAAsG,2DAEtG,YAAY;;AAEX,UAAU;IAVtB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;KAC3C,CAAC;GAQW,UAAU,CAA0B;;2FAApC,UAAU;kBAPtB,SAAS;mBAAC;oBACT,QAAQ,EAAE,aAAa;oBACvB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,sGAAsG;oBAChH,UAAU,EAAE,IAAI;oBAChB,OAAO,EAAE,CAAC,YAAY,CAAC;iBACxB","sourcesContent":["import { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { IonPopover as IonPopoverBase, ProxyCmp } from '@ionic/angular/common';\nimport { defineCustomElement } from '@ionic/core/components/ion-popover.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n})\n@Component({\n selector: 'ion-popover',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `<ng-container [ngTemplateOutlet]=\"template\" *ngIf=\"isCmpOpen || keepContentsMounted\"></ng-container>`,\n standalone: true,\n imports: [CommonModule],\n})\nexport class IonPopover extends IonPopoverBase {}\n"]}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { actionSheetController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-action-sheet.js';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class ActionSheetController extends OverlayBaseController {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(actionSheetController);
|
|
9
|
-
defineCustomElement();
|
|
10
|
-
}
|
|
11
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
15
|
-
type: Injectable,
|
|
16
|
-
args: [{
|
|
17
|
-
providedIn: 'root',
|
|
18
|
-
}]
|
|
19
|
-
}], ctorParameters: () => [] });
|
|
20
|
-
//# sourceMappingURL=action-sheet-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"action-sheet-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/action-sheet-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;;AAKjF,MAAM,OAAO,qBAAsB,SAAQ,qBAAoE;IAC7G;QACE,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAC7B,mBAAmB,EAAE,CAAC;IACxB,CAAC;0HAJU,qBAAqB;8HAArB,qBAAqB,cAFpB,MAAM;;2FAEP,qBAAqB;kBAHjC,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { ActionSheetOptions } from '@ionic/core/components';\nimport { actionSheetController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-action-sheet.js';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ActionSheetController extends OverlayBaseController<ActionSheetOptions, HTMLIonActionSheetElement> {\n constructor() {\n super(actionSheetController);\n defineCustomElement();\n }\n}\n"]}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { alertController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-alert.js';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class AlertController extends OverlayBaseController {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(alertController);
|
|
9
|
-
defineCustomElement();
|
|
10
|
-
}
|
|
11
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, decorators: [{
|
|
15
|
-
type: Injectable,
|
|
16
|
-
args: [{
|
|
17
|
-
providedIn: 'root',
|
|
18
|
-
}]
|
|
19
|
-
}], ctorParameters: () => [] });
|
|
20
|
-
//# sourceMappingURL=alert-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"alert-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/alert-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAK1E,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IAC3F;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,mBAAmB,EAAE,CAAC;IACxB,CAAC;0HAJU,eAAe;8HAAf,eAAe,cAFd,MAAM;;2FAEP,eAAe;kBAH3B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { AlertOptions } from '@ionic/core/components';\nimport { alertController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-alert.js';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AlertController extends OverlayBaseController<AlertOptions, HTMLIonAlertElement> {\n constructor() {\n super(alertController);\n defineCustomElement();\n }\n}\n"]}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { createAnimation, getTimeGivenProgression } from '@ionic/core/components';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class AnimationController {
|
|
5
|
-
/**
|
|
6
|
-
* Create a new animation
|
|
7
|
-
*/
|
|
8
|
-
create(animationId) {
|
|
9
|
-
return createAnimation(animationId);
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* EXPERIMENTAL
|
|
13
|
-
*
|
|
14
|
-
* Given a progression and a cubic bezier function,
|
|
15
|
-
* this utility returns the time value(s) at which the
|
|
16
|
-
* cubic bezier reaches the given time progression.
|
|
17
|
-
*
|
|
18
|
-
* If the cubic bezier never reaches the progression
|
|
19
|
-
* the result will be an empty array.
|
|
20
|
-
*
|
|
21
|
-
* This is most useful for switching between easing curves
|
|
22
|
-
* when doing a gesture animation (i.e. going from linear easing
|
|
23
|
-
* during a drag, to another easing when `progressEnd` is called)
|
|
24
|
-
*/
|
|
25
|
-
easingTime(p0, p1, p2, p3, progression) {
|
|
26
|
-
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
27
|
-
}
|
|
28
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
29
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
30
|
-
}
|
|
31
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, decorators: [{
|
|
32
|
-
type: Injectable,
|
|
33
|
-
args: [{
|
|
34
|
-
providedIn: 'root',
|
|
35
|
-
}]
|
|
36
|
-
}] });
|
|
37
|
-
//# sourceMappingURL=animation-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"animation-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/animation-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,OAAO,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;;AAKlF,MAAM,OAAO,mBAAmB;IAC9B;;OAEG;IACH,MAAM,CAAC,WAAoB;QACzB,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC;IACtC,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,UAAU,CAAC,EAAY,EAAE,EAAY,EAAE,EAAY,EAAE,EAAY,EAAE,WAAmB;QACpF,OAAO,uBAAuB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,WAAW,CAAC,CAAC;IAC9D,CAAC;0HAxBU,mBAAmB;8HAAnB,mBAAmB,cAFlB,MAAM;;2FAEP,mBAAmB;kBAH/B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport type { Animation } from '@ionic/core';\nimport { createAnimation, getTimeGivenProgression } from '@ionic/core/components';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AnimationController {\n /**\n * Create a new animation\n */\n create(animationId?: string): Animation {\n return createAnimation(animationId);\n }\n\n /**\n * EXPERIMENTAL\n *\n * Given a progression and a cubic bezier function,\n * this utility returns the time value(s) at which the\n * cubic bezier reaches the given time progression.\n *\n * If the cubic bezier never reaches the progression\n * the result will be an empty array.\n *\n * This is most useful for switching between easing curves\n * when doing a gesture animation (i.e. going from linear easing\n * during a drag, to another easing when `progressEnd` is called)\n */\n easingTime(p0: number[], p1: number[], p2: number[], p3: number[], progression: number): number[] {\n return getTimeGivenProgression(p0, p1, p2, p3, progression);\n }\n}\n"]}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { createGesture } from '@ionic/core/components';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class GestureController {
|
|
5
|
-
zone;
|
|
6
|
-
constructor(zone) {
|
|
7
|
-
this.zone = zone;
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Create a new gesture
|
|
11
|
-
*/
|
|
12
|
-
create(opts, runInsideAngularZone = false) {
|
|
13
|
-
if (runInsideAngularZone) {
|
|
14
|
-
Object.getOwnPropertyNames(opts).forEach((key) => {
|
|
15
|
-
if (typeof opts[key] === 'function') {
|
|
16
|
-
const fn = opts[key];
|
|
17
|
-
opts[key] = (...props) => this.zone.run(() => fn(...props));
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
return createGesture(opts);
|
|
22
|
-
}
|
|
23
|
-
/** @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 });
|
|
24
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
25
|
-
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, decorators: [{
|
|
27
|
-
type: Injectable,
|
|
28
|
-
args: [{
|
|
29
|
-
providedIn: 'root',
|
|
30
|
-
}]
|
|
31
|
-
}], ctorParameters: () => [{ type: i0.NgZone }] });
|
|
32
|
-
//# sourceMappingURL=gesture-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"gesture-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/gesture-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAU,MAAM,eAAe,CAAC;AAEnD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;;AAKvD,MAAM,OAAO,iBAAiB;IACR;IAApB,YAAoB,IAAY;QAAZ,SAAI,GAAJ,IAAI,CAAQ;IAAG,CAAC;IACpC;;OAEG;IACH,MAAM,CAAC,IAAmB,EAAE,oBAAoB,GAAG,KAAK;QACtD,IAAI,oBAAoB,EAAE,CAAC;YACzB,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;gBAC/C,IAAI,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,UAAU,EAAE,CAAC;oBACpC,MAAM,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;oBACrB,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,KAAY,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;gBACrE,CAAC;YACH,CAAC,CAAC,CAAC;QACL,CAAC;QAED,OAAO,aAAa,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;0HAhBU,iBAAiB;8HAAjB,iBAAiB,cAFhB,MAAM;;2FAEP,iBAAiB;kBAH7B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable, NgZone } from '@angular/core';\nimport type { Gesture, GestureConfig } from '@ionic/core/components';\nimport { createGesture } from '@ionic/core/components';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GestureController {\n constructor(private zone: NgZone) {}\n /**\n * Create a new gesture\n */\n create(opts: GestureConfig, runInsideAngularZone = false): Gesture {\n if (runInsideAngularZone) {\n Object.getOwnPropertyNames(opts).forEach((key) => {\n if (typeof opts[key] === 'function') {\n const fn = opts[key];\n opts[key] = (...props: any[]) => this.zone.run(() => fn(...props));\n }\n });\n }\n\n return createGesture(opts);\n }\n}\n"]}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { DOCUMENT } from '@angular/common';
|
|
2
|
-
import { APP_INITIALIZER, makeEnvironmentProviders } from '@angular/core';
|
|
3
|
-
import { AngularDelegate, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';
|
|
4
|
-
import { initialize } from '@ionic/core/components';
|
|
5
|
-
import { ModalController } from './modal-controller';
|
|
6
|
-
import { PopoverController } from './popover-controller';
|
|
7
|
-
export const provideIonicAngular = (config = {}) => {
|
|
8
|
-
return makeEnvironmentProviders([
|
|
9
|
-
{
|
|
10
|
-
provide: ConfigToken,
|
|
11
|
-
useValue: config,
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
provide: APP_INITIALIZER,
|
|
15
|
-
useFactory: initializeIonicAngular,
|
|
16
|
-
multi: true,
|
|
17
|
-
deps: [ConfigToken, DOCUMENT],
|
|
18
|
-
},
|
|
19
|
-
provideComponentInputBinding(),
|
|
20
|
-
AngularDelegate,
|
|
21
|
-
ModalController,
|
|
22
|
-
PopoverController,
|
|
23
|
-
]);
|
|
24
|
-
};
|
|
25
|
-
const initializeIonicAngular = (config, doc) => {
|
|
26
|
-
return () => {
|
|
27
|
-
/**
|
|
28
|
-
* By default Ionic Framework hides elements that
|
|
29
|
-
* are not hydrated, but in the CE build there is no
|
|
30
|
-
* hydration.
|
|
31
|
-
* TODO FW-2797: Remove when all integrations have been
|
|
32
|
-
* migrated to CE build.
|
|
33
|
-
*/
|
|
34
|
-
doc.documentElement.classList.add('ion-ce');
|
|
35
|
-
initialize(config);
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
//# sourceMappingURL=ionic-angular.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ionic-angular.js","sourceRoot":"","sources":["../../../src/standalone/providers/ionic-angular.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAE1E,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,4BAA4B,EAAE,MAAM,uBAAuB,CAAC;AACnG,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAGpD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAMzD,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,SAA6C,EAAE,EAAwB,EAAE;IAC3G,OAAO,wBAAwB,CAAC;QAC9B;YACE,OAAO,EAAE,WAAW;YACpB,QAAQ,EAAE,MAAM;SACjB;QACD;YACE,OAAO,EAAE,eAAe;YACxB,UAAU,EAAE,sBAAsB;YAClC,KAAK,EAAE,IAAI;YACX,IAAI,EAAE,CAAC,WAAW,EAAE,QAAQ,CAAC;SAC9B;QACD,4BAA4B,EAAE;QAC9B,eAAe;QACf,eAAe;QACf,iBAAiB;KAClB,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,sBAAsB,GAAG,CAAC,MAAmB,EAAE,GAAa,EAAE,EAAE;IACpE,OAAO,GAAG,EAAE;QACV;;;;;;WAMG;QACH,GAAG,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAE5C,UAAU,CAAC,MAAM,CAAC,CAAC;IACrB,CAAC,CAAC;AACJ,CAAC,CAAC","sourcesContent":["import { DOCUMENT } from '@angular/common';\nimport { APP_INITIALIZER, makeEnvironmentProviders } from '@angular/core';\nimport type { EnvironmentProviders } from '@angular/core';\nimport { AngularDelegate, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';\nimport { initialize } from '@ionic/core/components';\nimport type { IonicConfig } from '@ionic/core/components';\n\nimport { ModalController } from './modal-controller';\nimport { PopoverController } from './popover-controller';\n\ntype OptInAngularFeatures = {\n useSetInputAPI?: boolean;\n};\n\nexport const provideIonicAngular = (config: IonicConfig & OptInAngularFeatures = {}): EnvironmentProviders => {\n return makeEnvironmentProviders([\n {\n provide: ConfigToken,\n useValue: config,\n },\n {\n provide: APP_INITIALIZER,\n useFactory: initializeIonicAngular,\n multi: true,\n deps: [ConfigToken, DOCUMENT],\n },\n provideComponentInputBinding(),\n AngularDelegate,\n ModalController,\n PopoverController,\n ]);\n};\n\nconst initializeIonicAngular = (config: IonicConfig, doc: Document) => {\n return () => {\n /**\n * By default Ionic Framework hides elements that\n * are not hydrated, but in the CE build there is no\n * hydration.\n * TODO FW-2797: Remove when all integrations have been\n * migrated to CE build.\n */\n doc.documentElement.classList.add('ion-ce');\n\n initialize(config);\n };\n};\n"]}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { loadingController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-loading.js';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class LoadingController extends OverlayBaseController {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(loadingController);
|
|
9
|
-
defineCustomElement();
|
|
10
|
-
}
|
|
11
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, decorators: [{
|
|
15
|
-
type: Injectable,
|
|
16
|
-
args: [{
|
|
17
|
-
providedIn: 'root',
|
|
18
|
-
}]
|
|
19
|
-
}], ctorParameters: () => [] });
|
|
20
|
-
//# sourceMappingURL=loading-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"loading-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/loading-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;;AAK5E,MAAM,OAAO,iBAAkB,SAAQ,qBAA4D;IACjG;QACE,KAAK,CAAC,iBAAiB,CAAC,CAAC;QACzB,mBAAmB,EAAE,CAAC;IACxB,CAAC;0HAJU,iBAAiB;8HAAjB,iBAAiB,cAFhB,MAAM;;2FAEP,iBAAiB;kBAH7B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { LoadingOptions } from '@ionic/core/components';\nimport { loadingController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-loading.js';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LoadingController extends OverlayBaseController<LoadingOptions, HTMLIonLoadingElement> {\n constructor() {\n super(loadingController);\n defineCustomElement();\n }\n}\n"]}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { MenuController as MenuControllerBase } from '@ionic/angular/common';
|
|
3
|
-
import { menuController } from '@ionic/core/components';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class MenuController extends MenuControllerBase {
|
|
6
|
-
constructor() {
|
|
7
|
-
super(menuController);
|
|
8
|
-
}
|
|
9
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, decorators: [{
|
|
13
|
-
type: Injectable,
|
|
14
|
-
args: [{
|
|
15
|
-
providedIn: 'root',
|
|
16
|
-
}]
|
|
17
|
-
}], ctorParameters: () => [] });
|
|
18
|
-
//# sourceMappingURL=menu-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"menu-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/menu-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,cAAc,IAAI,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;;AAKxD,MAAM,OAAO,cAAe,SAAQ,kBAAkB;IACpD;QACE,KAAK,CAAC,cAAc,CAAC,CAAC;IACxB,CAAC;0HAHU,cAAc;8HAAd,cAAc,cAFb,MAAM;;2FAEP,cAAc;kBAH1B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { MenuController as MenuControllerBase } from '@ionic/angular/common';\nimport { menuController } from '@ionic/core/components';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class MenuController extends MenuControllerBase {\n constructor() {\n super(menuController);\n }\n}\n"]}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Injector, Injectable, EnvironmentInjector, inject } from '@angular/core';
|
|
2
|
-
import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { modalController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-modal.js';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class ModalController extends OverlayBaseController {
|
|
7
|
-
angularDelegate = inject(AngularDelegate);
|
|
8
|
-
injector = inject(Injector);
|
|
9
|
-
environmentInjector = inject(EnvironmentInjector);
|
|
10
|
-
constructor() {
|
|
11
|
-
super(modalController);
|
|
12
|
-
defineCustomElement();
|
|
13
|
-
}
|
|
14
|
-
create(opts) {
|
|
15
|
-
const { injector: customInjector, ...restOpts } = opts;
|
|
16
|
-
return super.create({
|
|
17
|
-
...restOpts,
|
|
18
|
-
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
22
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController });
|
|
23
|
-
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, decorators: [{
|
|
25
|
-
type: Injectable
|
|
26
|
-
}], ctorParameters: () => [] });
|
|
27
|
-
//# sourceMappingURL=modal-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"modal-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/modal-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAG1E,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IACnF,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC,CAAC;IAC1C,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC5B,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC;IAE1D;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,mBAAmB,EAAE,CAAC;IACxB,CAAC;IAED,MAAM,CAAC,IAAkB;QACvB,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC;QACvD,OAAO,KAAK,CAAC,MAAM,CAAC;YAClB,GAAG,QAAQ;YACX,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,cAAc,CAAC;SACxG,CAAC,CAAC;IACL,CAAC;0HAhBU,eAAe;8HAAf,eAAe;;2FAAf,eAAe;kBAD3B,UAAU","sourcesContent":["import { Injector, Injectable, EnvironmentInjector, inject } from '@angular/core';\nimport { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';\nimport type { ModalOptions } from '@ionic/angular/common';\nimport { modalController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-modal.js';\n\n@Injectable()\nexport class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {\n private angularDelegate = inject(AngularDelegate);\n private injector = inject(Injector);\n private environmentInjector = inject(EnvironmentInjector);\n\n constructor() {\n super(modalController);\n defineCustomElement();\n }\n\n create(opts: ModalOptions): Promise<HTMLIonModalElement> {\n const { injector: customInjector, ...restOpts } = opts;\n return super.create({\n ...restOpts,\n delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),\n });\n }\n}\n"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Injector, inject, EnvironmentInjector } from '@angular/core';
|
|
2
|
-
import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { popoverController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-popover.js';
|
|
5
|
-
export class PopoverController extends OverlayBaseController {
|
|
6
|
-
angularDelegate = inject(AngularDelegate);
|
|
7
|
-
injector = inject(Injector);
|
|
8
|
-
environmentInjector = inject(EnvironmentInjector);
|
|
9
|
-
constructor() {
|
|
10
|
-
super(popoverController);
|
|
11
|
-
defineCustomElement();
|
|
12
|
-
}
|
|
13
|
-
create(opts) {
|
|
14
|
-
const { injector: customInjector, ...restOpts } = opts;
|
|
15
|
-
return super.create({
|
|
16
|
-
...restOpts,
|
|
17
|
-
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=popover-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"popover-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/popover-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE/E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;AAE5E,MAAM,OAAO,iBAAkB,SAAQ,qBAA4D;IACzF,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC,CAAC;IAC1C,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC5B,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC;IAE1D;QACE,KAAK,CAAC,iBAAiB,CAAC,CAAC;QACzB,mBAAmB,EAAE,CAAC;IACxB,CAAC;IAED,MAAM,CAAC,IAAoB;QACzB,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC;QACvD,OAAO,KAAK,CAAC,MAAM,CAAC;YAClB,GAAG,QAAQ;YACX,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,IAAI,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC;SAC1G,CAAC,CAAC;IACL,CAAC;CACF","sourcesContent":["import { Injector, inject, EnvironmentInjector } from '@angular/core';\nimport { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';\nimport type { PopoverOptions } from '@ionic/angular/common';\nimport { popoverController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-popover.js';\n\nexport class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {\n private angularDelegate = inject(AngularDelegate);\n private injector = inject(Injector);\n private environmentInjector = inject(EnvironmentInjector);\n\n constructor() {\n super(popoverController);\n defineCustomElement();\n }\n\n create(opts: PopoverOptions): Promise<HTMLIonPopoverElement> {\n const { injector: customInjector, ...restOpts } = opts;\n return super.create({\n ...restOpts,\n delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),\n });\n }\n}\n"]}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { OverlayBaseController } from '@ionic/angular/common';
|
|
3
|
-
import { toastController } from '@ionic/core/components';
|
|
4
|
-
import { defineCustomElement } from '@ionic/core/components/ion-toast.js';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class ToastController extends OverlayBaseController {
|
|
7
|
-
constructor() {
|
|
8
|
-
super(toastController);
|
|
9
|
-
defineCustomElement();
|
|
10
|
-
}
|
|
11
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, decorators: [{
|
|
15
|
-
type: Injectable,
|
|
16
|
-
args: [{
|
|
17
|
-
providedIn: 'root',
|
|
18
|
-
}]
|
|
19
|
-
}], ctorParameters: () => [] });
|
|
20
|
-
//# sourceMappingURL=toast-controller.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"toast-controller.js","sourceRoot":"","sources":["../../../src/standalone/providers/toast-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAK1E,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IAC3F;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;QACvB,mBAAmB,EAAE,CAAC;IACxB,CAAC;0HAJU,eAAe;8HAAf,eAAe,cAFd,MAAM;;2FAEP,eAAe;kBAH3B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { ToastOptions } from '@ionic/core/components';\nimport { toastController } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-toast.js';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ToastController extends OverlayBaseController<ToastOptions, HTMLIonToastElement> {\n constructor() {\n super(toastController);\n defineCustomElement();\n }\n}\n"]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|