@ionic/angular 8.8.19-dev.11787076261.138d5922 → 8.8.19-dev.11787084784.17cf25cf
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -9
- package/{dist/common → common}/directives/control-value-accessors/value-accessor.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/back-button.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/nav.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/router-link-delegate.d.ts +2 -2
- package/{dist/common → common}/directives/navigation/router-outlet.d.ts +1 -1
- package/{dist/common → common}/directives/navigation/tabs.d.ts +1 -9
- package/{dist/common → common}/index.d.ts +1 -1
- package/{dist/common → common}/overlays/modal.d.ts +1 -1
- package/{dist/common → common}/overlays/popover.d.ts +1 -1
- package/{dist/common → common}/providers/angular-delegate.d.ts +2 -2
- package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
- package/{dist/lazy/directives → directives}/proxies-list.d.ts +1 -1
- package/{dist/lazy/directives → directives}/proxies.d.ts +191 -290
- package/esm2022/app-initialize.mjs +29 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
- package/esm2022/common/directives/navigation/back-button.mjs +61 -0
- package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
- package/esm2022/common/directives/navigation/nav.mjs +49 -0
- package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
- package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
- package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
- package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
- package/esm2022/common/directives/navigation/tabs.mjs +279 -0
- package/esm2022/common/index.mjs +20 -0
- package/esm2022/common/ionic-angular-common.mjs +5 -0
- package/esm2022/common/overlays/modal.mjs +103 -0
- package/esm2022/common/overlays/popover.mjs +91 -0
- package/esm2022/common/providers/angular-delegate.mjs +210 -0
- package/esm2022/common/providers/config.mjs +45 -0
- package/esm2022/common/providers/dom-controller.mjs +45 -0
- package/esm2022/common/providers/menu-controller.mjs +114 -0
- package/esm2022/common/providers/nav-controller.mjs +235 -0
- package/esm2022/common/providers/platform.mjs +258 -0
- package/esm2022/common/types/interfaces.mjs +2 -0
- package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
- package/esm2022/common/types/overlay-options.mjs +2 -0
- package/esm2022/common/utils/overlay.mjs +26 -0
- package/esm2022/common/utils/proxy.mjs +47 -0
- package/esm2022/common/utils/routing.mjs +55 -0
- package/esm2022/common/utils/util.mjs +10 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
- package/esm2022/directives/control-value-accessors/index.mjs +5 -0
- package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
- package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
- package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
- package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
- package/esm2022/directives/navigation/ion-nav.mjs +21 -0
- package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
- package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
- package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
- package/esm2022/directives/overlays/modal.mjs +22 -0
- package/esm2022/directives/overlays/popover.mjs +18 -0
- package/esm2022/directives/proxies-list.mjs +90 -0
- package/esm2022/directives/proxies.mjs +2373 -0
- package/esm2022/directives/validators/index.mjs +3 -0
- package/esm2022/directives/validators/max-validator.mjs +27 -0
- package/esm2022/directives/validators/min-validator.mjs +27 -0
- package/esm2022/index.mjs +32 -0
- package/esm2022/ionic-angular.mjs +5 -0
- package/esm2022/ionic-module.mjs +111 -0
- package/esm2022/providers/action-sheet-controller.mjs +19 -0
- package/esm2022/providers/alert-controller.mjs +19 -0
- package/esm2022/providers/animation-controller.mjs +38 -0
- package/esm2022/providers/gesture-controller.mjs +33 -0
- package/esm2022/providers/loading-controller.mjs +19 -0
- package/esm2022/providers/menu-controller.mjs +19 -0
- package/esm2022/providers/modal-controller.mjs +26 -0
- package/esm2022/providers/picker-controller.mjs +22 -0
- package/esm2022/providers/popover-controller.mjs +19 -0
- package/esm2022/providers/toast-controller.mjs +19 -0
- package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/directives/checkbox.mjs +76 -0
- package/esm2022/standalone/directives/datetime.mjs +95 -0
- package/esm2022/standalone/directives/icon.mjs +35 -0
- package/esm2022/standalone/directives/index.mjs +13 -0
- package/esm2022/standalone/directives/input-otp.mjs +90 -0
- package/esm2022/standalone/directives/input.mjs +113 -0
- package/esm2022/standalone/directives/proxies.mjs +2260 -0
- package/esm2022/standalone/directives/radio-group.mjs +60 -0
- package/esm2022/standalone/directives/range.mjs +78 -0
- package/esm2022/standalone/directives/searchbar.mjs +82 -0
- package/esm2022/standalone/directives/segment.mjs +60 -0
- package/esm2022/standalone/directives/select.mjs +84 -0
- package/esm2022/standalone/directives/textarea.mjs +91 -0
- package/esm2022/standalone/directives/toggle.mjs +76 -0
- package/esm2022/standalone/index.mjs +25 -0
- package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
- package/esm2022/standalone/navigation/back-button.mjs +32 -0
- package/esm2022/standalone/navigation/nav.mjs +28 -0
- package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
- package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
- package/esm2022/standalone/navigation/tabs.mjs +58 -0
- package/esm2022/standalone/overlays/modal.mjs +32 -0
- package/esm2022/standalone/overlays/popover.mjs +28 -0
- package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
- package/esm2022/standalone/providers/alert-controller.mjs +21 -0
- package/esm2022/standalone/providers/animation-controller.mjs +38 -0
- package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
- package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
- package/esm2022/standalone/providers/loading-controller.mjs +21 -0
- package/esm2022/standalone/providers/menu-controller.mjs +19 -0
- package/esm2022/standalone/providers/modal-controller.mjs +28 -0
- package/esm2022/standalone/providers/picker-controller.mjs +24 -0
- package/esm2022/standalone/providers/popover-controller.mjs +21 -0
- package/esm2022/standalone/providers/toast-controller.mjs +21 -0
- package/fesm2022/ionic-angular-common.mjs +2791 -0
- package/fesm2022/ionic-angular-common.mjs.map +1 -0
- package/fesm2022/ionic-angular-standalone.mjs +3562 -0
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
- package/fesm2022/ionic-angular.mjs +3139 -0
- package/fesm2022/ionic-angular.mjs.map +1 -0
- package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
- package/ionic-module.d.ts +28 -0
- package/package.json +30 -172
- package/providers/picker-controller.d.ts +11 -0
- package/{dist/schematics → schematics}/add/index.js +6 -6
- package/schematics/utils/ast.js +32 -0
- package/{dist/schematics → schematics}/utils/config.js +11 -10
- package/{dist/schematics → schematics}/utils/package.js +4 -6
- package/standalone/directives/proxies.d.ts +1035 -0
- package/{dist/standalone → standalone}/index.d.ts +2 -1
- package/standalone/providers/picker-controller.d.ts +11 -0
- package/dist/common/directives/control-value-accessors/index.js +0 -2
- package/dist/common/directives/control-value-accessors/index.js.map +0 -1
- package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
- package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
- package/dist/common/directives/navigation/back-button.js +0 -61
- package/dist/common/directives/navigation/back-button.js.map +0 -1
- package/dist/common/directives/navigation/nav-params.js +0 -47
- package/dist/common/directives/navigation/nav-params.js.map +0 -1
- package/dist/common/directives/navigation/nav.js +0 -49
- package/dist/common/directives/navigation/nav.js.map +0 -1
- package/dist/common/directives/navigation/router-link-delegate.js +0 -188
- package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
- package/dist/common/directives/navigation/router-outlet.js +0 -476
- package/dist/common/directives/navigation/router-outlet.js.map +0 -1
- package/dist/common/directives/navigation/stack-controller.js +0 -282
- package/dist/common/directives/navigation/stack-controller.js.map +0 -1
- package/dist/common/directives/navigation/stack-utils.js +0 -73
- package/dist/common/directives/navigation/stack-utils.js.map +0 -1
- package/dist/common/directives/navigation/tabs.js +0 -290
- package/dist/common/directives/navigation/tabs.js.map +0 -1
- package/dist/common/index.js +0 -20
- package/dist/common/index.js.map +0 -1
- package/dist/common/overlays/modal.js +0 -96
- package/dist/common/overlays/modal.js.map +0 -1
- package/dist/common/overlays/popover.js +0 -84
- package/dist/common/overlays/popover.js.map +0 -1
- package/dist/common/providers/angular-delegate.js +0 -229
- package/dist/common/providers/angular-delegate.js.map +0 -1
- package/dist/common/providers/config.js +0 -44
- package/dist/common/providers/config.js.map +0 -1
- package/dist/common/providers/dom-controller.js +0 -44
- package/dist/common/providers/dom-controller.js.map +0 -1
- package/dist/common/providers/menu-controller.js +0 -114
- package/dist/common/providers/menu-controller.js.map +0 -1
- package/dist/common/providers/nav-controller.js +0 -232
- package/dist/common/providers/nav-controller.js.map +0 -1
- package/dist/common/providers/platform.js +0 -256
- package/dist/common/providers/platform.js.map +0 -1
- package/dist/common/types/interfaces.js +0 -2
- package/dist/common/types/interfaces.js.map +0 -1
- package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
- package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
- package/dist/common/types/overlay-options.js +0 -2
- package/dist/common/types/overlay-options.js.map +0 -1
- package/dist/common/utils/overlay.js +0 -26
- package/dist/common/utils/overlay.js.map +0 -1
- package/dist/common/utils/proxy.js +0 -47
- package/dist/common/utils/proxy.js.map +0 -1
- package/dist/common/utils/routing.js +0 -55
- package/dist/common/utils/routing.js.map +0 -1
- package/dist/common/utils/util.js +0 -10
- package/dist/common/utils/util.js.map +0 -1
- package/dist/lazy/app-initialize.js +0 -29
- package/dist/lazy/app-initialize.js.map +0 -1
- package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
- package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
- package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/index.js +0 -5
- package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
- package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
- package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
- package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
- package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
- package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-nav.js +0 -21
- package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
- package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
- package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
- package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
- package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
- package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
- package/dist/lazy/directives/overlays/modal.js +0 -22
- package/dist/lazy/directives/overlays/modal.js.map +0 -1
- package/dist/lazy/directives/overlays/popover.js +0 -18
- package/dist/lazy/directives/overlays/popover.js.map +0 -1
- package/dist/lazy/directives/proxies-list.js +0 -89
- package/dist/lazy/directives/proxies-list.js.map +0 -1
- package/dist/lazy/directives/proxies.js +0 -2759
- package/dist/lazy/directives/proxies.js.map +0 -1
- package/dist/lazy/directives/validators/index.js +0 -3
- package/dist/lazy/directives/validators/index.js.map +0 -1
- package/dist/lazy/directives/validators/max-validator.js +0 -26
- package/dist/lazy/directives/validators/max-validator.js.map +0 -1
- package/dist/lazy/directives/validators/min-validator.js +0 -26
- package/dist/lazy/directives/validators/min-validator.js.map +0 -1
- package/dist/lazy/index.js +0 -34
- package/dist/lazy/index.js.map +0 -1
- package/dist/lazy/ionic-module.d.ts +0 -38
- package/dist/lazy/ionic-module.js +0 -121
- package/dist/lazy/ionic-module.js.map +0 -1
- package/dist/lazy/providers/action-sheet-controller.js +0 -18
- package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
- package/dist/lazy/providers/alert-controller.js +0 -18
- package/dist/lazy/providers/alert-controller.js.map +0 -1
- package/dist/lazy/providers/animation-controller.js +0 -37
- package/dist/lazy/providers/animation-controller.js.map +0 -1
- package/dist/lazy/providers/gesture-controller.js +0 -32
- package/dist/lazy/providers/gesture-controller.js.map +0 -1
- package/dist/lazy/providers/loading-controller.js +0 -18
- package/dist/lazy/providers/loading-controller.js.map +0 -1
- package/dist/lazy/providers/menu-controller.js +0 -18
- package/dist/lazy/providers/menu-controller.js.map +0 -1
- package/dist/lazy/providers/modal-controller.js +0 -25
- package/dist/lazy/providers/modal-controller.js.map +0 -1
- package/dist/lazy/providers/popover-controller.js +0 -19
- package/dist/lazy/providers/popover-controller.js.map +0 -1
- package/dist/lazy/providers/toast-controller.js +0 -18
- package/dist/lazy/providers/toast-controller.js.map +0 -1
- package/dist/schematics/utils/ast.js +0 -64
- package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
- package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
- package/dist/standalone/directives/checkbox.js +0 -75
- package/dist/standalone/directives/checkbox.js.map +0 -1
- package/dist/standalone/directives/datetime.js +0 -93
- package/dist/standalone/directives/datetime.js.map +0 -1
- package/dist/standalone/directives/icon.js +0 -35
- package/dist/standalone/directives/icon.js.map +0 -1
- package/dist/standalone/directives/index.js +0 -13
- package/dist/standalone/directives/index.js.map +0 -1
- package/dist/standalone/directives/input-otp.js +0 -89
- package/dist/standalone/directives/input-otp.js.map +0 -1
- package/dist/standalone/directives/input.js +0 -112
- package/dist/standalone/directives/input.js.map +0 -1
- package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
- package/dist/standalone/directives/ion-accordion-group.js +0 -40
- package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
- package/dist/standalone/directives/ion-accordion.d.ts +0 -12
- package/dist/standalone/directives/ion-accordion.js +0 -36
- package/dist/standalone/directives/ion-accordion.js.map +0 -1
- package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
- package/dist/standalone/directives/ion-action-sheet.js +0 -62
- package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
- package/dist/standalone/directives/ion-alert.d.ts +0 -58
- package/dist/standalone/directives/ion-alert.js +0 -62
- package/dist/standalone/directives/ion-alert.js.map +0 -1
- package/dist/standalone/directives/ion-app.d.ts +0 -12
- package/dist/standalone/directives/ion-app.js +0 -36
- package/dist/standalone/directives/ion-app.js.map +0 -1
- package/dist/standalone/directives/ion-avatar.d.ts +0 -12
- package/dist/standalone/directives/ion-avatar.js +0 -35
- package/dist/standalone/directives/ion-avatar.js.map +0 -1
- package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
- package/dist/standalone/directives/ion-backdrop.js +0 -40
- package/dist/standalone/directives/ion-backdrop.js.map +0 -1
- package/dist/standalone/directives/ion-badge.d.ts +0 -12
- package/dist/standalone/directives/ion-badge.js +0 -36
- package/dist/standalone/directives/ion-badge.js.map +0 -1
- package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
- package/dist/standalone/directives/ion-breadcrumb.js +0 -43
- package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
- package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
- package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
- package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
- package/dist/standalone/directives/ion-button.d.ts +0 -23
- package/dist/standalone/directives/ion-button.js +0 -43
- package/dist/standalone/directives/ion-button.js.map +0 -1
- package/dist/standalone/directives/ion-buttons.d.ts +0 -12
- package/dist/standalone/directives/ion-buttons.js +0 -36
- package/dist/standalone/directives/ion-buttons.js.map +0 -1
- package/dist/standalone/directives/ion-card-content.d.ts +0 -12
- package/dist/standalone/directives/ion-card-content.js +0 -36
- package/dist/standalone/directives/ion-card-content.js.map +0 -1
- package/dist/standalone/directives/ion-card-header.d.ts +0 -12
- package/dist/standalone/directives/ion-card-header.js +0 -36
- package/dist/standalone/directives/ion-card-header.js.map +0 -1
- package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
- package/dist/standalone/directives/ion-card-subtitle.js +0 -36
- package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
- package/dist/standalone/directives/ion-card-title.d.ts +0 -12
- package/dist/standalone/directives/ion-card-title.js +0 -36
- package/dist/standalone/directives/ion-card-title.js.map +0 -1
- package/dist/standalone/directives/ion-card.d.ts +0 -12
- package/dist/standalone/directives/ion-card.js +0 -36
- package/dist/standalone/directives/ion-card.js.map +0 -1
- package/dist/standalone/directives/ion-chip.d.ts +0 -12
- package/dist/standalone/directives/ion-chip.js +0 -36
- package/dist/standalone/directives/ion-chip.js.map +0 -1
- package/dist/standalone/directives/ion-col.d.ts +0 -12
- package/dist/standalone/directives/ion-col.js +0 -36
- package/dist/standalone/directives/ion-col.js.map +0 -1
- package/dist/standalone/directives/ion-content.d.ts +0 -33
- package/dist/standalone/directives/ion-content.js +0 -47
- package/dist/standalone/directives/ion-content.js.map +0 -1
- package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
- package/dist/standalone/directives/ion-datetime-button.js +0 -36
- package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
- package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
- package/dist/standalone/directives/ion-fab-button.js +0 -43
- package/dist/standalone/directives/ion-fab-button.js.map +0 -1
- package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
- package/dist/standalone/directives/ion-fab-list.js +0 -36
- package/dist/standalone/directives/ion-fab-list.js.map +0 -1
- package/dist/standalone/directives/ion-fab.d.ts +0 -12
- package/dist/standalone/directives/ion-fab.js +0 -37
- package/dist/standalone/directives/ion-fab.js.map +0 -1
- package/dist/standalone/directives/ion-footer.d.ts +0 -12
- package/dist/standalone/directives/ion-footer.js +0 -36
- package/dist/standalone/directives/ion-footer.js.map +0 -1
- package/dist/standalone/directives/ion-grid.d.ts +0 -12
- package/dist/standalone/directives/ion-grid.js +0 -36
- package/dist/standalone/directives/ion-grid.js.map +0 -1
- package/dist/standalone/directives/ion-header.d.ts +0 -12
- package/dist/standalone/directives/ion-header.js +0 -36
- package/dist/standalone/directives/ion-header.js.map +0 -1
- package/dist/standalone/directives/ion-img.d.ts +0 -28
- package/dist/standalone/directives/ion-img.js +0 -46
- package/dist/standalone/directives/ion-img.js.map +0 -1
- package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
- package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
- package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
- package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
- package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
- package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
- package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
- package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
- package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
- package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
- package/dist/standalone/directives/ion-item-divider.js +0 -36
- package/dist/standalone/directives/ion-item-divider.js.map +0 -1
- package/dist/standalone/directives/ion-item-group.d.ts +0 -12
- package/dist/standalone/directives/ion-item-group.js +0 -35
- package/dist/standalone/directives/ion-item-group.js.map +0 -1
- package/dist/standalone/directives/ion-item-option.d.ts +0 -12
- package/dist/standalone/directives/ion-item-option.js +0 -36
- package/dist/standalone/directives/ion-item-option.js.map +0 -1
- package/dist/standalone/directives/ion-item-options.d.ts +0 -18
- package/dist/standalone/directives/ion-item-options.js +0 -40
- package/dist/standalone/directives/ion-item-options.js.map +0 -1
- package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
- package/dist/standalone/directives/ion-item-sliding.js +0 -41
- package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
- package/dist/standalone/directives/ion-item.d.ts +0 -12
- package/dist/standalone/directives/ion-item.js +0 -36
- package/dist/standalone/directives/ion-item.js.map +0 -1
- package/dist/standalone/directives/ion-label.d.ts +0 -12
- package/dist/standalone/directives/ion-label.js +0 -36
- package/dist/standalone/directives/ion-label.js.map +0 -1
- package/dist/standalone/directives/ion-list-header.d.ts +0 -12
- package/dist/standalone/directives/ion-list-header.js +0 -36
- package/dist/standalone/directives/ion-list-header.js.map +0 -1
- package/dist/standalone/directives/ion-list.d.ts +0 -12
- package/dist/standalone/directives/ion-list.js +0 -37
- package/dist/standalone/directives/ion-list.js.map +0 -1
- package/dist/standalone/directives/ion-loading.d.ts +0 -58
- package/dist/standalone/directives/ion-loading.js +0 -62
- package/dist/standalone/directives/ion-loading.js.map +0 -1
- package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
- package/dist/standalone/directives/ion-menu-button.js +0 -36
- package/dist/standalone/directives/ion-menu-button.js.map +0 -1
- package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
- package/dist/standalone/directives/ion-menu-toggle.js +0 -36
- package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
- package/dist/standalone/directives/ion-menu.d.ts +0 -34
- package/dist/standalone/directives/ion-menu.js +0 -50
- package/dist/standalone/directives/ion-menu.js.map +0 -1
- package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
- package/dist/standalone/directives/ion-nav-link.js +0 -36
- package/dist/standalone/directives/ion-nav-link.js.map +0 -1
- package/dist/standalone/directives/ion-note.d.ts +0 -12
- package/dist/standalone/directives/ion-note.js +0 -36
- package/dist/standalone/directives/ion-note.js.map +0 -1
- package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
- package/dist/standalone/directives/ion-picker-column-option.js +0 -36
- package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
- package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
- package/dist/standalone/directives/ion-picker-column.js +0 -41
- package/dist/standalone/directives/ion-picker-column.js.map +0 -1
- package/dist/standalone/directives/ion-picker.d.ts +0 -12
- package/dist/standalone/directives/ion-picker.js +0 -36
- package/dist/standalone/directives/ion-picker.js.map +0 -1
- package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
- package/dist/standalone/directives/ion-progress-bar.js +0 -36
- package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
- package/dist/standalone/directives/ion-radio.d.ts +0 -23
- package/dist/standalone/directives/ion-radio.js +0 -43
- package/dist/standalone/directives/ion-radio.js.map +0 -1
- package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
- package/dist/standalone/directives/ion-refresher-content.js +0 -36
- package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
- package/dist/standalone/directives/ion-refresher.d.ts +0 -45
- package/dist/standalone/directives/ion-refresher.js +0 -53
- package/dist/standalone/directives/ion-refresher.js.map +0 -1
- package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
- package/dist/standalone/directives/ion-reorder-group.js +0 -50
- package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
- package/dist/standalone/directives/ion-reorder.d.ts +0 -12
- package/dist/standalone/directives/ion-reorder.js +0 -35
- package/dist/standalone/directives/ion-reorder.js.map +0 -1
- package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
- package/dist/standalone/directives/ion-ripple-effect.js +0 -37
- package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
- package/dist/standalone/directives/ion-row.d.ts +0 -12
- package/dist/standalone/directives/ion-row.js +0 -35
- package/dist/standalone/directives/ion-row.js.map +0 -1
- package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
- package/dist/standalone/directives/ion-segment-button.js +0 -36
- package/dist/standalone/directives/ion-segment-button.js.map +0 -1
- package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
- package/dist/standalone/directives/ion-segment-content.js +0 -35
- package/dist/standalone/directives/ion-segment-content.js.map +0 -1
- package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
- package/dist/standalone/directives/ion-segment-view.js +0 -40
- package/dist/standalone/directives/ion-segment-view.js.map +0 -1
- package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
- package/dist/standalone/directives/ion-select-modal.js +0 -36
- package/dist/standalone/directives/ion-select-modal.js.map +0 -1
- package/dist/standalone/directives/ion-select-option.d.ts +0 -12
- package/dist/standalone/directives/ion-select-option.js +0 -36
- package/dist/standalone/directives/ion-select-option.js.map +0 -1
- package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
- package/dist/standalone/directives/ion-skeleton-text.js +0 -36
- package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
- package/dist/standalone/directives/ion-spinner.d.ts +0 -12
- package/dist/standalone/directives/ion-spinner.js +0 -36
- package/dist/standalone/directives/ion-spinner.js.map +0 -1
- package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
- package/dist/standalone/directives/ion-split-pane.js +0 -40
- package/dist/standalone/directives/ion-split-pane.js.map +0 -1
- package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
- package/dist/standalone/directives/ion-tab-bar.js +0 -36
- package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
- package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
- package/dist/standalone/directives/ion-tab-button.js +0 -36
- package/dist/standalone/directives/ion-tab-button.js.map +0 -1
- package/dist/standalone/directives/ion-tab.d.ts +0 -12
- package/dist/standalone/directives/ion-tab.js +0 -37
- package/dist/standalone/directives/ion-tab.js.map +0 -1
- package/dist/standalone/directives/ion-text.d.ts +0 -12
- package/dist/standalone/directives/ion-text.js +0 -36
- package/dist/standalone/directives/ion-text.js.map +0 -1
- package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
- package/dist/standalone/directives/ion-thumbnail.js +0 -35
- package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
- package/dist/standalone/directives/ion-title.d.ts +0 -12
- package/dist/standalone/directives/ion-title.js +0 -36
- package/dist/standalone/directives/ion-title.js.map +0 -1
- package/dist/standalone/directives/ion-toast.d.ts +0 -58
- package/dist/standalone/directives/ion-toast.js +0 -62
- package/dist/standalone/directives/ion-toast.js.map +0 -1
- package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
- package/dist/standalone/directives/ion-toolbar.js +0 -36
- package/dist/standalone/directives/ion-toolbar.js.map +0 -1
- package/dist/standalone/directives/proxies.d.ts +0 -77
- package/dist/standalone/directives/proxies.js +0 -79
- package/dist/standalone/directives/proxies.js.map +0 -1
- package/dist/standalone/directives/radio-group.js +0 -59
- package/dist/standalone/directives/radio-group.js.map +0 -1
- package/dist/standalone/directives/range.js +0 -77
- package/dist/standalone/directives/range.js.map +0 -1
- package/dist/standalone/directives/searchbar.js +0 -81
- package/dist/standalone/directives/searchbar.js.map +0 -1
- package/dist/standalone/directives/segment.js +0 -59
- package/dist/standalone/directives/segment.js.map +0 -1
- package/dist/standalone/directives/select.js +0 -83
- package/dist/standalone/directives/select.js.map +0 -1
- package/dist/standalone/directives/textarea.js +0 -90
- package/dist/standalone/directives/textarea.js.map +0 -1
- package/dist/standalone/directives/toggle.js +0 -75
- package/dist/standalone/directives/toggle.js.map +0 -1
- package/dist/standalone/index.js +0 -24
- package/dist/standalone/index.js.map +0 -1
- package/dist/standalone/navigation/back-button.js +0 -32
- package/dist/standalone/navigation/back-button.js.map +0 -1
- package/dist/standalone/navigation/nav.js +0 -28
- package/dist/standalone/navigation/nav.js.map +0 -1
- package/dist/standalone/navigation/router-link-delegate.js +0 -26
- package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
- package/dist/standalone/navigation/router-outlet.js +0 -60
- package/dist/standalone/navigation/router-outlet.js.map +0 -1
- package/dist/standalone/navigation/tabs.js +0 -57
- package/dist/standalone/navigation/tabs.js.map +0 -1
- package/dist/standalone/overlays/modal.js +0 -32
- package/dist/standalone/overlays/modal.js.map +0 -1
- package/dist/standalone/overlays/popover.js +0 -28
- package/dist/standalone/overlays/popover.js.map +0 -1
- package/dist/standalone/providers/action-sheet-controller.js +0 -20
- package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
- package/dist/standalone/providers/alert-controller.js +0 -20
- package/dist/standalone/providers/alert-controller.js.map +0 -1
- package/dist/standalone/providers/animation-controller.js +0 -37
- package/dist/standalone/providers/animation-controller.js.map +0 -1
- package/dist/standalone/providers/gesture-controller.js +0 -32
- package/dist/standalone/providers/gesture-controller.js.map +0 -1
- package/dist/standalone/providers/ionic-angular.js +0 -38
- package/dist/standalone/providers/ionic-angular.js.map +0 -1
- package/dist/standalone/providers/loading-controller.js +0 -20
- package/dist/standalone/providers/loading-controller.js.map +0 -1
- package/dist/standalone/providers/menu-controller.js +0 -18
- package/dist/standalone/providers/menu-controller.js.map +0 -1
- package/dist/standalone/providers/modal-controller.js +0 -27
- package/dist/standalone/providers/modal-controller.js.map +0 -1
- package/dist/standalone/providers/popover-controller.js +0 -21
- package/dist/standalone/providers/popover-controller.js.map +0 -1
- package/dist/standalone/providers/toast-controller.js +0 -20
- package/dist/standalone/providers/toast-controller.js.map +0 -1
- /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
- /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
- /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
- /package/{dist/common → common}/providers/config.d.ts +0 -0
- /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
- /package/{dist/common → common}/providers/platform.d.ts +0 -0
- /package/{dist/common → common}/types/interfaces.d.ts +0 -0
- /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
- /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
- /package/{dist/common → common}/utils/overlay.d.ts +0 -0
- /package/{dist/common → common}/utils/proxy.d.ts +0 -0
- /package/{dist/common → common}/utils/routing.d.ts +0 -0
- /package/{dist/common → common}/utils/util.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
- /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
- /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
- /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
- /package/{dist/schematics → schematics}/add/schema.json +0 -0
- /package/{dist/schematics → schematics}/collection.json +0 -0
- /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
- /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
- /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
- /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
- /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
- /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, Component, HostListener, forwardRef, } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { ValueAccessor, setIonicClasses } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-checkbox.js';
|
|
6
|
-
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
const CHECKBOX_INPUTS = [
|
|
9
|
-
'checked',
|
|
10
|
-
'color',
|
|
11
|
-
'disabled',
|
|
12
|
-
'errorText',
|
|
13
|
-
'helperText',
|
|
14
|
-
'indeterminate',
|
|
15
|
-
'justify',
|
|
16
|
-
'labelPlacement',
|
|
17
|
-
'mode',
|
|
18
|
-
'name',
|
|
19
|
-
'value',
|
|
20
|
-
];
|
|
21
|
-
let IonCheckbox = class IonCheckbox extends ValueAccessor {
|
|
22
|
-
z;
|
|
23
|
-
el;
|
|
24
|
-
constructor(c, r, z, injector) {
|
|
25
|
-
super(injector, r);
|
|
26
|
-
this.z = z;
|
|
27
|
-
c.detach();
|
|
28
|
-
this.el = r.nativeElement;
|
|
29
|
-
proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
|
|
30
|
-
}
|
|
31
|
-
writeValue(value) {
|
|
32
|
-
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
33
|
-
setIonicClasses(this.elementRef);
|
|
34
|
-
}
|
|
35
|
-
handleIonChange(el) {
|
|
36
|
-
this.handleValueChange(el, el.checked);
|
|
37
|
-
}
|
|
38
|
-
/** @nocollapse */ 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 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
39
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCheckbox, isStandalone: true, selector: "ion-checkbox", inputs: { checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [
|
|
40
|
-
{
|
|
41
|
-
provide: NG_VALUE_ACCESSOR,
|
|
42
|
-
useExisting: forwardRef((() => IonCheckbox)),
|
|
43
|
-
multi: true,
|
|
44
|
-
},
|
|
45
|
-
], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
46
|
-
};
|
|
47
|
-
IonCheckbox = __decorate([
|
|
48
|
-
ProxyCmp({
|
|
49
|
-
defineCustomElementFn: defineCustomElement,
|
|
50
|
-
inputs: CHECKBOX_INPUTS,
|
|
51
|
-
})
|
|
52
|
-
], IonCheckbox);
|
|
53
|
-
export { IonCheckbox };
|
|
54
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
55
|
-
type: Component,
|
|
56
|
-
args: [{
|
|
57
|
-
selector: 'ion-checkbox',
|
|
58
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
59
|
-
template: '<ng-content></ng-content>',
|
|
60
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
61
|
-
inputs: CHECKBOX_INPUTS,
|
|
62
|
-
providers: [
|
|
63
|
-
{
|
|
64
|
-
provide: NG_VALUE_ACCESSOR,
|
|
65
|
-
useExisting: forwardRef((() => IonCheckbox)),
|
|
66
|
-
multi: true,
|
|
67
|
-
},
|
|
68
|
-
],
|
|
69
|
-
standalone: true,
|
|
70
|
-
}]
|
|
71
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
|
|
72
|
-
type: HostListener,
|
|
73
|
-
args: ['ionChange', ['$event.target']]
|
|
74
|
-
}] } });
|
|
75
|
-
//# sourceMappingURL=checkbox.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox.js","sourceRoot":"","sources":["../../../src/standalone/directives/checkbox.ts"],"names":[],"mappings":";AAAA,OAAO,EACL,uBAAuB,EAEvB,SAAS,EAGT,YAAY,EAGZ,UAAU,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAEvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAE7E,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;;AAEvE,MAAM,eAAe,GAAG;IACtB,SAAS;IACT,OAAO;IACP,UAAU;IACV,WAAW;IACX,YAAY;IACZ,eAAe;IACf,SAAS;IACT,gBAAgB;IAChB,MAAM;IACN,MAAM;IACN,OAAO;CACR,CAAC;AAqBK,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,aAAa;IAEe;IADjD,EAAE,CAAc;IAC1B,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAE,QAAkB;QACtF,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;QADsC,MAAC,GAAD,CAAC,CAAQ;QAElE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;QAC1B,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC,CAAC;IACpE,CAAC;IAED,UAAU,CAAC,KAAc;QACvB,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC/D,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACnC,CAAC;IAGD,eAAe,CAAC,EAAiD;QAC/D,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC;IACzC,CAAC;0HAjBU,WAAW;8GAAX,WAAW,6XATX;YACT;gBACE,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,CAAC,WAAW,EAAC;gBAC1C,KAAK,EAAE,IAAI;aACZ;SACF,iDATS,2BAA2B;;AAY1B,WAAW;IAnBvB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;QAC1C,MAAM,EAAE,eAAe;KACxB,CAAC;GAgBW,WAAW,CAkBvB;;2FAlBY,WAAW;kBAfvB,SAAS;mBAAC;oBACT,QAAQ,EAAE,cAAc;oBACxB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,eAAe;oBACvB,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,YAAY,EAAC;4BAC1C,KAAK,EAAE,IAAI;yBACZ;qBACF;oBACD,UAAU,EAAE,IAAI;iBACjB;;sBAeE,YAAY;uBAAC,WAAW,EAAE,CAAC,eAAe,CAAC","sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n HostListener,\n Injector,\n NgZone,\n forwardRef,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ValueAccessor, setIonicClasses } from '@ionic/angular/common';\nimport type { CheckboxChangeEventDetail, Components } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-checkbox.js';\n\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nconst CHECKBOX_INPUTS = [\n 'checked',\n 'color',\n 'disabled',\n 'errorText',\n 'helperText',\n 'indeterminate',\n 'justify',\n 'labelPlacement',\n 'mode',\n 'name',\n 'value',\n];\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n inputs: CHECKBOX_INPUTS,\n})\n@Component({\n selector: 'ion-checkbox',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: CHECKBOX_INPUTS,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => IonCheckbox),\n multi: true,\n },\n ],\n standalone: true,\n})\nexport class IonCheckbox extends ValueAccessor {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone, injector: Injector) {\n super(injector, r);\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);\n }\n\n writeValue(value: boolean): void {\n this.elementRef.nativeElement.checked = this.lastValue = value;\n setIonicClasses(this.elementRef);\n }\n\n @HostListener('ionChange', ['$event.target'])\n handleIonChange(el: HTMLIonCheckboxElement | HTMLIonToggleElement): void {\n this.handleValueChange(el, el.checked);\n }\n}\n\nexport declare interface IonCheckbox extends Components.IonCheckbox {\n /**\n * Emitted when the checked property has changed\nas a result of a user action such as a click.\nThis event will not emit when programmatically\nsetting the checked property.\n */\n ionChange: EventEmitter<CustomEvent<CheckboxChangeEventDetail>>;\n /**\n * Emitted when the checkbox has focus.\n */\n ionFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the checkbox loses focus.\n */\n ionBlur: EventEmitter<CustomEvent<void>>;\n}\n"]}
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, Component, HostListener, forwardRef, } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { ValueAccessor } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-datetime.js';
|
|
6
|
-
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
const DATETIME_INPUTS = [
|
|
9
|
-
'cancelText',
|
|
10
|
-
'clearText',
|
|
11
|
-
'color',
|
|
12
|
-
'dayValues',
|
|
13
|
-
'disabled',
|
|
14
|
-
'doneText',
|
|
15
|
-
'firstDayOfWeek',
|
|
16
|
-
'formatOptions',
|
|
17
|
-
'highlightedDates',
|
|
18
|
-
'hourCycle',
|
|
19
|
-
'hourValues',
|
|
20
|
-
'isDateEnabled',
|
|
21
|
-
'locale',
|
|
22
|
-
'max',
|
|
23
|
-
'min',
|
|
24
|
-
'minuteValues',
|
|
25
|
-
'mode',
|
|
26
|
-
'monthValues',
|
|
27
|
-
'multiple',
|
|
28
|
-
'name',
|
|
29
|
-
'preferWheel',
|
|
30
|
-
'presentation',
|
|
31
|
-
'readonly',
|
|
32
|
-
'showAdjacentDays',
|
|
33
|
-
'showClearButton',
|
|
34
|
-
'showDefaultButtons',
|
|
35
|
-
'showDefaultTimeLabel',
|
|
36
|
-
'showDefaultTitle',
|
|
37
|
-
'size',
|
|
38
|
-
'titleSelectedDatesFormatter',
|
|
39
|
-
'value',
|
|
40
|
-
'yearValues',
|
|
41
|
-
];
|
|
42
|
-
let IonDatetime = class IonDatetime extends ValueAccessor {
|
|
43
|
-
z;
|
|
44
|
-
el;
|
|
45
|
-
constructor(c, r, z, injector) {
|
|
46
|
-
super(injector, r);
|
|
47
|
-
this.z = z;
|
|
48
|
-
c.detach();
|
|
49
|
-
this.el = r.nativeElement;
|
|
50
|
-
proxyOutputs(this, this.el, ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur']);
|
|
51
|
-
}
|
|
52
|
-
handleIonChange(el) {
|
|
53
|
-
this.handleValueChange(el, el.value);
|
|
54
|
-
}
|
|
55
|
-
/** @nocollapse */ 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 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
56
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetime, isStandalone: true, 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" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [
|
|
57
|
-
{
|
|
58
|
-
provide: NG_VALUE_ACCESSOR,
|
|
59
|
-
useExisting: forwardRef((() => IonDatetime)),
|
|
60
|
-
multi: true,
|
|
61
|
-
},
|
|
62
|
-
], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
63
|
-
};
|
|
64
|
-
IonDatetime = __decorate([
|
|
65
|
-
ProxyCmp({
|
|
66
|
-
defineCustomElementFn: defineCustomElement,
|
|
67
|
-
inputs: DATETIME_INPUTS,
|
|
68
|
-
methods: ['confirm', 'reset', 'cancel'],
|
|
69
|
-
})
|
|
70
|
-
], IonDatetime);
|
|
71
|
-
export { IonDatetime };
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, decorators: [{
|
|
73
|
-
type: Component,
|
|
74
|
-
args: [{
|
|
75
|
-
selector: 'ion-datetime',
|
|
76
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77
|
-
template: '<ng-content></ng-content>',
|
|
78
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
79
|
-
inputs: DATETIME_INPUTS,
|
|
80
|
-
providers: [
|
|
81
|
-
{
|
|
82
|
-
provide: NG_VALUE_ACCESSOR,
|
|
83
|
-
useExisting: forwardRef((() => IonDatetime)),
|
|
84
|
-
multi: true,
|
|
85
|
-
},
|
|
86
|
-
],
|
|
87
|
-
standalone: true,
|
|
88
|
-
}]
|
|
89
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonChange: [{
|
|
90
|
-
type: HostListener,
|
|
91
|
-
args: ['ionChange', ['$event.target']]
|
|
92
|
-
}] } });
|
|
93
|
-
//# sourceMappingURL=datetime.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"datetime.js","sourceRoot":"","sources":["../../../src/standalone/directives/datetime.ts"],"names":[],"mappings":";AAAA,OAAO,EACL,uBAAuB,EAEvB,SAAS,EAGT,YAAY,EAGZ,UAAU,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAE7E,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;;AAEvE,MAAM,eAAe,GAAG;IACtB,YAAY;IACZ,WAAW;IACX,OAAO;IACP,WAAW;IACX,UAAU;IACV,UAAU;IACV,gBAAgB;IAChB,eAAe;IACf,kBAAkB;IAClB,WAAW;IACX,YAAY;IACZ,eAAe;IACf,QAAQ;IACR,KAAK;IACL,KAAK;IACL,cAAc;IACd,MAAM;IACN,aAAa;IACb,UAAU;IACV,MAAM;IACN,aAAa;IACb,cAAc;IACd,UAAU;IACV,kBAAkB;IAClB,iBAAiB;IACjB,oBAAoB;IACpB,sBAAsB;IACtB,kBAAkB;IAClB,MAAM;IACN,6BAA6B;IAC7B,OAAO;IACP,YAAY;CACb,CAAC;AAsBK,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,aAAa;IAEe;IADjD,EAAE,CAAc;IAC1B,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAE,QAAkB;QACtF,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;QADsC,MAAC,GAAD,CAAC,CAAQ;QAElE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;QAC1B,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC,CAAC;IACjF,CAAC;IAGD,eAAe,CAAC,EAA0B;QACxC,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC;IACvC,CAAC;0HAZU,WAAW;8GAAX,WAAW,i/BATX;YACT;gBACE,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,CAAC,WAAW,EAAC;gBAC1C,KAAK,EAAE,IAAI;aACZ;SACF,iDATS,2BAA2B;;AAY1B,WAAW;IApBvB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;QAC1C,MAAM,EAAE,eAAe;QACvB,OAAO,EAAE,CAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC;KACxC,CAAC;GAgBW,WAAW,CAavB;;2FAbY,WAAW;kBAfvB,SAAS;mBAAC;oBACT,QAAQ,EAAE,cAAc;oBACxB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,eAAe;oBACvB,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,YAAY,EAAC;4BAC1C,KAAK,EAAE,IAAI;yBACZ;qBACF;oBACD,UAAU,EAAE,IAAI;iBACjB;;sBAUE,YAAY;uBAAC,WAAW,EAAE,CAAC,eAAe,CAAC","sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n HostListener,\n Injector,\n NgZone,\n forwardRef,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ValueAccessor } from '@ionic/angular/common';\nimport type { DatetimeChangeEventDetail, Components } from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-datetime.js';\n\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nconst DATETIME_INPUTS = [\n 'cancelText',\n 'clearText',\n 'color',\n 'dayValues',\n 'disabled',\n 'doneText',\n 'firstDayOfWeek',\n 'formatOptions',\n 'highlightedDates',\n 'hourCycle',\n 'hourValues',\n 'isDateEnabled',\n 'locale',\n 'max',\n 'min',\n 'minuteValues',\n 'mode',\n 'monthValues',\n 'multiple',\n 'name',\n 'preferWheel',\n 'presentation',\n 'readonly',\n 'showAdjacentDays',\n 'showClearButton',\n 'showDefaultButtons',\n 'showDefaultTimeLabel',\n 'showDefaultTitle',\n 'size',\n 'titleSelectedDatesFormatter',\n 'value',\n 'yearValues',\n];\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n inputs: DATETIME_INPUTS,\n methods: ['confirm', 'reset', 'cancel'],\n})\n@Component({\n selector: 'ion-datetime',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: DATETIME_INPUTS,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => IonDatetime),\n multi: true,\n },\n ],\n standalone: true,\n})\nexport class IonDatetime extends ValueAccessor {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone, injector: Injector) {\n super(injector, r);\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur']);\n }\n\n @HostListener('ionChange', ['$event.target'])\n handleIonChange(el: HTMLIonDatetimeElement): void {\n this.handleValueChange(el, el.value);\n }\n}\n\nexport declare interface IonDatetime extends Components.IonDatetime {\n /**\n * Emitted when the datetime selection was cancelled.\n */\n ionCancel: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the value (selected date) has changed.\n */\n ionChange: EventEmitter<CustomEvent<DatetimeChangeEventDetail>>;\n /**\n * Emitted when the datetime has focus.\n */\n ionFocus: EventEmitter<CustomEvent<void>>;\n /**\n * Emitted when the datetime loses focus.\n */\n ionBlur: EventEmitter<CustomEvent<void>>;\n}\n"]}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
3
|
-
import { defineCustomElement as defineIonIcon } from 'ionicons/components/ion-icon.js';
|
|
4
|
-
import { ProxyCmp } from './angular-component-lib/utils';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
let IonIcon = class IonIcon {
|
|
7
|
-
z;
|
|
8
|
-
el;
|
|
9
|
-
constructor(c, r, z) {
|
|
10
|
-
this.z = z;
|
|
11
|
-
c.detach();
|
|
12
|
-
this.el = r.nativeElement;
|
|
13
|
-
}
|
|
14
|
-
/** @nocollapse */ 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 });
|
|
15
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonIcon, isStandalone: true, 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 });
|
|
16
|
-
};
|
|
17
|
-
IonIcon = __decorate([
|
|
18
|
-
ProxyCmp({
|
|
19
|
-
defineCustomElementFn: defineIonIcon,
|
|
20
|
-
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
21
|
-
})
|
|
22
|
-
], IonIcon);
|
|
23
|
-
export { IonIcon };
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, decorators: [{
|
|
25
|
-
type: Component,
|
|
26
|
-
args: [{
|
|
27
|
-
selector: 'ion-icon',
|
|
28
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
29
|
-
template: '<ng-content></ng-content>',
|
|
30
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
31
|
-
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
32
|
-
standalone: true,
|
|
33
|
-
}]
|
|
34
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
35
|
-
//# sourceMappingURL=icon.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"icon.js","sourceRoot":"","sources":["../../../src/standalone/directives/icon.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,MAAM,eAAe,CAAC;AAC1G,OAAO,EAAE,mBAAmB,IAAI,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAEvF,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;;AAclD,IAAM,OAAO,GAAb,MAAM,OAAO;IAEyC;IADjD,EAAE,CAAc;IAC1B,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HALU,OAAO;8GAAP,OAAO,kPALR,2BAA2B;;AAK1B,OAAO;IAZnB,QAAQ,CAAC;QACR,qBAAqB,EAAE,aAAa;QACpC,MAAM,EAAE,CAAC,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,CAAC;KACrG,CAAC;GASW,OAAO,CAMnB;;2FANY,OAAO;kBARnB,SAAS;mBAAC;oBACT,QAAQ,EAAE,UAAU;oBACpB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,KAAK,CAAC;oBACpG,UAAU,EAAE,IAAI;iBACjB","sourcesContent":["import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\nimport { defineCustomElement as defineIonIcon } from 'ionicons/components/ion-icon.js';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonIcon,\n inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],\n})\n@Component({\n selector: 'ion-icon',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],\n standalone: true,\n})\nexport class IonIcon {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n"]}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export * from './checkbox';
|
|
2
|
-
export * from './datetime';
|
|
3
|
-
export * from './icon';
|
|
4
|
-
export * from './input';
|
|
5
|
-
export * from './input-otp';
|
|
6
|
-
export * from './radio-group';
|
|
7
|
-
export * from './range';
|
|
8
|
-
export * from './searchbar';
|
|
9
|
-
export * from './segment';
|
|
10
|
-
export * from './select';
|
|
11
|
-
export * from './textarea';
|
|
12
|
-
export * from './toggle';
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/standalone/directives/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC","sourcesContent":["export * from './checkbox';\nexport * from './datetime';\nexport * from './icon';\nexport * from './input';\nexport * from './input-otp';\nexport * from './radio-group';\nexport * from './range';\nexport * from './searchbar';\nexport * from './segment';\nexport * from './select';\nexport * from './textarea';\nexport * from './toggle';\n"]}
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, Component, HostListener, forwardRef, } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { ValueAccessor } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-input-otp.js';
|
|
6
|
-
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
const INPUT_OTP_INPUTS = [
|
|
9
|
-
'autocapitalize',
|
|
10
|
-
'color',
|
|
11
|
-
'disabled',
|
|
12
|
-
'fill',
|
|
13
|
-
'inputmode',
|
|
14
|
-
'length',
|
|
15
|
-
'pattern',
|
|
16
|
-
'readonly',
|
|
17
|
-
'separators',
|
|
18
|
-
'shape',
|
|
19
|
-
'size',
|
|
20
|
-
'type',
|
|
21
|
-
'value',
|
|
22
|
-
];
|
|
23
|
-
let IonInputOtp = class IonInputOtp extends ValueAccessor {
|
|
24
|
-
z;
|
|
25
|
-
el;
|
|
26
|
-
constructor(c, r, z, injector) {
|
|
27
|
-
super(injector, r);
|
|
28
|
-
this.z = z;
|
|
29
|
-
c.detach();
|
|
30
|
-
this.el = r.nativeElement;
|
|
31
|
-
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus']);
|
|
32
|
-
}
|
|
33
|
-
handleIonInput(el) {
|
|
34
|
-
this.handleValueChange(el, el.value);
|
|
35
|
-
}
|
|
36
|
-
registerOnChange(fn) {
|
|
37
|
-
super.registerOnChange((value) => {
|
|
38
|
-
if (this.type === 'number') {
|
|
39
|
-
/**
|
|
40
|
-
* If the input type is `number`, we need to convert the value to a number
|
|
41
|
-
* when the value is not empty. If the value is empty, we want to treat
|
|
42
|
-
* the value as null.
|
|
43
|
-
*/
|
|
44
|
-
fn(value === '' ? null : parseFloat(value));
|
|
45
|
-
}
|
|
46
|
-
else {
|
|
47
|
-
fn(value);
|
|
48
|
-
}
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
/** @nocollapse */ 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 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
52
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputOtp, isStandalone: true, 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" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [
|
|
53
|
-
{
|
|
54
|
-
provide: NG_VALUE_ACCESSOR,
|
|
55
|
-
useExisting: forwardRef((() => IonInputOtp)),
|
|
56
|
-
multi: true,
|
|
57
|
-
},
|
|
58
|
-
], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
59
|
-
};
|
|
60
|
-
IonInputOtp = __decorate([
|
|
61
|
-
ProxyCmp({
|
|
62
|
-
defineCustomElementFn: defineCustomElement,
|
|
63
|
-
inputs: INPUT_OTP_INPUTS,
|
|
64
|
-
methods: ['setFocus'],
|
|
65
|
-
})
|
|
66
|
-
], IonInputOtp);
|
|
67
|
-
export { IonInputOtp };
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
69
|
-
type: Component,
|
|
70
|
-
args: [{
|
|
71
|
-
selector: 'ion-input-otp',
|
|
72
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
73
|
-
template: '<ng-content></ng-content>',
|
|
74
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
75
|
-
inputs: INPUT_OTP_INPUTS,
|
|
76
|
-
providers: [
|
|
77
|
-
{
|
|
78
|
-
provide: NG_VALUE_ACCESSOR,
|
|
79
|
-
useExisting: forwardRef((() => IonInputOtp)),
|
|
80
|
-
multi: true,
|
|
81
|
-
},
|
|
82
|
-
],
|
|
83
|
-
standalone: true,
|
|
84
|
-
}]
|
|
85
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
|
|
86
|
-
type: HostListener,
|
|
87
|
-
args: ['ionInput', ['$event.target']]
|
|
88
|
-
}] } });
|
|
89
|
-
//# sourceMappingURL=input-otp.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"input-otp.js","sourceRoot":"","sources":["../../../src/standalone/directives/input-otp.ts"],"names":[],"mappings":";AAAA,OAAO,EACL,uBAAuB,EAEvB,SAAS,EAGT,YAAY,EAGZ,UAAU,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAOtD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AAE9E,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;;AAEvE,MAAM,gBAAgB,GAAG;IACvB,gBAAgB;IAChB,OAAO;IACP,UAAU;IACV,MAAM;IACN,WAAW;IACX,QAAQ;IACR,SAAS;IACT,UAAU;IACV,YAAY;IACZ,OAAO;IACP,MAAM;IACN,MAAM;IACN,OAAO;CACR,CAAC;AAsBK,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,aAAa;IAEe;IADjD,EAAE,CAAc;IAC1B,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAE,QAAkB;QACtF,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;QADsC,MAAC,GAAD,CAAC,CAAQ;QAElE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;QAC1B,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;IAC/F,CAAC;IAGD,cAAc,CAAC,EAA0B;QACvC,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC;IACvC,CAAC;IAED,gBAAgB,CAAC,EAAoB;QACnC,KAAK,CAAC,gBAAgB,CAAC,CAAC,KAAa,EAAE,EAAE;YACvC,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;gBAC3B;;;;mBAIG;gBACH,EAAE,CAAC,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;YAC9C,CAAC;iBAAM,CAAC;gBACN,EAAE,CAAC,KAAK,CAAC,CAAC;YACZ,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;0HA3BU,WAAW;8GAAX,WAAW,8YATX;YACT;gBACE,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,CAAC,WAAW,EAAC;gBAC1C,KAAK,EAAE,IAAI;aACZ;SACF,iDATS,2BAA2B;;AAY1B,WAAW;IApBvB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;QAC1C,MAAM,EAAE,gBAAgB;QACxB,OAAO,EAAE,CAAC,UAAU,CAAC;KACtB,CAAC;GAgBW,WAAW,CA4BvB;;2FA5BY,WAAW;kBAfvB,SAAS;mBAAC;oBACT,QAAQ,EAAE,eAAe;oBACzB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,gBAAgB;oBACxB,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,YAAY,EAAC;4BAC1C,KAAK,EAAE,IAAI;yBACZ;qBACF;oBACD,UAAU,EAAE,IAAI;iBACjB;;sBAUE,YAAY;uBAAC,UAAU,EAAE,CAAC,eAAe,CAAC","sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n HostListener,\n Injector,\n NgZone,\n forwardRef,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ValueAccessor } from '@ionic/angular/common';\nimport type {\n InputOtpInputEventDetail as IIonInputOtpInputEventDetail,\n InputOtpChangeEventDetail as IIonInputOtpChangeEventDetail,\n InputOtpCompleteEventDetail as IIonInputOtpCompleteEventDetail,\n Components,\n} from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-input-otp.js';\n\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nconst INPUT_OTP_INPUTS = [\n 'autocapitalize',\n 'color',\n 'disabled',\n 'fill',\n 'inputmode',\n 'length',\n 'pattern',\n 'readonly',\n 'separators',\n 'shape',\n 'size',\n 'type',\n 'value',\n];\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n inputs: INPUT_OTP_INPUTS,\n methods: ['setFocus'],\n})\n@Component({\n selector: 'ion-input-otp',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: INPUT_OTP_INPUTS,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => IonInputOtp),\n multi: true,\n },\n ],\n standalone: true,\n})\nexport class IonInputOtp extends ValueAccessor {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone, injector: Injector) {\n super(injector, r);\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus']);\n }\n\n @HostListener('ionInput', ['$event.target'])\n handleIonInput(el: HTMLIonInputOtpElement): void {\n this.handleValueChange(el, el.value);\n }\n\n registerOnChange(fn: (_: any) => void): void {\n super.registerOnChange((value: string) => {\n if (this.type === 'number') {\n /**\n * If the input type is `number`, we need to convert the value to a number\n * when the value is not empty. If the value is empty, we want to treat\n * the value as null.\n */\n fn(value === '' ? null : parseFloat(value));\n } else {\n fn(value);\n }\n });\n }\n}\n\nexport declare interface IonInputOtp extends Components.IonInputOtp {\n /**\n * The `ionInput` event is fired each time the user modifies the input's value.\n * Unlike the `ionChange` event, the `ionInput` event is fired for each alteration\n * to the input's value. This typically happens for each keystroke as the user types.\n *\n * For elements that accept text input (`type=text`, `type=tel`, etc.), the interface\n * is [`InputEvent`](https://developer.mozilla.org/en-US/docs/Web/API/InputEvent); for others,\n * the interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If\n * the input is cleared on edit, the type is `null`.\n */\n ionInput: EventEmitter<CustomEvent<IIonInputOtpInputEventDetail>>;\n /**\n * The `ionChange` event is fired when the user modifies the input's value.\n * Unlike the `ionInput` event, the `ionChange` event is only fired when changes\n * are committed, not as the user types.\n *\n * The `ionChange` event fires when the `<ion-input-otp>` component loses\n * focus after its value has changed.\n *\n * This event will not emit when programmatically setting the `value` property.\n */\n ionChange: EventEmitter<CustomEvent<IIonInputOtpChangeEventDetail>>;\n /**\n * Emitted when all input boxes have been filled with valid values.\n */\n ionComplete: EventEmitter<CustomEvent<IIonInputOtpCompleteEventDetail>>;\n /**\n * Emitted when the input group loses focus.\n */\n ionBlur: EventEmitter<CustomEvent<FocusEvent>>;\n /**\n * Emitted when the input group has focus.\n */\n ionFocus: EventEmitter<CustomEvent<FocusEvent>>;\n}\n"]}
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { ChangeDetectionStrategy, Component, HostListener, forwardRef, } from '@angular/core';
|
|
3
|
-
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
4
|
-
import { ValueAccessor } from '@ionic/angular/common';
|
|
5
|
-
import { defineCustomElement } from '@ionic/core/components/ion-input.js';
|
|
6
|
-
import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
const INPUT_INPUTS = [
|
|
9
|
-
'accept',
|
|
10
|
-
'autocapitalize',
|
|
11
|
-
'autocomplete',
|
|
12
|
-
'autocorrect',
|
|
13
|
-
'autofocus',
|
|
14
|
-
'clearInput',
|
|
15
|
-
'clearOnEdit',
|
|
16
|
-
'color',
|
|
17
|
-
'counter',
|
|
18
|
-
'counterFormatter',
|
|
19
|
-
'debounce',
|
|
20
|
-
'disabled',
|
|
21
|
-
'enterkeyhint',
|
|
22
|
-
'errorText',
|
|
23
|
-
'fill',
|
|
24
|
-
'helperText',
|
|
25
|
-
'inputmode',
|
|
26
|
-
'label',
|
|
27
|
-
'labelPlacement',
|
|
28
|
-
'max',
|
|
29
|
-
'maxlength',
|
|
30
|
-
'min',
|
|
31
|
-
'minlength',
|
|
32
|
-
'mode',
|
|
33
|
-
'multiple',
|
|
34
|
-
'name',
|
|
35
|
-
'pattern',
|
|
36
|
-
'placeholder',
|
|
37
|
-
'readonly',
|
|
38
|
-
'required',
|
|
39
|
-
'shape',
|
|
40
|
-
'size',
|
|
41
|
-
'spellcheck',
|
|
42
|
-
'step',
|
|
43
|
-
'type',
|
|
44
|
-
'value',
|
|
45
|
-
];
|
|
46
|
-
let IonInput = class IonInput extends ValueAccessor {
|
|
47
|
-
z;
|
|
48
|
-
el;
|
|
49
|
-
constructor(c, r, z, injector) {
|
|
50
|
-
super(injector, r);
|
|
51
|
-
this.z = z;
|
|
52
|
-
c.detach();
|
|
53
|
-
this.el = r.nativeElement;
|
|
54
|
-
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionBlur', 'ionFocus']);
|
|
55
|
-
}
|
|
56
|
-
handleIonInput(el) {
|
|
57
|
-
this.handleValueChange(el, el.value);
|
|
58
|
-
}
|
|
59
|
-
registerOnChange(fn) {
|
|
60
|
-
super.registerOnChange((value) => {
|
|
61
|
-
if (this.type === 'number') {
|
|
62
|
-
/**
|
|
63
|
-
* If the input type is `number`, we need to convert the value to a number
|
|
64
|
-
* when the value is not empty. If the value is empty, we want to treat
|
|
65
|
-
* the value as null.
|
|
66
|
-
*/
|
|
67
|
-
fn(value === '' ? null : parseFloat(value));
|
|
68
|
-
}
|
|
69
|
-
else {
|
|
70
|
-
fn(value);
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
}
|
|
74
|
-
/** @nocollapse */ 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 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
75
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInput, isStandalone: true, selector: "ion-input", inputs: { accept: "accept", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", 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", size: "size", spellcheck: "spellcheck", step: "step", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [
|
|
76
|
-
{
|
|
77
|
-
provide: NG_VALUE_ACCESSOR,
|
|
78
|
-
useExisting: forwardRef((() => IonInput)),
|
|
79
|
-
multi: true,
|
|
80
|
-
},
|
|
81
|
-
], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
82
|
-
};
|
|
83
|
-
IonInput = __decorate([
|
|
84
|
-
ProxyCmp({
|
|
85
|
-
defineCustomElementFn: defineCustomElement,
|
|
86
|
-
inputs: INPUT_INPUTS,
|
|
87
|
-
methods: ['setFocus', 'getInputElement'],
|
|
88
|
-
})
|
|
89
|
-
], IonInput);
|
|
90
|
-
export { IonInput };
|
|
91
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, decorators: [{
|
|
92
|
-
type: Component,
|
|
93
|
-
args: [{
|
|
94
|
-
selector: 'ion-input',
|
|
95
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
96
|
-
template: '<ng-content></ng-content>',
|
|
97
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
98
|
-
inputs: INPUT_INPUTS,
|
|
99
|
-
providers: [
|
|
100
|
-
{
|
|
101
|
-
provide: NG_VALUE_ACCESSOR,
|
|
102
|
-
useExisting: forwardRef((() => IonInput)),
|
|
103
|
-
multi: true,
|
|
104
|
-
},
|
|
105
|
-
],
|
|
106
|
-
standalone: true,
|
|
107
|
-
}]
|
|
108
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { handleIonInput: [{
|
|
109
|
-
type: HostListener,
|
|
110
|
-
args: ['ionInput', ['$event.target']]
|
|
111
|
-
}] } });
|
|
112
|
-
//# sourceMappingURL=input.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../../src/standalone/directives/input.ts"],"names":[],"mappings":";AAAA,OAAO,EACL,uBAAuB,EAEvB,SAAS,EAGT,YAAY,EAGZ,UAAU,GACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAMtD,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;;AAEvE,MAAM,YAAY,GAAG;IACnB,QAAQ;IACR,gBAAgB;IAChB,cAAc;IACd,aAAa;IACb,WAAW;IACX,YAAY;IACZ,aAAa;IACb,OAAO;IACP,SAAS;IACT,kBAAkB;IAClB,UAAU;IACV,UAAU;IACV,cAAc;IACd,WAAW;IACX,MAAM;IACN,YAAY;IACZ,WAAW;IACX,OAAO;IACP,gBAAgB;IAChB,KAAK;IACL,WAAW;IACX,KAAK;IACL,WAAW;IACX,MAAM;IACN,UAAU;IACV,MAAM;IACN,SAAS;IACT,aAAa;IACb,UAAU;IACV,UAAU;IACV,OAAO;IACP,MAAM;IACN,YAAY;IACZ,MAAM;IACN,MAAM;IACN,OAAO;CACR,CAAC;AAsBK,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,aAAa;IAEkB;IADjD,EAAE,CAAc;IAC1B,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS,EAAE,QAAkB;QACtF,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;QADsC,MAAC,GAAD,CAAC,CAAQ;QAElE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;QAC1B,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;IAChF,CAAC;IAGD,cAAc,CAAC,EAAuB;QACpC,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC;IACvC,CAAC;IAED,gBAAgB,CAAC,EAAoB;QACnC,KAAK,CAAC,gBAAgB,CAAC,CAAC,KAAa,EAAE,EAAE;YACvC,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;gBAC3B;;;;mBAIG;gBACH,EAAE,CAAC,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;YAC9C,CAAC;iBAAM,CAAC;gBACN,EAAE,CAAC,KAAK,CAAC,CAAC;YACZ,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;0HA3BU,QAAQ;8GAAR,QAAQ,85BATR;YACT;gBACE,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,CAAC,QAAQ,EAAC;gBACvC,KAAK,EAAE,IAAI;aACZ;SACF,iDATS,2BAA2B;;AAY1B,QAAQ;IApBpB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;QAC1C,MAAM,EAAE,YAAY;QACpB,OAAO,EAAE,CAAC,UAAU,EAAE,iBAAiB,CAAC;KACzC,CAAC;GAgBW,QAAQ,CA4BpB;;2FA5BY,QAAQ;kBAfpB,SAAS;mBAAC;oBACT,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,YAAY;oBACpB,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,EAAE,UAAU,EAAC,GAAG,EAAE,SAAS,EAAC;4BACvC,KAAK,EAAE,IAAI;yBACZ;qBACF;oBACD,UAAU,EAAE,IAAI;iBACjB;;sBAUE,YAAY;uBAAC,UAAU,EAAE,CAAC,eAAe,CAAC","sourcesContent":["import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n EventEmitter,\n HostListener,\n Injector,\n NgZone,\n forwardRef,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ValueAccessor } from '@ionic/angular/common';\nimport type {\n InputInputEventDetail as IIonInputInputInputEventDetail,\n InputChangeEventDetail as IIonInputInputChangeEventDetail,\n Components,\n} from '@ionic/core/components';\nimport { defineCustomElement } from '@ionic/core/components/ion-input.js';\n\nimport { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';\n\nconst INPUT_INPUTS = [\n 'accept',\n 'autocapitalize',\n 'autocomplete',\n 'autocorrect',\n 'autofocus',\n 'clearInput',\n 'clearOnEdit',\n 'color',\n 'counter',\n 'counterFormatter',\n 'debounce',\n 'disabled',\n 'enterkeyhint',\n 'errorText',\n 'fill',\n 'helperText',\n 'inputmode',\n 'label',\n 'labelPlacement',\n 'max',\n 'maxlength',\n 'min',\n 'minlength',\n 'mode',\n 'multiple',\n 'name',\n 'pattern',\n 'placeholder',\n 'readonly',\n 'required',\n 'shape',\n 'size',\n 'spellcheck',\n 'step',\n 'type',\n 'value',\n];\n\n@ProxyCmp({\n defineCustomElementFn: defineCustomElement,\n inputs: INPUT_INPUTS,\n methods: ['setFocus', 'getInputElement'],\n})\n@Component({\n selector: 'ion-input',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: INPUT_INPUTS,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => IonInput),\n multi: true,\n },\n ],\n standalone: true,\n})\nexport class IonInput extends ValueAccessor {\n protected el: HTMLElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone, injector: Injector) {\n super(injector, r);\n c.detach();\n this.el = r.nativeElement;\n proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionBlur', 'ionFocus']);\n }\n\n @HostListener('ionInput', ['$event.target'])\n handleIonInput(el: HTMLIonInputElement): void {\n this.handleValueChange(el, el.value);\n }\n\n registerOnChange(fn: (_: any) => void): void {\n super.registerOnChange((value: string) => {\n if (this.type === 'number') {\n /**\n * If the input type is `number`, we need to convert the value to a number\n * when the value is not empty. If the value is empty, we want to treat\n * the value as null.\n */\n fn(value === '' ? null : parseFloat(value));\n } else {\n fn(value);\n }\n });\n }\n}\n\nexport declare interface IonInput extends Components.IonInput {\n /**\n * The `ionInput` event is fired each time the user modifies the input's value.\nUnlike the `ionChange` event, the `ionInput` event is fired for each alteration\nto the input's value. This typically happens for each keystroke as the user types.\n\nFor elements that accept text input (`type=text`, `type=tel`, etc.), the interface\nis [`InputEvent`](https://developer.mozilla.org/en-US/docs/Web/API/InputEvent); for others,\nthe interface is [`Event`](https://developer.mozilla.org/en-US/docs/Web/API/Event). If\nthe input is cleared on edit, the type is `null`.\n */\n ionInput: EventEmitter<CustomEvent<IIonInputInputInputEventDetail>>;\n /**\n * The `ionChange` event is fired when the user modifies the input's value.\nUnlike the `ionInput` event, the `ionChange` event is only fired when changes\nare committed, not as the user types.\n\nDepending on the way the users interacts with the element, the `ionChange`\nevent fires at a different moment:\n- When the user commits the change explicitly (e.g. by selecting a date\nfrom a date picker for `<ion-input type=\"date\">`, pressing the \"Enter\" key, etc.).\n- When the element loses focus after its value has changed: for elements\nwhere the user's interaction is typing.\n */\n ionChange: EventEmitter<CustomEvent<IIonInputInputChangeEventDetail>>;\n /**\n * Emitted when the input loses focus.\n */\n ionBlur: EventEmitter<CustomEvent<FocusEvent>>;\n /**\n * Emitted when the input has focus.\n */\n ionFocus: EventEmitter<CustomEvent<FocusEvent>>;\n}\n"]}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
|
|
2
|
-
import type { Components } from '@ionic/core/components';
|
|
3
|
-
import type { IonAccordionGroupCustomEvent } from '@ionic/core/components';
|
|
4
|
-
import type { AccordionGroupChangeEventDetail as IIonAccordionGroupAccordionGroupChangeEventDetail } from '@ionic/core/components';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class IonAccordionGroup {
|
|
7
|
-
protected z: NgZone;
|
|
8
|
-
protected el: HTMLIonAccordionGroupElement;
|
|
9
|
-
ionChange: EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail<any>>>;
|
|
10
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordionGroup, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordionGroup, "ion-accordion-group", never, { "animated": { "alias": "animated"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "ionChange": "ionChange"; }, never, ["*"], true, never>;
|
|
13
|
-
}
|
|
14
|
-
export declare interface IonAccordionGroup extends Components.IonAccordionGroup {
|
|
15
|
-
/**
|
|
16
|
-
* Emitted when the value property has changed as a result of a user action such as a click.
|
|
17
|
-
|
|
18
|
-
This event will not emit when programmatically setting the `value` property.
|
|
19
|
-
*/
|
|
20
|
-
ionChange: EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>;
|
|
21
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated angular directive proxies */
|
|
4
|
-
import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
|
|
5
|
-
import { ProxyCmp } from './angular-component-lib/utils';
|
|
6
|
-
import { defineCustomElement as defineIonAccordionGroup } from '@ionic/core/components/ion-accordion-group.js';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
let IonAccordionGroup = class IonAccordionGroup {
|
|
9
|
-
z;
|
|
10
|
-
el;
|
|
11
|
-
ionChange = new EventEmitter();
|
|
12
|
-
constructor(c, r, z) {
|
|
13
|
-
this.z = z;
|
|
14
|
-
c.detach();
|
|
15
|
-
this.el = r.nativeElement;
|
|
16
|
-
}
|
|
17
|
-
/** @nocollapse */ 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 });
|
|
18
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordionGroup, isStandalone: true, 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 });
|
|
19
|
-
};
|
|
20
|
-
IonAccordionGroup = __decorate([
|
|
21
|
-
ProxyCmp({
|
|
22
|
-
defineCustomElementFn: defineIonAccordionGroup,
|
|
23
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
24
|
-
})
|
|
25
|
-
], IonAccordionGroup);
|
|
26
|
-
export { IonAccordionGroup };
|
|
27
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
28
|
-
type: Component,
|
|
29
|
-
args: [{
|
|
30
|
-
selector: 'ion-accordion-group',
|
|
31
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
32
|
-
template: '<ng-content></ng-content>',
|
|
33
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
34
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
|
|
35
|
-
outputs: ['ionChange'],
|
|
36
|
-
}]
|
|
37
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionChange: [{
|
|
38
|
-
type: Output
|
|
39
|
-
}] } });
|
|
40
|
-
//# sourceMappingURL=ion-accordion-group.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ion-accordion-group.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-accordion-group.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEhI,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;;AAcxG,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;IAG+B;IAFjD,EAAE,CAA+B;IACjC,SAAS,GAAG,IAAI,YAAY,EAAmF,CAAC;IAC1H,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HANU,iBAAiB;8GAAjB,iBAAiB,wQALlB,2BAA2B;;AAK1B,iBAAiB;IAZ7B,QAAQ,CAAC;QACR,qBAAqB,EAAE,uBAAuB;QAC9C,MAAM,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,CAAC;KACpF,CAAC;GASW,iBAAiB,CAO7B;;2FAPY,iBAAiB;kBAR7B,SAAS;mBAAC;oBACT,QAAQ,EAAE,qBAAqB;oBAC/B,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,CAAC;oBACnF,OAAO,EAAE,CAAC,WAAW,CAAC;iBACvB;;sBAGE,MAAM","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, Output } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonAccordionGroup } from '@ionic/core/components/ion-accordion-group.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonAccordionGroup,\n inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']\n})\n@Component({\n selector: 'ion-accordion-group',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],\n outputs: ['ionChange'],\n})\nexport class IonAccordionGroup {\n protected el: HTMLIonAccordionGroupElement;\n @Output() ionChange = new EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { IonAccordionGroupCustomEvent } from '@ionic/core/components';\nimport type { AccordionGroupChangeEventDetail as IIonAccordionGroupAccordionGroupChangeEventDetail } from '@ionic/core/components';\n\nexport declare interface IonAccordionGroup extends Components.IonAccordionGroup {\n /**\n * Emitted when the value property has changed as a result of a user action such as a click.\n\nThis event will not emit when programmatically setting the `value` property.\n */\n ionChange: EventEmitter<IonAccordionGroupCustomEvent<IIonAccordionGroupAccordionGroupChangeEventDetail>>;\n}\n\n\n"]}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
-
import type { Components } from '@ionic/core/components';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class IonAccordion {
|
|
5
|
-
protected z: NgZone;
|
|
6
|
-
protected el: HTMLIonAccordionElement;
|
|
7
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IonAccordion, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IonAccordion, "ion-accordion", never, { "disabled": { "alias": "disabled"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "toggleIconSlot": { "alias": "toggleIconSlot"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
10
|
-
}
|
|
11
|
-
export declare interface IonAccordion extends Components.IonAccordion {
|
|
12
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* auto-generated angular directive proxies */
|
|
4
|
-
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
5
|
-
import { ProxyCmp } from './angular-component-lib/utils';
|
|
6
|
-
import { defineCustomElement as defineIonAccordion } from '@ionic/core/components/ion-accordion.js';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
let IonAccordion = class IonAccordion {
|
|
9
|
-
z;
|
|
10
|
-
el;
|
|
11
|
-
constructor(c, r, z) {
|
|
12
|
-
this.z = z;
|
|
13
|
-
c.detach();
|
|
14
|
-
this.el = r.nativeElement;
|
|
15
|
-
}
|
|
16
|
-
/** @nocollapse */ 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 });
|
|
17
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordion, isStandalone: true, 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 });
|
|
18
|
-
};
|
|
19
|
-
IonAccordion = __decorate([
|
|
20
|
-
ProxyCmp({
|
|
21
|
-
defineCustomElementFn: defineIonAccordion,
|
|
22
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
23
|
-
})
|
|
24
|
-
], IonAccordion);
|
|
25
|
-
export { IonAccordion };
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, decorators: [{
|
|
27
|
-
type: Component,
|
|
28
|
-
args: [{
|
|
29
|
-
selector: 'ion-accordion',
|
|
30
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
31
|
-
template: '<ng-content></ng-content>',
|
|
32
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
33
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
34
|
-
}]
|
|
35
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
36
|
-
//# sourceMappingURL=ion-accordion.js.map
|