@ionic/angular 8.8.11-dev.11781186446.19d9a1cc → 8.8.11-dev.11781283724.13318488
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/app-initialize.d.ts +3 -0
- package/common/directives/control-value-accessors/index.d.ts +1 -0
- package/common/directives/control-value-accessors/value-accessor.d.ts +36 -0
- package/common/directives/navigation/back-button.d.ts +23 -0
- package/common/directives/navigation/nav-params.d.ts +45 -0
- package/common/directives/navigation/nav.d.ts +21 -0
- package/common/directives/navigation/router-link-delegate.d.ts +60 -0
- package/common/directives/navigation/router-outlet.d.ts +104 -0
- package/common/directives/navigation/stack-controller.d.ts +42 -0
- package/common/directives/navigation/stack-utils.d.ts +38 -0
- package/common/directives/navigation/tabs.d.ts +83 -0
- package/common/index.d.ts +22 -0
- package/common/overlays/modal.d.ts +62 -0
- package/common/overlays/popover.d.ts +46 -0
- package/common/providers/angular-delegate.d.ts +28 -0
- package/common/providers/config.d.ts +11 -0
- package/common/providers/dom-controller.d.ts +16 -0
- package/common/providers/menu-controller.d.ts +78 -0
- package/common/providers/nav-controller.d.ts +116 -0
- package/common/providers/platform.d.ts +174 -0
- package/common/types/interfaces.d.ts +8 -0
- package/common/types/ionic-lifecycle-hooks.d.ts +27 -0
- package/common/types/overlay-options.d.ts +16 -0
- package/common/utils/overlay.d.ts +21 -0
- package/common/utils/proxy.d.ts +8 -0
- package/common/utils/routing.d.ts +28 -0
- package/common/utils/util.d.ts +1 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
- package/directives/control-value-accessors/index.d.ts +4 -0
- package/directives/control-value-accessors/numeric-value-accessor.d.ts +11 -0
- package/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
- package/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
- package/directives/navigation/ion-back-button.d.ts +9 -0
- package/directives/navigation/ion-nav.d.ts +8 -0
- package/directives/navigation/ion-router-outlet.d.ts +25 -0
- package/directives/navigation/ion-tabs.d.ts +13 -0
- package/directives/navigation/router-link-delegate.d.ts +16 -0
- package/directives/overlays/modal.d.ts +6 -0
- package/directives/overlays/popover.d.ts +6 -0
- package/directives/proxies-list.d.ts +2 -0
- package/{types/ionic-angular.d.ts → directives/proxies.d.ts} +398 -651
- package/directives/validators/index.d.ts +2 -0
- package/directives/validators/max-validator.d.ts +12 -0
- package/directives/validators/min-validator.d.ts +12 -0
- 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 +156 -0
- package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
- package/esm2022/common/directives/navigation/stack-controller.mjs +280 -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 +203 -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 +84 -96
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +632 -717
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +533 -919
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/index.d.ts +27 -0
- package/ionic-module.d.ts +28 -0
- package/package.json +16 -16
- package/providers/action-sheet-controller.d.ts +8 -0
- package/providers/alert-controller.d.ts +8 -0
- package/providers/animation-controller.d.ts +25 -0
- package/providers/gesture-controller.d.ts +13 -0
- package/providers/loading-controller.d.ts +8 -0
- package/providers/menu-controller.d.ts +7 -0
- package/providers/modal-controller.d.ts +12 -0
- package/providers/picker-controller.d.ts +11 -0
- package/providers/popover-controller.d.ts +9 -0
- package/providers/toast-controller.d.ts +8 -0
- package/schematics/add/index.js +1 -1
- package/schematics/utils/ast.js +2 -1
- package/schematics/utils/config.js +11 -10
- package/schematics/utils/package.js +2 -1
- package/standalone/directives/angular-component-lib/utils.d.ts +9 -0
- package/standalone/directives/checkbox.d.ts +30 -0
- package/standalone/directives/datetime.d.ts +30 -0
- package/standalone/directives/icon.d.ts +9 -0
- package/standalone/directives/index.d.ts +12 -0
- package/standalone/directives/input-otp.d.ts +49 -0
- package/standalone/directives/input.d.ts +47 -0
- package/standalone/directives/proxies.d.ts +1035 -0
- package/standalone/directives/radio-group.d.ts +18 -0
- package/standalone/directives/range.d.ts +47 -0
- package/standalone/directives/searchbar.d.ts +45 -0
- package/standalone/directives/segment.d.ts +19 -0
- package/standalone/directives/select.d.ts +34 -0
- package/standalone/directives/textarea.d.ts +37 -0
- package/standalone/directives/toggle.d.ts +28 -0
- package/standalone/index.d.ts +23 -0
- package/standalone/navigation/back-button.d.ts +9 -0
- package/standalone/navigation/nav.d.ts +8 -0
- package/standalone/navigation/router-link-delegate.d.ts +10 -0
- package/standalone/navigation/router-outlet.d.ts +25 -0
- package/standalone/navigation/tabs.d.ts +13 -0
- package/standalone/overlays/modal.d.ts +6 -0
- package/standalone/overlays/popover.d.ts +6 -0
- package/standalone/providers/action-sheet-controller.d.ts +8 -0
- package/standalone/providers/alert-controller.d.ts +8 -0
- package/standalone/providers/animation-controller.d.ts +25 -0
- package/standalone/providers/gesture-controller.d.ts +13 -0
- package/standalone/providers/ionic-angular.d.ts +7 -0
- package/standalone/providers/loading-controller.d.ts +8 -0
- package/standalone/providers/menu-controller.d.ts +7 -0
- package/standalone/providers/modal-controller.d.ts +12 -0
- package/standalone/providers/picker-controller.d.ts +11 -0
- package/standalone/providers/popover-controller.d.ts +9 -0
- package/standalone/providers/toast-controller.d.ts +8 -0
- package/types/ionic-angular-common.d.ts +0 -1013
- package/types/ionic-angular-standalone.d.ts +0 -1560
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate } from 'tslib';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { ViewContainerRef,
|
|
3
|
+
import { ViewContainerRef, Component, Attribute, Optional, SkipSelf, ViewChild, ChangeDetectionStrategy, Directive, ContentChild, ContentChildren, inject, Injector, EnvironmentInjector, Injectable, makeEnvironmentProviders, APP_INITIALIZER, forwardRef, HostListener } from '@angular/core';
|
|
4
4
|
import * as i2$1 from '@ionic/angular/common';
|
|
5
5
|
import { IonRouterOutlet as IonRouterOutlet$1, ProxyCmp as ProxyCmp$1, IonBackButton as IonBackButton$1, IonModal as IonModal$1, IonPopover as IonPopover$1, RouterLinkDelegateDirective, RouterLinkWithHrefDelegateDirective, IonTabs as IonTabs$1, OverlayBaseController, AngularDelegate, ConfigToken, provideComponentInputBinding, MenuController as MenuController$1, IonNav as IonNav$1, ValueAccessor, setIonicClasses } from '@ionic/angular/common';
|
|
6
6
|
export { Config, DomController, IonModalToken, IonicRouteStrategy, NavController, NavParams, Platform } from '@ionic/angular/common';
|
|
@@ -61,46 +61,47 @@ import { defineCustomElement as defineCustomElement$O } from '@ionic/core/compon
|
|
|
61
61
|
import { defineCustomElement as defineCustomElement$P } from '@ionic/core/components/ion-picker.js';
|
|
62
62
|
import { defineCustomElement as defineCustomElement$Q } from '@ionic/core/components/ion-picker-column.js';
|
|
63
63
|
import { defineCustomElement as defineCustomElement$R } from '@ionic/core/components/ion-picker-column-option.js';
|
|
64
|
-
import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-
|
|
65
|
-
import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-
|
|
66
|
-
import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-
|
|
67
|
-
import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-refresher
|
|
68
|
-
import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-
|
|
69
|
-
import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-reorder
|
|
70
|
-
import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-
|
|
71
|
-
import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-
|
|
72
|
-
import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-
|
|
73
|
-
import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-segment-
|
|
74
|
-
import { defineCustomElement as defineCustomElement$10 } from '@ionic/core/components/ion-segment-
|
|
75
|
-
import { defineCustomElement as defineCustomElement$11 } from '@ionic/core/components/ion-
|
|
76
|
-
import { defineCustomElement as defineCustomElement$12 } from '@ionic/core/components/ion-select-
|
|
77
|
-
import { defineCustomElement as defineCustomElement$13 } from '@ionic/core/components/ion-
|
|
78
|
-
import { defineCustomElement as defineCustomElement$14 } from '@ionic/core/components/ion-
|
|
79
|
-
import { defineCustomElement as defineCustomElement$15 } from '@ionic/core/components/ion-
|
|
80
|
-
import { defineCustomElement as defineCustomElement$16 } from '@ionic/core/components/ion-
|
|
81
|
-
import { defineCustomElement as defineCustomElement$17 } from '@ionic/core/components/ion-tab
|
|
82
|
-
import { defineCustomElement as defineCustomElement$18 } from '@ionic/core/components/ion-tab-
|
|
83
|
-
import { defineCustomElement as defineCustomElement$19 } from '@ionic/core/components/ion-
|
|
84
|
-
import { defineCustomElement as defineCustomElement$1a } from '@ionic/core/components/ion-
|
|
85
|
-
import { defineCustomElement as defineCustomElement$1b } from '@ionic/core/components/ion-
|
|
86
|
-
import { defineCustomElement as defineCustomElement$1c } from '@ionic/core/components/ion-
|
|
87
|
-
import { defineCustomElement as defineCustomElement$1d } from '@ionic/core/components/ion-
|
|
88
|
-
import {
|
|
64
|
+
import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-picker-legacy.js';
|
|
65
|
+
import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-progress-bar.js';
|
|
66
|
+
import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-radio.js';
|
|
67
|
+
import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-refresher.js';
|
|
68
|
+
import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-refresher-content.js';
|
|
69
|
+
import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-reorder.js';
|
|
70
|
+
import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-reorder-group.js';
|
|
71
|
+
import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-ripple-effect.js';
|
|
72
|
+
import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-row.js';
|
|
73
|
+
import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-segment-button.js';
|
|
74
|
+
import { defineCustomElement as defineCustomElement$10 } from '@ionic/core/components/ion-segment-content.js';
|
|
75
|
+
import { defineCustomElement as defineCustomElement$11 } from '@ionic/core/components/ion-segment-view.js';
|
|
76
|
+
import { defineCustomElement as defineCustomElement$12 } from '@ionic/core/components/ion-select-modal.js';
|
|
77
|
+
import { defineCustomElement as defineCustomElement$13 } from '@ionic/core/components/ion-select-option.js';
|
|
78
|
+
import { defineCustomElement as defineCustomElement$14 } from '@ionic/core/components/ion-skeleton-text.js';
|
|
79
|
+
import { defineCustomElement as defineCustomElement$15 } from '@ionic/core/components/ion-spinner.js';
|
|
80
|
+
import { defineCustomElement as defineCustomElement$16 } from '@ionic/core/components/ion-split-pane.js';
|
|
81
|
+
import { defineCustomElement as defineCustomElement$17 } from '@ionic/core/components/ion-tab.js';
|
|
82
|
+
import { defineCustomElement as defineCustomElement$18 } from '@ionic/core/components/ion-tab-bar.js';
|
|
83
|
+
import { defineCustomElement as defineCustomElement$19 } from '@ionic/core/components/ion-tab-button.js';
|
|
84
|
+
import { defineCustomElement as defineCustomElement$1a } from '@ionic/core/components/ion-text.js';
|
|
85
|
+
import { defineCustomElement as defineCustomElement$1b } from '@ionic/core/components/ion-thumbnail.js';
|
|
86
|
+
import { defineCustomElement as defineCustomElement$1c } from '@ionic/core/components/ion-title.js';
|
|
87
|
+
import { defineCustomElement as defineCustomElement$1d } from '@ionic/core/components/ion-toast.js';
|
|
88
|
+
import { defineCustomElement as defineCustomElement$1e } from '@ionic/core/components/ion-toolbar.js';
|
|
89
|
+
import { modalController, popoverController, initialize, actionSheetController, alertController, createAnimation, getTimeGivenProgression, createGesture, loadingController, menuController, pickerController, toastController } from '@ionic/core/components';
|
|
89
90
|
export { IonicSafeString, IonicSlides, createAnimation, createGesture, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation } from '@ionic/core/components';
|
|
90
|
-
import { defineCustomElement as defineCustomElement$
|
|
91
|
+
import { defineCustomElement as defineCustomElement$1f } from '@ionic/core/components/ion-nav.js';
|
|
91
92
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
92
|
-
import { defineCustomElement as defineCustomElement$
|
|
93
|
-
import { defineCustomElement as defineCustomElement$
|
|
94
|
-
import { defineCustomElement as defineCustomElement$
|
|
95
|
-
import { defineCustomElement as defineCustomElement$
|
|
96
|
-
import { defineCustomElement as defineCustomElement$
|
|
97
|
-
import { defineCustomElement as defineCustomElement$
|
|
98
|
-
import { defineCustomElement as defineCustomElement$
|
|
99
|
-
import { defineCustomElement as defineCustomElement$
|
|
100
|
-
import { defineCustomElement as defineCustomElement$
|
|
101
|
-
import { defineCustomElement as defineCustomElement$
|
|
102
|
-
import { defineCustomElement as defineCustomElement$
|
|
103
|
-
import { defineCustomElement as defineCustomElement$
|
|
93
|
+
import { defineCustomElement as defineCustomElement$1g } from '@ionic/core/components/ion-checkbox.js';
|
|
94
|
+
import { defineCustomElement as defineCustomElement$1h } from '@ionic/core/components/ion-datetime.js';
|
|
95
|
+
import { defineCustomElement as defineCustomElement$1i } from 'ionicons/components/ion-icon.js';
|
|
96
|
+
import { defineCustomElement as defineCustomElement$1j } from '@ionic/core/components/ion-input.js';
|
|
97
|
+
import { defineCustomElement as defineCustomElement$1k } from '@ionic/core/components/ion-input-otp.js';
|
|
98
|
+
import { defineCustomElement as defineCustomElement$1l } from '@ionic/core/components/ion-radio-group.js';
|
|
99
|
+
import { defineCustomElement as defineCustomElement$1m } from '@ionic/core/components/ion-range.js';
|
|
100
|
+
import { defineCustomElement as defineCustomElement$1n } from '@ionic/core/components/ion-searchbar.js';
|
|
101
|
+
import { defineCustomElement as defineCustomElement$1o } from '@ionic/core/components/ion-segment.js';
|
|
102
|
+
import { defineCustomElement as defineCustomElement$1p } from '@ionic/core/components/ion-select.js';
|
|
103
|
+
import { defineCustomElement as defineCustomElement$1q } from '@ionic/core/components/ion-textarea.js';
|
|
104
|
+
import { defineCustomElement as defineCustomElement$1r } from '@ionic/core/components/ion-toggle.js';
|
|
104
105
|
|
|
105
106
|
let IonRouterOutlet = class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
106
107
|
parentOutlet;
|
|
@@ -122,22 +123,22 @@ let IonRouterOutlet = class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
|
122
123
|
super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
|
|
123
124
|
this.parentOutlet = parentOutlet;
|
|
124
125
|
}
|
|
125
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
126
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
126
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
127
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, isStandalone: true, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
|
|
127
128
|
};
|
|
128
129
|
IonRouterOutlet = __decorate([
|
|
129
130
|
ProxyCmp$1({
|
|
130
131
|
defineCustomElementFn: defineCustomElement$1,
|
|
131
132
|
})
|
|
132
133
|
], IonRouterOutlet);
|
|
133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
|
|
134
135
|
type: Component,
|
|
135
136
|
args: [{
|
|
136
137
|
selector: 'ion-router-outlet',
|
|
137
138
|
standalone: true,
|
|
138
139
|
template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
|
|
139
140
|
}]
|
|
140
|
-
}], ctorParameters: ()
|
|
141
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
141
142
|
type: Attribute,
|
|
142
143
|
args: ['name']
|
|
143
144
|
}] }, { type: undefined, decorators: [{
|
|
@@ -149,7 +150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
149
150
|
type: SkipSelf
|
|
150
151
|
}, {
|
|
151
152
|
type: Optional
|
|
152
|
-
}] }], propDecorators: { outletContent: [{
|
|
153
|
+
}] }]; }, propDecorators: { outletContent: [{
|
|
153
154
|
type: ViewChild,
|
|
154
155
|
args: ['outletContent', { read: ViewContainerRef, static: true }]
|
|
155
156
|
}] } });
|
|
@@ -158,15 +159,15 @@ let IonBackButton = class IonBackButton extends IonBackButton$1 {
|
|
|
158
159
|
constructor(routerOutlet, navCtrl, config, r, z, c) {
|
|
159
160
|
super(routerOutlet, navCtrl, config, r, z, c);
|
|
160
161
|
}
|
|
161
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
162
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
162
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
163
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, isStandalone: true, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
163
164
|
};
|
|
164
165
|
IonBackButton = __decorate([
|
|
165
166
|
ProxyCmp$1({
|
|
166
167
|
defineCustomElementFn: defineCustomElement$2,
|
|
167
168
|
})
|
|
168
169
|
], IonBackButton);
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
|
|
170
171
|
type: Component,
|
|
171
172
|
args: [{
|
|
172
173
|
selector: 'ion-back-button',
|
|
@@ -174,13 +175,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
174
175
|
template: '<ng-content></ng-content>',
|
|
175
176
|
standalone: true,
|
|
176
177
|
}]
|
|
177
|
-
}], ctorParameters: ()
|
|
178
|
+
}], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
|
|
178
179
|
type: Optional
|
|
179
|
-
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
180
|
+
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
180
181
|
|
|
181
182
|
let IonModal = class IonModal extends IonModal$1 {
|
|
182
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
183
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
183
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
184
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, isStandalone: true, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
184
185
|
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
185
186
|
</div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
186
187
|
};
|
|
@@ -189,7 +190,7 @@ IonModal = __decorate([
|
|
|
189
190
|
defineCustomElementFn: defineCustomElement$3,
|
|
190
191
|
})
|
|
191
192
|
], IonModal);
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
|
|
193
194
|
type: Component,
|
|
194
195
|
args: [{
|
|
195
196
|
selector: 'ion-modal',
|
|
@@ -203,15 +204,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
203
204
|
}] });
|
|
204
205
|
|
|
205
206
|
let IonPopover = class IonPopover extends IonPopover$1 {
|
|
206
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
207
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
207
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
208
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, isStandalone: true, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
208
209
|
};
|
|
209
210
|
IonPopover = __decorate([
|
|
210
211
|
ProxyCmp$1({
|
|
211
212
|
defineCustomElementFn: defineCustomElement$4,
|
|
212
213
|
})
|
|
213
214
|
], IonPopover);
|
|
214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
|
|
215
216
|
type: Component,
|
|
216
217
|
args: [{
|
|
217
218
|
selector: 'ion-popover',
|
|
@@ -222,24 +223,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
222
223
|
}]
|
|
223
224
|
}] });
|
|
224
225
|
|
|
225
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
226
226
|
class IonRouterLink extends RouterLinkDelegateDirective {
|
|
227
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
228
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
227
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLink, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
228
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterLink, isStandalone: true, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
229
229
|
}
|
|
230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLink, decorators: [{
|
|
231
231
|
type: Directive,
|
|
232
232
|
args: [{
|
|
233
233
|
selector: ':not(a):not(area)[routerLink]',
|
|
234
234
|
standalone: true,
|
|
235
235
|
}]
|
|
236
236
|
}] });
|
|
237
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
238
237
|
class IonRouterLinkWithHref extends RouterLinkWithHrefDelegateDirective {
|
|
239
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
240
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
238
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLinkWithHref, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
239
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterLinkWithHref, isStandalone: true, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
241
240
|
}
|
|
242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterLinkWithHref, decorators: [{
|
|
243
242
|
type: Directive,
|
|
244
243
|
args: [{
|
|
245
244
|
selector: 'a[routerLink],area[routerLink]',
|
|
@@ -313,8 +312,8 @@ let IonAccordion = class IonAccordion {
|
|
|
313
312
|
c.detach();
|
|
314
313
|
this.el = r.nativeElement;
|
|
315
314
|
}
|
|
316
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
317
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
315
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
316
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 });
|
|
318
317
|
};
|
|
319
318
|
IonAccordion = __decorate([
|
|
320
319
|
ProxyCmp({
|
|
@@ -322,7 +321,7 @@ IonAccordion = __decorate([
|
|
|
322
321
|
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
323
322
|
})
|
|
324
323
|
], IonAccordion);
|
|
325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
|
|
326
325
|
type: Component,
|
|
327
326
|
args: [{
|
|
328
327
|
selector: 'ion-accordion',
|
|
@@ -330,19 +329,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
330
329
|
template: '<ng-content></ng-content>',
|
|
331
330
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
332
331
|
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
332
|
+
standalone: true
|
|
333
333
|
}]
|
|
334
|
-
}], ctorParameters: ()
|
|
334
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
335
335
|
let IonAccordionGroup = class IonAccordionGroup {
|
|
336
336
|
z;
|
|
337
337
|
el;
|
|
338
|
-
ionChange = new EventEmitter();
|
|
339
338
|
constructor(c, r, z) {
|
|
340
339
|
this.z = z;
|
|
341
340
|
c.detach();
|
|
342
341
|
this.el = r.nativeElement;
|
|
342
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
343
343
|
}
|
|
344
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
345
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
344
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
345
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, isStandalone: true, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
346
346
|
};
|
|
347
347
|
IonAccordionGroup = __decorate([
|
|
348
348
|
ProxyCmp({
|
|
@@ -350,7 +350,7 @@ IonAccordionGroup = __decorate([
|
|
|
350
350
|
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
351
351
|
})
|
|
352
352
|
], IonAccordionGroup);
|
|
353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
354
354
|
type: Component,
|
|
355
355
|
args: [{
|
|
356
356
|
selector: 'ion-accordion-group',
|
|
@@ -358,29 +358,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
358
358
|
template: '<ng-content></ng-content>',
|
|
359
359
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
360
360
|
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
|
|
361
|
-
|
|
361
|
+
standalone: true
|
|
362
362
|
}]
|
|
363
|
-
}], ctorParameters: ()
|
|
364
|
-
type: Output
|
|
365
|
-
}] } });
|
|
363
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
366
364
|
let IonActionSheet = class IonActionSheet {
|
|
367
365
|
z;
|
|
368
366
|
el;
|
|
369
|
-
ionActionSheetDidPresent = new EventEmitter();
|
|
370
|
-
ionActionSheetWillPresent = new EventEmitter();
|
|
371
|
-
ionActionSheetWillDismiss = new EventEmitter();
|
|
372
|
-
ionActionSheetDidDismiss = new EventEmitter();
|
|
373
|
-
didPresent = new EventEmitter();
|
|
374
|
-
willPresent = new EventEmitter();
|
|
375
|
-
willDismiss = new EventEmitter();
|
|
376
|
-
didDismiss = new EventEmitter();
|
|
377
367
|
constructor(c, r, z) {
|
|
378
368
|
this.z = z;
|
|
379
369
|
c.detach();
|
|
380
370
|
this.el = r.nativeElement;
|
|
371
|
+
proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
381
372
|
}
|
|
382
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
383
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
373
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
374
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
384
375
|
};
|
|
385
376
|
IonActionSheet = __decorate([
|
|
386
377
|
ProxyCmp({
|
|
@@ -389,7 +380,7 @@ IonActionSheet = __decorate([
|
|
|
389
380
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
390
381
|
})
|
|
391
382
|
], IonActionSheet);
|
|
392
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
393
384
|
type: Component,
|
|
394
385
|
args: [{
|
|
395
386
|
selector: 'ion-action-sheet',
|
|
@@ -397,43 +388,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
397
388
|
template: '<ng-content></ng-content>',
|
|
398
389
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
399
390
|
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
400
|
-
|
|
401
|
-
}]
|
|
402
|
-
}], ctorParameters: ()
|
|
403
|
-
type: Output
|
|
404
|
-
}], ionActionSheetWillPresent: [{
|
|
405
|
-
type: Output
|
|
406
|
-
}], ionActionSheetWillDismiss: [{
|
|
407
|
-
type: Output
|
|
408
|
-
}], ionActionSheetDidDismiss: [{
|
|
409
|
-
type: Output
|
|
410
|
-
}], didPresent: [{
|
|
411
|
-
type: Output
|
|
412
|
-
}], willPresent: [{
|
|
413
|
-
type: Output
|
|
414
|
-
}], willDismiss: [{
|
|
415
|
-
type: Output
|
|
416
|
-
}], didDismiss: [{
|
|
417
|
-
type: Output
|
|
418
|
-
}] } });
|
|
391
|
+
standalone: true
|
|
392
|
+
}]
|
|
393
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
419
394
|
let IonAlert = class IonAlert {
|
|
420
395
|
z;
|
|
421
396
|
el;
|
|
422
|
-
ionAlertDidPresent = new EventEmitter();
|
|
423
|
-
ionAlertWillPresent = new EventEmitter();
|
|
424
|
-
ionAlertWillDismiss = new EventEmitter();
|
|
425
|
-
ionAlertDidDismiss = new EventEmitter();
|
|
426
|
-
didPresent = new EventEmitter();
|
|
427
|
-
willPresent = new EventEmitter();
|
|
428
|
-
willDismiss = new EventEmitter();
|
|
429
|
-
didDismiss = new EventEmitter();
|
|
430
397
|
constructor(c, r, z) {
|
|
431
398
|
this.z = z;
|
|
432
399
|
c.detach();
|
|
433
400
|
this.el = r.nativeElement;
|
|
401
|
+
proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
434
402
|
}
|
|
435
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
436
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
403
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
404
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
437
405
|
};
|
|
438
406
|
IonAlert = __decorate([
|
|
439
407
|
ProxyCmp({
|
|
@@ -442,7 +410,7 @@ IonAlert = __decorate([
|
|
|
442
410
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
443
411
|
})
|
|
444
412
|
], IonAlert);
|
|
445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, decorators: [{
|
|
446
414
|
type: Component,
|
|
447
415
|
args: [{
|
|
448
416
|
selector: 'ion-alert',
|
|
@@ -450,25 +418,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
450
418
|
template: '<ng-content></ng-content>',
|
|
451
419
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
452
420
|
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
453
|
-
|
|
454
|
-
}]
|
|
455
|
-
}], ctorParameters: ()
|
|
456
|
-
type: Output
|
|
457
|
-
}], ionAlertWillPresent: [{
|
|
458
|
-
type: Output
|
|
459
|
-
}], ionAlertWillDismiss: [{
|
|
460
|
-
type: Output
|
|
461
|
-
}], ionAlertDidDismiss: [{
|
|
462
|
-
type: Output
|
|
463
|
-
}], didPresent: [{
|
|
464
|
-
type: Output
|
|
465
|
-
}], willPresent: [{
|
|
466
|
-
type: Output
|
|
467
|
-
}], willDismiss: [{
|
|
468
|
-
type: Output
|
|
469
|
-
}], didDismiss: [{
|
|
470
|
-
type: Output
|
|
471
|
-
}] } });
|
|
421
|
+
standalone: true
|
|
422
|
+
}]
|
|
423
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
472
424
|
let IonApp = class IonApp {
|
|
473
425
|
z;
|
|
474
426
|
el;
|
|
@@ -477,8 +429,8 @@ let IonApp = class IonApp {
|
|
|
477
429
|
c.detach();
|
|
478
430
|
this.el = r.nativeElement;
|
|
479
431
|
}
|
|
480
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
481
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
432
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
433
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, isStandalone: true, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
482
434
|
};
|
|
483
435
|
IonApp = __decorate([
|
|
484
436
|
ProxyCmp({
|
|
@@ -486,7 +438,7 @@ IonApp = __decorate([
|
|
|
486
438
|
methods: ['setFocus']
|
|
487
439
|
})
|
|
488
440
|
], IonApp);
|
|
489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, decorators: [{
|
|
490
442
|
type: Component,
|
|
491
443
|
args: [{
|
|
492
444
|
selector: 'ion-app',
|
|
@@ -494,8 +446,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
494
446
|
template: '<ng-content></ng-content>',
|
|
495
447
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
496
448
|
inputs: [],
|
|
449
|
+
standalone: true
|
|
497
450
|
}]
|
|
498
|
-
}], ctorParameters: ()
|
|
451
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
499
452
|
let IonAvatar = class IonAvatar {
|
|
500
453
|
z;
|
|
501
454
|
el;
|
|
@@ -504,15 +457,15 @@ let IonAvatar = class IonAvatar {
|
|
|
504
457
|
c.detach();
|
|
505
458
|
this.el = r.nativeElement;
|
|
506
459
|
}
|
|
507
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
508
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
460
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
461
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, isStandalone: true, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
509
462
|
};
|
|
510
463
|
IonAvatar = __decorate([
|
|
511
464
|
ProxyCmp({
|
|
512
465
|
defineCustomElementFn: defineCustomElement$a
|
|
513
466
|
})
|
|
514
467
|
], IonAvatar);
|
|
515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
468
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
|
|
516
469
|
type: Component,
|
|
517
470
|
args: [{
|
|
518
471
|
selector: 'ion-avatar',
|
|
@@ -520,19 +473,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
520
473
|
template: '<ng-content></ng-content>',
|
|
521
474
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
522
475
|
inputs: [],
|
|
476
|
+
standalone: true
|
|
523
477
|
}]
|
|
524
|
-
}], ctorParameters: ()
|
|
478
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
525
479
|
let IonBackdrop = class IonBackdrop {
|
|
526
480
|
z;
|
|
527
481
|
el;
|
|
528
|
-
ionBackdropTap = new EventEmitter();
|
|
529
482
|
constructor(c, r, z) {
|
|
530
483
|
this.z = z;
|
|
531
484
|
c.detach();
|
|
532
485
|
this.el = r.nativeElement;
|
|
486
|
+
proxyOutputs(this, this.el, ['ionBackdropTap']);
|
|
533
487
|
}
|
|
534
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
535
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
488
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
489
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
536
490
|
};
|
|
537
491
|
IonBackdrop = __decorate([
|
|
538
492
|
ProxyCmp({
|
|
@@ -540,7 +494,7 @@ IonBackdrop = __decorate([
|
|
|
540
494
|
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
541
495
|
})
|
|
542
496
|
], IonBackdrop);
|
|
543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
544
498
|
type: Component,
|
|
545
499
|
args: [{
|
|
546
500
|
selector: 'ion-backdrop',
|
|
@@ -548,11 +502,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
548
502
|
template: '<ng-content></ng-content>',
|
|
549
503
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
550
504
|
inputs: ['stopPropagation', 'tappable', 'visible'],
|
|
551
|
-
|
|
505
|
+
standalone: true
|
|
552
506
|
}]
|
|
553
|
-
}], ctorParameters: ()
|
|
554
|
-
type: Output
|
|
555
|
-
}] } });
|
|
507
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
556
508
|
let IonBadge = class IonBadge {
|
|
557
509
|
z;
|
|
558
510
|
el;
|
|
@@ -561,8 +513,8 @@ let IonBadge = class IonBadge {
|
|
|
561
513
|
c.detach();
|
|
562
514
|
this.el = r.nativeElement;
|
|
563
515
|
}
|
|
564
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
565
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
516
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
517
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
566
518
|
};
|
|
567
519
|
IonBadge = __decorate([
|
|
568
520
|
ProxyCmp({
|
|
@@ -570,7 +522,7 @@ IonBadge = __decorate([
|
|
|
570
522
|
inputs: ['color', 'mode']
|
|
571
523
|
})
|
|
572
524
|
], IonBadge);
|
|
573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
|
|
574
526
|
type: Component,
|
|
575
527
|
args: [{
|
|
576
528
|
selector: 'ion-badge',
|
|
@@ -578,20 +530,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
578
530
|
template: '<ng-content></ng-content>',
|
|
579
531
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
580
532
|
inputs: ['color', 'mode'],
|
|
533
|
+
standalone: true
|
|
581
534
|
}]
|
|
582
|
-
}], ctorParameters: ()
|
|
535
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
583
536
|
let IonBreadcrumb = class IonBreadcrumb {
|
|
584
537
|
z;
|
|
585
538
|
el;
|
|
586
|
-
ionFocus = new EventEmitter();
|
|
587
|
-
ionBlur = new EventEmitter();
|
|
588
539
|
constructor(c, r, z) {
|
|
589
540
|
this.z = z;
|
|
590
541
|
c.detach();
|
|
591
542
|
this.el = r.nativeElement;
|
|
543
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
592
544
|
}
|
|
593
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
594
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
545
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
546
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
595
547
|
};
|
|
596
548
|
IonBreadcrumb = __decorate([
|
|
597
549
|
ProxyCmp({
|
|
@@ -599,7 +551,7 @@ IonBreadcrumb = __decorate([
|
|
|
599
551
|
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
600
552
|
})
|
|
601
553
|
], IonBreadcrumb);
|
|
602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
603
555
|
type: Component,
|
|
604
556
|
args: [{
|
|
605
557
|
selector: 'ion-breadcrumb',
|
|
@@ -607,24 +559,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
607
559
|
template: '<ng-content></ng-content>',
|
|
608
560
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
609
561
|
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
|
|
610
|
-
|
|
562
|
+
standalone: true
|
|
611
563
|
}]
|
|
612
|
-
}], ctorParameters: ()
|
|
613
|
-
type: Output
|
|
614
|
-
}], ionBlur: [{
|
|
615
|
-
type: Output
|
|
616
|
-
}] } });
|
|
564
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
565
|
let IonBreadcrumbs = class IonBreadcrumbs {
|
|
618
566
|
z;
|
|
619
567
|
el;
|
|
620
|
-
ionCollapsedClick = new EventEmitter();
|
|
621
568
|
constructor(c, r, z) {
|
|
622
569
|
this.z = z;
|
|
623
570
|
c.detach();
|
|
624
571
|
this.el = r.nativeElement;
|
|
572
|
+
proxyOutputs(this, this.el, ['ionCollapsedClick']);
|
|
625
573
|
}
|
|
626
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
627
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
574
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
575
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, isStandalone: true, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
628
576
|
};
|
|
629
577
|
IonBreadcrumbs = __decorate([
|
|
630
578
|
ProxyCmp({
|
|
@@ -632,7 +580,7 @@ IonBreadcrumbs = __decorate([
|
|
|
632
580
|
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
633
581
|
})
|
|
634
582
|
], IonBreadcrumbs);
|
|
635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
636
584
|
type: Component,
|
|
637
585
|
args: [{
|
|
638
586
|
selector: 'ion-breadcrumbs',
|
|
@@ -640,23 +588,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
640
588
|
template: '<ng-content></ng-content>',
|
|
641
589
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
642
590
|
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'],
|
|
643
|
-
|
|
591
|
+
standalone: true
|
|
644
592
|
}]
|
|
645
|
-
}], ctorParameters: ()
|
|
646
|
-
type: Output
|
|
647
|
-
}] } });
|
|
593
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
648
594
|
let IonButton = class IonButton {
|
|
649
595
|
z;
|
|
650
596
|
el;
|
|
651
|
-
ionFocus = new EventEmitter();
|
|
652
|
-
ionBlur = new EventEmitter();
|
|
653
597
|
constructor(c, r, z) {
|
|
654
598
|
this.z = z;
|
|
655
599
|
c.detach();
|
|
656
600
|
this.el = r.nativeElement;
|
|
601
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
657
602
|
}
|
|
658
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
659
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
603
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
604
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, isStandalone: true, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
660
605
|
};
|
|
661
606
|
IonButton = __decorate([
|
|
662
607
|
ProxyCmp({
|
|
@@ -664,7 +609,7 @@ IonButton = __decorate([
|
|
|
664
609
|
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
665
610
|
})
|
|
666
611
|
], IonButton);
|
|
667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
|
|
668
613
|
type: Component,
|
|
669
614
|
args: [{
|
|
670
615
|
selector: 'ion-button',
|
|
@@ -672,13 +617,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
672
617
|
template: '<ng-content></ng-content>',
|
|
673
618
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
674
619
|
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type'],
|
|
675
|
-
|
|
620
|
+
standalone: true
|
|
676
621
|
}]
|
|
677
|
-
}], ctorParameters: ()
|
|
678
|
-
type: Output
|
|
679
|
-
}], ionBlur: [{
|
|
680
|
-
type: Output
|
|
681
|
-
}] } });
|
|
622
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
682
623
|
let IonButtons = class IonButtons {
|
|
683
624
|
z;
|
|
684
625
|
el;
|
|
@@ -687,8 +628,8 @@ let IonButtons = class IonButtons {
|
|
|
687
628
|
c.detach();
|
|
688
629
|
this.el = r.nativeElement;
|
|
689
630
|
}
|
|
690
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
691
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
631
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
632
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, isStandalone: true, selector: "ion-buttons", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
692
633
|
};
|
|
693
634
|
IonButtons = __decorate([
|
|
694
635
|
ProxyCmp({
|
|
@@ -696,7 +637,7 @@ IonButtons = __decorate([
|
|
|
696
637
|
inputs: ['collapse']
|
|
697
638
|
})
|
|
698
639
|
], IonButtons);
|
|
699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
|
|
700
641
|
type: Component,
|
|
701
642
|
args: [{
|
|
702
643
|
selector: 'ion-buttons',
|
|
@@ -704,8 +645,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
704
645
|
template: '<ng-content></ng-content>',
|
|
705
646
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
706
647
|
inputs: ['collapse'],
|
|
648
|
+
standalone: true
|
|
707
649
|
}]
|
|
708
|
-
}], ctorParameters: ()
|
|
650
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
709
651
|
let IonCard = class IonCard {
|
|
710
652
|
z;
|
|
711
653
|
el;
|
|
@@ -714,8 +656,8 @@ let IonCard = class IonCard {
|
|
|
714
656
|
c.detach();
|
|
715
657
|
this.el = r.nativeElement;
|
|
716
658
|
}
|
|
717
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
718
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
659
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
660
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, isStandalone: true, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
719
661
|
};
|
|
720
662
|
IonCard = __decorate([
|
|
721
663
|
ProxyCmp({
|
|
@@ -723,7 +665,7 @@ IonCard = __decorate([
|
|
|
723
665
|
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
724
666
|
})
|
|
725
667
|
], IonCard);
|
|
726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
|
|
727
669
|
type: Component,
|
|
728
670
|
args: [{
|
|
729
671
|
selector: 'ion-card',
|
|
@@ -731,8 +673,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
731
673
|
template: '<ng-content></ng-content>',
|
|
732
674
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
733
675
|
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
676
|
+
standalone: true
|
|
734
677
|
}]
|
|
735
|
-
}], ctorParameters: ()
|
|
678
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
736
679
|
let IonCardContent = class IonCardContent {
|
|
737
680
|
z;
|
|
738
681
|
el;
|
|
@@ -741,8 +684,8 @@ let IonCardContent = class IonCardContent {
|
|
|
741
684
|
c.detach();
|
|
742
685
|
this.el = r.nativeElement;
|
|
743
686
|
}
|
|
744
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
745
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
687
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
688
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, isStandalone: true, selector: "ion-card-content", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
746
689
|
};
|
|
747
690
|
IonCardContent = __decorate([
|
|
748
691
|
ProxyCmp({
|
|
@@ -750,7 +693,7 @@ IonCardContent = __decorate([
|
|
|
750
693
|
inputs: ['mode']
|
|
751
694
|
})
|
|
752
695
|
], IonCardContent);
|
|
753
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
|
|
754
697
|
type: Component,
|
|
755
698
|
args: [{
|
|
756
699
|
selector: 'ion-card-content',
|
|
@@ -758,8 +701,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
758
701
|
template: '<ng-content></ng-content>',
|
|
759
702
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
760
703
|
inputs: ['mode'],
|
|
704
|
+
standalone: true
|
|
761
705
|
}]
|
|
762
|
-
}], ctorParameters: ()
|
|
706
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
763
707
|
let IonCardHeader = class IonCardHeader {
|
|
764
708
|
z;
|
|
765
709
|
el;
|
|
@@ -768,8 +712,8 @@ let IonCardHeader = class IonCardHeader {
|
|
|
768
712
|
c.detach();
|
|
769
713
|
this.el = r.nativeElement;
|
|
770
714
|
}
|
|
771
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
772
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
715
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
716
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, isStandalone: true, selector: "ion-card-header", inputs: { color: "color", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
773
717
|
};
|
|
774
718
|
IonCardHeader = __decorate([
|
|
775
719
|
ProxyCmp({
|
|
@@ -777,7 +721,7 @@ IonCardHeader = __decorate([
|
|
|
777
721
|
inputs: ['color', 'mode', 'translucent']
|
|
778
722
|
})
|
|
779
723
|
], IonCardHeader);
|
|
780
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
781
725
|
type: Component,
|
|
782
726
|
args: [{
|
|
783
727
|
selector: 'ion-card-header',
|
|
@@ -785,8 +729,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
785
729
|
template: '<ng-content></ng-content>',
|
|
786
730
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
787
731
|
inputs: ['color', 'mode', 'translucent'],
|
|
732
|
+
standalone: true
|
|
788
733
|
}]
|
|
789
|
-
}], ctorParameters: ()
|
|
734
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
790
735
|
let IonCardSubtitle = class IonCardSubtitle {
|
|
791
736
|
z;
|
|
792
737
|
el;
|
|
@@ -795,8 +740,8 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
795
740
|
c.detach();
|
|
796
741
|
this.el = r.nativeElement;
|
|
797
742
|
}
|
|
798
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
799
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
743
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
744
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, isStandalone: true, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
800
745
|
};
|
|
801
746
|
IonCardSubtitle = __decorate([
|
|
802
747
|
ProxyCmp({
|
|
@@ -804,7 +749,7 @@ IonCardSubtitle = __decorate([
|
|
|
804
749
|
inputs: ['color', 'mode']
|
|
805
750
|
})
|
|
806
751
|
], IonCardSubtitle);
|
|
807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
808
753
|
type: Component,
|
|
809
754
|
args: [{
|
|
810
755
|
selector: 'ion-card-subtitle',
|
|
@@ -812,8 +757,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
812
757
|
template: '<ng-content></ng-content>',
|
|
813
758
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
814
759
|
inputs: ['color', 'mode'],
|
|
760
|
+
standalone: true
|
|
815
761
|
}]
|
|
816
|
-
}], ctorParameters: ()
|
|
762
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
817
763
|
let IonCardTitle = class IonCardTitle {
|
|
818
764
|
z;
|
|
819
765
|
el;
|
|
@@ -822,8 +768,8 @@ let IonCardTitle = class IonCardTitle {
|
|
|
822
768
|
c.detach();
|
|
823
769
|
this.el = r.nativeElement;
|
|
824
770
|
}
|
|
825
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
826
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
771
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
772
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, isStandalone: true, selector: "ion-card-title", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
827
773
|
};
|
|
828
774
|
IonCardTitle = __decorate([
|
|
829
775
|
ProxyCmp({
|
|
@@ -831,7 +777,7 @@ IonCardTitle = __decorate([
|
|
|
831
777
|
inputs: ['color', 'mode']
|
|
832
778
|
})
|
|
833
779
|
], IonCardTitle);
|
|
834
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
780
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
835
781
|
type: Component,
|
|
836
782
|
args: [{
|
|
837
783
|
selector: 'ion-card-title',
|
|
@@ -839,8 +785,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
839
785
|
template: '<ng-content></ng-content>',
|
|
840
786
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
841
787
|
inputs: ['color', 'mode'],
|
|
788
|
+
standalone: true
|
|
842
789
|
}]
|
|
843
|
-
}], ctorParameters: ()
|
|
790
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
844
791
|
let IonChip = class IonChip {
|
|
845
792
|
z;
|
|
846
793
|
el;
|
|
@@ -849,8 +796,8 @@ let IonChip = class IonChip {
|
|
|
849
796
|
c.detach();
|
|
850
797
|
this.el = r.nativeElement;
|
|
851
798
|
}
|
|
852
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
853
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
799
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
800
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, isStandalone: true, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
854
801
|
};
|
|
855
802
|
IonChip = __decorate([
|
|
856
803
|
ProxyCmp({
|
|
@@ -858,7 +805,7 @@ IonChip = __decorate([
|
|
|
858
805
|
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
859
806
|
})
|
|
860
807
|
], IonChip);
|
|
861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
|
|
862
809
|
type: Component,
|
|
863
810
|
args: [{
|
|
864
811
|
selector: 'ion-chip',
|
|
@@ -866,8 +813,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
866
813
|
template: '<ng-content></ng-content>',
|
|
867
814
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
868
815
|
inputs: ['color', 'disabled', 'mode', 'outline'],
|
|
816
|
+
standalone: true
|
|
869
817
|
}]
|
|
870
|
-
}], ctorParameters: ()
|
|
818
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
871
819
|
let IonCol = class IonCol {
|
|
872
820
|
z;
|
|
873
821
|
el;
|
|
@@ -876,8 +824,8 @@ let IonCol = class IonCol {
|
|
|
876
824
|
c.detach();
|
|
877
825
|
this.el = r.nativeElement;
|
|
878
826
|
}
|
|
879
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
880
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
827
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
828
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, isStandalone: true, selector: "ion-col", inputs: { offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
881
829
|
};
|
|
882
830
|
IonCol = __decorate([
|
|
883
831
|
ProxyCmp({
|
|
@@ -885,7 +833,7 @@ IonCol = __decorate([
|
|
|
885
833
|
inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs']
|
|
886
834
|
})
|
|
887
835
|
], IonCol);
|
|
888
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
|
|
889
837
|
type: Component,
|
|
890
838
|
args: [{
|
|
891
839
|
selector: 'ion-col',
|
|
@@ -893,21 +841,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
893
841
|
template: '<ng-content></ng-content>',
|
|
894
842
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
895
843
|
inputs: ['offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs'],
|
|
844
|
+
standalone: true
|
|
896
845
|
}]
|
|
897
|
-
}], ctorParameters: ()
|
|
846
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
898
847
|
let IonContent = class IonContent {
|
|
899
848
|
z;
|
|
900
849
|
el;
|
|
901
|
-
ionScrollStart = new EventEmitter();
|
|
902
|
-
ionScroll = new EventEmitter();
|
|
903
|
-
ionScrollEnd = new EventEmitter();
|
|
904
850
|
constructor(c, r, z) {
|
|
905
851
|
this.z = z;
|
|
906
852
|
c.detach();
|
|
907
853
|
this.el = r.nativeElement;
|
|
854
|
+
proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
|
|
908
855
|
}
|
|
909
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
910
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
856
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
857
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, isStandalone: true, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
911
858
|
};
|
|
912
859
|
IonContent = __decorate([
|
|
913
860
|
ProxyCmp({
|
|
@@ -916,7 +863,7 @@ IonContent = __decorate([
|
|
|
916
863
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
917
864
|
})
|
|
918
865
|
], IonContent);
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, decorators: [{
|
|
920
867
|
type: Component,
|
|
921
868
|
args: [{
|
|
922
869
|
selector: 'ion-content',
|
|
@@ -924,15 +871,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
924
871
|
template: '<ng-content></ng-content>',
|
|
925
872
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
926
873
|
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
927
|
-
|
|
928
|
-
}]
|
|
929
|
-
}], ctorParameters: ()
|
|
930
|
-
type: Output
|
|
931
|
-
}], ionScroll: [{
|
|
932
|
-
type: Output
|
|
933
|
-
}], ionScrollEnd: [{
|
|
934
|
-
type: Output
|
|
935
|
-
}] } });
|
|
874
|
+
standalone: true
|
|
875
|
+
}]
|
|
876
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
936
877
|
let IonDatetimeButton = class IonDatetimeButton {
|
|
937
878
|
z;
|
|
938
879
|
el;
|
|
@@ -941,8 +882,8 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
941
882
|
c.detach();
|
|
942
883
|
this.el = r.nativeElement;
|
|
943
884
|
}
|
|
944
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
945
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
885
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
886
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, isStandalone: true, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
946
887
|
};
|
|
947
888
|
IonDatetimeButton = __decorate([
|
|
948
889
|
ProxyCmp({
|
|
@@ -950,7 +891,7 @@ IonDatetimeButton = __decorate([
|
|
|
950
891
|
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
951
892
|
})
|
|
952
893
|
], IonDatetimeButton);
|
|
953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
894
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
954
895
|
type: Component,
|
|
955
896
|
args: [{
|
|
956
897
|
selector: 'ion-datetime-button',
|
|
@@ -958,8 +899,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
958
899
|
template: '<ng-content></ng-content>',
|
|
959
900
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
960
901
|
inputs: ['color', 'datetime', 'disabled', 'mode'],
|
|
902
|
+
standalone: true
|
|
961
903
|
}]
|
|
962
|
-
}], ctorParameters: ()
|
|
904
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
963
905
|
let IonFab = class IonFab {
|
|
964
906
|
z;
|
|
965
907
|
el;
|
|
@@ -968,8 +910,8 @@ let IonFab = class IonFab {
|
|
|
968
910
|
c.detach();
|
|
969
911
|
this.el = r.nativeElement;
|
|
970
912
|
}
|
|
971
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
972
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
913
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
914
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, isStandalone: true, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
973
915
|
};
|
|
974
916
|
IonFab = __decorate([
|
|
975
917
|
ProxyCmp({
|
|
@@ -978,7 +920,7 @@ IonFab = __decorate([
|
|
|
978
920
|
methods: ['close']
|
|
979
921
|
})
|
|
980
922
|
], IonFab);
|
|
981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, decorators: [{
|
|
982
924
|
type: Component,
|
|
983
925
|
args: [{
|
|
984
926
|
selector: 'ion-fab',
|
|
@@ -986,20 +928,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
986
928
|
template: '<ng-content></ng-content>',
|
|
987
929
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
988
930
|
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
931
|
+
standalone: true
|
|
989
932
|
}]
|
|
990
|
-
}], ctorParameters: ()
|
|
933
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
991
934
|
let IonFabButton = class IonFabButton {
|
|
992
935
|
z;
|
|
993
936
|
el;
|
|
994
|
-
ionFocus = new EventEmitter();
|
|
995
|
-
ionBlur = new EventEmitter();
|
|
996
937
|
constructor(c, r, z) {
|
|
997
938
|
this.z = z;
|
|
998
939
|
c.detach();
|
|
999
940
|
this.el = r.nativeElement;
|
|
941
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1000
942
|
}
|
|
1001
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1002
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
943
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
944
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, isStandalone: true, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", translucent: "translucent", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1003
945
|
};
|
|
1004
946
|
IonFabButton = __decorate([
|
|
1005
947
|
ProxyCmp({
|
|
@@ -1007,7 +949,7 @@ IonFabButton = __decorate([
|
|
|
1007
949
|
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
1008
950
|
})
|
|
1009
951
|
], IonFabButton);
|
|
1010
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1011
953
|
type: Component,
|
|
1012
954
|
args: [{
|
|
1013
955
|
selector: 'ion-fab-button',
|
|
@@ -1015,13 +957,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1015
957
|
template: '<ng-content></ng-content>',
|
|
1016
958
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1017
959
|
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type'],
|
|
1018
|
-
|
|
960
|
+
standalone: true
|
|
1019
961
|
}]
|
|
1020
|
-
}], ctorParameters: ()
|
|
1021
|
-
type: Output
|
|
1022
|
-
}], ionBlur: [{
|
|
1023
|
-
type: Output
|
|
1024
|
-
}] } });
|
|
962
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1025
963
|
let IonFabList = class IonFabList {
|
|
1026
964
|
z;
|
|
1027
965
|
el;
|
|
@@ -1030,8 +968,8 @@ let IonFabList = class IonFabList {
|
|
|
1030
968
|
c.detach();
|
|
1031
969
|
this.el = r.nativeElement;
|
|
1032
970
|
}
|
|
1033
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1034
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
971
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
972
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, isStandalone: true, selector: "ion-fab-list", inputs: { activated: "activated", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1035
973
|
};
|
|
1036
974
|
IonFabList = __decorate([
|
|
1037
975
|
ProxyCmp({
|
|
@@ -1039,7 +977,7 @@ IonFabList = __decorate([
|
|
|
1039
977
|
inputs: ['activated', 'side']
|
|
1040
978
|
})
|
|
1041
979
|
], IonFabList);
|
|
1042
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
|
|
1043
981
|
type: Component,
|
|
1044
982
|
args: [{
|
|
1045
983
|
selector: 'ion-fab-list',
|
|
@@ -1047,8 +985,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1047
985
|
template: '<ng-content></ng-content>',
|
|
1048
986
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1049
987
|
inputs: ['activated', 'side'],
|
|
988
|
+
standalone: true
|
|
1050
989
|
}]
|
|
1051
|
-
}], ctorParameters: ()
|
|
990
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1052
991
|
let IonFooter = class IonFooter {
|
|
1053
992
|
z;
|
|
1054
993
|
el;
|
|
@@ -1057,8 +996,8 @@ let IonFooter = class IonFooter {
|
|
|
1057
996
|
c.detach();
|
|
1058
997
|
this.el = r.nativeElement;
|
|
1059
998
|
}
|
|
1060
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1061
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
999
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1000
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, isStandalone: true, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1062
1001
|
};
|
|
1063
1002
|
IonFooter = __decorate([
|
|
1064
1003
|
ProxyCmp({
|
|
@@ -1066,7 +1005,7 @@ IonFooter = __decorate([
|
|
|
1066
1005
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1067
1006
|
})
|
|
1068
1007
|
], IonFooter);
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
|
|
1070
1009
|
type: Component,
|
|
1071
1010
|
args: [{
|
|
1072
1011
|
selector: 'ion-footer',
|
|
@@ -1074,8 +1013,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1074
1013
|
template: '<ng-content></ng-content>',
|
|
1075
1014
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1076
1015
|
inputs: ['collapse', 'mode', 'translucent'],
|
|
1016
|
+
standalone: true
|
|
1077
1017
|
}]
|
|
1078
|
-
}], ctorParameters: ()
|
|
1018
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1079
1019
|
let IonGrid = class IonGrid {
|
|
1080
1020
|
z;
|
|
1081
1021
|
el;
|
|
@@ -1084,8 +1024,8 @@ let IonGrid = class IonGrid {
|
|
|
1084
1024
|
c.detach();
|
|
1085
1025
|
this.el = r.nativeElement;
|
|
1086
1026
|
}
|
|
1087
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1088
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1027
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1028
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, isStandalone: true, selector: "ion-grid", inputs: { fixed: "fixed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1089
1029
|
};
|
|
1090
1030
|
IonGrid = __decorate([
|
|
1091
1031
|
ProxyCmp({
|
|
@@ -1093,7 +1033,7 @@ IonGrid = __decorate([
|
|
|
1093
1033
|
inputs: ['fixed']
|
|
1094
1034
|
})
|
|
1095
1035
|
], IonGrid);
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
|
|
1097
1037
|
type: Component,
|
|
1098
1038
|
args: [{
|
|
1099
1039
|
selector: 'ion-grid',
|
|
@@ -1101,8 +1041,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1101
1041
|
template: '<ng-content></ng-content>',
|
|
1102
1042
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1103
1043
|
inputs: ['fixed'],
|
|
1044
|
+
standalone: true
|
|
1104
1045
|
}]
|
|
1105
|
-
}], ctorParameters: ()
|
|
1046
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1106
1047
|
let IonHeader = class IonHeader {
|
|
1107
1048
|
z;
|
|
1108
1049
|
el;
|
|
@@ -1111,8 +1052,8 @@ let IonHeader = class IonHeader {
|
|
|
1111
1052
|
c.detach();
|
|
1112
1053
|
this.el = r.nativeElement;
|
|
1113
1054
|
}
|
|
1114
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1115
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1055
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1056
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, isStandalone: true, selector: "ion-header", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1116
1057
|
};
|
|
1117
1058
|
IonHeader = __decorate([
|
|
1118
1059
|
ProxyCmp({
|
|
@@ -1120,7 +1061,7 @@ IonHeader = __decorate([
|
|
|
1120
1061
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1121
1062
|
})
|
|
1122
1063
|
], IonHeader);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1064
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
|
|
1124
1065
|
type: Component,
|
|
1125
1066
|
args: [{
|
|
1126
1067
|
selector: 'ion-header',
|
|
@@ -1128,21 +1069,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1128
1069
|
template: '<ng-content></ng-content>',
|
|
1129
1070
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1130
1071
|
inputs: ['collapse', 'mode', 'translucent'],
|
|
1072
|
+
standalone: true
|
|
1131
1073
|
}]
|
|
1132
|
-
}], ctorParameters: ()
|
|
1074
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1133
1075
|
let IonImg = class IonImg {
|
|
1134
1076
|
z;
|
|
1135
1077
|
el;
|
|
1136
|
-
ionImgWillLoad = new EventEmitter();
|
|
1137
|
-
ionImgDidLoad = new EventEmitter();
|
|
1138
|
-
ionError = new EventEmitter();
|
|
1139
1078
|
constructor(c, r, z) {
|
|
1140
1079
|
this.z = z;
|
|
1141
1080
|
c.detach();
|
|
1142
1081
|
this.el = r.nativeElement;
|
|
1082
|
+
proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
|
|
1143
1083
|
}
|
|
1144
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1145
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1084
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1085
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, isStandalone: true, selector: "ion-img", inputs: { alt: "alt", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1146
1086
|
};
|
|
1147
1087
|
IonImg = __decorate([
|
|
1148
1088
|
ProxyCmp({
|
|
@@ -1150,7 +1090,7 @@ IonImg = __decorate([
|
|
|
1150
1090
|
inputs: ['alt', 'src']
|
|
1151
1091
|
})
|
|
1152
1092
|
], IonImg);
|
|
1153
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
|
|
1154
1094
|
type: Component,
|
|
1155
1095
|
args: [{
|
|
1156
1096
|
selector: 'ion-img',
|
|
@@ -1158,26 +1098,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1158
1098
|
template: '<ng-content></ng-content>',
|
|
1159
1099
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1160
1100
|
inputs: ['alt', 'src'],
|
|
1161
|
-
|
|
1162
|
-
}]
|
|
1163
|
-
}], ctorParameters: ()
|
|
1164
|
-
type: Output
|
|
1165
|
-
}], ionImgDidLoad: [{
|
|
1166
|
-
type: Output
|
|
1167
|
-
}], ionError: [{
|
|
1168
|
-
type: Output
|
|
1169
|
-
}] } });
|
|
1101
|
+
standalone: true
|
|
1102
|
+
}]
|
|
1103
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1170
1104
|
let IonInfiniteScroll = class IonInfiniteScroll {
|
|
1171
1105
|
z;
|
|
1172
1106
|
el;
|
|
1173
|
-
ionInfinite = new EventEmitter();
|
|
1174
1107
|
constructor(c, r, z) {
|
|
1175
1108
|
this.z = z;
|
|
1176
1109
|
c.detach();
|
|
1177
1110
|
this.el = r.nativeElement;
|
|
1111
|
+
proxyOutputs(this, this.el, ['ionInfinite']);
|
|
1178
1112
|
}
|
|
1179
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1180
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1113
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1114
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, isStandalone: true, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", position: "position", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1181
1115
|
};
|
|
1182
1116
|
IonInfiniteScroll = __decorate([
|
|
1183
1117
|
ProxyCmp({
|
|
@@ -1186,7 +1120,7 @@ IonInfiniteScroll = __decorate([
|
|
|
1186
1120
|
methods: ['complete']
|
|
1187
1121
|
})
|
|
1188
1122
|
], IonInfiniteScroll);
|
|
1189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1190
1124
|
type: Component,
|
|
1191
1125
|
args: [{
|
|
1192
1126
|
selector: 'ion-infinite-scroll',
|
|
@@ -1194,11 +1128,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1194
1128
|
template: '<ng-content></ng-content>',
|
|
1195
1129
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1196
1130
|
inputs: ['disabled', 'position', 'threshold'],
|
|
1197
|
-
|
|
1131
|
+
standalone: true
|
|
1198
1132
|
}]
|
|
1199
|
-
}], ctorParameters: ()
|
|
1200
|
-
type: Output
|
|
1201
|
-
}] } });
|
|
1133
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1202
1134
|
let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
1203
1135
|
z;
|
|
1204
1136
|
el;
|
|
@@ -1207,8 +1139,8 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1207
1139
|
c.detach();
|
|
1208
1140
|
this.el = r.nativeElement;
|
|
1209
1141
|
}
|
|
1210
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1211
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1142
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1143
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, isStandalone: true, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1212
1144
|
};
|
|
1213
1145
|
IonInfiniteScrollContent = __decorate([
|
|
1214
1146
|
ProxyCmp({
|
|
@@ -1216,7 +1148,7 @@ IonInfiniteScrollContent = __decorate([
|
|
|
1216
1148
|
inputs: ['loadingSpinner', 'loadingText']
|
|
1217
1149
|
})
|
|
1218
1150
|
], IonInfiniteScrollContent);
|
|
1219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1220
1152
|
type: Component,
|
|
1221
1153
|
args: [{
|
|
1222
1154
|
selector: 'ion-infinite-scroll-content',
|
|
@@ -1224,8 +1156,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1224
1156
|
template: '<ng-content></ng-content>',
|
|
1225
1157
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1226
1158
|
inputs: ['loadingSpinner', 'loadingText'],
|
|
1159
|
+
standalone: true
|
|
1227
1160
|
}]
|
|
1228
|
-
}], ctorParameters: ()
|
|
1161
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1229
1162
|
let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
1230
1163
|
z;
|
|
1231
1164
|
el;
|
|
@@ -1234,8 +1167,8 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
|
1234
1167
|
c.detach();
|
|
1235
1168
|
this.el = r.nativeElement;
|
|
1236
1169
|
}
|
|
1237
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1238
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1170
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1171
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputPasswordToggle, isStandalone: true, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1239
1172
|
};
|
|
1240
1173
|
IonInputPasswordToggle = __decorate([
|
|
1241
1174
|
ProxyCmp({
|
|
@@ -1243,7 +1176,7 @@ IonInputPasswordToggle = __decorate([
|
|
|
1243
1176
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1244
1177
|
})
|
|
1245
1178
|
], IonInputPasswordToggle);
|
|
1246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1247
1180
|
type: Component,
|
|
1248
1181
|
args: [{
|
|
1249
1182
|
selector: 'ion-input-password-toggle',
|
|
@@ -1251,8 +1184,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1251
1184
|
template: '<ng-content></ng-content>',
|
|
1252
1185
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1253
1186
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon'],
|
|
1187
|
+
standalone: true
|
|
1254
1188
|
}]
|
|
1255
|
-
}], ctorParameters: ()
|
|
1189
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1256
1190
|
let IonItem = class IonItem {
|
|
1257
1191
|
z;
|
|
1258
1192
|
el;
|
|
@@ -1261,8 +1195,8 @@ let IonItem = class IonItem {
|
|
|
1261
1195
|
c.detach();
|
|
1262
1196
|
this.el = r.nativeElement;
|
|
1263
1197
|
}
|
|
1264
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1265
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1198
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1199
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, isStandalone: true, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1266
1200
|
};
|
|
1267
1201
|
IonItem = __decorate([
|
|
1268
1202
|
ProxyCmp({
|
|
@@ -1270,7 +1204,7 @@ IonItem = __decorate([
|
|
|
1270
1204
|
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1271
1205
|
})
|
|
1272
1206
|
], IonItem);
|
|
1273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
|
|
1274
1208
|
type: Component,
|
|
1275
1209
|
args: [{
|
|
1276
1210
|
selector: 'ion-item',
|
|
@@ -1278,8 +1212,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1278
1212
|
template: '<ng-content></ng-content>',
|
|
1279
1213
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1280
1214
|
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
1215
|
+
standalone: true
|
|
1281
1216
|
}]
|
|
1282
|
-
}], ctorParameters: ()
|
|
1217
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1283
1218
|
let IonItemDivider = class IonItemDivider {
|
|
1284
1219
|
z;
|
|
1285
1220
|
el;
|
|
@@ -1288,8 +1223,8 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1288
1223
|
c.detach();
|
|
1289
1224
|
this.el = r.nativeElement;
|
|
1290
1225
|
}
|
|
1291
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1292
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1226
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1227
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, isStandalone: true, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1293
1228
|
};
|
|
1294
1229
|
IonItemDivider = __decorate([
|
|
1295
1230
|
ProxyCmp({
|
|
@@ -1297,7 +1232,7 @@ IonItemDivider = __decorate([
|
|
|
1297
1232
|
inputs: ['color', 'mode', 'sticky']
|
|
1298
1233
|
})
|
|
1299
1234
|
], IonItemDivider);
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1301
1236
|
type: Component,
|
|
1302
1237
|
args: [{
|
|
1303
1238
|
selector: 'ion-item-divider',
|
|
@@ -1305,8 +1240,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1305
1240
|
template: '<ng-content></ng-content>',
|
|
1306
1241
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1307
1242
|
inputs: ['color', 'mode', 'sticky'],
|
|
1243
|
+
standalone: true
|
|
1308
1244
|
}]
|
|
1309
|
-
}], ctorParameters: ()
|
|
1245
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1310
1246
|
let IonItemGroup = class IonItemGroup {
|
|
1311
1247
|
z;
|
|
1312
1248
|
el;
|
|
@@ -1315,15 +1251,15 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1315
1251
|
c.detach();
|
|
1316
1252
|
this.el = r.nativeElement;
|
|
1317
1253
|
}
|
|
1318
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1319
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1254
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1255
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, isStandalone: true, selector: "ion-item-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1320
1256
|
};
|
|
1321
1257
|
IonItemGroup = __decorate([
|
|
1322
1258
|
ProxyCmp({
|
|
1323
1259
|
defineCustomElementFn: defineCustomElement$C
|
|
1324
1260
|
})
|
|
1325
1261
|
], IonItemGroup);
|
|
1326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1327
1263
|
type: Component,
|
|
1328
1264
|
args: [{
|
|
1329
1265
|
selector: 'ion-item-group',
|
|
@@ -1331,8 +1267,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1331
1267
|
template: '<ng-content></ng-content>',
|
|
1332
1268
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1333
1269
|
inputs: [],
|
|
1270
|
+
standalone: true
|
|
1334
1271
|
}]
|
|
1335
|
-
}], ctorParameters: ()
|
|
1272
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1336
1273
|
let IonItemOption = class IonItemOption {
|
|
1337
1274
|
z;
|
|
1338
1275
|
el;
|
|
@@ -1341,8 +1278,8 @@ let IonItemOption = class IonItemOption {
|
|
|
1341
1278
|
c.detach();
|
|
1342
1279
|
this.el = r.nativeElement;
|
|
1343
1280
|
}
|
|
1344
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1345
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1281
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1282
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, isStandalone: true, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1346
1283
|
};
|
|
1347
1284
|
IonItemOption = __decorate([
|
|
1348
1285
|
ProxyCmp({
|
|
@@ -1350,7 +1287,7 @@ IonItemOption = __decorate([
|
|
|
1350
1287
|
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1351
1288
|
})
|
|
1352
1289
|
], IonItemOption);
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1354
1291
|
type: Component,
|
|
1355
1292
|
args: [{
|
|
1356
1293
|
selector: 'ion-item-option',
|
|
@@ -1358,19 +1295,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1358
1295
|
template: '<ng-content></ng-content>',
|
|
1359
1296
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1360
1297
|
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type'],
|
|
1298
|
+
standalone: true
|
|
1361
1299
|
}]
|
|
1362
|
-
}], ctorParameters: ()
|
|
1300
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1363
1301
|
let IonItemOptions = class IonItemOptions {
|
|
1364
1302
|
z;
|
|
1365
1303
|
el;
|
|
1366
|
-
ionSwipe = new EventEmitter();
|
|
1367
1304
|
constructor(c, r, z) {
|
|
1368
1305
|
this.z = z;
|
|
1369
1306
|
c.detach();
|
|
1370
1307
|
this.el = r.nativeElement;
|
|
1308
|
+
proxyOutputs(this, this.el, ['ionSwipe']);
|
|
1371
1309
|
}
|
|
1372
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1373
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1310
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1311
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, isStandalone: true, selector: "ion-item-options", inputs: { side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1374
1312
|
};
|
|
1375
1313
|
IonItemOptions = __decorate([
|
|
1376
1314
|
ProxyCmp({
|
|
@@ -1378,7 +1316,7 @@ IonItemOptions = __decorate([
|
|
|
1378
1316
|
inputs: ['side']
|
|
1379
1317
|
})
|
|
1380
1318
|
], IonItemOptions);
|
|
1381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1382
1320
|
type: Component,
|
|
1383
1321
|
args: [{
|
|
1384
1322
|
selector: 'ion-item-options',
|
|
@@ -1386,22 +1324,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1386
1324
|
template: '<ng-content></ng-content>',
|
|
1387
1325
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1388
1326
|
inputs: ['side'],
|
|
1389
|
-
|
|
1327
|
+
standalone: true
|
|
1390
1328
|
}]
|
|
1391
|
-
}], ctorParameters: ()
|
|
1392
|
-
type: Output
|
|
1393
|
-
}] } });
|
|
1329
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1394
1330
|
let IonItemSliding = class IonItemSliding {
|
|
1395
1331
|
z;
|
|
1396
1332
|
el;
|
|
1397
|
-
ionDrag = new EventEmitter();
|
|
1398
1333
|
constructor(c, r, z) {
|
|
1399
1334
|
this.z = z;
|
|
1400
1335
|
c.detach();
|
|
1401
1336
|
this.el = r.nativeElement;
|
|
1337
|
+
proxyOutputs(this, this.el, ['ionDrag']);
|
|
1402
1338
|
}
|
|
1403
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1404
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1339
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1340
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, isStandalone: true, selector: "ion-item-sliding", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1405
1341
|
};
|
|
1406
1342
|
IonItemSliding = __decorate([
|
|
1407
1343
|
ProxyCmp({
|
|
@@ -1410,7 +1346,7 @@ IonItemSliding = __decorate([
|
|
|
1410
1346
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1411
1347
|
})
|
|
1412
1348
|
], IonItemSliding);
|
|
1413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1414
1350
|
type: Component,
|
|
1415
1351
|
args: [{
|
|
1416
1352
|
selector: 'ion-item-sliding',
|
|
@@ -1418,11 +1354,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1418
1354
|
template: '<ng-content></ng-content>',
|
|
1419
1355
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1420
1356
|
inputs: ['disabled'],
|
|
1421
|
-
|
|
1357
|
+
standalone: true
|
|
1422
1358
|
}]
|
|
1423
|
-
}], ctorParameters: ()
|
|
1424
|
-
type: Output
|
|
1425
|
-
}] } });
|
|
1359
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1426
1360
|
let IonLabel = class IonLabel {
|
|
1427
1361
|
z;
|
|
1428
1362
|
el;
|
|
@@ -1431,8 +1365,8 @@ let IonLabel = class IonLabel {
|
|
|
1431
1365
|
c.detach();
|
|
1432
1366
|
this.el = r.nativeElement;
|
|
1433
1367
|
}
|
|
1434
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1435
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1368
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1369
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, isStandalone: true, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1436
1370
|
};
|
|
1437
1371
|
IonLabel = __decorate([
|
|
1438
1372
|
ProxyCmp({
|
|
@@ -1440,7 +1374,7 @@ IonLabel = __decorate([
|
|
|
1440
1374
|
inputs: ['color', 'mode', 'position']
|
|
1441
1375
|
})
|
|
1442
1376
|
], IonLabel);
|
|
1443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
|
|
1444
1378
|
type: Component,
|
|
1445
1379
|
args: [{
|
|
1446
1380
|
selector: 'ion-label',
|
|
@@ -1448,8 +1382,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1448
1382
|
template: '<ng-content></ng-content>',
|
|
1449
1383
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1450
1384
|
inputs: ['color', 'mode', 'position'],
|
|
1385
|
+
standalone: true
|
|
1451
1386
|
}]
|
|
1452
|
-
}], ctorParameters: ()
|
|
1387
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1453
1388
|
let IonList = class IonList {
|
|
1454
1389
|
z;
|
|
1455
1390
|
el;
|
|
@@ -1458,8 +1393,8 @@ let IonList = class IonList {
|
|
|
1458
1393
|
c.detach();
|
|
1459
1394
|
this.el = r.nativeElement;
|
|
1460
1395
|
}
|
|
1461
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1462
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1396
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1397
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, isStandalone: true, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1463
1398
|
};
|
|
1464
1399
|
IonList = __decorate([
|
|
1465
1400
|
ProxyCmp({
|
|
@@ -1468,7 +1403,7 @@ IonList = __decorate([
|
|
|
1468
1403
|
methods: ['closeSlidingItems']
|
|
1469
1404
|
})
|
|
1470
1405
|
], IonList);
|
|
1471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, decorators: [{
|
|
1472
1407
|
type: Component,
|
|
1473
1408
|
args: [{
|
|
1474
1409
|
selector: 'ion-list',
|
|
@@ -1476,8 +1411,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1476
1411
|
template: '<ng-content></ng-content>',
|
|
1477
1412
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1478
1413
|
inputs: ['inset', 'lines', 'mode'],
|
|
1414
|
+
standalone: true
|
|
1479
1415
|
}]
|
|
1480
|
-
}], ctorParameters: ()
|
|
1416
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1481
1417
|
let IonListHeader = class IonListHeader {
|
|
1482
1418
|
z;
|
|
1483
1419
|
el;
|
|
@@ -1486,8 +1422,8 @@ let IonListHeader = class IonListHeader {
|
|
|
1486
1422
|
c.detach();
|
|
1487
1423
|
this.el = r.nativeElement;
|
|
1488
1424
|
}
|
|
1489
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1490
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1425
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1426
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, isStandalone: true, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1491
1427
|
};
|
|
1492
1428
|
IonListHeader = __decorate([
|
|
1493
1429
|
ProxyCmp({
|
|
@@ -1495,7 +1431,7 @@ IonListHeader = __decorate([
|
|
|
1495
1431
|
inputs: ['color', 'lines', 'mode']
|
|
1496
1432
|
})
|
|
1497
1433
|
], IonListHeader);
|
|
1498
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1499
1435
|
type: Component,
|
|
1500
1436
|
args: [{
|
|
1501
1437
|
selector: 'ion-list-header',
|
|
@@ -1503,26 +1439,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1503
1439
|
template: '<ng-content></ng-content>',
|
|
1504
1440
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1505
1441
|
inputs: ['color', 'lines', 'mode'],
|
|
1442
|
+
standalone: true
|
|
1506
1443
|
}]
|
|
1507
|
-
}], ctorParameters: ()
|
|
1444
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1508
1445
|
let IonLoading = class IonLoading {
|
|
1509
1446
|
z;
|
|
1510
1447
|
el;
|
|
1511
|
-
ionLoadingDidPresent = new EventEmitter();
|
|
1512
|
-
ionLoadingWillPresent = new EventEmitter();
|
|
1513
|
-
ionLoadingWillDismiss = new EventEmitter();
|
|
1514
|
-
ionLoadingDidDismiss = new EventEmitter();
|
|
1515
|
-
didPresent = new EventEmitter();
|
|
1516
|
-
willPresent = new EventEmitter();
|
|
1517
|
-
willDismiss = new EventEmitter();
|
|
1518
|
-
didDismiss = new EventEmitter();
|
|
1519
1448
|
constructor(c, r, z) {
|
|
1520
1449
|
this.z = z;
|
|
1521
1450
|
c.detach();
|
|
1522
1451
|
this.el = r.nativeElement;
|
|
1452
|
+
proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1523
1453
|
}
|
|
1524
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1525
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1454
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1455
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, isStandalone: true, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1526
1456
|
};
|
|
1527
1457
|
IonLoading = __decorate([
|
|
1528
1458
|
ProxyCmp({
|
|
@@ -1531,7 +1461,7 @@ IonLoading = __decorate([
|
|
|
1531
1461
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1532
1462
|
})
|
|
1533
1463
|
], IonLoading);
|
|
1534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, decorators: [{
|
|
1535
1465
|
type: Component,
|
|
1536
1466
|
args: [{
|
|
1537
1467
|
selector: 'ion-loading',
|
|
@@ -1539,39 +1469,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1539
1469
|
template: '<ng-content></ng-content>',
|
|
1540
1470
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1541
1471
|
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1542
|
-
|
|
1543
|
-
}]
|
|
1544
|
-
}], ctorParameters: ()
|
|
1545
|
-
type: Output
|
|
1546
|
-
}], ionLoadingWillPresent: [{
|
|
1547
|
-
type: Output
|
|
1548
|
-
}], ionLoadingWillDismiss: [{
|
|
1549
|
-
type: Output
|
|
1550
|
-
}], ionLoadingDidDismiss: [{
|
|
1551
|
-
type: Output
|
|
1552
|
-
}], didPresent: [{
|
|
1553
|
-
type: Output
|
|
1554
|
-
}], willPresent: [{
|
|
1555
|
-
type: Output
|
|
1556
|
-
}], willDismiss: [{
|
|
1557
|
-
type: Output
|
|
1558
|
-
}], didDismiss: [{
|
|
1559
|
-
type: Output
|
|
1560
|
-
}] } });
|
|
1472
|
+
standalone: true
|
|
1473
|
+
}]
|
|
1474
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1561
1475
|
let IonMenu = class IonMenu {
|
|
1562
1476
|
z;
|
|
1563
1477
|
el;
|
|
1564
|
-
ionWillOpen = new EventEmitter();
|
|
1565
|
-
ionWillClose = new EventEmitter();
|
|
1566
|
-
ionDidOpen = new EventEmitter();
|
|
1567
|
-
ionDidClose = new EventEmitter();
|
|
1568
1478
|
constructor(c, r, z) {
|
|
1569
1479
|
this.z = z;
|
|
1570
1480
|
c.detach();
|
|
1571
1481
|
this.el = r.nativeElement;
|
|
1482
|
+
proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
|
|
1572
1483
|
}
|
|
1573
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1574
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1484
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1485
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, isStandalone: true, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", side: "side", swipeGesture: "swipeGesture", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1575
1486
|
};
|
|
1576
1487
|
IonMenu = __decorate([
|
|
1577
1488
|
ProxyCmp({
|
|
@@ -1580,7 +1491,7 @@ IonMenu = __decorate([
|
|
|
1580
1491
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1581
1492
|
})
|
|
1582
1493
|
], IonMenu);
|
|
1583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1494
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, decorators: [{
|
|
1584
1495
|
type: Component,
|
|
1585
1496
|
args: [{
|
|
1586
1497
|
selector: 'ion-menu',
|
|
@@ -1588,17 +1499,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1588
1499
|
template: '<ng-content></ng-content>',
|
|
1589
1500
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1590
1501
|
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1591
|
-
|
|
1592
|
-
}]
|
|
1593
|
-
}], ctorParameters: ()
|
|
1594
|
-
type: Output
|
|
1595
|
-
}], ionWillClose: [{
|
|
1596
|
-
type: Output
|
|
1597
|
-
}], ionDidOpen: [{
|
|
1598
|
-
type: Output
|
|
1599
|
-
}], ionDidClose: [{
|
|
1600
|
-
type: Output
|
|
1601
|
-
}] } });
|
|
1502
|
+
standalone: true
|
|
1503
|
+
}]
|
|
1504
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1602
1505
|
let IonMenuButton = class IonMenuButton {
|
|
1603
1506
|
z;
|
|
1604
1507
|
el;
|
|
@@ -1607,8 +1510,8 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1607
1510
|
c.detach();
|
|
1608
1511
|
this.el = r.nativeElement;
|
|
1609
1512
|
}
|
|
1610
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1611
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1513
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1514
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, isStandalone: true, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1612
1515
|
};
|
|
1613
1516
|
IonMenuButton = __decorate([
|
|
1614
1517
|
ProxyCmp({
|
|
@@ -1616,7 +1519,7 @@ IonMenuButton = __decorate([
|
|
|
1616
1519
|
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1617
1520
|
})
|
|
1618
1521
|
], IonMenuButton);
|
|
1619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1620
1523
|
type: Component,
|
|
1621
1524
|
args: [{
|
|
1622
1525
|
selector: 'ion-menu-button',
|
|
@@ -1624,8 +1527,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1624
1527
|
template: '<ng-content></ng-content>',
|
|
1625
1528
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1626
1529
|
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type'],
|
|
1530
|
+
standalone: true
|
|
1627
1531
|
}]
|
|
1628
|
-
}], ctorParameters: ()
|
|
1532
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1629
1533
|
let IonMenuToggle = class IonMenuToggle {
|
|
1630
1534
|
z;
|
|
1631
1535
|
el;
|
|
@@ -1634,8 +1538,8 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1634
1538
|
c.detach();
|
|
1635
1539
|
this.el = r.nativeElement;
|
|
1636
1540
|
}
|
|
1637
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1638
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1541
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1542
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, isStandalone: true, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1639
1543
|
};
|
|
1640
1544
|
IonMenuToggle = __decorate([
|
|
1641
1545
|
ProxyCmp({
|
|
@@ -1643,7 +1547,7 @@ IonMenuToggle = __decorate([
|
|
|
1643
1547
|
inputs: ['autoHide', 'menu']
|
|
1644
1548
|
})
|
|
1645
1549
|
], IonMenuToggle);
|
|
1646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1647
1551
|
type: Component,
|
|
1648
1552
|
args: [{
|
|
1649
1553
|
selector: 'ion-menu-toggle',
|
|
@@ -1651,8 +1555,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1651
1555
|
template: '<ng-content></ng-content>',
|
|
1652
1556
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1653
1557
|
inputs: ['autoHide', 'menu'],
|
|
1558
|
+
standalone: true
|
|
1654
1559
|
}]
|
|
1655
|
-
}], ctorParameters: ()
|
|
1560
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1656
1561
|
let IonNavLink = class IonNavLink {
|
|
1657
1562
|
z;
|
|
1658
1563
|
el;
|
|
@@ -1661,8 +1566,8 @@ let IonNavLink = class IonNavLink {
|
|
|
1661
1566
|
c.detach();
|
|
1662
1567
|
this.el = r.nativeElement;
|
|
1663
1568
|
}
|
|
1664
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1665
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1569
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1570
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, isStandalone: true, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", routerAnimation: "routerAnimation", routerDirection: "routerDirection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1666
1571
|
};
|
|
1667
1572
|
IonNavLink = __decorate([
|
|
1668
1573
|
ProxyCmp({
|
|
@@ -1670,7 +1575,7 @@ IonNavLink = __decorate([
|
|
|
1670
1575
|
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1671
1576
|
})
|
|
1672
1577
|
], IonNavLink);
|
|
1673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1674
1579
|
type: Component,
|
|
1675
1580
|
args: [{
|
|
1676
1581
|
selector: 'ion-nav-link',
|
|
@@ -1678,8 +1583,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1678
1583
|
template: '<ng-content></ng-content>',
|
|
1679
1584
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1680
1585
|
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection'],
|
|
1586
|
+
standalone: true
|
|
1681
1587
|
}]
|
|
1682
|
-
}], ctorParameters: ()
|
|
1588
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1683
1589
|
let IonNote = class IonNote {
|
|
1684
1590
|
z;
|
|
1685
1591
|
el;
|
|
@@ -1688,8 +1594,8 @@ let IonNote = class IonNote {
|
|
|
1688
1594
|
c.detach();
|
|
1689
1595
|
this.el = r.nativeElement;
|
|
1690
1596
|
}
|
|
1691
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1692
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1597
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1598
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, isStandalone: true, selector: "ion-note", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1693
1599
|
};
|
|
1694
1600
|
IonNote = __decorate([
|
|
1695
1601
|
ProxyCmp({
|
|
@@ -1697,7 +1603,7 @@ IonNote = __decorate([
|
|
|
1697
1603
|
inputs: ['color', 'mode']
|
|
1698
1604
|
})
|
|
1699
1605
|
], IonNote);
|
|
1700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
|
|
1701
1607
|
type: Component,
|
|
1702
1608
|
args: [{
|
|
1703
1609
|
selector: 'ion-note',
|
|
@@ -1705,8 +1611,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1705
1611
|
template: '<ng-content></ng-content>',
|
|
1706
1612
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1707
1613
|
inputs: ['color', 'mode'],
|
|
1614
|
+
standalone: true
|
|
1708
1615
|
}]
|
|
1709
|
-
}], ctorParameters: ()
|
|
1616
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1710
1617
|
let IonPicker = class IonPicker {
|
|
1711
1618
|
z;
|
|
1712
1619
|
el;
|
|
@@ -1715,8 +1622,8 @@ let IonPicker = class IonPicker {
|
|
|
1715
1622
|
c.detach();
|
|
1716
1623
|
this.el = r.nativeElement;
|
|
1717
1624
|
}
|
|
1718
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1719
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1625
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1626
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, isStandalone: true, selector: "ion-picker", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1720
1627
|
};
|
|
1721
1628
|
IonPicker = __decorate([
|
|
1722
1629
|
ProxyCmp({
|
|
@@ -1724,7 +1631,7 @@ IonPicker = __decorate([
|
|
|
1724
1631
|
inputs: ['mode']
|
|
1725
1632
|
})
|
|
1726
1633
|
], IonPicker);
|
|
1727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1634
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
|
|
1728
1635
|
type: Component,
|
|
1729
1636
|
args: [{
|
|
1730
1637
|
selector: 'ion-picker',
|
|
@@ -1732,19 +1639,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1732
1639
|
template: '<ng-content></ng-content>',
|
|
1733
1640
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1734
1641
|
inputs: ['mode'],
|
|
1642
|
+
standalone: true
|
|
1735
1643
|
}]
|
|
1736
|
-
}], ctorParameters: ()
|
|
1644
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1737
1645
|
let IonPickerColumn = class IonPickerColumn {
|
|
1738
1646
|
z;
|
|
1739
1647
|
el;
|
|
1740
|
-
ionChange = new EventEmitter();
|
|
1741
1648
|
constructor(c, r, z) {
|
|
1742
1649
|
this.z = z;
|
|
1743
1650
|
c.detach();
|
|
1744
1651
|
this.el = r.nativeElement;
|
|
1652
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
1745
1653
|
}
|
|
1746
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1747
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1654
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1655
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, isStandalone: true, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1748
1656
|
};
|
|
1749
1657
|
IonPickerColumn = __decorate([
|
|
1750
1658
|
ProxyCmp({
|
|
@@ -1753,7 +1661,7 @@ IonPickerColumn = __decorate([
|
|
|
1753
1661
|
methods: ['setFocus']
|
|
1754
1662
|
})
|
|
1755
1663
|
], IonPickerColumn);
|
|
1756
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1757
1665
|
type: Component,
|
|
1758
1666
|
args: [{
|
|
1759
1667
|
selector: 'ion-picker-column',
|
|
@@ -1761,11 +1669,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1761
1669
|
template: '<ng-content></ng-content>',
|
|
1762
1670
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1763
1671
|
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1764
|
-
|
|
1672
|
+
standalone: true
|
|
1765
1673
|
}]
|
|
1766
|
-
}], ctorParameters: ()
|
|
1767
|
-
type: Output
|
|
1768
|
-
}] } });
|
|
1674
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1769
1675
|
let IonPickerColumnOption = class IonPickerColumnOption {
|
|
1770
1676
|
z;
|
|
1771
1677
|
el;
|
|
@@ -1774,8 +1680,8 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1774
1680
|
c.detach();
|
|
1775
1681
|
this.el = r.nativeElement;
|
|
1776
1682
|
}
|
|
1777
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1778
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1683
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1684
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, isStandalone: true, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1779
1685
|
};
|
|
1780
1686
|
IonPickerColumnOption = __decorate([
|
|
1781
1687
|
ProxyCmp({
|
|
@@ -1783,7 +1689,7 @@ IonPickerColumnOption = __decorate([
|
|
|
1783
1689
|
inputs: ['color', 'disabled', 'value']
|
|
1784
1690
|
})
|
|
1785
1691
|
], IonPickerColumnOption);
|
|
1786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1787
1693
|
type: Component,
|
|
1788
1694
|
args: [{
|
|
1789
1695
|
selector: 'ion-picker-column-option',
|
|
@@ -1791,8 +1697,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1791
1697
|
template: '<ng-content></ng-content>',
|
|
1792
1698
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1793
1699
|
inputs: ['color', 'disabled', 'value'],
|
|
1700
|
+
standalone: true
|
|
1794
1701
|
}]
|
|
1795
|
-
}], ctorParameters: ()
|
|
1702
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1703
|
+
let IonPickerLegacy = class IonPickerLegacy {
|
|
1704
|
+
z;
|
|
1705
|
+
el;
|
|
1706
|
+
constructor(c, r, z) {
|
|
1707
|
+
this.z = z;
|
|
1708
|
+
c.detach();
|
|
1709
|
+
this.el = r.nativeElement;
|
|
1710
|
+
proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1711
|
+
}
|
|
1712
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1713
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, isStandalone: true, selector: "ion-picker-legacy", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", columns: "columns", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1714
|
+
};
|
|
1715
|
+
IonPickerLegacy = __decorate([
|
|
1716
|
+
ProxyCmp({
|
|
1717
|
+
defineCustomElementFn: defineCustomElement$S,
|
|
1718
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'trigger'],
|
|
1719
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
|
|
1720
|
+
})
|
|
1721
|
+
], IonPickerLegacy);
|
|
1722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, decorators: [{
|
|
1723
|
+
type: Component,
|
|
1724
|
+
args: [{
|
|
1725
|
+
selector: 'ion-picker-legacy',
|
|
1726
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1727
|
+
template: '<ng-content></ng-content>',
|
|
1728
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1729
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'trigger'],
|
|
1730
|
+
standalone: true
|
|
1731
|
+
}]
|
|
1732
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1796
1733
|
let IonProgressBar = class IonProgressBar {
|
|
1797
1734
|
z;
|
|
1798
1735
|
el;
|
|
@@ -1801,16 +1738,16 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1801
1738
|
c.detach();
|
|
1802
1739
|
this.el = r.nativeElement;
|
|
1803
1740
|
}
|
|
1804
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1805
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1741
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1742
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, isStandalone: true, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1806
1743
|
};
|
|
1807
1744
|
IonProgressBar = __decorate([
|
|
1808
1745
|
ProxyCmp({
|
|
1809
|
-
defineCustomElementFn: defineCustomElement$
|
|
1746
|
+
defineCustomElementFn: defineCustomElement$T,
|
|
1810
1747
|
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1811
1748
|
})
|
|
1812
1749
|
], IonProgressBar);
|
|
1813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1814
1751
|
type: Component,
|
|
1815
1752
|
args: [{
|
|
1816
1753
|
selector: 'ion-progress-bar',
|
|
@@ -1818,28 +1755,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1818
1755
|
template: '<ng-content></ng-content>',
|
|
1819
1756
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1820
1757
|
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value'],
|
|
1758
|
+
standalone: true
|
|
1821
1759
|
}]
|
|
1822
|
-
}], ctorParameters: ()
|
|
1760
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1823
1761
|
let IonRadio = class IonRadio {
|
|
1824
1762
|
z;
|
|
1825
1763
|
el;
|
|
1826
|
-
ionFocus = new EventEmitter();
|
|
1827
|
-
ionBlur = new EventEmitter();
|
|
1828
1764
|
constructor(c, r, z) {
|
|
1829
1765
|
this.z = z;
|
|
1830
1766
|
c.detach();
|
|
1831
1767
|
this.el = r.nativeElement;
|
|
1768
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1832
1769
|
}
|
|
1833
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1834
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1770
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1771
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, isStandalone: true, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1835
1772
|
};
|
|
1836
1773
|
IonRadio = __decorate([
|
|
1837
1774
|
ProxyCmp({
|
|
1838
|
-
defineCustomElementFn: defineCustomElement$
|
|
1775
|
+
defineCustomElementFn: defineCustomElement$U,
|
|
1839
1776
|
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1840
1777
|
})
|
|
1841
1778
|
], IonRadio);
|
|
1842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
|
|
1843
1780
|
type: Component,
|
|
1844
1781
|
args: [{
|
|
1845
1782
|
selector: 'ion-radio',
|
|
@@ -1847,37 +1784,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1847
1784
|
template: '<ng-content></ng-content>',
|
|
1848
1785
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1849
1786
|
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value'],
|
|
1850
|
-
|
|
1787
|
+
standalone: true
|
|
1851
1788
|
}]
|
|
1852
|
-
}], ctorParameters: ()
|
|
1853
|
-
type: Output
|
|
1854
|
-
}], ionBlur: [{
|
|
1855
|
-
type: Output
|
|
1856
|
-
}] } });
|
|
1789
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1857
1790
|
let IonRefresher = class IonRefresher {
|
|
1858
1791
|
z;
|
|
1859
1792
|
el;
|
|
1860
|
-
ionRefresh = new EventEmitter();
|
|
1861
|
-
ionPull = new EventEmitter();
|
|
1862
|
-
ionStart = new EventEmitter();
|
|
1863
|
-
ionPullStart = new EventEmitter();
|
|
1864
|
-
ionPullEnd = new EventEmitter();
|
|
1865
1793
|
constructor(c, r, z) {
|
|
1866
1794
|
this.z = z;
|
|
1867
1795
|
c.detach();
|
|
1868
1796
|
this.el = r.nativeElement;
|
|
1797
|
+
proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd']);
|
|
1869
1798
|
}
|
|
1870
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1871
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1799
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1800
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, isStandalone: true, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1872
1801
|
};
|
|
1873
1802
|
IonRefresher = __decorate([
|
|
1874
1803
|
ProxyCmp({
|
|
1875
|
-
defineCustomElementFn: defineCustomElement$
|
|
1804
|
+
defineCustomElementFn: defineCustomElement$V,
|
|
1876
1805
|
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1877
1806
|
methods: ['complete', 'cancel', 'getProgress']
|
|
1878
1807
|
})
|
|
1879
1808
|
], IonRefresher);
|
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, decorators: [{
|
|
1881
1810
|
type: Component,
|
|
1882
1811
|
args: [{
|
|
1883
1812
|
selector: 'ion-refresher',
|
|
@@ -1885,19 +1814,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1885
1814
|
template: '<ng-content></ng-content>',
|
|
1886
1815
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1887
1816
|
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1888
|
-
|
|
1889
|
-
}]
|
|
1890
|
-
}], ctorParameters: ()
|
|
1891
|
-
type: Output
|
|
1892
|
-
}], ionPull: [{
|
|
1893
|
-
type: Output
|
|
1894
|
-
}], ionStart: [{
|
|
1895
|
-
type: Output
|
|
1896
|
-
}], ionPullStart: [{
|
|
1897
|
-
type: Output
|
|
1898
|
-
}], ionPullEnd: [{
|
|
1899
|
-
type: Output
|
|
1900
|
-
}] } });
|
|
1817
|
+
standalone: true
|
|
1818
|
+
}]
|
|
1819
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1901
1820
|
let IonRefresherContent = class IonRefresherContent {
|
|
1902
1821
|
z;
|
|
1903
1822
|
el;
|
|
@@ -1906,16 +1825,16 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
1906
1825
|
c.detach();
|
|
1907
1826
|
this.el = r.nativeElement;
|
|
1908
1827
|
}
|
|
1909
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1910
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1828
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1829
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, isStandalone: true, selector: "ion-refresher-content", inputs: { pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1911
1830
|
};
|
|
1912
1831
|
IonRefresherContent = __decorate([
|
|
1913
1832
|
ProxyCmp({
|
|
1914
|
-
defineCustomElementFn: defineCustomElement$
|
|
1833
|
+
defineCustomElementFn: defineCustomElement$W,
|
|
1915
1834
|
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
1916
1835
|
})
|
|
1917
1836
|
], IonRefresherContent);
|
|
1918
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
1919
1838
|
type: Component,
|
|
1920
1839
|
args: [{
|
|
1921
1840
|
selector: 'ion-refresher-content',
|
|
@@ -1923,8 +1842,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1923
1842
|
template: '<ng-content></ng-content>',
|
|
1924
1843
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1925
1844
|
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText'],
|
|
1845
|
+
standalone: true
|
|
1926
1846
|
}]
|
|
1927
|
-
}], ctorParameters: ()
|
|
1847
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1928
1848
|
let IonReorder = class IonReorder {
|
|
1929
1849
|
z;
|
|
1930
1850
|
el;
|
|
@@ -1933,15 +1853,15 @@ let IonReorder = class IonReorder {
|
|
|
1933
1853
|
c.detach();
|
|
1934
1854
|
this.el = r.nativeElement;
|
|
1935
1855
|
}
|
|
1936
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1937
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1856
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1857
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, isStandalone: true, selector: "ion-reorder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1938
1858
|
};
|
|
1939
1859
|
IonReorder = __decorate([
|
|
1940
1860
|
ProxyCmp({
|
|
1941
|
-
defineCustomElementFn: defineCustomElement$
|
|
1861
|
+
defineCustomElementFn: defineCustomElement$X
|
|
1942
1862
|
})
|
|
1943
1863
|
], IonReorder);
|
|
1944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
|
|
1945
1865
|
type: Component,
|
|
1946
1866
|
args: [{
|
|
1947
1867
|
selector: 'ion-reorder',
|
|
@@ -1949,31 +1869,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1949
1869
|
template: '<ng-content></ng-content>',
|
|
1950
1870
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1951
1871
|
inputs: [],
|
|
1872
|
+
standalone: true
|
|
1952
1873
|
}]
|
|
1953
|
-
}], ctorParameters: ()
|
|
1874
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1954
1875
|
let IonReorderGroup = class IonReorderGroup {
|
|
1955
1876
|
z;
|
|
1956
1877
|
el;
|
|
1957
|
-
ionItemReorder = new EventEmitter();
|
|
1958
|
-
ionReorderStart = new EventEmitter();
|
|
1959
|
-
ionReorderMove = new EventEmitter();
|
|
1960
|
-
ionReorderEnd = new EventEmitter();
|
|
1961
1878
|
constructor(c, r, z) {
|
|
1962
1879
|
this.z = z;
|
|
1963
1880
|
c.detach();
|
|
1964
1881
|
this.el = r.nativeElement;
|
|
1882
|
+
proxyOutputs(this, this.el, ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd']);
|
|
1965
1883
|
}
|
|
1966
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1967
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1884
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1885
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, isStandalone: true, selector: "ion-reorder-group", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1968
1886
|
};
|
|
1969
1887
|
IonReorderGroup = __decorate([
|
|
1970
1888
|
ProxyCmp({
|
|
1971
|
-
defineCustomElementFn: defineCustomElement$
|
|
1889
|
+
defineCustomElementFn: defineCustomElement$Y,
|
|
1972
1890
|
inputs: ['disabled'],
|
|
1973
1891
|
methods: ['complete']
|
|
1974
1892
|
})
|
|
1975
1893
|
], IonReorderGroup);
|
|
1976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1894
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
1977
1895
|
type: Component,
|
|
1978
1896
|
args: [{
|
|
1979
1897
|
selector: 'ion-reorder-group',
|
|
@@ -1981,17 +1899,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1981
1899
|
template: '<ng-content></ng-content>',
|
|
1982
1900
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1983
1901
|
inputs: ['disabled'],
|
|
1984
|
-
|
|
1985
|
-
}]
|
|
1986
|
-
}], ctorParameters: ()
|
|
1987
|
-
type: Output
|
|
1988
|
-
}], ionReorderStart: [{
|
|
1989
|
-
type: Output
|
|
1990
|
-
}], ionReorderMove: [{
|
|
1991
|
-
type: Output
|
|
1992
|
-
}], ionReorderEnd: [{
|
|
1993
|
-
type: Output
|
|
1994
|
-
}] } });
|
|
1902
|
+
standalone: true
|
|
1903
|
+
}]
|
|
1904
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1995
1905
|
let IonRippleEffect = class IonRippleEffect {
|
|
1996
1906
|
z;
|
|
1997
1907
|
el;
|
|
@@ -2000,17 +1910,17 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
2000
1910
|
c.detach();
|
|
2001
1911
|
this.el = r.nativeElement;
|
|
2002
1912
|
}
|
|
2003
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2004
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1913
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1914
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, isStandalone: true, selector: "ion-ripple-effect", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2005
1915
|
};
|
|
2006
1916
|
IonRippleEffect = __decorate([
|
|
2007
1917
|
ProxyCmp({
|
|
2008
|
-
defineCustomElementFn: defineCustomElement$
|
|
1918
|
+
defineCustomElementFn: defineCustomElement$Z,
|
|
2009
1919
|
inputs: ['type'],
|
|
2010
1920
|
methods: ['addRipple']
|
|
2011
1921
|
})
|
|
2012
1922
|
], IonRippleEffect);
|
|
2013
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2014
1924
|
type: Component,
|
|
2015
1925
|
args: [{
|
|
2016
1926
|
selector: 'ion-ripple-effect',
|
|
@@ -2018,8 +1928,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2018
1928
|
template: '<ng-content></ng-content>',
|
|
2019
1929
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2020
1930
|
inputs: ['type'],
|
|
1931
|
+
standalone: true
|
|
2021
1932
|
}]
|
|
2022
|
-
}], ctorParameters: ()
|
|
1933
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2023
1934
|
let IonRow = class IonRow {
|
|
2024
1935
|
z;
|
|
2025
1936
|
el;
|
|
@@ -2028,15 +1939,15 @@ let IonRow = class IonRow {
|
|
|
2028
1939
|
c.detach();
|
|
2029
1940
|
this.el = r.nativeElement;
|
|
2030
1941
|
}
|
|
2031
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2032
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1942
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1943
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, isStandalone: true, selector: "ion-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2033
1944
|
};
|
|
2034
1945
|
IonRow = __decorate([
|
|
2035
1946
|
ProxyCmp({
|
|
2036
|
-
defineCustomElementFn: defineCustomElement$
|
|
1947
|
+
defineCustomElementFn: defineCustomElement$_
|
|
2037
1948
|
})
|
|
2038
1949
|
], IonRow);
|
|
2039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
|
|
2040
1951
|
type: Component,
|
|
2041
1952
|
args: [{
|
|
2042
1953
|
selector: 'ion-row',
|
|
@@ -2044,8 +1955,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2044
1955
|
template: '<ng-content></ng-content>',
|
|
2045
1956
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2046
1957
|
inputs: [],
|
|
1958
|
+
standalone: true
|
|
2047
1959
|
}]
|
|
2048
|
-
}], ctorParameters: ()
|
|
1960
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2049
1961
|
let IonSegmentButton = class IonSegmentButton {
|
|
2050
1962
|
z;
|
|
2051
1963
|
el;
|
|
@@ -2054,16 +1966,16 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
2054
1966
|
c.detach();
|
|
2055
1967
|
this.el = r.nativeElement;
|
|
2056
1968
|
}
|
|
2057
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2058
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1969
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1970
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, isStandalone: true, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2059
1971
|
};
|
|
2060
1972
|
IonSegmentButton = __decorate([
|
|
2061
1973
|
ProxyCmp({
|
|
2062
|
-
defineCustomElementFn: defineCustomElement
|
|
1974
|
+
defineCustomElementFn: defineCustomElement$$,
|
|
2063
1975
|
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2064
1976
|
})
|
|
2065
1977
|
], IonSegmentButton);
|
|
2066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2067
1979
|
type: Component,
|
|
2068
1980
|
args: [{
|
|
2069
1981
|
selector: 'ion-segment-button',
|
|
@@ -2071,8 +1983,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2071
1983
|
template: '<ng-content></ng-content>',
|
|
2072
1984
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2073
1985
|
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value'],
|
|
1986
|
+
standalone: true
|
|
2074
1987
|
}]
|
|
2075
|
-
}], ctorParameters: ()
|
|
1988
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2076
1989
|
let IonSegmentContent = class IonSegmentContent {
|
|
2077
1990
|
z;
|
|
2078
1991
|
el;
|
|
@@ -2081,15 +1994,15 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2081
1994
|
c.detach();
|
|
2082
1995
|
this.el = r.nativeElement;
|
|
2083
1996
|
}
|
|
2084
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2085
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1997
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1998
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentContent, isStandalone: true, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2086
1999
|
};
|
|
2087
2000
|
IonSegmentContent = __decorate([
|
|
2088
2001
|
ProxyCmp({
|
|
2089
|
-
defineCustomElementFn: defineCustomElement
|
|
2002
|
+
defineCustomElementFn: defineCustomElement$10
|
|
2090
2003
|
})
|
|
2091
2004
|
], IonSegmentContent);
|
|
2092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2093
2006
|
type: Component,
|
|
2094
2007
|
args: [{
|
|
2095
2008
|
selector: 'ion-segment-content',
|
|
@@ -2097,27 +2010,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2097
2010
|
template: '<ng-content></ng-content>',
|
|
2098
2011
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2099
2012
|
inputs: [],
|
|
2013
|
+
standalone: true
|
|
2100
2014
|
}]
|
|
2101
|
-
}], ctorParameters: ()
|
|
2015
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2102
2016
|
let IonSegmentView = class IonSegmentView {
|
|
2103
2017
|
z;
|
|
2104
2018
|
el;
|
|
2105
|
-
ionSegmentViewScroll = new EventEmitter();
|
|
2106
2019
|
constructor(c, r, z) {
|
|
2107
2020
|
this.z = z;
|
|
2108
2021
|
c.detach();
|
|
2109
2022
|
this.el = r.nativeElement;
|
|
2023
|
+
proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
|
|
2110
2024
|
}
|
|
2111
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2112
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2025
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2026
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentView, isStandalone: true, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2113
2027
|
};
|
|
2114
2028
|
IonSegmentView = __decorate([
|
|
2115
2029
|
ProxyCmp({
|
|
2116
|
-
defineCustomElementFn: defineCustomElement$
|
|
2030
|
+
defineCustomElementFn: defineCustomElement$11,
|
|
2117
2031
|
inputs: ['disabled', 'swipeGesture']
|
|
2118
2032
|
})
|
|
2119
2033
|
], IonSegmentView);
|
|
2120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2121
2035
|
type: Component,
|
|
2122
2036
|
args: [{
|
|
2123
2037
|
selector: 'ion-segment-view',
|
|
@@ -2125,11 +2039,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2125
2039
|
template: '<ng-content></ng-content>',
|
|
2126
2040
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2127
2041
|
inputs: ['disabled', 'swipeGesture'],
|
|
2128
|
-
|
|
2042
|
+
standalone: true
|
|
2129
2043
|
}]
|
|
2130
|
-
}], ctorParameters: ()
|
|
2131
|
-
type: Output
|
|
2132
|
-
}] } });
|
|
2044
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2133
2045
|
let IonSelectModal = class IonSelectModal {
|
|
2134
2046
|
z;
|
|
2135
2047
|
el;
|
|
@@ -2138,16 +2050,16 @@ let IonSelectModal = class IonSelectModal {
|
|
|
2138
2050
|
c.detach();
|
|
2139
2051
|
this.el = r.nativeElement;
|
|
2140
2052
|
}
|
|
2141
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2142
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2053
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2054
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectModal, isStandalone: true, selector: "ion-select-modal", inputs: { cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2143
2055
|
};
|
|
2144
2056
|
IonSelectModal = __decorate([
|
|
2145
2057
|
ProxyCmp({
|
|
2146
|
-
defineCustomElementFn: defineCustomElement$
|
|
2058
|
+
defineCustomElementFn: defineCustomElement$12,
|
|
2147
2059
|
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2148
2060
|
})
|
|
2149
2061
|
], IonSelectModal);
|
|
2150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2151
2063
|
type: Component,
|
|
2152
2064
|
args: [{
|
|
2153
2065
|
selector: 'ion-select-modal',
|
|
@@ -2155,8 +2067,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2155
2067
|
template: '<ng-content></ng-content>',
|
|
2156
2068
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2157
2069
|
inputs: ['cancelText', 'header', 'multiple', 'options'],
|
|
2070
|
+
standalone: true
|
|
2158
2071
|
}]
|
|
2159
|
-
}], ctorParameters: ()
|
|
2072
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2160
2073
|
let IonSelectOption = class IonSelectOption {
|
|
2161
2074
|
z;
|
|
2162
2075
|
el;
|
|
@@ -2165,16 +2078,16 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2165
2078
|
c.detach();
|
|
2166
2079
|
this.el = r.nativeElement;
|
|
2167
2080
|
}
|
|
2168
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2169
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2081
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2082
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, isStandalone: true, selector: "ion-select-option", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2170
2083
|
};
|
|
2171
2084
|
IonSelectOption = __decorate([
|
|
2172
2085
|
ProxyCmp({
|
|
2173
|
-
defineCustomElementFn: defineCustomElement$
|
|
2086
|
+
defineCustomElementFn: defineCustomElement$13,
|
|
2174
2087
|
inputs: ['disabled', 'value']
|
|
2175
2088
|
})
|
|
2176
2089
|
], IonSelectOption);
|
|
2177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2178
2091
|
type: Component,
|
|
2179
2092
|
args: [{
|
|
2180
2093
|
selector: 'ion-select-option',
|
|
@@ -2182,8 +2095,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2182
2095
|
template: '<ng-content></ng-content>',
|
|
2183
2096
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2184
2097
|
inputs: ['disabled', 'value'],
|
|
2098
|
+
standalone: true
|
|
2185
2099
|
}]
|
|
2186
|
-
}], ctorParameters: ()
|
|
2100
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2187
2101
|
let IonSkeletonText = class IonSkeletonText {
|
|
2188
2102
|
z;
|
|
2189
2103
|
el;
|
|
@@ -2192,16 +2106,16 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2192
2106
|
c.detach();
|
|
2193
2107
|
this.el = r.nativeElement;
|
|
2194
2108
|
}
|
|
2195
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2196
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2109
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2110
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, isStandalone: true, selector: "ion-skeleton-text", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2197
2111
|
};
|
|
2198
2112
|
IonSkeletonText = __decorate([
|
|
2199
2113
|
ProxyCmp({
|
|
2200
|
-
defineCustomElementFn: defineCustomElement$
|
|
2114
|
+
defineCustomElementFn: defineCustomElement$14,
|
|
2201
2115
|
inputs: ['animated']
|
|
2202
2116
|
})
|
|
2203
2117
|
], IonSkeletonText);
|
|
2204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2205
2119
|
type: Component,
|
|
2206
2120
|
args: [{
|
|
2207
2121
|
selector: 'ion-skeleton-text',
|
|
@@ -2209,8 +2123,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2209
2123
|
template: '<ng-content></ng-content>',
|
|
2210
2124
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2211
2125
|
inputs: ['animated'],
|
|
2126
|
+
standalone: true
|
|
2212
2127
|
}]
|
|
2213
|
-
}], ctorParameters: ()
|
|
2128
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2214
2129
|
let IonSpinner = class IonSpinner {
|
|
2215
2130
|
z;
|
|
2216
2131
|
el;
|
|
@@ -2219,16 +2134,16 @@ let IonSpinner = class IonSpinner {
|
|
|
2219
2134
|
c.detach();
|
|
2220
2135
|
this.el = r.nativeElement;
|
|
2221
2136
|
}
|
|
2222
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2223
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2137
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2138
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, isStandalone: true, selector: "ion-spinner", inputs: { color: "color", duration: "duration", name: "name", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2224
2139
|
};
|
|
2225
2140
|
IonSpinner = __decorate([
|
|
2226
2141
|
ProxyCmp({
|
|
2227
|
-
defineCustomElementFn: defineCustomElement$
|
|
2142
|
+
defineCustomElementFn: defineCustomElement$15,
|
|
2228
2143
|
inputs: ['color', 'duration', 'name', 'paused']
|
|
2229
2144
|
})
|
|
2230
2145
|
], IonSpinner);
|
|
2231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2232
2147
|
type: Component,
|
|
2233
2148
|
args: [{
|
|
2234
2149
|
selector: 'ion-spinner',
|
|
@@ -2236,27 +2151,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2236
2151
|
template: '<ng-content></ng-content>',
|
|
2237
2152
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2238
2153
|
inputs: ['color', 'duration', 'name', 'paused'],
|
|
2154
|
+
standalone: true
|
|
2239
2155
|
}]
|
|
2240
|
-
}], ctorParameters: ()
|
|
2156
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2241
2157
|
let IonSplitPane = class IonSplitPane {
|
|
2242
2158
|
z;
|
|
2243
2159
|
el;
|
|
2244
|
-
ionSplitPaneVisible = new EventEmitter();
|
|
2245
2160
|
constructor(c, r, z) {
|
|
2246
2161
|
this.z = z;
|
|
2247
2162
|
c.detach();
|
|
2248
2163
|
this.el = r.nativeElement;
|
|
2164
|
+
proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
|
|
2249
2165
|
}
|
|
2250
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2251
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2166
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2167
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, isStandalone: true, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", when: "when" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2252
2168
|
};
|
|
2253
2169
|
IonSplitPane = __decorate([
|
|
2254
2170
|
ProxyCmp({
|
|
2255
|
-
defineCustomElementFn: defineCustomElement$
|
|
2171
|
+
defineCustomElementFn: defineCustomElement$16,
|
|
2256
2172
|
inputs: ['contentId', 'disabled', 'when']
|
|
2257
2173
|
})
|
|
2258
2174
|
], IonSplitPane);
|
|
2259
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2260
2176
|
type: Component,
|
|
2261
2177
|
args: [{
|
|
2262
2178
|
selector: 'ion-split-pane',
|
|
@@ -2264,11 +2180,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2264
2180
|
template: '<ng-content></ng-content>',
|
|
2265
2181
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2266
2182
|
inputs: ['contentId', 'disabled', 'when'],
|
|
2267
|
-
|
|
2183
|
+
standalone: true
|
|
2268
2184
|
}]
|
|
2269
|
-
}], ctorParameters: ()
|
|
2270
|
-
type: Output
|
|
2271
|
-
}] } });
|
|
2185
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2272
2186
|
let IonTab = class IonTab {
|
|
2273
2187
|
z;
|
|
2274
2188
|
el;
|
|
@@ -2277,26 +2191,27 @@ let IonTab = class IonTab {
|
|
|
2277
2191
|
c.detach();
|
|
2278
2192
|
this.el = r.nativeElement;
|
|
2279
2193
|
}
|
|
2280
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2281
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2194
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2195
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, isStandalone: true, selector: "ion-tab", inputs: { component: "component", tab: "tab" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2282
2196
|
};
|
|
2283
2197
|
IonTab = __decorate([
|
|
2284
2198
|
ProxyCmp({
|
|
2285
|
-
defineCustomElementFn: defineCustomElement$
|
|
2199
|
+
defineCustomElementFn: defineCustomElement$17,
|
|
2286
2200
|
inputs: ['component', 'tab'],
|
|
2287
2201
|
methods: ['setActive']
|
|
2288
2202
|
})
|
|
2289
2203
|
], IonTab);
|
|
2290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, decorators: [{
|
|
2291
2205
|
type: Component,
|
|
2292
2206
|
args: [{
|
|
2293
2207
|
selector: 'ion-tab',
|
|
2294
2208
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2295
2209
|
template: '<ng-content></ng-content>',
|
|
2296
2210
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2297
|
-
inputs: ['component',
|
|
2211
|
+
inputs: ['component', 'tab'],
|
|
2212
|
+
standalone: true
|
|
2298
2213
|
}]
|
|
2299
|
-
}], ctorParameters: ()
|
|
2214
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2300
2215
|
let IonTabBar = class IonTabBar {
|
|
2301
2216
|
z;
|
|
2302
2217
|
el;
|
|
@@ -2305,16 +2220,16 @@ let IonTabBar = class IonTabBar {
|
|
|
2305
2220
|
c.detach();
|
|
2306
2221
|
this.el = r.nativeElement;
|
|
2307
2222
|
}
|
|
2308
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2309
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2223
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2224
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, isStandalone: true, selector: "ion-tab-bar", inputs: { color: "color", mode: "mode", selectedTab: "selectedTab", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2310
2225
|
};
|
|
2311
2226
|
IonTabBar = __decorate([
|
|
2312
2227
|
ProxyCmp({
|
|
2313
|
-
defineCustomElementFn: defineCustomElement$
|
|
2228
|
+
defineCustomElementFn: defineCustomElement$18,
|
|
2314
2229
|
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2315
2230
|
})
|
|
2316
2231
|
], IonTabBar);
|
|
2317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2318
2233
|
type: Component,
|
|
2319
2234
|
args: [{
|
|
2320
2235
|
selector: 'ion-tab-bar',
|
|
@@ -2322,8 +2237,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2322
2237
|
template: '<ng-content></ng-content>',
|
|
2323
2238
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2324
2239
|
inputs: ['color', 'mode', 'selectedTab', 'translucent'],
|
|
2240
|
+
standalone: true
|
|
2325
2241
|
}]
|
|
2326
|
-
}], ctorParameters: ()
|
|
2242
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2327
2243
|
let IonTabButton = class IonTabButton {
|
|
2328
2244
|
z;
|
|
2329
2245
|
el;
|
|
@@ -2332,16 +2248,16 @@ let IonTabButton = class IonTabButton {
|
|
|
2332
2248
|
c.detach();
|
|
2333
2249
|
this.el = r.nativeElement;
|
|
2334
2250
|
}
|
|
2335
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2336
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2251
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2252
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, isStandalone: true, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", tab: "tab", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2337
2253
|
};
|
|
2338
2254
|
IonTabButton = __decorate([
|
|
2339
2255
|
ProxyCmp({
|
|
2340
|
-
defineCustomElementFn: defineCustomElement$
|
|
2256
|
+
defineCustomElementFn: defineCustomElement$19,
|
|
2341
2257
|
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2342
2258
|
})
|
|
2343
2259
|
], IonTabButton);
|
|
2344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2345
2261
|
type: Component,
|
|
2346
2262
|
args: [{
|
|
2347
2263
|
selector: 'ion-tab-button',
|
|
@@ -2349,8 +2265,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2349
2265
|
template: '<ng-content></ng-content>',
|
|
2350
2266
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2351
2267
|
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target'],
|
|
2268
|
+
standalone: true
|
|
2352
2269
|
}]
|
|
2353
|
-
}], ctorParameters: ()
|
|
2270
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2354
2271
|
let IonText = class IonText {
|
|
2355
2272
|
z;
|
|
2356
2273
|
el;
|
|
@@ -2359,16 +2276,16 @@ let IonText = class IonText {
|
|
|
2359
2276
|
c.detach();
|
|
2360
2277
|
this.el = r.nativeElement;
|
|
2361
2278
|
}
|
|
2362
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2363
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2279
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2280
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, isStandalone: true, selector: "ion-text", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2364
2281
|
};
|
|
2365
2282
|
IonText = __decorate([
|
|
2366
2283
|
ProxyCmp({
|
|
2367
|
-
defineCustomElementFn: defineCustomElement$
|
|
2284
|
+
defineCustomElementFn: defineCustomElement$1a,
|
|
2368
2285
|
inputs: ['color', 'mode']
|
|
2369
2286
|
})
|
|
2370
2287
|
], IonText);
|
|
2371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
|
|
2372
2289
|
type: Component,
|
|
2373
2290
|
args: [{
|
|
2374
2291
|
selector: 'ion-text',
|
|
@@ -2376,8 +2293,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2376
2293
|
template: '<ng-content></ng-content>',
|
|
2377
2294
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2378
2295
|
inputs: ['color', 'mode'],
|
|
2296
|
+
standalone: true
|
|
2379
2297
|
}]
|
|
2380
|
-
}], ctorParameters: ()
|
|
2298
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2381
2299
|
let IonThumbnail = class IonThumbnail {
|
|
2382
2300
|
z;
|
|
2383
2301
|
el;
|
|
@@ -2386,15 +2304,15 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2386
2304
|
c.detach();
|
|
2387
2305
|
this.el = r.nativeElement;
|
|
2388
2306
|
}
|
|
2389
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2390
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2307
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2308
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, isStandalone: true, selector: "ion-thumbnail", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2391
2309
|
};
|
|
2392
2310
|
IonThumbnail = __decorate([
|
|
2393
2311
|
ProxyCmp({
|
|
2394
|
-
defineCustomElementFn: defineCustomElement$
|
|
2312
|
+
defineCustomElementFn: defineCustomElement$1b
|
|
2395
2313
|
})
|
|
2396
2314
|
], IonThumbnail);
|
|
2397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2398
2316
|
type: Component,
|
|
2399
2317
|
args: [{
|
|
2400
2318
|
selector: 'ion-thumbnail',
|
|
@@ -2402,8 +2320,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2402
2320
|
template: '<ng-content></ng-content>',
|
|
2403
2321
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2404
2322
|
inputs: [],
|
|
2323
|
+
standalone: true
|
|
2405
2324
|
}]
|
|
2406
|
-
}], ctorParameters: ()
|
|
2325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2407
2326
|
let IonTitle = class IonTitle {
|
|
2408
2327
|
z;
|
|
2409
2328
|
el;
|
|
@@ -2412,16 +2331,16 @@ let IonTitle = class IonTitle {
|
|
|
2412
2331
|
c.detach();
|
|
2413
2332
|
this.el = r.nativeElement;
|
|
2414
2333
|
}
|
|
2415
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2416
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2334
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2335
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, isStandalone: true, selector: "ion-title", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2417
2336
|
};
|
|
2418
2337
|
IonTitle = __decorate([
|
|
2419
2338
|
ProxyCmp({
|
|
2420
|
-
defineCustomElementFn: defineCustomElement$
|
|
2339
|
+
defineCustomElementFn: defineCustomElement$1c,
|
|
2421
2340
|
inputs: ['color', 'size']
|
|
2422
2341
|
})
|
|
2423
2342
|
], IonTitle);
|
|
2424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
|
|
2425
2344
|
type: Component,
|
|
2426
2345
|
args: [{
|
|
2427
2346
|
selector: 'ion-title',
|
|
@@ -2429,35 +2348,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2429
2348
|
template: '<ng-content></ng-content>',
|
|
2430
2349
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2431
2350
|
inputs: ['color', 'size'],
|
|
2351
|
+
standalone: true
|
|
2432
2352
|
}]
|
|
2433
|
-
}], ctorParameters: ()
|
|
2353
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2434
2354
|
let IonToast = class IonToast {
|
|
2435
2355
|
z;
|
|
2436
2356
|
el;
|
|
2437
|
-
ionToastDidPresent = new EventEmitter();
|
|
2438
|
-
ionToastWillPresent = new EventEmitter();
|
|
2439
|
-
ionToastWillDismiss = new EventEmitter();
|
|
2440
|
-
ionToastDidDismiss = new EventEmitter();
|
|
2441
|
-
didPresent = new EventEmitter();
|
|
2442
|
-
willPresent = new EventEmitter();
|
|
2443
|
-
willDismiss = new EventEmitter();
|
|
2444
|
-
didDismiss = new EventEmitter();
|
|
2445
2357
|
constructor(c, r, z) {
|
|
2446
2358
|
this.z = z;
|
|
2447
2359
|
c.detach();
|
|
2448
2360
|
this.el = r.nativeElement;
|
|
2361
|
+
proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
2449
2362
|
}
|
|
2450
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2451
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2363
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2364
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, isStandalone: true, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", swipeGesture: "swipeGesture", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2452
2365
|
};
|
|
2453
2366
|
IonToast = __decorate([
|
|
2454
2367
|
ProxyCmp({
|
|
2455
|
-
defineCustomElementFn: defineCustomElement$
|
|
2368
|
+
defineCustomElementFn: defineCustomElement$1d,
|
|
2456
2369
|
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2457
2370
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2458
2371
|
})
|
|
2459
2372
|
], IonToast);
|
|
2460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, decorators: [{
|
|
2461
2374
|
type: Component,
|
|
2462
2375
|
args: [{
|
|
2463
2376
|
selector: 'ion-toast',
|
|
@@ -2465,25 +2378,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2465
2378
|
template: '<ng-content></ng-content>',
|
|
2466
2379
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2467
2380
|
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2468
|
-
|
|
2469
|
-
}]
|
|
2470
|
-
}], ctorParameters: ()
|
|
2471
|
-
type: Output
|
|
2472
|
-
}], ionToastWillPresent: [{
|
|
2473
|
-
type: Output
|
|
2474
|
-
}], ionToastWillDismiss: [{
|
|
2475
|
-
type: Output
|
|
2476
|
-
}], ionToastDidDismiss: [{
|
|
2477
|
-
type: Output
|
|
2478
|
-
}], didPresent: [{
|
|
2479
|
-
type: Output
|
|
2480
|
-
}], willPresent: [{
|
|
2481
|
-
type: Output
|
|
2482
|
-
}], willDismiss: [{
|
|
2483
|
-
type: Output
|
|
2484
|
-
}], didDismiss: [{
|
|
2485
|
-
type: Output
|
|
2486
|
-
}] } });
|
|
2381
|
+
standalone: true
|
|
2382
|
+
}]
|
|
2383
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2487
2384
|
let IonToolbar = class IonToolbar {
|
|
2488
2385
|
z;
|
|
2489
2386
|
el;
|
|
@@ -2492,16 +2389,16 @@ let IonToolbar = class IonToolbar {
|
|
|
2492
2389
|
c.detach();
|
|
2493
2390
|
this.el = r.nativeElement;
|
|
2494
2391
|
}
|
|
2495
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2496
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2392
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2393
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, isStandalone: true, selector: "ion-toolbar", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2497
2394
|
};
|
|
2498
2395
|
IonToolbar = __decorate([
|
|
2499
2396
|
ProxyCmp({
|
|
2500
|
-
defineCustomElementFn: defineCustomElement$
|
|
2397
|
+
defineCustomElementFn: defineCustomElement$1e,
|
|
2501
2398
|
inputs: ['color', 'mode']
|
|
2502
2399
|
})
|
|
2503
2400
|
], IonToolbar);
|
|
2504
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2505
2402
|
type: Component,
|
|
2506
2403
|
args: [{
|
|
2507
2404
|
selector: 'ion-toolbar',
|
|
@@ -2509,17 +2406,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2509
2406
|
template: '<ng-content></ng-content>',
|
|
2510
2407
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2511
2408
|
inputs: ['color', 'mode'],
|
|
2409
|
+
standalone: true
|
|
2512
2410
|
}]
|
|
2513
|
-
}], ctorParameters: ()
|
|
2411
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2514
2412
|
|
|
2515
|
-
// eslint-disable-next-line @angular-eslint/component-class-suffix
|
|
2516
2413
|
class IonTabs extends IonTabs$1 {
|
|
2517
2414
|
outlet;
|
|
2518
2415
|
tabBar;
|
|
2519
2416
|
tabBars;
|
|
2520
2417
|
tabs;
|
|
2521
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2522
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2418
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2419
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, isStandalone: true, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
|
|
2523
2420
|
<ng-content select="[slot=top]"></ng-content>
|
|
2524
2421
|
<div class="tabs-inner" #tabsInner>
|
|
2525
2422
|
<ion-router-outlet
|
|
@@ -2534,7 +2431,7 @@ class IonTabs extends IonTabs$1 {
|
|
|
2534
2431
|
<ng-content></ng-content>
|
|
2535
2432
|
`, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2536
2433
|
}
|
|
2537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
|
|
2538
2435
|
type: Component,
|
|
2539
2436
|
args: [{ selector: 'ion-tabs', template: `
|
|
2540
2437
|
<ng-content select="[slot=top]"></ng-content>
|
|
@@ -2579,12 +2476,12 @@ class ModalController extends OverlayBaseController {
|
|
|
2579
2476
|
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
2580
2477
|
});
|
|
2581
2478
|
}
|
|
2582
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2583
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2479
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2480
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
|
|
2584
2481
|
}
|
|
2585
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
|
|
2586
2483
|
type: Injectable
|
|
2587
|
-
}], ctorParameters: ()
|
|
2484
|
+
}], ctorParameters: function () { return []; } });
|
|
2588
2485
|
|
|
2589
2486
|
class PopoverController extends OverlayBaseController {
|
|
2590
2487
|
angularDelegate = inject(AngularDelegate);
|
|
@@ -2640,30 +2537,30 @@ class ActionSheetController extends OverlayBaseController {
|
|
|
2640
2537
|
super(actionSheetController);
|
|
2641
2538
|
defineCustomElement$7();
|
|
2642
2539
|
}
|
|
2643
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2644
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2540
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2541
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
2645
2542
|
}
|
|
2646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2543
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
2647
2544
|
type: Injectable,
|
|
2648
2545
|
args: [{
|
|
2649
2546
|
providedIn: 'root',
|
|
2650
2547
|
}]
|
|
2651
|
-
}], ctorParameters: ()
|
|
2548
|
+
}], ctorParameters: function () { return []; } });
|
|
2652
2549
|
|
|
2653
2550
|
class AlertController extends OverlayBaseController {
|
|
2654
2551
|
constructor() {
|
|
2655
2552
|
super(alertController);
|
|
2656
2553
|
defineCustomElement$8();
|
|
2657
2554
|
}
|
|
2658
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2659
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2555
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2556
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
2660
2557
|
}
|
|
2661
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, decorators: [{
|
|
2662
2559
|
type: Injectable,
|
|
2663
2560
|
args: [{
|
|
2664
2561
|
providedIn: 'root',
|
|
2665
2562
|
}]
|
|
2666
|
-
}], ctorParameters: ()
|
|
2563
|
+
}], ctorParameters: function () { return []; } });
|
|
2667
2564
|
|
|
2668
2565
|
class AnimationController {
|
|
2669
2566
|
/**
|
|
@@ -2689,10 +2586,10 @@ class AnimationController {
|
|
|
2689
2586
|
easingTime(p0, p1, p2, p3, progression) {
|
|
2690
2587
|
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
2691
2588
|
}
|
|
2692
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2693
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2589
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2590
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
2694
2591
|
}
|
|
2695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2592
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, decorators: [{
|
|
2696
2593
|
type: Injectable,
|
|
2697
2594
|
args: [{
|
|
2698
2595
|
providedIn: 'root',
|
|
@@ -2718,80 +2615,98 @@ class GestureController {
|
|
|
2718
2615
|
}
|
|
2719
2616
|
return createGesture(opts);
|
|
2720
2617
|
}
|
|
2721
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2722
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2618
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2619
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
2723
2620
|
}
|
|
2724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2621
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, decorators: [{
|
|
2725
2622
|
type: Injectable,
|
|
2726
2623
|
args: [{
|
|
2727
2624
|
providedIn: 'root',
|
|
2728
2625
|
}]
|
|
2729
|
-
}], ctorParameters: ()
|
|
2626
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
2730
2627
|
|
|
2731
2628
|
class LoadingController extends OverlayBaseController {
|
|
2732
2629
|
constructor() {
|
|
2733
2630
|
super(loadingController);
|
|
2734
2631
|
defineCustomElement$J();
|
|
2735
2632
|
}
|
|
2736
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2737
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2633
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2634
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
2738
2635
|
}
|
|
2739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, decorators: [{
|
|
2740
2637
|
type: Injectable,
|
|
2741
2638
|
args: [{
|
|
2742
2639
|
providedIn: 'root',
|
|
2743
2640
|
}]
|
|
2744
|
-
}], ctorParameters: ()
|
|
2641
|
+
}], ctorParameters: function () { return []; } });
|
|
2745
2642
|
|
|
2746
2643
|
class MenuController extends MenuController$1 {
|
|
2747
2644
|
constructor() {
|
|
2748
2645
|
super(menuController);
|
|
2749
2646
|
}
|
|
2750
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2751
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2647
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2648
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
2649
|
+
}
|
|
2650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, decorators: [{
|
|
2651
|
+
type: Injectable,
|
|
2652
|
+
args: [{
|
|
2653
|
+
providedIn: 'root',
|
|
2654
|
+
}]
|
|
2655
|
+
}], ctorParameters: function () { return []; } });
|
|
2656
|
+
|
|
2657
|
+
/**
|
|
2658
|
+
* @deprecated Use the inline ion-picker component instead.
|
|
2659
|
+
*/
|
|
2660
|
+
class PickerController extends OverlayBaseController {
|
|
2661
|
+
constructor() {
|
|
2662
|
+
super(pickerController);
|
|
2663
|
+
defineCustomElement$S();
|
|
2664
|
+
}
|
|
2665
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2666
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
|
|
2752
2667
|
}
|
|
2753
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
|
|
2754
2669
|
type: Injectable,
|
|
2755
2670
|
args: [{
|
|
2756
2671
|
providedIn: 'root',
|
|
2757
2672
|
}]
|
|
2758
|
-
}], ctorParameters: ()
|
|
2673
|
+
}], ctorParameters: function () { return []; } });
|
|
2759
2674
|
|
|
2760
2675
|
class ToastController extends OverlayBaseController {
|
|
2761
2676
|
constructor() {
|
|
2762
2677
|
super(toastController);
|
|
2763
|
-
defineCustomElement$
|
|
2678
|
+
defineCustomElement$1d();
|
|
2764
2679
|
}
|
|
2765
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2766
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2680
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2681
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
2767
2682
|
}
|
|
2768
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
|
|
2769
2684
|
type: Injectable,
|
|
2770
2685
|
args: [{
|
|
2771
2686
|
providedIn: 'root',
|
|
2772
2687
|
}]
|
|
2773
|
-
}], ctorParameters: ()
|
|
2688
|
+
}], ctorParameters: function () { return []; } });
|
|
2774
2689
|
|
|
2775
2690
|
let IonNav = class IonNav extends IonNav$1 {
|
|
2776
2691
|
constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
|
|
2777
2692
|
super(ref, environmentInjector, injector, angularDelegate, z, c);
|
|
2778
2693
|
}
|
|
2779
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2780
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2694
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2695
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, isStandalone: true, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
|
|
2781
2696
|
};
|
|
2782
2697
|
IonNav = __decorate([
|
|
2783
2698
|
ProxyCmp$1({
|
|
2784
|
-
defineCustomElementFn: defineCustomElement$
|
|
2699
|
+
defineCustomElementFn: defineCustomElement$1f,
|
|
2785
2700
|
})
|
|
2786
2701
|
], IonNav);
|
|
2787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
|
|
2788
2703
|
type: Component,
|
|
2789
2704
|
args: [{
|
|
2790
2705
|
selector: 'ion-nav',
|
|
2791
2706
|
template: '<ng-content></ng-content>',
|
|
2792
2707
|
standalone: true,
|
|
2793
2708
|
}]
|
|
2794
|
-
}], ctorParameters: ()
|
|
2709
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
2795
2710
|
|
|
2796
2711
|
const CHECKBOX_INPUTS = [
|
|
2797
2712
|
'checked',
|
|
@@ -2836,16 +2751,16 @@ let IonCheckbox = class IonCheckbox extends ValueAccessor {
|
|
|
2836
2751
|
handleIonChange(el) {
|
|
2837
2752
|
this.handleValueChange(el, el.checked);
|
|
2838
2753
|
}
|
|
2839
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2840
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2754
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2755
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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: [accessorProvider$a], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2841
2756
|
};
|
|
2842
2757
|
IonCheckbox = __decorate([
|
|
2843
2758
|
ProxyCmp({
|
|
2844
|
-
defineCustomElementFn: defineCustomElement$
|
|
2759
|
+
defineCustomElementFn: defineCustomElement$1g,
|
|
2845
2760
|
inputs: CHECKBOX_INPUTS,
|
|
2846
2761
|
})
|
|
2847
2762
|
], IonCheckbox);
|
|
2848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
2849
2764
|
type: Component,
|
|
2850
2765
|
args: [{
|
|
2851
2766
|
selector: 'ion-checkbox',
|
|
@@ -2856,7 +2771,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2856
2771
|
providers: [accessorProvider$a],
|
|
2857
2772
|
standalone: true,
|
|
2858
2773
|
}]
|
|
2859
|
-
}], ctorParameters: ()
|
|
2774
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
2860
2775
|
type: HostListener,
|
|
2861
2776
|
args: ['ionChange', ['$event.target']]
|
|
2862
2777
|
}] } });
|
|
@@ -2922,17 +2837,17 @@ let IonDatetime = class IonDatetime extends ValueAccessor {
|
|
|
2922
2837
|
handleIonChange(el) {
|
|
2923
2838
|
this.handleValueChange(el, el.value);
|
|
2924
2839
|
}
|
|
2925
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2926
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2840
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2841
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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: [accessorProvider$9], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2927
2842
|
};
|
|
2928
2843
|
IonDatetime = __decorate([
|
|
2929
2844
|
ProxyCmp({
|
|
2930
|
-
defineCustomElementFn: defineCustomElement$
|
|
2845
|
+
defineCustomElementFn: defineCustomElement$1h,
|
|
2931
2846
|
inputs: DATETIME_INPUTS,
|
|
2932
2847
|
methods: ['confirm', 'reset', 'cancel'],
|
|
2933
2848
|
})
|
|
2934
2849
|
], IonDatetime);
|
|
2935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, decorators: [{
|
|
2936
2851
|
type: Component,
|
|
2937
2852
|
args: [{
|
|
2938
2853
|
selector: 'ion-datetime',
|
|
@@ -2943,7 +2858,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2943
2858
|
providers: [accessorProvider$9],
|
|
2944
2859
|
standalone: true,
|
|
2945
2860
|
}]
|
|
2946
|
-
}], ctorParameters: ()
|
|
2861
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
2947
2862
|
type: HostListener,
|
|
2948
2863
|
args: ['ionChange', ['$event.target']]
|
|
2949
2864
|
}] } });
|
|
@@ -2956,16 +2871,16 @@ let IonIcon = class IonIcon {
|
|
|
2956
2871
|
c.detach();
|
|
2957
2872
|
this.el = r.nativeElement;
|
|
2958
2873
|
}
|
|
2959
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2960
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2874
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2875
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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 });
|
|
2961
2876
|
};
|
|
2962
2877
|
IonIcon = __decorate([
|
|
2963
2878
|
ProxyCmp({
|
|
2964
|
-
defineCustomElementFn: defineCustomElement$
|
|
2879
|
+
defineCustomElementFn: defineCustomElement$1i,
|
|
2965
2880
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
2966
2881
|
})
|
|
2967
2882
|
], IonIcon);
|
|
2968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, decorators: [{
|
|
2969
2884
|
type: Component,
|
|
2970
2885
|
args: [{
|
|
2971
2886
|
selector: 'ion-icon',
|
|
@@ -2975,7 +2890,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2975
2890
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
2976
2891
|
standalone: true,
|
|
2977
2892
|
}]
|
|
2978
|
-
}], ctorParameters: ()
|
|
2893
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2979
2894
|
|
|
2980
2895
|
const INPUT_INPUTS = [
|
|
2981
2896
|
'accept',
|
|
@@ -3056,17 +2971,17 @@ let IonInput = class IonInput extends ValueAccessor {
|
|
|
3056
2971
|
}
|
|
3057
2972
|
});
|
|
3058
2973
|
}
|
|
3059
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3060
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2974
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2975
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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: [accessorProvider$8], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3061
2976
|
};
|
|
3062
2977
|
IonInput = __decorate([
|
|
3063
2978
|
ProxyCmp({
|
|
3064
|
-
defineCustomElementFn: defineCustomElement$
|
|
2979
|
+
defineCustomElementFn: defineCustomElement$1j,
|
|
3065
2980
|
inputs: INPUT_INPUTS,
|
|
3066
2981
|
methods: ['setFocus', 'getInputElement'],
|
|
3067
2982
|
})
|
|
3068
2983
|
], IonInput);
|
|
3069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, decorators: [{
|
|
3070
2985
|
type: Component,
|
|
3071
2986
|
args: [{
|
|
3072
2987
|
selector: 'ion-input',
|
|
@@ -3077,7 +2992,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3077
2992
|
providers: [accessorProvider$8],
|
|
3078
2993
|
standalone: true,
|
|
3079
2994
|
}]
|
|
3080
|
-
}], ctorParameters: ()
|
|
2995
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
|
|
3081
2996
|
type: HostListener,
|
|
3082
2997
|
args: ['ionInput', ['$event.target']]
|
|
3083
2998
|
}] } });
|
|
@@ -3138,17 +3053,17 @@ let IonInputOtp = class IonInputOtp extends ValueAccessor {
|
|
|
3138
3053
|
}
|
|
3139
3054
|
});
|
|
3140
3055
|
}
|
|
3141
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3142
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3056
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3057
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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: [accessorProvider$7], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3143
3058
|
};
|
|
3144
3059
|
IonInputOtp = __decorate([
|
|
3145
3060
|
ProxyCmp({
|
|
3146
|
-
defineCustomElementFn: defineCustomElement$
|
|
3061
|
+
defineCustomElementFn: defineCustomElement$1k,
|
|
3147
3062
|
inputs: INPUT_OTP_INPUTS,
|
|
3148
3063
|
methods: ['setFocus'],
|
|
3149
3064
|
})
|
|
3150
3065
|
], IonInputOtp);
|
|
3151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3066
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
3152
3067
|
type: Component,
|
|
3153
3068
|
args: [{
|
|
3154
3069
|
selector: 'ion-input-otp',
|
|
@@ -3159,7 +3074,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3159
3074
|
providers: [accessorProvider$7],
|
|
3160
3075
|
standalone: true,
|
|
3161
3076
|
}]
|
|
3162
|
-
}], ctorParameters: ()
|
|
3077
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
|
|
3163
3078
|
type: HostListener,
|
|
3164
3079
|
args: ['ionInput', ['$event.target']]
|
|
3165
3080
|
}] } });
|
|
@@ -3191,16 +3106,16 @@ let IonRadioGroup = class IonRadioGroup extends ValueAccessor {
|
|
|
3191
3106
|
handleIonChange(el) {
|
|
3192
3107
|
this.handleValueChange(el, el.value);
|
|
3193
3108
|
}
|
|
3194
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3195
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3109
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3110
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, isStandalone: true, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$6], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3196
3111
|
};
|
|
3197
3112
|
IonRadioGroup = __decorate([
|
|
3198
3113
|
ProxyCmp({
|
|
3199
|
-
defineCustomElementFn: defineCustomElement$
|
|
3114
|
+
defineCustomElementFn: defineCustomElement$1l,
|
|
3200
3115
|
inputs: RADIO_GROUP_INPUTS,
|
|
3201
3116
|
})
|
|
3202
3117
|
], IonRadioGroup);
|
|
3203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
3204
3119
|
type: Component,
|
|
3205
3120
|
args: [{
|
|
3206
3121
|
selector: 'ion-radio-group',
|
|
@@ -3211,7 +3126,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3211
3126
|
providers: [accessorProvider$6],
|
|
3212
3127
|
standalone: true,
|
|
3213
3128
|
}]
|
|
3214
|
-
}], ctorParameters: ()
|
|
3129
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
3215
3130
|
type: HostListener,
|
|
3216
3131
|
args: ['ionChange', ['$event.target']]
|
|
3217
3132
|
}] } });
|
|
@@ -3261,16 +3176,16 @@ let IonRange = class IonRange extends ValueAccessor {
|
|
|
3261
3176
|
handleIonInput(el) {
|
|
3262
3177
|
this.handleValueChange(el, el.value);
|
|
3263
3178
|
}
|
|
3264
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3265
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3179
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3180
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRange, isStandalone: true, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", ticks: "ticks", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$5], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3266
3181
|
};
|
|
3267
3182
|
IonRange = __decorate([
|
|
3268
3183
|
ProxyCmp({
|
|
3269
|
-
defineCustomElementFn: defineCustomElement$
|
|
3184
|
+
defineCustomElementFn: defineCustomElement$1m,
|
|
3270
3185
|
inputs: RANGE_INPUTS,
|
|
3271
3186
|
})
|
|
3272
3187
|
], IonRange);
|
|
3273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, decorators: [{
|
|
3274
3189
|
type: Component,
|
|
3275
3190
|
args: [{
|
|
3276
3191
|
selector: 'ion-range',
|
|
@@ -3281,7 +3196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3281
3196
|
providers: [accessorProvider$5],
|
|
3282
3197
|
standalone: true,
|
|
3283
3198
|
}]
|
|
3284
|
-
}], ctorParameters: ()
|
|
3199
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
|
|
3285
3200
|
type: HostListener,
|
|
3286
3201
|
args: ['ionInput', ['$event.target']]
|
|
3287
3202
|
}] } });
|
|
@@ -3334,17 +3249,17 @@ let IonSearchbar = class IonSearchbar extends ValueAccessor {
|
|
|
3334
3249
|
handleIonInput(el) {
|
|
3335
3250
|
this.handleValueChange(el, el.value);
|
|
3336
3251
|
}
|
|
3337
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3338
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3252
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3253
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSearchbar, isStandalone: true, selector: "ion-searchbar", inputs: { animated: "animated", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", showCancelButton: "showCancelButton", showClearButton: "showClearButton", spellcheck: "spellcheck", type: "type", value: "value" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$4], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3339
3254
|
};
|
|
3340
3255
|
IonSearchbar = __decorate([
|
|
3341
3256
|
ProxyCmp({
|
|
3342
|
-
defineCustomElementFn: defineCustomElement$
|
|
3257
|
+
defineCustomElementFn: defineCustomElement$1n,
|
|
3343
3258
|
inputs: SEARCHBAR_INPUTS,
|
|
3344
3259
|
methods: ['setFocus', 'getInputElement'],
|
|
3345
3260
|
})
|
|
3346
3261
|
], IonSearchbar);
|
|
3347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
3348
3263
|
type: Component,
|
|
3349
3264
|
args: [{
|
|
3350
3265
|
selector: 'ion-searchbar',
|
|
@@ -3355,7 +3270,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3355
3270
|
providers: [accessorProvider$4],
|
|
3356
3271
|
standalone: true,
|
|
3357
3272
|
}]
|
|
3358
|
-
}], ctorParameters: ()
|
|
3273
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
|
|
3359
3274
|
type: HostListener,
|
|
3360
3275
|
args: ['ionInput', ['$event.target']]
|
|
3361
3276
|
}] } });
|
|
@@ -3387,16 +3302,16 @@ let IonSegment = class IonSegment extends ValueAccessor {
|
|
|
3387
3302
|
handleIonChange(el) {
|
|
3388
3303
|
this.handleValueChange(el, el.value);
|
|
3389
3304
|
}
|
|
3390
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3391
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3305
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3306
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegment, isStandalone: true, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$3], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3392
3307
|
};
|
|
3393
3308
|
IonSegment = __decorate([
|
|
3394
3309
|
ProxyCmp({
|
|
3395
|
-
defineCustomElementFn: defineCustomElement$
|
|
3310
|
+
defineCustomElementFn: defineCustomElement$1o,
|
|
3396
3311
|
inputs: SEGMENT_INPUTS,
|
|
3397
3312
|
})
|
|
3398
3313
|
], IonSegment);
|
|
3399
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, decorators: [{
|
|
3400
3315
|
type: Component,
|
|
3401
3316
|
args: [{
|
|
3402
3317
|
selector: 'ion-segment',
|
|
@@ -3407,7 +3322,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3407
3322
|
providers: [accessorProvider$3],
|
|
3408
3323
|
standalone: true,
|
|
3409
3324
|
}]
|
|
3410
|
-
}], ctorParameters: ()
|
|
3325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
3411
3326
|
type: HostListener,
|
|
3412
3327
|
args: ['ionChange', ['$event.target']]
|
|
3413
3328
|
}] } });
|
|
@@ -3462,17 +3377,17 @@ let IonSelect = class IonSelect extends ValueAccessor {
|
|
|
3462
3377
|
handleIonChange(el) {
|
|
3463
3378
|
this.handleValueChange(el, el.value);
|
|
3464
3379
|
}
|
|
3465
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3466
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3380
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3381
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelect, isStandalone: true, selector: "ion-select", inputs: { cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", selectedText: "selectedText", shape: "shape", toggleIcon: "toggleIcon", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$2], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3467
3382
|
};
|
|
3468
3383
|
IonSelect = __decorate([
|
|
3469
3384
|
ProxyCmp({
|
|
3470
|
-
defineCustomElementFn: defineCustomElement$
|
|
3385
|
+
defineCustomElementFn: defineCustomElement$1p,
|
|
3471
3386
|
inputs: SELECT_INPUTS,
|
|
3472
3387
|
methods: ['open'],
|
|
3473
3388
|
})
|
|
3474
3389
|
], IonSelect);
|
|
3475
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, decorators: [{
|
|
3476
3391
|
type: Component,
|
|
3477
3392
|
args: [{
|
|
3478
3393
|
selector: 'ion-select',
|
|
@@ -3483,7 +3398,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3483
3398
|
providers: [accessorProvider$2],
|
|
3484
3399
|
standalone: true,
|
|
3485
3400
|
}]
|
|
3486
|
-
}], ctorParameters: ()
|
|
3401
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
3487
3402
|
type: HostListener,
|
|
3488
3403
|
args: ['ionChange', ['$event.target']]
|
|
3489
3404
|
}] } });
|
|
@@ -3545,17 +3460,17 @@ let IonTextarea = class IonTextarea extends ValueAccessor {
|
|
|
3545
3460
|
handleIonInput(el) {
|
|
3546
3461
|
this.handleValueChange(el, el.value);
|
|
3547
3462
|
}
|
|
3548
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3549
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3463
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3464
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTextarea, isStandalone: true, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", spellcheck: "spellcheck", value: "value", wrap: "wrap" }, host: { listeners: { "ionInput": "handleIonInput($event.target)" } }, providers: [accessorProvider$1], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3550
3465
|
};
|
|
3551
3466
|
IonTextarea = __decorate([
|
|
3552
3467
|
ProxyCmp({
|
|
3553
|
-
defineCustomElementFn: defineCustomElement$
|
|
3468
|
+
defineCustomElementFn: defineCustomElement$1q,
|
|
3554
3469
|
inputs: TEXTAREA_INPUTS,
|
|
3555
3470
|
methods: ['setFocus', 'getInputElement'],
|
|
3556
3471
|
})
|
|
3557
3472
|
], IonTextarea);
|
|
3558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3473
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, decorators: [{
|
|
3559
3474
|
type: Component,
|
|
3560
3475
|
args: [{
|
|
3561
3476
|
selector: 'ion-textarea',
|
|
@@ -3566,7 +3481,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3566
3481
|
providers: [accessorProvider$1],
|
|
3567
3482
|
standalone: true,
|
|
3568
3483
|
}]
|
|
3569
|
-
}], ctorParameters: ()
|
|
3484
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonInput: [{
|
|
3570
3485
|
type: HostListener,
|
|
3571
3486
|
args: ['ionInput', ['$event.target']]
|
|
3572
3487
|
}] } });
|
|
@@ -3614,16 +3529,16 @@ let IonToggle = class IonToggle extends ValueAccessor {
|
|
|
3614
3529
|
handleIonChange(el) {
|
|
3615
3530
|
this.handleValueChange(el, el.checked);
|
|
3616
3531
|
}
|
|
3617
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3618
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3532
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3533
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, isStandalone: true, selector: "ion-toggle", inputs: { checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3619
3534
|
};
|
|
3620
3535
|
IonToggle = __decorate([
|
|
3621
3536
|
ProxyCmp({
|
|
3622
|
-
defineCustomElementFn: defineCustomElement$
|
|
3537
|
+
defineCustomElementFn: defineCustomElement$1r,
|
|
3623
3538
|
inputs: TOGGLE_INPUTS,
|
|
3624
3539
|
})
|
|
3625
3540
|
], IonToggle);
|
|
3626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, decorators: [{
|
|
3627
3542
|
type: Component,
|
|
3628
3543
|
args: [{
|
|
3629
3544
|
selector: 'ion-toggle',
|
|
@@ -3634,7 +3549,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3634
3549
|
providers: [accessorProvider],
|
|
3635
3550
|
standalone: true,
|
|
3636
3551
|
}]
|
|
3637
|
-
}], ctorParameters: ()
|
|
3552
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }]; }, propDecorators: { handleIonChange: [{
|
|
3638
3553
|
type: HostListener,
|
|
3639
3554
|
args: ['ionChange', ['$event.target']]
|
|
3640
3555
|
}] } });
|
|
@@ -3643,5 +3558,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3643
3558
|
* Generated bundle index. Do not edit.
|
|
3644
3559
|
*/
|
|
3645
3560
|
|
|
3646
|
-
export { ActionSheetController, AlertController, AnimationController, GestureController, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterLink, IonRouterLinkWithHref, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LoadingController, MenuController, ModalController, PopoverController, ToastController, provideIonicAngular };
|
|
3561
|
+
export { ActionSheetController, AlertController, AnimationController, GestureController, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterLink, IonRouterLinkWithHref, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LoadingController, MenuController, ModalController, PickerController, PopoverController, ToastController, provideIonicAngular };
|
|
3647
3562
|
//# sourceMappingURL=ionic-angular-standalone.mjs.map
|