@ionic/angular 8.8.9-dev.11780690883.11fe8a2a → 8.8.9-dev.11780945313.14080cb4
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/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/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic/bundle.ionic.css +1 -0
- package/css/ionic/bundle.ionic.css.map +1 -0
- package/css/ionic/core.ionic.css +1 -0
- package/css/ionic/core.ionic.css.map +1 -0
- package/css/ionic/global.bundle.ionic.css +1 -0
- package/css/ionic/global.bundle.ionic.css.map +1 -0
- package/css/ionic/ionic-swiper.ionic.css +1 -0
- package/css/ionic/ionic-swiper.ionic.css.map +1 -0
- package/css/ionic/link.ionic.css +1 -0
- package/css/ionic/link.ionic.css.map +1 -0
- package/css/ionic/structure.ionic.css +1 -0
- package/css/ionic/structure.ionic.css.map +1 -0
- package/css/ionic/typography.ionic.css +1 -0
- package/css/ionic/typography.ionic.css.map +1 -0
- package/css/ionic/utils.bundle.ionic.css +1 -0
- package/css/ionic/utils.bundle.ionic.css.map +1 -0
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- 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} +478 -703
- 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 +93 -0
- package/esm2022/directives/proxies.mjs +2465 -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 +2356 -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 +79 -68
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +911 -903
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +771 -1065
- 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 -11
- 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 -27
- 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 +1062 -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 -1014
- package/types/ionic-angular-standalone.d.ts +0 -1560
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Directive, HostListener, Component, ChangeDetectionStrategy, ViewContainerRef, Attribute, Optional, SkipSelf, ViewChild, ContentChild, ContentChildren, forwardRef, Injectable, inject, Injector, EnvironmentInjector, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR, NG_VALIDATORS, MaxValidator, MinValidator } from '@angular/forms';
|
|
4
4
|
import * as i2$1 from '@ionic/angular/common';
|
|
5
5
|
import { ValueAccessor, setIonicClasses, IonRouterOutlet as IonRouterOutlet$1, IonTabs as IonTabs$1, IonBackButton as IonBackButton$1, IonNav as IonNav$1, RouterLinkDelegateDirective as RouterLinkDelegateDirective$1, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegateDirective$1, IonModal as IonModal$1, IonPopover as IonPopover$1, OverlayBaseController, MenuController as MenuController$1, AngularDelegate, raf, ConfigToken, provideComponentInputBinding } from '@ionic/angular/common';
|
|
@@ -9,7 +9,7 @@ import { fromEvent } from 'rxjs';
|
|
|
9
9
|
import * as i1 from '@angular/common';
|
|
10
10
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
11
11
|
import * as i2 from '@angular/router';
|
|
12
|
-
import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, popoverController, toastController, setupConfig } from '@ionic/core';
|
|
12
|
+
import { alertController, createAnimation, getTimeGivenProgression, actionSheetController, createGesture, loadingController, menuController, modalController, pickerController, popoverController, toastController, setupConfig } from '@ionic/core';
|
|
13
13
|
export { IonicSafeString, IonicSlides, createAnimation, createGesture, getIonPageElement, getPlatforms, getTimeGivenProgression, iosTransitionAnimation, isPlatform, mdTransitionAnimation, openURL } from '@ionic/core';
|
|
14
14
|
import { defineCustomElements } from '@ionic/core/loader';
|
|
15
15
|
|
|
@@ -24,8 +24,8 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
24
24
|
_handleIonChange(el) {
|
|
25
25
|
this.handleValueChange(el, el.checked);
|
|
26
26
|
}
|
|
27
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
28
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
27
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
28
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: BooleanValueAccessorDirective, selector: "ion-checkbox,ion-toggle", host: { listeners: { "ionChange": "_handleIonChange($event.target)" } }, providers: [
|
|
29
29
|
{
|
|
30
30
|
provide: NG_VALUE_ACCESSOR,
|
|
31
31
|
useExisting: BooleanValueAccessorDirective,
|
|
@@ -33,10 +33,9 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
33
33
|
},
|
|
34
34
|
], usesInheritance: true, ngImport: i0 });
|
|
35
35
|
}
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
37
37
|
type: Directive,
|
|
38
38
|
args: [{
|
|
39
|
-
standalone: false,
|
|
40
39
|
selector: 'ion-checkbox,ion-toggle',
|
|
41
40
|
providers: [
|
|
42
41
|
{
|
|
@@ -46,7 +45,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
46
45
|
},
|
|
47
46
|
],
|
|
48
47
|
}]
|
|
49
|
-
}], ctorParameters: ()
|
|
48
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleIonChange: [{
|
|
50
49
|
type: HostListener,
|
|
51
50
|
args: ['ionChange', ['$event.target']]
|
|
52
51
|
}] } });
|
|
@@ -70,8 +69,8 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
70
69
|
super.registerOnChange(fn);
|
|
71
70
|
}
|
|
72
71
|
}
|
|
73
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
74
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
72
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
73
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericValueAccessorDirective, selector: "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", host: { listeners: { "ionInput": "handleInputEvent($event.target)" } }, providers: [
|
|
75
74
|
{
|
|
76
75
|
provide: NG_VALUE_ACCESSOR,
|
|
77
76
|
useExisting: NumericValueAccessorDirective,
|
|
@@ -79,10 +78,9 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
79
78
|
},
|
|
80
79
|
], usesInheritance: true, ngImport: i0 });
|
|
81
80
|
}
|
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericValueAccessorDirective, decorators: [{
|
|
83
82
|
type: Directive,
|
|
84
83
|
args: [{
|
|
85
|
-
standalone: false,
|
|
86
84
|
selector: 'ion-input[type=number],ion-input-otp:not([type=text]),ion-range',
|
|
87
85
|
providers: [
|
|
88
86
|
{
|
|
@@ -92,7 +90,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
92
90
|
},
|
|
93
91
|
],
|
|
94
92
|
}]
|
|
95
|
-
}], ctorParameters: ()
|
|
93
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
|
|
96
94
|
type: HostListener,
|
|
97
95
|
args: ['ionInput', ['$event.target']]
|
|
98
96
|
}] } });
|
|
@@ -104,8 +102,8 @@ class SelectValueAccessorDirective extends ValueAccessor {
|
|
|
104
102
|
_handleChangeEvent(el) {
|
|
105
103
|
this.handleValueChange(el, el.value);
|
|
106
104
|
}
|
|
107
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
108
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
105
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
106
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: SelectValueAccessorDirective, selector: "ion-select, ion-radio-group, ion-segment, ion-datetime", host: { listeners: { "ionChange": "_handleChangeEvent($event.target)" } }, providers: [
|
|
109
107
|
{
|
|
110
108
|
provide: NG_VALUE_ACCESSOR,
|
|
111
109
|
useExisting: SelectValueAccessorDirective,
|
|
@@ -113,10 +111,9 @@ class SelectValueAccessorDirective extends ValueAccessor {
|
|
|
113
111
|
},
|
|
114
112
|
], usesInheritance: true, ngImport: i0 });
|
|
115
113
|
}
|
|
116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
117
115
|
type: Directive,
|
|
118
116
|
args: [{
|
|
119
|
-
standalone: false,
|
|
120
117
|
/* tslint:disable-next-line:directive-selector */
|
|
121
118
|
selector: 'ion-select, ion-radio-group, ion-segment, ion-datetime',
|
|
122
119
|
providers: [
|
|
@@ -127,7 +124,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
127
124
|
},
|
|
128
125
|
],
|
|
129
126
|
}]
|
|
130
|
-
}], ctorParameters: ()
|
|
127
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleChangeEvent: [{
|
|
131
128
|
type: HostListener,
|
|
132
129
|
args: ['ionChange', ['$event.target']]
|
|
133
130
|
}] } });
|
|
@@ -139,8 +136,8 @@ class TextValueAccessorDirective extends ValueAccessor {
|
|
|
139
136
|
_handleInputEvent(el) {
|
|
140
137
|
this.handleValueChange(el, el.value);
|
|
141
138
|
}
|
|
142
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
143
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
139
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
140
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: TextValueAccessorDirective, selector: "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", host: { listeners: { "ionInput": "_handleInputEvent($event.target)" } }, providers: [
|
|
144
141
|
{
|
|
145
142
|
provide: NG_VALUE_ACCESSOR,
|
|
146
143
|
useExisting: TextValueAccessorDirective,
|
|
@@ -148,10 +145,9 @@ class TextValueAccessorDirective extends ValueAccessor {
|
|
|
148
145
|
},
|
|
149
146
|
], usesInheritance: true, ngImport: i0 });
|
|
150
147
|
}
|
|
151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
152
149
|
type: Directive,
|
|
153
150
|
args: [{
|
|
154
|
-
standalone: false,
|
|
155
151
|
selector: 'ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar',
|
|
156
152
|
providers: [
|
|
157
153
|
{
|
|
@@ -161,7 +157,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
161
157
|
},
|
|
162
158
|
],
|
|
163
159
|
}]
|
|
164
|
-
}], ctorParameters: ()
|
|
160
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleInputEvent: [{
|
|
165
161
|
type: HostListener,
|
|
166
162
|
args: ['ionInput', ['$event.target']]
|
|
167
163
|
}] } });
|
|
@@ -232,162 +228,107 @@ let IonAccordion = class IonAccordion {
|
|
|
232
228
|
c.detach();
|
|
233
229
|
this.el = r.nativeElement;
|
|
234
230
|
}
|
|
235
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
236
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
231
|
+
/** @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 });
|
|
232
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", theme: "theme", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
237
233
|
};
|
|
238
234
|
IonAccordion = __decorate([
|
|
239
235
|
ProxyCmp({
|
|
240
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
236
|
+
inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
241
237
|
})
|
|
242
238
|
], IonAccordion);
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
|
|
244
240
|
type: Component,
|
|
245
241
|
args: [{
|
|
246
242
|
selector: 'ion-accordion',
|
|
247
243
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
248
244
|
template: '<ng-content></ng-content>',
|
|
249
245
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
250
|
-
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
251
|
-
standalone: false
|
|
246
|
+
inputs: ['disabled', 'mode', 'readonly', 'theme', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
252
247
|
}]
|
|
253
|
-
}], ctorParameters: ()
|
|
248
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
254
249
|
let IonAccordionGroup = class IonAccordionGroup {
|
|
255
250
|
z;
|
|
256
251
|
el;
|
|
257
|
-
ionChange = new EventEmitter();
|
|
258
252
|
constructor(c, r, z) {
|
|
259
253
|
this.z = z;
|
|
260
254
|
c.detach();
|
|
261
255
|
this.el = r.nativeElement;
|
|
256
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
262
257
|
}
|
|
263
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
264
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
258
|
+
/** @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 });
|
|
259
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", shape: "shape", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
265
260
|
};
|
|
266
261
|
IonAccordionGroup = __decorate([
|
|
267
262
|
ProxyCmp({
|
|
268
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
263
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value']
|
|
269
264
|
})
|
|
270
265
|
], IonAccordionGroup);
|
|
271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
272
267
|
type: Component,
|
|
273
268
|
args: [{
|
|
274
269
|
selector: 'ion-accordion-group',
|
|
275
270
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
276
271
|
template: '<ng-content></ng-content>',
|
|
277
272
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
278
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
|
|
279
|
-
outputs: ['ionChange'],
|
|
280
|
-
standalone: false
|
|
273
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'shape', 'theme', 'value'],
|
|
281
274
|
}]
|
|
282
|
-
}], ctorParameters: ()
|
|
283
|
-
type: Output
|
|
284
|
-
}] } });
|
|
275
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
285
276
|
let IonActionSheet = class IonActionSheet {
|
|
286
277
|
z;
|
|
287
278
|
el;
|
|
288
|
-
ionActionSheetDidPresent = new EventEmitter();
|
|
289
|
-
ionActionSheetWillPresent = new EventEmitter();
|
|
290
|
-
ionActionSheetWillDismiss = new EventEmitter();
|
|
291
|
-
ionActionSheetDidDismiss = new EventEmitter();
|
|
292
|
-
didPresent = new EventEmitter();
|
|
293
|
-
willPresent = new EventEmitter();
|
|
294
|
-
willDismiss = new EventEmitter();
|
|
295
|
-
didDismiss = new EventEmitter();
|
|
296
279
|
constructor(c, r, z) {
|
|
297
280
|
this.z = z;
|
|
298
281
|
c.detach();
|
|
299
282
|
this.el = r.nativeElement;
|
|
283
|
+
proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
300
284
|
}
|
|
301
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
302
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
285
|
+
/** @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 });
|
|
286
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, 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", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
303
287
|
};
|
|
304
288
|
IonActionSheet = __decorate([
|
|
305
289
|
ProxyCmp({
|
|
306
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
290
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
307
291
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
308
292
|
})
|
|
309
293
|
], IonActionSheet);
|
|
310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
311
295
|
type: Component,
|
|
312
296
|
args: [{
|
|
313
297
|
selector: 'ion-action-sheet',
|
|
314
298
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
315
299
|
template: '<ng-content></ng-content>',
|
|
316
300
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
317
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}]
|
|
321
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionActionSheetDidPresent: [{
|
|
322
|
-
type: Output
|
|
323
|
-
}], ionActionSheetWillPresent: [{
|
|
324
|
-
type: Output
|
|
325
|
-
}], ionActionSheetWillDismiss: [{
|
|
326
|
-
type: Output
|
|
327
|
-
}], ionActionSheetDidDismiss: [{
|
|
328
|
-
type: Output
|
|
329
|
-
}], didPresent: [{
|
|
330
|
-
type: Output
|
|
331
|
-
}], willPresent: [{
|
|
332
|
-
type: Output
|
|
333
|
-
}], willDismiss: [{
|
|
334
|
-
type: Output
|
|
335
|
-
}], didDismiss: [{
|
|
336
|
-
type: Output
|
|
337
|
-
}] } });
|
|
301
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
302
|
+
}]
|
|
303
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
338
304
|
let IonAlert = class IonAlert {
|
|
339
305
|
z;
|
|
340
306
|
el;
|
|
341
|
-
ionAlertDidPresent = new EventEmitter();
|
|
342
|
-
ionAlertWillPresent = new EventEmitter();
|
|
343
|
-
ionAlertWillDismiss = new EventEmitter();
|
|
344
|
-
ionAlertDidDismiss = new EventEmitter();
|
|
345
|
-
didPresent = new EventEmitter();
|
|
346
|
-
willPresent = new EventEmitter();
|
|
347
|
-
willDismiss = new EventEmitter();
|
|
348
|
-
didDismiss = new EventEmitter();
|
|
349
307
|
constructor(c, r, z) {
|
|
350
308
|
this.z = z;
|
|
351
309
|
c.detach();
|
|
352
310
|
this.el = r.nativeElement;
|
|
311
|
+
proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
353
312
|
}
|
|
354
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
355
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
313
|
+
/** @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 });
|
|
314
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, 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", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
356
315
|
};
|
|
357
316
|
IonAlert = __decorate([
|
|
358
317
|
ProxyCmp({
|
|
359
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
318
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
360
319
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
361
320
|
})
|
|
362
321
|
], IonAlert);
|
|
363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, decorators: [{
|
|
364
323
|
type: Component,
|
|
365
324
|
args: [{
|
|
366
325
|
selector: 'ion-alert',
|
|
367
326
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
368
327
|
template: '<ng-content></ng-content>',
|
|
369
328
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
370
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
}]
|
|
374
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionAlertDidPresent: [{
|
|
375
|
-
type: Output
|
|
376
|
-
}], ionAlertWillPresent: [{
|
|
377
|
-
type: Output
|
|
378
|
-
}], ionAlertWillDismiss: [{
|
|
379
|
-
type: Output
|
|
380
|
-
}], ionAlertDidDismiss: [{
|
|
381
|
-
type: Output
|
|
382
|
-
}], didPresent: [{
|
|
383
|
-
type: Output
|
|
384
|
-
}], willPresent: [{
|
|
385
|
-
type: Output
|
|
386
|
-
}], willDismiss: [{
|
|
387
|
-
type: Output
|
|
388
|
-
}], didDismiss: [{
|
|
389
|
-
type: Output
|
|
390
|
-
}] } });
|
|
329
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'theme', 'translucent', 'trigger'],
|
|
330
|
+
}]
|
|
331
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
391
332
|
let IonApp = class IonApp {
|
|
392
333
|
z;
|
|
393
334
|
el;
|
|
@@ -396,25 +337,25 @@ let IonApp = class IonApp {
|
|
|
396
337
|
c.detach();
|
|
397
338
|
this.el = r.nativeElement;
|
|
398
339
|
}
|
|
399
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
400
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
340
|
+
/** @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 });
|
|
341
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, selector: "ion-app", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
401
342
|
};
|
|
402
343
|
IonApp = __decorate([
|
|
403
344
|
ProxyCmp({
|
|
345
|
+
inputs: ['mode', 'theme'],
|
|
404
346
|
methods: ['setFocus']
|
|
405
347
|
})
|
|
406
348
|
], IonApp);
|
|
407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, decorators: [{
|
|
408
350
|
type: Component,
|
|
409
351
|
args: [{
|
|
410
352
|
selector: 'ion-app',
|
|
411
353
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
412
354
|
template: '<ng-content></ng-content>',
|
|
413
355
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
414
|
-
inputs: [],
|
|
415
|
-
standalone: false
|
|
356
|
+
inputs: ['mode', 'theme'],
|
|
416
357
|
}]
|
|
417
|
-
}], ctorParameters: ()
|
|
358
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
418
359
|
let IonAvatar = class IonAvatar {
|
|
419
360
|
z;
|
|
420
361
|
el;
|
|
@@ -423,54 +364,51 @@ let IonAvatar = class IonAvatar {
|
|
|
423
364
|
c.detach();
|
|
424
365
|
this.el = r.nativeElement;
|
|
425
366
|
}
|
|
426
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
427
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
367
|
+
/** @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 });
|
|
368
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, selector: "ion-avatar", inputs: { disabled: "disabled", mode: "mode", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
428
369
|
};
|
|
429
370
|
IonAvatar = __decorate([
|
|
430
|
-
ProxyCmp({
|
|
371
|
+
ProxyCmp({
|
|
372
|
+
inputs: ['disabled', 'mode', 'shape', 'size', 'theme']
|
|
373
|
+
})
|
|
431
374
|
], IonAvatar);
|
|
432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
375
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
|
|
433
376
|
type: Component,
|
|
434
377
|
args: [{
|
|
435
378
|
selector: 'ion-avatar',
|
|
436
379
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
437
380
|
template: '<ng-content></ng-content>',
|
|
438
381
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
439
|
-
inputs: [],
|
|
440
|
-
standalone: false
|
|
382
|
+
inputs: ['disabled', 'mode', 'shape', 'size', 'theme'],
|
|
441
383
|
}]
|
|
442
|
-
}], ctorParameters: ()
|
|
384
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
443
385
|
let IonBackdrop = class IonBackdrop {
|
|
444
386
|
z;
|
|
445
387
|
el;
|
|
446
|
-
ionBackdropTap = new EventEmitter();
|
|
447
388
|
constructor(c, r, z) {
|
|
448
389
|
this.z = z;
|
|
449
390
|
c.detach();
|
|
450
391
|
this.el = r.nativeElement;
|
|
392
|
+
proxyOutputs(this, this.el, ['ionBackdropTap']);
|
|
451
393
|
}
|
|
452
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
453
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
394
|
+
/** @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 });
|
|
395
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, selector: "ion-backdrop", inputs: { mode: "mode", stopPropagation: "stopPropagation", tappable: "tappable", theme: "theme", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
454
396
|
};
|
|
455
397
|
IonBackdrop = __decorate([
|
|
456
398
|
ProxyCmp({
|
|
457
|
-
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
399
|
+
inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible']
|
|
458
400
|
})
|
|
459
401
|
], IonBackdrop);
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
461
403
|
type: Component,
|
|
462
404
|
args: [{
|
|
463
405
|
selector: 'ion-backdrop',
|
|
464
406
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
465
407
|
template: '<ng-content></ng-content>',
|
|
466
408
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
467
|
-
inputs: ['stopPropagation', 'tappable', 'visible'],
|
|
468
|
-
outputs: ['ionBackdropTap'],
|
|
469
|
-
standalone: false
|
|
409
|
+
inputs: ['mode', 'stopPropagation', 'tappable', 'theme', 'visible'],
|
|
470
410
|
}]
|
|
471
|
-
}], ctorParameters: ()
|
|
472
|
-
type: Output
|
|
473
|
-
}] } });
|
|
411
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
474
412
|
let IonBadge = class IonBadge {
|
|
475
413
|
z;
|
|
476
414
|
el;
|
|
@@ -479,124 +417,105 @@ let IonBadge = class IonBadge {
|
|
|
479
417
|
c.detach();
|
|
480
418
|
this.el = r.nativeElement;
|
|
481
419
|
}
|
|
482
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
483
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
420
|
+
/** @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 });
|
|
421
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, selector: "ion-badge", inputs: { color: "color", hue: "hue", mode: "mode", shape: "shape", size: "size", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
484
422
|
};
|
|
485
423
|
IonBadge = __decorate([
|
|
486
424
|
ProxyCmp({
|
|
487
|
-
inputs: ['color', 'mode']
|
|
425
|
+
inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical']
|
|
488
426
|
})
|
|
489
427
|
], IonBadge);
|
|
490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
|
|
491
429
|
type: Component,
|
|
492
430
|
args: [{
|
|
493
431
|
selector: 'ion-badge',
|
|
494
432
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
495
433
|
template: '<ng-content></ng-content>',
|
|
496
434
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
497
|
-
inputs: ['color', 'mode'],
|
|
498
|
-
standalone: false
|
|
435
|
+
inputs: ['color', 'hue', 'mode', 'shape', 'size', 'theme', 'vertical'],
|
|
499
436
|
}]
|
|
500
|
-
}], ctorParameters: ()
|
|
437
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
501
438
|
let IonBreadcrumb = class IonBreadcrumb {
|
|
502
439
|
z;
|
|
503
440
|
el;
|
|
504
|
-
ionFocus = new EventEmitter();
|
|
505
|
-
ionBlur = new EventEmitter();
|
|
506
441
|
constructor(c, r, z) {
|
|
507
442
|
this.z = z;
|
|
508
443
|
c.detach();
|
|
509
444
|
this.el = r.nativeElement;
|
|
445
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
510
446
|
}
|
|
511
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
512
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
447
|
+
/** @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 });
|
|
448
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, 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", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
513
449
|
};
|
|
514
450
|
IonBreadcrumb = __decorate([
|
|
515
451
|
ProxyCmp({
|
|
516
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
452
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme']
|
|
517
453
|
})
|
|
518
454
|
], IonBreadcrumb);
|
|
519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
520
456
|
type: Component,
|
|
521
457
|
args: [{
|
|
522
458
|
selector: 'ion-breadcrumb',
|
|
523
459
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
524
460
|
template: '<ng-content></ng-content>',
|
|
525
461
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
526
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
|
|
527
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
528
|
-
standalone: false
|
|
462
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target', 'theme'],
|
|
529
463
|
}]
|
|
530
|
-
}], ctorParameters: ()
|
|
531
|
-
type: Output
|
|
532
|
-
}], ionBlur: [{
|
|
533
|
-
type: Output
|
|
534
|
-
}] } });
|
|
464
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
535
465
|
let IonBreadcrumbs = class IonBreadcrumbs {
|
|
536
466
|
z;
|
|
537
467
|
el;
|
|
538
|
-
ionCollapsedClick = new EventEmitter();
|
|
539
468
|
constructor(c, r, z) {
|
|
540
469
|
this.z = z;
|
|
541
470
|
c.detach();
|
|
542
471
|
this.el = r.nativeElement;
|
|
472
|
+
proxyOutputs(this, this.el, ['ionCollapsedClick']);
|
|
543
473
|
}
|
|
544
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
545
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
474
|
+
/** @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 });
|
|
475
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
546
476
|
};
|
|
547
477
|
IonBreadcrumbs = __decorate([
|
|
548
478
|
ProxyCmp({
|
|
549
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
479
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme']
|
|
550
480
|
})
|
|
551
481
|
], IonBreadcrumbs);
|
|
552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
553
483
|
type: Component,
|
|
554
484
|
args: [{
|
|
555
485
|
selector: 'ion-breadcrumbs',
|
|
556
486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
557
487
|
template: '<ng-content></ng-content>',
|
|
558
488
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
559
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'],
|
|
560
|
-
outputs: ['ionCollapsedClick'],
|
|
561
|
-
standalone: false
|
|
489
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode', 'theme'],
|
|
562
490
|
}]
|
|
563
|
-
}], ctorParameters: ()
|
|
564
|
-
type: Output
|
|
565
|
-
}] } });
|
|
491
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
566
492
|
let IonButton = class IonButton {
|
|
567
493
|
z;
|
|
568
494
|
el;
|
|
569
|
-
ionFocus = new EventEmitter();
|
|
570
|
-
ionBlur = new EventEmitter();
|
|
571
495
|
constructor(c, r, z) {
|
|
572
496
|
this.z = z;
|
|
573
497
|
c.detach();
|
|
574
498
|
this.el = r.nativeElement;
|
|
499
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
575
500
|
}
|
|
576
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
577
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
501
|
+
/** @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 });
|
|
502
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, 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", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
578
503
|
};
|
|
579
504
|
IonButton = __decorate([
|
|
580
505
|
ProxyCmp({
|
|
581
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
506
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type']
|
|
582
507
|
})
|
|
583
508
|
], IonButton);
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
|
|
585
510
|
type: Component,
|
|
586
511
|
args: [{
|
|
587
512
|
selector: 'ion-button',
|
|
588
513
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
589
514
|
template: '<ng-content></ng-content>',
|
|
590
515
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
591
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type'],
|
|
592
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
593
|
-
standalone: false
|
|
516
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'theme', 'type'],
|
|
594
517
|
}]
|
|
595
|
-
}], ctorParameters: ()
|
|
596
|
-
type: Output
|
|
597
|
-
}], ionBlur: [{
|
|
598
|
-
type: Output
|
|
599
|
-
}] } });
|
|
518
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
600
519
|
let IonButtons = class IonButtons {
|
|
601
520
|
z;
|
|
602
521
|
el;
|
|
@@ -605,25 +524,24 @@ let IonButtons = class IonButtons {
|
|
|
605
524
|
c.detach();
|
|
606
525
|
this.el = r.nativeElement;
|
|
607
526
|
}
|
|
608
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
609
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
527
|
+
/** @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 });
|
|
528
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, selector: "ion-buttons", inputs: { collapse: "collapse", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
610
529
|
};
|
|
611
530
|
IonButtons = __decorate([
|
|
612
531
|
ProxyCmp({
|
|
613
|
-
inputs: ['collapse']
|
|
532
|
+
inputs: ['collapse', 'mode', 'theme']
|
|
614
533
|
})
|
|
615
534
|
], IonButtons);
|
|
616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
|
|
617
536
|
type: Component,
|
|
618
537
|
args: [{
|
|
619
538
|
selector: 'ion-buttons',
|
|
620
539
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
621
540
|
template: '<ng-content></ng-content>',
|
|
622
541
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
623
|
-
inputs: ['collapse'],
|
|
624
|
-
standalone: false
|
|
542
|
+
inputs: ['collapse', 'mode', 'theme'],
|
|
625
543
|
}]
|
|
626
|
-
}], ctorParameters: ()
|
|
544
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
627
545
|
let IonCard = class IonCard {
|
|
628
546
|
z;
|
|
629
547
|
el;
|
|
@@ -632,25 +550,24 @@ let IonCard = class IonCard {
|
|
|
632
550
|
c.detach();
|
|
633
551
|
this.el = r.nativeElement;
|
|
634
552
|
}
|
|
635
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
636
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
553
|
+
/** @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 });
|
|
554
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
637
555
|
};
|
|
638
556
|
IonCard = __decorate([
|
|
639
557
|
ProxyCmp({
|
|
640
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
558
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type']
|
|
641
559
|
})
|
|
642
560
|
], IonCard);
|
|
643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
|
|
644
562
|
type: Component,
|
|
645
563
|
args: [{
|
|
646
564
|
selector: 'ion-card',
|
|
647
565
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
648
566
|
template: '<ng-content></ng-content>',
|
|
649
567
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
650
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
651
|
-
standalone: false
|
|
568
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'target', 'theme', 'type'],
|
|
652
569
|
}]
|
|
653
|
-
}], ctorParameters: ()
|
|
570
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
654
571
|
let IonCardContent = class IonCardContent {
|
|
655
572
|
z;
|
|
656
573
|
el;
|
|
@@ -659,25 +576,24 @@ let IonCardContent = class IonCardContent {
|
|
|
659
576
|
c.detach();
|
|
660
577
|
this.el = r.nativeElement;
|
|
661
578
|
}
|
|
662
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
663
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
579
|
+
/** @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 });
|
|
580
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, selector: "ion-card-content", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
664
581
|
};
|
|
665
582
|
IonCardContent = __decorate([
|
|
666
583
|
ProxyCmp({
|
|
667
|
-
inputs: ['mode']
|
|
584
|
+
inputs: ['mode', 'theme']
|
|
668
585
|
})
|
|
669
586
|
], IonCardContent);
|
|
670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
|
|
671
588
|
type: Component,
|
|
672
589
|
args: [{
|
|
673
590
|
selector: 'ion-card-content',
|
|
674
591
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
675
592
|
template: '<ng-content></ng-content>',
|
|
676
593
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
677
|
-
inputs: ['mode'],
|
|
678
|
-
standalone: false
|
|
594
|
+
inputs: ['mode', 'theme'],
|
|
679
595
|
}]
|
|
680
|
-
}], ctorParameters: ()
|
|
596
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
681
597
|
let IonCardHeader = class IonCardHeader {
|
|
682
598
|
z;
|
|
683
599
|
el;
|
|
@@ -686,25 +602,24 @@ let IonCardHeader = class IonCardHeader {
|
|
|
686
602
|
c.detach();
|
|
687
603
|
this.el = r.nativeElement;
|
|
688
604
|
}
|
|
689
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
690
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
605
|
+
/** @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 });
|
|
606
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, selector: "ion-card-header", inputs: { color: "color", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
691
607
|
};
|
|
692
608
|
IonCardHeader = __decorate([
|
|
693
609
|
ProxyCmp({
|
|
694
|
-
inputs: ['color', 'mode', 'translucent']
|
|
610
|
+
inputs: ['color', 'mode', 'theme', 'translucent']
|
|
695
611
|
})
|
|
696
612
|
], IonCardHeader);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
698
614
|
type: Component,
|
|
699
615
|
args: [{
|
|
700
616
|
selector: 'ion-card-header',
|
|
701
617
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
702
618
|
template: '<ng-content></ng-content>',
|
|
703
619
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
704
|
-
inputs: ['color', 'mode', 'translucent'],
|
|
705
|
-
standalone: false
|
|
620
|
+
inputs: ['color', 'mode', 'theme', 'translucent'],
|
|
706
621
|
}]
|
|
707
|
-
}], ctorParameters: ()
|
|
622
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
708
623
|
let IonCardSubtitle = class IonCardSubtitle {
|
|
709
624
|
z;
|
|
710
625
|
el;
|
|
@@ -713,25 +628,24 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
713
628
|
c.detach();
|
|
714
629
|
this.el = r.nativeElement;
|
|
715
630
|
}
|
|
716
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
717
|
-
/** @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: IonCardSubtitle, 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: IonCardSubtitle, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
718
633
|
};
|
|
719
634
|
IonCardSubtitle = __decorate([
|
|
720
635
|
ProxyCmp({
|
|
721
|
-
inputs: ['color', 'mode']
|
|
636
|
+
inputs: ['color', 'mode', 'theme']
|
|
722
637
|
})
|
|
723
638
|
], IonCardSubtitle);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
725
640
|
type: Component,
|
|
726
641
|
args: [{
|
|
727
642
|
selector: 'ion-card-subtitle',
|
|
728
643
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
729
644
|
template: '<ng-content></ng-content>',
|
|
730
645
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
731
|
-
inputs: ['color', 'mode'],
|
|
732
|
-
standalone: false
|
|
646
|
+
inputs: ['color', 'mode', 'theme'],
|
|
733
647
|
}]
|
|
734
|
-
}], ctorParameters: ()
|
|
648
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
735
649
|
let IonCardTitle = class IonCardTitle {
|
|
736
650
|
z;
|
|
737
651
|
el;
|
|
@@ -740,62 +654,51 @@ let IonCardTitle = class IonCardTitle {
|
|
|
740
654
|
c.detach();
|
|
741
655
|
this.el = r.nativeElement;
|
|
742
656
|
}
|
|
743
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
744
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
657
|
+
/** @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 });
|
|
658
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, selector: "ion-card-title", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
745
659
|
};
|
|
746
660
|
IonCardTitle = __decorate([
|
|
747
661
|
ProxyCmp({
|
|
748
|
-
inputs: ['color', 'mode']
|
|
662
|
+
inputs: ['color', 'mode', 'theme']
|
|
749
663
|
})
|
|
750
664
|
], IonCardTitle);
|
|
751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
665
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
752
666
|
type: Component,
|
|
753
667
|
args: [{
|
|
754
668
|
selector: 'ion-card-title',
|
|
755
669
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
756
670
|
template: '<ng-content></ng-content>',
|
|
757
671
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
758
|
-
inputs: ['color', 'mode'],
|
|
759
|
-
standalone: false
|
|
672
|
+
inputs: ['color', 'mode', 'theme'],
|
|
760
673
|
}]
|
|
761
|
-
}], ctorParameters: ()
|
|
674
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
762
675
|
let IonCheckbox = class IonCheckbox {
|
|
763
676
|
z;
|
|
764
677
|
el;
|
|
765
|
-
ionChange = new EventEmitter();
|
|
766
|
-
ionFocus = new EventEmitter();
|
|
767
|
-
ionBlur = new EventEmitter();
|
|
768
678
|
constructor(c, r, z) {
|
|
769
679
|
this.z = z;
|
|
770
680
|
c.detach();
|
|
771
681
|
this.el = r.nativeElement;
|
|
682
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
|
|
772
683
|
}
|
|
773
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
774
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
684
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
685
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, selector: "ion-checkbox", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", shape: "shape", size: "size", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
775
686
|
};
|
|
776
687
|
IonCheckbox = __decorate([
|
|
777
688
|
ProxyCmp({
|
|
778
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
689
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value']
|
|
779
690
|
})
|
|
780
691
|
], IonCheckbox);
|
|
781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
782
693
|
type: Component,
|
|
783
694
|
args: [{
|
|
784
695
|
selector: 'ion-checkbox',
|
|
785
696
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
786
697
|
template: '<ng-content></ng-content>',
|
|
787
698
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
788
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value'],
|
|
789
|
-
outputs: ['ionChange', 'ionFocus', 'ionBlur'],
|
|
790
|
-
standalone: false
|
|
699
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'shape', 'size', 'theme', 'value'],
|
|
791
700
|
}]
|
|
792
|
-
}], ctorParameters: ()
|
|
793
|
-
type: Output
|
|
794
|
-
}], ionFocus: [{
|
|
795
|
-
type: Output
|
|
796
|
-
}], ionBlur: [{
|
|
797
|
-
type: Output
|
|
798
|
-
}] } });
|
|
701
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
799
702
|
let IonChip = class IonChip {
|
|
800
703
|
z;
|
|
801
704
|
el;
|
|
@@ -804,25 +707,24 @@ let IonChip = class IonChip {
|
|
|
804
707
|
c.detach();
|
|
805
708
|
this.el = r.nativeElement;
|
|
806
709
|
}
|
|
807
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
808
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
710
|
+
/** @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 });
|
|
711
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", hue: "hue", mode: "mode", outline: "outline", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
809
712
|
};
|
|
810
713
|
IonChip = __decorate([
|
|
811
714
|
ProxyCmp({
|
|
812
|
-
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
715
|
+
inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme']
|
|
813
716
|
})
|
|
814
717
|
], IonChip);
|
|
815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
|
|
816
719
|
type: Component,
|
|
817
720
|
args: [{
|
|
818
721
|
selector: 'ion-chip',
|
|
819
722
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
820
723
|
template: '<ng-content></ng-content>',
|
|
821
724
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
822
|
-
inputs: ['color', 'disabled', 'mode', 'outline'],
|
|
823
|
-
standalone: false
|
|
725
|
+
inputs: ['color', 'disabled', 'hue', 'mode', 'outline', 'shape', 'size', 'theme'],
|
|
824
726
|
}]
|
|
825
|
-
}], ctorParameters: ()
|
|
727
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
826
728
|
let IonCol = class IonCol {
|
|
827
729
|
z;
|
|
828
730
|
el;
|
|
@@ -831,104 +733,80 @@ let IonCol = class IonCol {
|
|
|
831
733
|
c.detach();
|
|
832
734
|
this.el = r.nativeElement;
|
|
833
735
|
}
|
|
834
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
835
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
736
|
+
/** @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 });
|
|
737
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, selector: "ion-col", inputs: { mode: "mode", offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", order: "order", orderLg: "orderLg", orderMd: "orderMd", orderSm: "orderSm", orderXl: "orderXl", orderXs: "orderXs", 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", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
836
738
|
};
|
|
837
739
|
IonCol = __decorate([
|
|
838
740
|
ProxyCmp({
|
|
839
|
-
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']
|
|
741
|
+
inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme']
|
|
840
742
|
})
|
|
841
743
|
], IonCol);
|
|
842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
|
|
843
745
|
type: Component,
|
|
844
746
|
args: [{
|
|
845
747
|
selector: 'ion-col',
|
|
846
748
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
847
749
|
template: '<ng-content></ng-content>',
|
|
848
750
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
849
|
-
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'],
|
|
850
|
-
standalone: false
|
|
751
|
+
inputs: ['mode', 'offset', 'offsetLg', 'offsetMd', 'offsetSm', 'offsetXl', 'offsetXs', 'order', 'orderLg', 'orderMd', 'orderSm', 'orderXl', 'orderXs', 'pull', 'pullLg', 'pullMd', 'pullSm', 'pullXl', 'pullXs', 'push', 'pushLg', 'pushMd', 'pushSm', 'pushXl', 'pushXs', 'size', 'sizeLg', 'sizeMd', 'sizeSm', 'sizeXl', 'sizeXs', 'theme'],
|
|
851
752
|
}]
|
|
852
|
-
}], ctorParameters: ()
|
|
753
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
853
754
|
let IonContent = class IonContent {
|
|
854
755
|
z;
|
|
855
756
|
el;
|
|
856
|
-
ionScrollStart = new EventEmitter();
|
|
857
|
-
ionScroll = new EventEmitter();
|
|
858
|
-
ionScrollEnd = new EventEmitter();
|
|
859
757
|
constructor(c, r, z) {
|
|
860
758
|
this.z = z;
|
|
861
759
|
c.detach();
|
|
862
760
|
this.el = r.nativeElement;
|
|
761
|
+
proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
|
|
863
762
|
}
|
|
864
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
865
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
763
|
+
/** @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 });
|
|
764
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", mode: "mode", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
866
765
|
};
|
|
867
766
|
IonContent = __decorate([
|
|
868
767
|
ProxyCmp({
|
|
869
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
768
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
|
|
870
769
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
871
770
|
})
|
|
872
771
|
], IonContent);
|
|
873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, decorators: [{
|
|
874
773
|
type: Component,
|
|
875
774
|
args: [{
|
|
876
775
|
selector: 'ion-content',
|
|
877
776
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
878
777
|
template: '<ng-content></ng-content>',
|
|
879
778
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
880
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
881
|
-
outputs: ['ionScrollStart', 'ionScroll', 'ionScrollEnd'],
|
|
882
|
-
standalone: false
|
|
779
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'mode', 'scrollEvents', 'scrollX', 'scrollY', 'theme'],
|
|
883
780
|
}]
|
|
884
|
-
}], ctorParameters: ()
|
|
885
|
-
type: Output
|
|
886
|
-
}], ionScroll: [{
|
|
887
|
-
type: Output
|
|
888
|
-
}], ionScrollEnd: [{
|
|
889
|
-
type: Output
|
|
890
|
-
}] } });
|
|
781
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
891
782
|
let IonDatetime = class IonDatetime {
|
|
892
783
|
z;
|
|
893
784
|
el;
|
|
894
|
-
ionCancel = new EventEmitter();
|
|
895
|
-
ionChange = new EventEmitter();
|
|
896
|
-
ionFocus = new EventEmitter();
|
|
897
|
-
ionBlur = new EventEmitter();
|
|
898
785
|
constructor(c, r, z) {
|
|
899
786
|
this.z = z;
|
|
900
787
|
c.detach();
|
|
901
788
|
this.el = r.nativeElement;
|
|
789
|
+
proxyOutputs(this, this.el, ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur']);
|
|
902
790
|
}
|
|
903
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
904
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
791
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
792
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetime, 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", theme: "theme", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
905
793
|
};
|
|
906
794
|
IonDatetime = __decorate([
|
|
907
795
|
ProxyCmp({
|
|
908
|
-
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
796
|
+
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
909
797
|
methods: ['confirm', 'reset', 'cancel']
|
|
910
798
|
})
|
|
911
799
|
], IonDatetime);
|
|
912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetime, decorators: [{
|
|
913
801
|
type: Component,
|
|
914
802
|
args: [{
|
|
915
803
|
selector: 'ion-datetime',
|
|
916
804
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
917
805
|
template: '<ng-content></ng-content>',
|
|
918
806
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
919
|
-
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
920
|
-
outputs: ['ionCancel', 'ionChange', 'ionFocus', 'ionBlur'],
|
|
921
|
-
standalone: false
|
|
807
|
+
inputs: ['cancelText', 'clearText', 'color', 'dayValues', 'disabled', 'doneText', 'firstDayOfWeek', 'formatOptions', 'highlightedDates', 'hourCycle', 'hourValues', 'isDateEnabled', 'locale', 'max', 'min', 'minuteValues', 'mode', 'monthValues', 'multiple', 'name', 'preferWheel', 'presentation', 'readonly', 'showAdjacentDays', 'showClearButton', 'showDefaultButtons', 'showDefaultTimeLabel', 'showDefaultTitle', 'size', 'theme', 'titleSelectedDatesFormatter', 'value', 'yearValues'],
|
|
922
808
|
}]
|
|
923
|
-
}], ctorParameters: ()
|
|
924
|
-
type: Output
|
|
925
|
-
}], ionChange: [{
|
|
926
|
-
type: Output
|
|
927
|
-
}], ionFocus: [{
|
|
928
|
-
type: Output
|
|
929
|
-
}], ionBlur: [{
|
|
930
|
-
type: Output
|
|
931
|
-
}] } });
|
|
809
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
932
810
|
let IonDatetimeButton = class IonDatetimeButton {
|
|
933
811
|
z;
|
|
934
812
|
el;
|
|
@@ -937,25 +815,50 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
937
815
|
c.detach();
|
|
938
816
|
this.el = r.nativeElement;
|
|
939
817
|
}
|
|
940
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
941
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
818
|
+
/** @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 });
|
|
819
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
942
820
|
};
|
|
943
821
|
IonDatetimeButton = __decorate([
|
|
944
822
|
ProxyCmp({
|
|
945
|
-
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
823
|
+
inputs: ['color', 'datetime', 'disabled', 'mode', 'theme']
|
|
946
824
|
})
|
|
947
825
|
], IonDatetimeButton);
|
|
948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
949
827
|
type: Component,
|
|
950
828
|
args: [{
|
|
951
829
|
selector: 'ion-datetime-button',
|
|
952
830
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
953
831
|
template: '<ng-content></ng-content>',
|
|
954
832
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
955
|
-
inputs: ['color', 'datetime', 'disabled', 'mode'],
|
|
956
|
-
|
|
833
|
+
inputs: ['color', 'datetime', 'disabled', 'mode', 'theme'],
|
|
834
|
+
}]
|
|
835
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
836
|
+
let IonDivider = class IonDivider {
|
|
837
|
+
z;
|
|
838
|
+
el;
|
|
839
|
+
constructor(c, r, z) {
|
|
840
|
+
this.z = z;
|
|
841
|
+
c.detach();
|
|
842
|
+
this.el = r.nativeElement;
|
|
843
|
+
}
|
|
844
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
845
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDivider, selector: "ion-divider", inputs: { inset: "inset", spacing: "spacing" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
846
|
+
};
|
|
847
|
+
IonDivider = __decorate([
|
|
848
|
+
ProxyCmp({
|
|
849
|
+
inputs: ['inset', 'spacing']
|
|
850
|
+
})
|
|
851
|
+
], IonDivider);
|
|
852
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDivider, decorators: [{
|
|
853
|
+
type: Component,
|
|
854
|
+
args: [{
|
|
855
|
+
selector: 'ion-divider',
|
|
856
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
857
|
+
template: '<ng-content></ng-content>',
|
|
858
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
859
|
+
inputs: ['inset', 'spacing'],
|
|
957
860
|
}]
|
|
958
|
-
}], ctorParameters: ()
|
|
861
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
959
862
|
let IonFab = class IonFab {
|
|
960
863
|
z;
|
|
961
864
|
el;
|
|
@@ -964,60 +867,52 @@ let IonFab = class IonFab {
|
|
|
964
867
|
c.detach();
|
|
965
868
|
this.el = r.nativeElement;
|
|
966
869
|
}
|
|
967
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
968
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
870
|
+
/** @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 });
|
|
871
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", mode: "mode", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
969
872
|
};
|
|
970
873
|
IonFab = __decorate([
|
|
971
874
|
ProxyCmp({
|
|
972
|
-
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
875
|
+
inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
|
|
973
876
|
methods: ['close']
|
|
974
877
|
})
|
|
975
878
|
], IonFab);
|
|
976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, decorators: [{
|
|
977
880
|
type: Component,
|
|
978
881
|
args: [{
|
|
979
882
|
selector: 'ion-fab',
|
|
980
883
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
981
884
|
template: '<ng-content></ng-content>',
|
|
982
885
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
983
|
-
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
984
|
-
standalone: false
|
|
886
|
+
inputs: ['activated', 'edge', 'horizontal', 'mode', 'theme', 'vertical'],
|
|
985
887
|
}]
|
|
986
|
-
}], ctorParameters: ()
|
|
888
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
987
889
|
let IonFabButton = class IonFabButton {
|
|
988
890
|
z;
|
|
989
891
|
el;
|
|
990
|
-
ionFocus = new EventEmitter();
|
|
991
|
-
ionBlur = new EventEmitter();
|
|
992
892
|
constructor(c, r, z) {
|
|
993
893
|
this.z = z;
|
|
994
894
|
c.detach();
|
|
995
895
|
this.el = r.nativeElement;
|
|
896
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
996
897
|
}
|
|
997
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
998
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
898
|
+
/** @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 });
|
|
899
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, 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", theme: "theme", translucent: "translucent", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
999
900
|
};
|
|
1000
901
|
IonFabButton = __decorate([
|
|
1001
902
|
ProxyCmp({
|
|
1002
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
903
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type']
|
|
1003
904
|
})
|
|
1004
905
|
], IonFabButton);
|
|
1005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1006
907
|
type: Component,
|
|
1007
908
|
args: [{
|
|
1008
909
|
selector: 'ion-fab-button',
|
|
1009
910
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1010
911
|
template: '<ng-content></ng-content>',
|
|
1011
912
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1012
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type'],
|
|
1013
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
1014
|
-
standalone: false
|
|
913
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'theme', 'translucent', 'type'],
|
|
1015
914
|
}]
|
|
1016
|
-
}], ctorParameters: ()
|
|
1017
|
-
type: Output
|
|
1018
|
-
}], ionBlur: [{
|
|
1019
|
-
type: Output
|
|
1020
|
-
}] } });
|
|
915
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1021
916
|
let IonFabList = class IonFabList {
|
|
1022
917
|
z;
|
|
1023
918
|
el;
|
|
@@ -1026,25 +921,24 @@ let IonFabList = class IonFabList {
|
|
|
1026
921
|
c.detach();
|
|
1027
922
|
this.el = r.nativeElement;
|
|
1028
923
|
}
|
|
1029
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1030
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
924
|
+
/** @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 });
|
|
925
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, selector: "ion-fab-list", inputs: { activated: "activated", mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1031
926
|
};
|
|
1032
927
|
IonFabList = __decorate([
|
|
1033
928
|
ProxyCmp({
|
|
1034
|
-
inputs: ['activated', 'side']
|
|
929
|
+
inputs: ['activated', 'mode', 'side', 'theme']
|
|
1035
930
|
})
|
|
1036
931
|
], IonFabList);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
|
|
1038
933
|
type: Component,
|
|
1039
934
|
args: [{
|
|
1040
935
|
selector: 'ion-fab-list',
|
|
1041
936
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1042
937
|
template: '<ng-content></ng-content>',
|
|
1043
938
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1044
|
-
inputs: ['activated', 'side'],
|
|
1045
|
-
standalone: false
|
|
939
|
+
inputs: ['activated', 'mode', 'side', 'theme'],
|
|
1046
940
|
}]
|
|
1047
|
-
}], ctorParameters: ()
|
|
941
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1048
942
|
let IonFooter = class IonFooter {
|
|
1049
943
|
z;
|
|
1050
944
|
el;
|
|
@@ -1053,25 +947,76 @@ let IonFooter = class IonFooter {
|
|
|
1053
947
|
c.detach();
|
|
1054
948
|
this.el = r.nativeElement;
|
|
1055
949
|
}
|
|
1056
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1057
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
950
|
+
/** @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 });
|
|
951
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1058
952
|
};
|
|
1059
953
|
IonFooter = __decorate([
|
|
1060
954
|
ProxyCmp({
|
|
1061
|
-
inputs: ['collapse', 'mode', 'translucent']
|
|
955
|
+
inputs: ['collapse', 'mode', 'theme', 'translucent']
|
|
1062
956
|
})
|
|
1063
957
|
], IonFooter);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
|
|
1065
959
|
type: Component,
|
|
1066
960
|
args: [{
|
|
1067
961
|
selector: 'ion-footer',
|
|
1068
962
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1069
963
|
template: '<ng-content></ng-content>',
|
|
1070
964
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1071
|
-
inputs: ['collapse', 'mode', 'translucent'],
|
|
1072
|
-
|
|
965
|
+
inputs: ['collapse', 'mode', 'theme', 'translucent'],
|
|
966
|
+
}]
|
|
967
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
968
|
+
let IonGallery = class IonGallery {
|
|
969
|
+
z;
|
|
970
|
+
el;
|
|
971
|
+
constructor(c, r, z) {
|
|
972
|
+
this.z = z;
|
|
973
|
+
c.detach();
|
|
974
|
+
this.el = r.nativeElement;
|
|
975
|
+
}
|
|
976
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
977
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGallery, selector: "ion-gallery", inputs: { columns: "columns", gap: "gap", layout: "layout", mode: "mode", order: "order", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
978
|
+
};
|
|
979
|
+
IonGallery = __decorate([
|
|
980
|
+
ProxyCmp({
|
|
981
|
+
inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme']
|
|
982
|
+
})
|
|
983
|
+
], IonGallery);
|
|
984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGallery, decorators: [{
|
|
985
|
+
type: Component,
|
|
986
|
+
args: [{
|
|
987
|
+
selector: 'ion-gallery',
|
|
988
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
989
|
+
template: '<ng-content></ng-content>',
|
|
990
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
991
|
+
inputs: ['columns', 'gap', 'layout', 'mode', 'order', 'theme'],
|
|
992
|
+
}]
|
|
993
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
994
|
+
let IonGalleryItem = class IonGalleryItem {
|
|
995
|
+
z;
|
|
996
|
+
el;
|
|
997
|
+
constructor(c, r, z) {
|
|
998
|
+
this.z = z;
|
|
999
|
+
c.detach();
|
|
1000
|
+
this.el = r.nativeElement;
|
|
1001
|
+
}
|
|
1002
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1003
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGalleryItem, selector: "ion-gallery-item", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1004
|
+
};
|
|
1005
|
+
IonGalleryItem = __decorate([
|
|
1006
|
+
ProxyCmp({
|
|
1007
|
+
inputs: ['mode', 'theme']
|
|
1008
|
+
})
|
|
1009
|
+
], IonGalleryItem);
|
|
1010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGalleryItem, decorators: [{
|
|
1011
|
+
type: Component,
|
|
1012
|
+
args: [{
|
|
1013
|
+
selector: 'ion-gallery-item',
|
|
1014
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1015
|
+
template: '<ng-content></ng-content>',
|
|
1016
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1017
|
+
inputs: ['mode', 'theme'],
|
|
1073
1018
|
}]
|
|
1074
|
-
}], ctorParameters: ()
|
|
1019
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1075
1020
|
let IonGrid = class IonGrid {
|
|
1076
1021
|
z;
|
|
1077
1022
|
el;
|
|
@@ -1080,25 +1025,24 @@ let IonGrid = class IonGrid {
|
|
|
1080
1025
|
c.detach();
|
|
1081
1026
|
this.el = r.nativeElement;
|
|
1082
1027
|
}
|
|
1083
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1084
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1028
|
+
/** @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 });
|
|
1029
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, selector: "ion-grid", inputs: { fixed: "fixed", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1085
1030
|
};
|
|
1086
1031
|
IonGrid = __decorate([
|
|
1087
1032
|
ProxyCmp({
|
|
1088
|
-
inputs: ['fixed']
|
|
1033
|
+
inputs: ['fixed', 'mode', 'theme']
|
|
1089
1034
|
})
|
|
1090
1035
|
], IonGrid);
|
|
1091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
|
|
1092
1037
|
type: Component,
|
|
1093
1038
|
args: [{
|
|
1094
1039
|
selector: 'ion-grid',
|
|
1095
1040
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1096
1041
|
template: '<ng-content></ng-content>',
|
|
1097
1042
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1098
|
-
inputs: ['fixed'],
|
|
1099
|
-
standalone: false
|
|
1043
|
+
inputs: ['fixed', 'mode', 'theme'],
|
|
1100
1044
|
}]
|
|
1101
|
-
}], ctorParameters: ()
|
|
1045
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1102
1046
|
let IonHeader = class IonHeader {
|
|
1103
1047
|
z;
|
|
1104
1048
|
el;
|
|
@@ -1107,25 +1051,24 @@ let IonHeader = class IonHeader {
|
|
|
1107
1051
|
c.detach();
|
|
1108
1052
|
this.el = r.nativeElement;
|
|
1109
1053
|
}
|
|
1110
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1111
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1054
|
+
/** @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 });
|
|
1055
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, selector: "ion-header", inputs: { collapse: "collapse", divider: "divider", mode: "mode", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1112
1056
|
};
|
|
1113
1057
|
IonHeader = __decorate([
|
|
1114
1058
|
ProxyCmp({
|
|
1115
|
-
inputs: ['collapse', 'mode', 'translucent']
|
|
1059
|
+
inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent']
|
|
1116
1060
|
})
|
|
1117
1061
|
], IonHeader);
|
|
1118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
|
|
1119
1063
|
type: Component,
|
|
1120
1064
|
args: [{
|
|
1121
1065
|
selector: 'ion-header',
|
|
1122
1066
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1123
1067
|
template: '<ng-content></ng-content>',
|
|
1124
1068
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1125
|
-
inputs: ['collapse', 'mode', 'translucent'],
|
|
1126
|
-
standalone: false
|
|
1069
|
+
inputs: ['collapse', 'divider', 'mode', 'theme', 'translucent'],
|
|
1127
1070
|
}]
|
|
1128
|
-
}], ctorParameters: ()
|
|
1071
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1129
1072
|
let IonIcon = class IonIcon {
|
|
1130
1073
|
z;
|
|
1131
1074
|
el;
|
|
@@ -1134,15 +1077,15 @@ let IonIcon = class IonIcon {
|
|
|
1134
1077
|
c.detach();
|
|
1135
1078
|
this.el = r.nativeElement;
|
|
1136
1079
|
}
|
|
1137
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1138
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1080
|
+
/** @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 });
|
|
1081
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonIcon, 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 });
|
|
1139
1082
|
};
|
|
1140
1083
|
IonIcon = __decorate([
|
|
1141
1084
|
ProxyCmp({
|
|
1142
1085
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
|
|
1143
1086
|
})
|
|
1144
1087
|
], IonIcon);
|
|
1145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonIcon, decorators: [{
|
|
1146
1089
|
type: Component,
|
|
1147
1090
|
args: [{
|
|
1148
1091
|
selector: 'ion-icon',
|
|
@@ -1150,78 +1093,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1150
1093
|
template: '<ng-content></ng-content>',
|
|
1151
1094
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1152
1095
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src'],
|
|
1153
|
-
standalone: false
|
|
1154
1096
|
}]
|
|
1155
|
-
}], ctorParameters: ()
|
|
1097
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1156
1098
|
let IonImg = class IonImg {
|
|
1157
1099
|
z;
|
|
1158
1100
|
el;
|
|
1159
|
-
ionImgWillLoad = new EventEmitter();
|
|
1160
|
-
ionImgDidLoad = new EventEmitter();
|
|
1161
|
-
ionError = new EventEmitter();
|
|
1162
1101
|
constructor(c, r, z) {
|
|
1163
1102
|
this.z = z;
|
|
1164
1103
|
c.detach();
|
|
1165
1104
|
this.el = r.nativeElement;
|
|
1105
|
+
proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
|
|
1166
1106
|
}
|
|
1167
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1168
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1107
|
+
/** @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 });
|
|
1108
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, selector: "ion-img", inputs: { alt: "alt", mode: "mode", src: "src", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1169
1109
|
};
|
|
1170
1110
|
IonImg = __decorate([
|
|
1171
1111
|
ProxyCmp({
|
|
1172
|
-
inputs: ['alt', 'src']
|
|
1112
|
+
inputs: ['alt', 'mode', 'src', 'theme']
|
|
1173
1113
|
})
|
|
1174
1114
|
], IonImg);
|
|
1175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
|
|
1176
1116
|
type: Component,
|
|
1177
1117
|
args: [{
|
|
1178
1118
|
selector: 'ion-img',
|
|
1179
1119
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1180
1120
|
template: '<ng-content></ng-content>',
|
|
1181
1121
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1182
|
-
inputs: ['alt', 'src'],
|
|
1183
|
-
outputs: ['ionImgWillLoad', 'ionImgDidLoad', 'ionError'],
|
|
1184
|
-
standalone: false
|
|
1122
|
+
inputs: ['alt', 'mode', 'src', 'theme'],
|
|
1185
1123
|
}]
|
|
1186
|
-
}], ctorParameters: ()
|
|
1187
|
-
type: Output
|
|
1188
|
-
}], ionImgDidLoad: [{
|
|
1189
|
-
type: Output
|
|
1190
|
-
}], ionError: [{
|
|
1191
|
-
type: Output
|
|
1192
|
-
}] } });
|
|
1124
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1193
1125
|
let IonInfiniteScroll = class IonInfiniteScroll {
|
|
1194
1126
|
z;
|
|
1195
1127
|
el;
|
|
1196
|
-
ionInfinite = new EventEmitter();
|
|
1197
1128
|
constructor(c, r, z) {
|
|
1198
1129
|
this.z = z;
|
|
1199
1130
|
c.detach();
|
|
1200
1131
|
this.el = r.nativeElement;
|
|
1132
|
+
proxyOutputs(this, this.el, ['ionInfinite']);
|
|
1201
1133
|
}
|
|
1202
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1203
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1134
|
+
/** @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 });
|
|
1135
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", mode: "mode", position: "position", preserveRerenderScrollPosition: "preserveRerenderScrollPosition", theme: "theme", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1204
1136
|
};
|
|
1205
1137
|
IonInfiniteScroll = __decorate([
|
|
1206
1138
|
ProxyCmp({
|
|
1207
|
-
inputs: ['disabled', 'position', 'threshold'],
|
|
1139
|
+
inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
|
|
1208
1140
|
methods: ['complete']
|
|
1209
1141
|
})
|
|
1210
1142
|
], IonInfiniteScroll);
|
|
1211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1212
1144
|
type: Component,
|
|
1213
1145
|
args: [{
|
|
1214
1146
|
selector: 'ion-infinite-scroll',
|
|
1215
1147
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1216
1148
|
template: '<ng-content></ng-content>',
|
|
1217
1149
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1218
|
-
inputs: ['disabled', 'position', 'threshold'],
|
|
1219
|
-
outputs: ['ionInfinite'],
|
|
1220
|
-
standalone: false
|
|
1150
|
+
inputs: ['disabled', 'mode', 'position', 'preserveRerenderScrollPosition', 'theme', 'threshold'],
|
|
1221
1151
|
}]
|
|
1222
|
-
}], ctorParameters: ()
|
|
1223
|
-
type: Output
|
|
1224
|
-
}] } });
|
|
1152
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1225
1153
|
let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
1226
1154
|
z;
|
|
1227
1155
|
el;
|
|
@@ -1230,110 +1158,80 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1230
1158
|
c.detach();
|
|
1231
1159
|
this.el = r.nativeElement;
|
|
1232
1160
|
}
|
|
1233
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1234
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1161
|
+
/** @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 });
|
|
1162
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1235
1163
|
};
|
|
1236
1164
|
IonInfiniteScrollContent = __decorate([
|
|
1237
1165
|
ProxyCmp({
|
|
1238
|
-
inputs: ['loadingSpinner', 'loadingText']
|
|
1166
|
+
inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme']
|
|
1239
1167
|
})
|
|
1240
1168
|
], IonInfiniteScrollContent);
|
|
1241
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1242
1170
|
type: Component,
|
|
1243
1171
|
args: [{
|
|
1244
1172
|
selector: 'ion-infinite-scroll-content',
|
|
1245
1173
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1246
1174
|
template: '<ng-content></ng-content>',
|
|
1247
1175
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1248
|
-
inputs: ['loadingSpinner', 'loadingText'],
|
|
1249
|
-
standalone: false
|
|
1176
|
+
inputs: ['loadingSpinner', 'loadingText', 'mode', 'theme'],
|
|
1250
1177
|
}]
|
|
1251
|
-
}], ctorParameters: ()
|
|
1178
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1252
1179
|
let IonInput = class IonInput {
|
|
1253
1180
|
z;
|
|
1254
1181
|
el;
|
|
1255
|
-
ionInput = new EventEmitter();
|
|
1256
|
-
ionChange = new EventEmitter();
|
|
1257
|
-
ionBlur = new EventEmitter();
|
|
1258
|
-
ionFocus = new EventEmitter();
|
|
1259
1182
|
constructor(c, r, z) {
|
|
1260
1183
|
this.z = z;
|
|
1261
1184
|
c.detach();
|
|
1262
1185
|
this.el = r.nativeElement;
|
|
1186
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionBlur', 'ionFocus']);
|
|
1263
1187
|
}
|
|
1264
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1265
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1188
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
1189
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInput, selector: "ion-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearInputIcon: "clearInputIcon", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", size: "size", spellcheck: "spellcheck", step: "step", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1266
1190
|
};
|
|
1267
1191
|
IonInput = __decorate([
|
|
1268
1192
|
ProxyCmp({
|
|
1269
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'spellcheck', 'step', 'type', 'value'],
|
|
1193
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
|
|
1270
1194
|
methods: ['setFocus', 'getInputElement']
|
|
1271
1195
|
})
|
|
1272
1196
|
], IonInput);
|
|
1273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInput, decorators: [{
|
|
1274
1198
|
type: Component,
|
|
1275
1199
|
args: [{
|
|
1276
1200
|
selector: 'ion-input',
|
|
1277
1201
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1278
1202
|
template: '<ng-content></ng-content>',
|
|
1279
1203
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1280
|
-
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'spellcheck', 'step', 'type', 'value'],
|
|
1281
|
-
outputs: ['ionInput', 'ionChange', 'ionBlur', 'ionFocus'],
|
|
1282
|
-
standalone: false
|
|
1204
|
+
inputs: ['autocapitalize', 'autocomplete', 'autocorrect', 'autofocus', 'clearInput', 'clearInputIcon', 'clearOnEdit', 'color', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'max', 'maxlength', 'min', 'minlength', 'mode', 'multiple', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'shape', 'size', 'spellcheck', 'step', 'theme', 'type', 'value'],
|
|
1283
1205
|
}]
|
|
1284
|
-
}], ctorParameters: ()
|
|
1285
|
-
type: Output
|
|
1286
|
-
}], ionChange: [{
|
|
1287
|
-
type: Output
|
|
1288
|
-
}], ionBlur: [{
|
|
1289
|
-
type: Output
|
|
1290
|
-
}], ionFocus: [{
|
|
1291
|
-
type: Output
|
|
1292
|
-
}] } });
|
|
1206
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1293
1207
|
let IonInputOtp = class IonInputOtp {
|
|
1294
1208
|
z;
|
|
1295
1209
|
el;
|
|
1296
|
-
ionInput = new EventEmitter();
|
|
1297
|
-
ionChange = new EventEmitter();
|
|
1298
|
-
ionComplete = new EventEmitter();
|
|
1299
|
-
ionBlur = new EventEmitter();
|
|
1300
|
-
ionFocus = new EventEmitter();
|
|
1301
1210
|
constructor(c, r, z) {
|
|
1302
1211
|
this.z = z;
|
|
1303
1212
|
c.detach();
|
|
1304
1213
|
this.el = r.nativeElement;
|
|
1214
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus']);
|
|
1305
1215
|
}
|
|
1306
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1307
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1216
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
1217
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputOtp, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", mode: "mode", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1308
1218
|
};
|
|
1309
1219
|
IonInputOtp = __decorate([
|
|
1310
1220
|
ProxyCmp({
|
|
1311
|
-
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'pattern', 'readonly', 'separators', 'shape', 'size', 'type', 'value'],
|
|
1221
|
+
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
|
|
1312
1222
|
methods: ['setFocus']
|
|
1313
1223
|
})
|
|
1314
1224
|
], IonInputOtp);
|
|
1315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
1316
1226
|
type: Component,
|
|
1317
1227
|
args: [{
|
|
1318
1228
|
selector: 'ion-input-otp',
|
|
1319
1229
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1320
1230
|
template: '<ng-content></ng-content>',
|
|
1321
1231
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1322
|
-
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'pattern', 'readonly', 'separators', 'shape', 'size', 'type', 'value'],
|
|
1323
|
-
outputs: ['ionInput', 'ionChange', 'ionComplete', 'ionBlur', 'ionFocus'],
|
|
1324
|
-
standalone: false
|
|
1232
|
+
inputs: ['autocapitalize', 'color', 'disabled', 'fill', 'inputmode', 'length', 'mode', 'pattern', 'readonly', 'separators', 'shape', 'size', 'theme', 'type', 'value'],
|
|
1325
1233
|
}]
|
|
1326
|
-
}], ctorParameters: ()
|
|
1327
|
-
type: Output
|
|
1328
|
-
}], ionChange: [{
|
|
1329
|
-
type: Output
|
|
1330
|
-
}], ionComplete: [{
|
|
1331
|
-
type: Output
|
|
1332
|
-
}], ionBlur: [{
|
|
1333
|
-
type: Output
|
|
1334
|
-
}], ionFocus: [{
|
|
1335
|
-
type: Output
|
|
1336
|
-
}] } });
|
|
1234
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1337
1235
|
let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
1338
1236
|
z;
|
|
1339
1237
|
el;
|
|
@@ -1342,15 +1240,15 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
|
1342
1240
|
c.detach();
|
|
1343
1241
|
this.el = r.nativeElement;
|
|
1344
1242
|
}
|
|
1345
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1346
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1243
|
+
/** @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 });
|
|
1244
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInputPasswordToggle, 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 });
|
|
1347
1245
|
};
|
|
1348
1246
|
IonInputPasswordToggle = __decorate([
|
|
1349
1247
|
ProxyCmp({
|
|
1350
1248
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1351
1249
|
})
|
|
1352
1250
|
], IonInputPasswordToggle);
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1354
1252
|
type: Component,
|
|
1355
1253
|
args: [{
|
|
1356
1254
|
selector: 'ion-input-password-toggle',
|
|
@@ -1358,9 +1256,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
1358
1256
|
template: '<ng-content></ng-content>',
|
|
1359
1257
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1360
1258
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon'],
|
|
1361
|
-
standalone: false
|
|
1362
1259
|
}]
|
|
1363
|
-
}], ctorParameters: ()
|
|
1260
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1364
1261
|
let IonItem = class IonItem {
|
|
1365
1262
|
z;
|
|
1366
1263
|
el;
|
|
@@ -1369,25 +1266,24 @@ let IonItem = class IonItem {
|
|
|
1369
1266
|
c.detach();
|
|
1370
1267
|
this.el = r.nativeElement;
|
|
1371
1268
|
}
|
|
1372
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1373
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1269
|
+
/** @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 });
|
|
1270
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, 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", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1374
1271
|
};
|
|
1375
1272
|
IonItem = __decorate([
|
|
1376
1273
|
ProxyCmp({
|
|
1377
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1274
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type']
|
|
1378
1275
|
})
|
|
1379
1276
|
], IonItem);
|
|
1380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
|
|
1381
1278
|
type: Component,
|
|
1382
1279
|
args: [{
|
|
1383
1280
|
selector: 'ion-item',
|
|
1384
1281
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1385
1282
|
template: '<ng-content></ng-content>',
|
|
1386
1283
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1387
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
1388
|
-
standalone: false
|
|
1284
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'theme', 'type'],
|
|
1389
1285
|
}]
|
|
1390
|
-
}], ctorParameters: ()
|
|
1286
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1391
1287
|
let IonItemDivider = class IonItemDivider {
|
|
1392
1288
|
z;
|
|
1393
1289
|
el;
|
|
@@ -1396,25 +1292,24 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1396
1292
|
c.detach();
|
|
1397
1293
|
this.el = r.nativeElement;
|
|
1398
1294
|
}
|
|
1399
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1400
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1295
|
+
/** @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 });
|
|
1296
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1401
1297
|
};
|
|
1402
1298
|
IonItemDivider = __decorate([
|
|
1403
1299
|
ProxyCmp({
|
|
1404
|
-
inputs: ['color', 'mode', 'sticky']
|
|
1300
|
+
inputs: ['color', 'mode', 'sticky', 'theme']
|
|
1405
1301
|
})
|
|
1406
1302
|
], IonItemDivider);
|
|
1407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1408
1304
|
type: Component,
|
|
1409
1305
|
args: [{
|
|
1410
1306
|
selector: 'ion-item-divider',
|
|
1411
1307
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1412
1308
|
template: '<ng-content></ng-content>',
|
|
1413
1309
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1414
|
-
inputs: ['color', 'mode', 'sticky'],
|
|
1415
|
-
standalone: false
|
|
1310
|
+
inputs: ['color', 'mode', 'sticky', 'theme'],
|
|
1416
1311
|
}]
|
|
1417
|
-
}], ctorParameters: ()
|
|
1312
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1418
1313
|
let IonItemGroup = class IonItemGroup {
|
|
1419
1314
|
z;
|
|
1420
1315
|
el;
|
|
@@ -1423,23 +1318,24 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1423
1318
|
c.detach();
|
|
1424
1319
|
this.el = r.nativeElement;
|
|
1425
1320
|
}
|
|
1426
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1427
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1321
|
+
/** @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 });
|
|
1322
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, selector: "ion-item-group", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1428
1323
|
};
|
|
1429
1324
|
IonItemGroup = __decorate([
|
|
1430
|
-
ProxyCmp({
|
|
1325
|
+
ProxyCmp({
|
|
1326
|
+
inputs: ['mode', 'theme']
|
|
1327
|
+
})
|
|
1431
1328
|
], IonItemGroup);
|
|
1432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1433
1330
|
type: Component,
|
|
1434
1331
|
args: [{
|
|
1435
1332
|
selector: 'ion-item-group',
|
|
1436
1333
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1437
1334
|
template: '<ng-content></ng-content>',
|
|
1438
1335
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1439
|
-
inputs: [],
|
|
1440
|
-
standalone: false
|
|
1336
|
+
inputs: ['mode', 'theme'],
|
|
1441
1337
|
}]
|
|
1442
|
-
}], ctorParameters: ()
|
|
1338
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1443
1339
|
let IonItemOption = class IonItemOption {
|
|
1444
1340
|
z;
|
|
1445
1341
|
el;
|
|
@@ -1448,88 +1344,79 @@ let IonItemOption = class IonItemOption {
|
|
|
1448
1344
|
c.detach();
|
|
1449
1345
|
this.el = r.nativeElement;
|
|
1450
1346
|
}
|
|
1451
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1452
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1347
|
+
/** @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 });
|
|
1348
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", hue: "hue", mode: "mode", rel: "rel", shape: "shape", target: "target", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1453
1349
|
};
|
|
1454
1350
|
IonItemOption = __decorate([
|
|
1455
1351
|
ProxyCmp({
|
|
1456
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1352
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type']
|
|
1457
1353
|
})
|
|
1458
1354
|
], IonItemOption);
|
|
1459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1460
1356
|
type: Component,
|
|
1461
1357
|
args: [{
|
|
1462
1358
|
selector: 'ion-item-option',
|
|
1463
1359
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1464
1360
|
template: '<ng-content></ng-content>',
|
|
1465
1361
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1466
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type'],
|
|
1467
|
-
standalone: false
|
|
1362
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'hue', 'mode', 'rel', 'shape', 'target', 'theme', 'type'],
|
|
1468
1363
|
}]
|
|
1469
|
-
}], ctorParameters: ()
|
|
1364
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1470
1365
|
let IonItemOptions = class IonItemOptions {
|
|
1471
1366
|
z;
|
|
1472
1367
|
el;
|
|
1473
|
-
ionSwipe = new EventEmitter();
|
|
1474
1368
|
constructor(c, r, z) {
|
|
1475
1369
|
this.z = z;
|
|
1476
1370
|
c.detach();
|
|
1477
1371
|
this.el = r.nativeElement;
|
|
1372
|
+
proxyOutputs(this, this.el, ['ionSwipe']);
|
|
1478
1373
|
}
|
|
1479
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1480
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1374
|
+
/** @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 });
|
|
1375
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, selector: "ion-item-options", inputs: { mode: "mode", side: "side", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1481
1376
|
};
|
|
1482
1377
|
IonItemOptions = __decorate([
|
|
1483
1378
|
ProxyCmp({
|
|
1484
|
-
inputs: ['side']
|
|
1379
|
+
inputs: ['mode', 'side', 'theme']
|
|
1485
1380
|
})
|
|
1486
1381
|
], IonItemOptions);
|
|
1487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1488
1383
|
type: Component,
|
|
1489
1384
|
args: [{
|
|
1490
1385
|
selector: 'ion-item-options',
|
|
1491
1386
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1492
1387
|
template: '<ng-content></ng-content>',
|
|
1493
1388
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1494
|
-
inputs: ['side'],
|
|
1495
|
-
outputs: ['ionSwipe'],
|
|
1496
|
-
standalone: false
|
|
1389
|
+
inputs: ['mode', 'side', 'theme'],
|
|
1497
1390
|
}]
|
|
1498
|
-
}], ctorParameters: ()
|
|
1499
|
-
type: Output
|
|
1500
|
-
}] } });
|
|
1391
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1501
1392
|
let IonItemSliding = class IonItemSliding {
|
|
1502
1393
|
z;
|
|
1503
1394
|
el;
|
|
1504
|
-
ionDrag = new EventEmitter();
|
|
1505
1395
|
constructor(c, r, z) {
|
|
1506
1396
|
this.z = z;
|
|
1507
1397
|
c.detach();
|
|
1508
1398
|
this.el = r.nativeElement;
|
|
1399
|
+
proxyOutputs(this, this.el, ['ionDrag']);
|
|
1509
1400
|
}
|
|
1510
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1511
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1401
|
+
/** @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 });
|
|
1402
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, selector: "ion-item-sliding", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1512
1403
|
};
|
|
1513
1404
|
IonItemSliding = __decorate([
|
|
1514
1405
|
ProxyCmp({
|
|
1515
|
-
inputs: ['disabled'],
|
|
1406
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
1516
1407
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1517
1408
|
})
|
|
1518
1409
|
], IonItemSliding);
|
|
1519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1410
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1520
1411
|
type: Component,
|
|
1521
1412
|
args: [{
|
|
1522
1413
|
selector: 'ion-item-sliding',
|
|
1523
1414
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1524
1415
|
template: '<ng-content></ng-content>',
|
|
1525
1416
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1526
|
-
inputs: ['disabled'],
|
|
1527
|
-
outputs: ['ionDrag'],
|
|
1528
|
-
standalone: false
|
|
1417
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
1529
1418
|
}]
|
|
1530
|
-
}], ctorParameters: ()
|
|
1531
|
-
type: Output
|
|
1532
|
-
}] } });
|
|
1419
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1533
1420
|
let IonLabel = class IonLabel {
|
|
1534
1421
|
z;
|
|
1535
1422
|
el;
|
|
@@ -1538,25 +1425,24 @@ let IonLabel = class IonLabel {
|
|
|
1538
1425
|
c.detach();
|
|
1539
1426
|
this.el = r.nativeElement;
|
|
1540
1427
|
}
|
|
1541
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1542
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1428
|
+
/** @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 });
|
|
1429
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1543
1430
|
};
|
|
1544
1431
|
IonLabel = __decorate([
|
|
1545
1432
|
ProxyCmp({
|
|
1546
|
-
inputs: ['color', 'mode', 'position']
|
|
1433
|
+
inputs: ['color', 'mode', 'position', 'theme']
|
|
1547
1434
|
})
|
|
1548
1435
|
], IonLabel);
|
|
1549
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
|
|
1550
1437
|
type: Component,
|
|
1551
1438
|
args: [{
|
|
1552
1439
|
selector: 'ion-label',
|
|
1553
1440
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1554
1441
|
template: '<ng-content></ng-content>',
|
|
1555
1442
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1556
|
-
inputs: ['color', 'mode', 'position'],
|
|
1557
|
-
standalone: false
|
|
1443
|
+
inputs: ['color', 'mode', 'position', 'theme'],
|
|
1558
1444
|
}]
|
|
1559
|
-
}], ctorParameters: ()
|
|
1445
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1560
1446
|
let IonList = class IonList {
|
|
1561
1447
|
z;
|
|
1562
1448
|
el;
|
|
@@ -1565,26 +1451,25 @@ let IonList = class IonList {
|
|
|
1565
1451
|
c.detach();
|
|
1566
1452
|
this.el = r.nativeElement;
|
|
1567
1453
|
}
|
|
1568
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1569
|
-
/** @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: IonList, 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: IonList, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode", shape: "shape", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1570
1456
|
};
|
|
1571
1457
|
IonList = __decorate([
|
|
1572
1458
|
ProxyCmp({
|
|
1573
|
-
inputs: ['inset', 'lines', 'mode'],
|
|
1459
|
+
inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
|
|
1574
1460
|
methods: ['closeSlidingItems']
|
|
1575
1461
|
})
|
|
1576
1462
|
], IonList);
|
|
1577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, decorators: [{
|
|
1578
1464
|
type: Component,
|
|
1579
1465
|
args: [{
|
|
1580
1466
|
selector: 'ion-list',
|
|
1581
1467
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1582
1468
|
template: '<ng-content></ng-content>',
|
|
1583
1469
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1584
|
-
inputs: ['inset', 'lines', 'mode'],
|
|
1585
|
-
standalone: false
|
|
1470
|
+
inputs: ['inset', 'lines', 'mode', 'shape', 'theme'],
|
|
1586
1471
|
}]
|
|
1587
|
-
}], ctorParameters: ()
|
|
1472
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1588
1473
|
let IonListHeader = class IonListHeader {
|
|
1589
1474
|
z;
|
|
1590
1475
|
el;
|
|
@@ -1593,119 +1478,80 @@ let IonListHeader = class IonListHeader {
|
|
|
1593
1478
|
c.detach();
|
|
1594
1479
|
this.el = r.nativeElement;
|
|
1595
1480
|
}
|
|
1596
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1597
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1481
|
+
/** @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 });
|
|
1482
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1598
1483
|
};
|
|
1599
1484
|
IonListHeader = __decorate([
|
|
1600
1485
|
ProxyCmp({
|
|
1601
|
-
inputs: ['color', 'lines', 'mode']
|
|
1486
|
+
inputs: ['color', 'lines', 'mode', 'theme']
|
|
1602
1487
|
})
|
|
1603
1488
|
], IonListHeader);
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1605
1490
|
type: Component,
|
|
1606
1491
|
args: [{
|
|
1607
1492
|
selector: 'ion-list-header',
|
|
1608
1493
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1609
1494
|
template: '<ng-content></ng-content>',
|
|
1610
1495
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1611
|
-
inputs: ['color', 'lines', 'mode'],
|
|
1612
|
-
standalone: false
|
|
1496
|
+
inputs: ['color', 'lines', 'mode', 'theme'],
|
|
1613
1497
|
}]
|
|
1614
|
-
}], ctorParameters: ()
|
|
1498
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1615
1499
|
let IonLoading = class IonLoading {
|
|
1616
1500
|
z;
|
|
1617
1501
|
el;
|
|
1618
|
-
ionLoadingDidPresent = new EventEmitter();
|
|
1619
|
-
ionLoadingWillPresent = new EventEmitter();
|
|
1620
|
-
ionLoadingWillDismiss = new EventEmitter();
|
|
1621
|
-
ionLoadingDidDismiss = new EventEmitter();
|
|
1622
|
-
didPresent = new EventEmitter();
|
|
1623
|
-
willPresent = new EventEmitter();
|
|
1624
|
-
willDismiss = new EventEmitter();
|
|
1625
|
-
didDismiss = new EventEmitter();
|
|
1626
1502
|
constructor(c, r, z) {
|
|
1627
1503
|
this.z = z;
|
|
1628
1504
|
c.detach();
|
|
1629
1505
|
this.el = r.nativeElement;
|
|
1506
|
+
proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1630
1507
|
}
|
|
1631
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1632
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1508
|
+
/** @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 });
|
|
1509
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, 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", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1633
1510
|
};
|
|
1634
1511
|
IonLoading = __decorate([
|
|
1635
1512
|
ProxyCmp({
|
|
1636
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1513
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
|
|
1637
1514
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1638
1515
|
})
|
|
1639
1516
|
], IonLoading);
|
|
1640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, decorators: [{
|
|
1641
1518
|
type: Component,
|
|
1642
1519
|
args: [{
|
|
1643
1520
|
selector: 'ion-loading',
|
|
1644
1521
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1645
1522
|
template: '<ng-content></ng-content>',
|
|
1646
1523
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1647
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
}]
|
|
1651
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionLoadingDidPresent: [{
|
|
1652
|
-
type: Output
|
|
1653
|
-
}], ionLoadingWillPresent: [{
|
|
1654
|
-
type: Output
|
|
1655
|
-
}], ionLoadingWillDismiss: [{
|
|
1656
|
-
type: Output
|
|
1657
|
-
}], ionLoadingDidDismiss: [{
|
|
1658
|
-
type: Output
|
|
1659
|
-
}], didPresent: [{
|
|
1660
|
-
type: Output
|
|
1661
|
-
}], willPresent: [{
|
|
1662
|
-
type: Output
|
|
1663
|
-
}], willDismiss: [{
|
|
1664
|
-
type: Output
|
|
1665
|
-
}], didDismiss: [{
|
|
1666
|
-
type: Output
|
|
1667
|
-
}] } });
|
|
1524
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'theme', 'translucent', 'trigger'],
|
|
1525
|
+
}]
|
|
1526
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1668
1527
|
let IonMenu = class IonMenu {
|
|
1669
1528
|
z;
|
|
1670
1529
|
el;
|
|
1671
|
-
ionWillOpen = new EventEmitter();
|
|
1672
|
-
ionWillClose = new EventEmitter();
|
|
1673
|
-
ionDidOpen = new EventEmitter();
|
|
1674
|
-
ionDidClose = new EventEmitter();
|
|
1675
1530
|
constructor(c, r, z) {
|
|
1676
1531
|
this.z = z;
|
|
1677
1532
|
c.detach();
|
|
1678
1533
|
this.el = r.nativeElement;
|
|
1534
|
+
proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
|
|
1679
1535
|
}
|
|
1680
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1681
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1536
|
+
/** @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 });
|
|
1537
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", mode: "mode", side: "side", swipeGesture: "swipeGesture", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1682
1538
|
};
|
|
1683
1539
|
IonMenu = __decorate([
|
|
1684
1540
|
ProxyCmp({
|
|
1685
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1541
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
|
|
1686
1542
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1687
1543
|
})
|
|
1688
1544
|
], IonMenu);
|
|
1689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, decorators: [{
|
|
1690
1546
|
type: Component,
|
|
1691
1547
|
args: [{
|
|
1692
1548
|
selector: 'ion-menu',
|
|
1693
1549
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1694
1550
|
template: '<ng-content></ng-content>',
|
|
1695
1551
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1696
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1697
|
-
outputs: ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose'],
|
|
1698
|
-
standalone: false
|
|
1552
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'mode', 'side', 'swipeGesture', 'theme', 'type'],
|
|
1699
1553
|
}]
|
|
1700
|
-
}], ctorParameters: ()
|
|
1701
|
-
type: Output
|
|
1702
|
-
}], ionWillClose: [{
|
|
1703
|
-
type: Output
|
|
1704
|
-
}], ionDidOpen: [{
|
|
1705
|
-
type: Output
|
|
1706
|
-
}], ionDidClose: [{
|
|
1707
|
-
type: Output
|
|
1708
|
-
}] } });
|
|
1554
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1709
1555
|
let IonMenuButton = class IonMenuButton {
|
|
1710
1556
|
z;
|
|
1711
1557
|
el;
|
|
@@ -1714,25 +1560,24 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1714
1560
|
c.detach();
|
|
1715
1561
|
this.el = r.nativeElement;
|
|
1716
1562
|
}
|
|
1717
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1718
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1563
|
+
/** @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 });
|
|
1564
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1719
1565
|
};
|
|
1720
1566
|
IonMenuButton = __decorate([
|
|
1721
1567
|
ProxyCmp({
|
|
1722
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1568
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type']
|
|
1723
1569
|
})
|
|
1724
1570
|
], IonMenuButton);
|
|
1725
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1726
1572
|
type: Component,
|
|
1727
1573
|
args: [{
|
|
1728
1574
|
selector: 'ion-menu-button',
|
|
1729
1575
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1730
1576
|
template: '<ng-content></ng-content>',
|
|
1731
1577
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1732
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type'],
|
|
1733
|
-
standalone: false
|
|
1578
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'theme', 'type'],
|
|
1734
1579
|
}]
|
|
1735
|
-
}], ctorParameters: ()
|
|
1580
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1736
1581
|
let IonMenuToggle = class IonMenuToggle {
|
|
1737
1582
|
z;
|
|
1738
1583
|
el;
|
|
@@ -1741,25 +1586,24 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1741
1586
|
c.detach();
|
|
1742
1587
|
this.el = r.nativeElement;
|
|
1743
1588
|
}
|
|
1744
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1745
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1589
|
+
/** @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 });
|
|
1590
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1746
1591
|
};
|
|
1747
1592
|
IonMenuToggle = __decorate([
|
|
1748
1593
|
ProxyCmp({
|
|
1749
|
-
inputs: ['autoHide', 'menu']
|
|
1594
|
+
inputs: ['autoHide', 'menu', 'mode', 'theme']
|
|
1750
1595
|
})
|
|
1751
1596
|
], IonMenuToggle);
|
|
1752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1753
1598
|
type: Component,
|
|
1754
1599
|
args: [{
|
|
1755
1600
|
selector: 'ion-menu-toggle',
|
|
1756
1601
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1757
1602
|
template: '<ng-content></ng-content>',
|
|
1758
1603
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1759
|
-
inputs: ['autoHide', 'menu'],
|
|
1760
|
-
standalone: false
|
|
1604
|
+
inputs: ['autoHide', 'menu', 'mode', 'theme'],
|
|
1761
1605
|
}]
|
|
1762
|
-
}], ctorParameters: ()
|
|
1606
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1763
1607
|
let IonNavLink = class IonNavLink {
|
|
1764
1608
|
z;
|
|
1765
1609
|
el;
|
|
@@ -1768,25 +1612,24 @@ let IonNavLink = class IonNavLink {
|
|
|
1768
1612
|
c.detach();
|
|
1769
1613
|
this.el = r.nativeElement;
|
|
1770
1614
|
}
|
|
1771
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1772
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1615
|
+
/** @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 });
|
|
1616
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", mode: "mode", routerAnimation: "routerAnimation", routerDirection: "routerDirection", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1773
1617
|
};
|
|
1774
1618
|
IonNavLink = __decorate([
|
|
1775
1619
|
ProxyCmp({
|
|
1776
|
-
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1620
|
+
inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme']
|
|
1777
1621
|
})
|
|
1778
1622
|
], IonNavLink);
|
|
1779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1780
1624
|
type: Component,
|
|
1781
1625
|
args: [{
|
|
1782
1626
|
selector: 'ion-nav-link',
|
|
1783
1627
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1784
1628
|
template: '<ng-content></ng-content>',
|
|
1785
1629
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1786
|
-
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection'],
|
|
1787
|
-
standalone: false
|
|
1630
|
+
inputs: ['component', 'componentProps', 'mode', 'routerAnimation', 'routerDirection', 'theme'],
|
|
1788
1631
|
}]
|
|
1789
|
-
}], ctorParameters: ()
|
|
1632
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1790
1633
|
let IonNote = class IonNote {
|
|
1791
1634
|
z;
|
|
1792
1635
|
el;
|
|
@@ -1795,25 +1638,24 @@ let IonNote = class IonNote {
|
|
|
1795
1638
|
c.detach();
|
|
1796
1639
|
this.el = r.nativeElement;
|
|
1797
1640
|
}
|
|
1798
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1799
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1641
|
+
/** @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 });
|
|
1642
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, selector: "ion-note", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1800
1643
|
};
|
|
1801
1644
|
IonNote = __decorate([
|
|
1802
1645
|
ProxyCmp({
|
|
1803
|
-
inputs: ['color', 'mode']
|
|
1646
|
+
inputs: ['color', 'mode', 'theme']
|
|
1804
1647
|
})
|
|
1805
1648
|
], IonNote);
|
|
1806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
|
|
1807
1650
|
type: Component,
|
|
1808
1651
|
args: [{
|
|
1809
1652
|
selector: 'ion-note',
|
|
1810
1653
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1811
1654
|
template: '<ng-content></ng-content>',
|
|
1812
1655
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1813
|
-
inputs: ['color', 'mode'],
|
|
1814
|
-
standalone: false
|
|
1656
|
+
inputs: ['color', 'mode', 'theme'],
|
|
1815
1657
|
}]
|
|
1816
|
-
}], ctorParameters: ()
|
|
1658
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1817
1659
|
let IonPicker = class IonPicker {
|
|
1818
1660
|
z;
|
|
1819
1661
|
el;
|
|
@@ -1822,57 +1664,52 @@ let IonPicker = class IonPicker {
|
|
|
1822
1664
|
c.detach();
|
|
1823
1665
|
this.el = r.nativeElement;
|
|
1824
1666
|
}
|
|
1825
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1826
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1667
|
+
/** @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 });
|
|
1668
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, selector: "ion-picker", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1827
1669
|
};
|
|
1828
1670
|
IonPicker = __decorate([
|
|
1829
1671
|
ProxyCmp({
|
|
1830
|
-
inputs: ['mode']
|
|
1672
|
+
inputs: ['mode', 'theme']
|
|
1831
1673
|
})
|
|
1832
1674
|
], IonPicker);
|
|
1833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
|
|
1834
1676
|
type: Component,
|
|
1835
1677
|
args: [{
|
|
1836
1678
|
selector: 'ion-picker',
|
|
1837
1679
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1838
1680
|
template: '<ng-content></ng-content>',
|
|
1839
1681
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1840
|
-
inputs: ['mode'],
|
|
1841
|
-
standalone: false
|
|
1682
|
+
inputs: ['mode', 'theme'],
|
|
1842
1683
|
}]
|
|
1843
|
-
}], ctorParameters: ()
|
|
1684
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1844
1685
|
let IonPickerColumn = class IonPickerColumn {
|
|
1845
1686
|
z;
|
|
1846
1687
|
el;
|
|
1847
|
-
ionChange = new EventEmitter();
|
|
1848
1688
|
constructor(c, r, z) {
|
|
1849
1689
|
this.z = z;
|
|
1850
1690
|
c.detach();
|
|
1851
1691
|
this.el = r.nativeElement;
|
|
1692
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
1852
1693
|
}
|
|
1853
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1854
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1694
|
+
/** @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 });
|
|
1695
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1855
1696
|
};
|
|
1856
1697
|
IonPickerColumn = __decorate([
|
|
1857
1698
|
ProxyCmp({
|
|
1858
|
-
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1699
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1859
1700
|
methods: ['setFocus']
|
|
1860
1701
|
})
|
|
1861
1702
|
], IonPickerColumn);
|
|
1862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1863
1704
|
type: Component,
|
|
1864
1705
|
args: [{
|
|
1865
1706
|
selector: 'ion-picker-column',
|
|
1866
1707
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1867
1708
|
template: '<ng-content></ng-content>',
|
|
1868
1709
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1869
|
-
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1870
|
-
outputs: ['ionChange'],
|
|
1871
|
-
standalone: false
|
|
1710
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1872
1711
|
}]
|
|
1873
|
-
}], ctorParameters: ()
|
|
1874
|
-
type: Output
|
|
1875
|
-
}] } });
|
|
1712
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1876
1713
|
let IonPickerColumnOption = class IonPickerColumnOption {
|
|
1877
1714
|
z;
|
|
1878
1715
|
el;
|
|
@@ -1881,25 +1718,52 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1881
1718
|
c.detach();
|
|
1882
1719
|
this.el = r.nativeElement;
|
|
1883
1720
|
}
|
|
1884
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1885
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1721
|
+
/** @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 });
|
|
1722
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1886
1723
|
};
|
|
1887
1724
|
IonPickerColumnOption = __decorate([
|
|
1888
1725
|
ProxyCmp({
|
|
1889
|
-
inputs: ['color', 'disabled', 'value']
|
|
1726
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value']
|
|
1890
1727
|
})
|
|
1891
1728
|
], IonPickerColumnOption);
|
|
1892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1893
1730
|
type: Component,
|
|
1894
1731
|
args: [{
|
|
1895
1732
|
selector: 'ion-picker-column-option',
|
|
1896
1733
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1897
1734
|
template: '<ng-content></ng-content>',
|
|
1898
1735
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1899
|
-
inputs: ['color', 'disabled', 'value'],
|
|
1900
|
-
standalone: false
|
|
1736
|
+
inputs: ['color', 'disabled', 'mode', 'theme', 'value'],
|
|
1901
1737
|
}]
|
|
1902
|
-
}], ctorParameters: ()
|
|
1738
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1739
|
+
let IonPickerLegacy = class IonPickerLegacy {
|
|
1740
|
+
z;
|
|
1741
|
+
el;
|
|
1742
|
+
constructor(c, r, z) {
|
|
1743
|
+
this.z = z;
|
|
1744
|
+
c.detach();
|
|
1745
|
+
this.el = r.nativeElement;
|
|
1746
|
+
proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1747
|
+
}
|
|
1748
|
+
/** @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 });
|
|
1749
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, 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", theme: "theme", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1750
|
+
};
|
|
1751
|
+
IonPickerLegacy = __decorate([
|
|
1752
|
+
ProxyCmp({
|
|
1753
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
|
|
1754
|
+
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
|
|
1755
|
+
})
|
|
1756
|
+
], IonPickerLegacy);
|
|
1757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, decorators: [{
|
|
1758
|
+
type: Component,
|
|
1759
|
+
args: [{
|
|
1760
|
+
selector: 'ion-picker-legacy',
|
|
1761
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1762
|
+
template: '<ng-content></ng-content>',
|
|
1763
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1764
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'theme', 'trigger'],
|
|
1765
|
+
}]
|
|
1766
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1903
1767
|
let IonProgressBar = class IonProgressBar {
|
|
1904
1768
|
z;
|
|
1905
1769
|
el;
|
|
@@ -1908,180 +1772,133 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1908
1772
|
c.detach();
|
|
1909
1773
|
this.el = r.nativeElement;
|
|
1910
1774
|
}
|
|
1911
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1912
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1775
|
+
/** @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 });
|
|
1776
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", shape: "shape", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1913
1777
|
};
|
|
1914
1778
|
IonProgressBar = __decorate([
|
|
1915
1779
|
ProxyCmp({
|
|
1916
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1780
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value']
|
|
1917
1781
|
})
|
|
1918
1782
|
], IonProgressBar);
|
|
1919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1920
1784
|
type: Component,
|
|
1921
1785
|
args: [{
|
|
1922
1786
|
selector: 'ion-progress-bar',
|
|
1923
1787
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1924
1788
|
template: '<ng-content></ng-content>',
|
|
1925
1789
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1926
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value'],
|
|
1927
|
-
standalone: false
|
|
1790
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'shape', 'theme', 'type', 'value'],
|
|
1928
1791
|
}]
|
|
1929
|
-
}], ctorParameters: ()
|
|
1792
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1930
1793
|
let IonRadio = class IonRadio {
|
|
1931
1794
|
z;
|
|
1932
1795
|
el;
|
|
1933
|
-
ionFocus = new EventEmitter();
|
|
1934
|
-
ionBlur = new EventEmitter();
|
|
1935
1796
|
constructor(c, r, z) {
|
|
1936
1797
|
this.z = z;
|
|
1937
1798
|
c.detach();
|
|
1938
1799
|
this.el = r.nativeElement;
|
|
1800
|
+
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1939
1801
|
}
|
|
1940
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1941
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1802
|
+
/** @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 });
|
|
1803
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1942
1804
|
};
|
|
1943
1805
|
IonRadio = __decorate([
|
|
1944
1806
|
ProxyCmp({
|
|
1945
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1807
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value']
|
|
1946
1808
|
})
|
|
1947
1809
|
], IonRadio);
|
|
1948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
|
|
1949
1811
|
type: Component,
|
|
1950
1812
|
args: [{
|
|
1951
1813
|
selector: 'ion-radio',
|
|
1952
1814
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1953
1815
|
template: '<ng-content></ng-content>',
|
|
1954
1816
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1955
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value'],
|
|
1956
|
-
outputs: ['ionFocus', 'ionBlur'],
|
|
1957
|
-
standalone: false
|
|
1817
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'theme', 'value'],
|
|
1958
1818
|
}]
|
|
1959
|
-
}], ctorParameters: ()
|
|
1960
|
-
type: Output
|
|
1961
|
-
}], ionBlur: [{
|
|
1962
|
-
type: Output
|
|
1963
|
-
}] } });
|
|
1819
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1964
1820
|
let IonRadioGroup = class IonRadioGroup {
|
|
1965
1821
|
z;
|
|
1966
1822
|
el;
|
|
1967
|
-
ionChange = new EventEmitter();
|
|
1968
1823
|
constructor(c, r, z) {
|
|
1969
1824
|
this.z = z;
|
|
1970
1825
|
c.detach();
|
|
1971
1826
|
this.el = r.nativeElement;
|
|
1827
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
1972
1828
|
}
|
|
1973
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1974
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1829
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
1830
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", mode: "mode", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1975
1831
|
};
|
|
1976
1832
|
IonRadioGroup = __decorate([
|
|
1977
1833
|
ProxyCmp({
|
|
1978
|
-
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value']
|
|
1834
|
+
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value']
|
|
1979
1835
|
})
|
|
1980
1836
|
], IonRadioGroup);
|
|
1981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
1982
1838
|
type: Component,
|
|
1983
1839
|
args: [{
|
|
1984
1840
|
selector: 'ion-radio-group',
|
|
1985
1841
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1986
1842
|
template: '<ng-content></ng-content>',
|
|
1987
1843
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1988
|
-
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value'],
|
|
1989
|
-
outputs: ['ionChange'],
|
|
1990
|
-
standalone: false
|
|
1844
|
+
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'mode', 'name', 'theme', 'value'],
|
|
1991
1845
|
}]
|
|
1992
|
-
}], ctorParameters: ()
|
|
1993
|
-
type: Output
|
|
1994
|
-
}] } });
|
|
1846
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1995
1847
|
let IonRange = class IonRange {
|
|
1996
1848
|
z;
|
|
1997
1849
|
el;
|
|
1998
|
-
ionChange = new EventEmitter();
|
|
1999
|
-
ionInput = new EventEmitter();
|
|
2000
|
-
ionFocus = new EventEmitter();
|
|
2001
|
-
ionBlur = new EventEmitter();
|
|
2002
|
-
ionKnobMoveStart = new EventEmitter();
|
|
2003
|
-
ionKnobMoveEnd = new EventEmitter();
|
|
2004
1850
|
constructor(c, r, z) {
|
|
2005
1851
|
this.z = z;
|
|
2006
1852
|
c.detach();
|
|
2007
1853
|
this.el = r.nativeElement;
|
|
1854
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionFocus', 'ionBlur', 'ionKnobMoveStart', 'ionKnobMoveEnd']);
|
|
2008
1855
|
}
|
|
2009
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2010
|
-
/** @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: IonRange, 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: IonRange, 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", theme: "theme", ticks: "ticks", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2011
1858
|
};
|
|
2012
1859
|
IonRange = __decorate([
|
|
2013
1860
|
ProxyCmp({
|
|
2014
|
-
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value']
|
|
1861
|
+
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value']
|
|
2015
1862
|
})
|
|
2016
1863
|
], IonRange);
|
|
2017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRange, decorators: [{
|
|
2018
1865
|
type: Component,
|
|
2019
1866
|
args: [{
|
|
2020
1867
|
selector: 'ion-range',
|
|
2021
1868
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2022
1869
|
template: '<ng-content></ng-content>',
|
|
2023
1870
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2024
|
-
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value'],
|
|
2025
|
-
outputs: ['ionChange', 'ionInput', 'ionFocus', 'ionBlur', 'ionKnobMoveStart', 'ionKnobMoveEnd'],
|
|
2026
|
-
standalone: false
|
|
1871
|
+
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'theme', 'ticks', 'value'],
|
|
2027
1872
|
}]
|
|
2028
|
-
}], ctorParameters: ()
|
|
2029
|
-
type: Output
|
|
2030
|
-
}], ionInput: [{
|
|
2031
|
-
type: Output
|
|
2032
|
-
}], ionFocus: [{
|
|
2033
|
-
type: Output
|
|
2034
|
-
}], ionBlur: [{
|
|
2035
|
-
type: Output
|
|
2036
|
-
}], ionKnobMoveStart: [{
|
|
2037
|
-
type: Output
|
|
2038
|
-
}], ionKnobMoveEnd: [{
|
|
2039
|
-
type: Output
|
|
2040
|
-
}] } });
|
|
1873
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2041
1874
|
let IonRefresher = class IonRefresher {
|
|
2042
1875
|
z;
|
|
2043
1876
|
el;
|
|
2044
|
-
ionRefresh = new EventEmitter();
|
|
2045
|
-
ionPull = new EventEmitter();
|
|
2046
|
-
ionStart = new EventEmitter();
|
|
2047
|
-
ionPullStart = new EventEmitter();
|
|
2048
|
-
ionPullEnd = new EventEmitter();
|
|
2049
1877
|
constructor(c, r, z) {
|
|
2050
1878
|
this.z = z;
|
|
2051
1879
|
c.detach();
|
|
2052
1880
|
this.el = r.nativeElement;
|
|
1881
|
+
proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd']);
|
|
2053
1882
|
}
|
|
2054
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2055
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1883
|
+
/** @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 });
|
|
1884
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2056
1885
|
};
|
|
2057
1886
|
IonRefresher = __decorate([
|
|
2058
1887
|
ProxyCmp({
|
|
2059
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1888
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
|
|
2060
1889
|
methods: ['complete', 'cancel', 'getProgress']
|
|
2061
1890
|
})
|
|
2062
1891
|
], IonRefresher);
|
|
2063
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, decorators: [{
|
|
2064
1893
|
type: Component,
|
|
2065
1894
|
args: [{
|
|
2066
1895
|
selector: 'ion-refresher',
|
|
2067
1896
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2068
1897
|
template: '<ng-content></ng-content>',
|
|
2069
1898
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2070
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
2071
|
-
outputs: ['ionRefresh', 'ionPull', 'ionStart', 'ionPullStart', 'ionPullEnd'],
|
|
2072
|
-
standalone: false
|
|
1899
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration', 'theme'],
|
|
2073
1900
|
}]
|
|
2074
|
-
}], ctorParameters: ()
|
|
2075
|
-
type: Output
|
|
2076
|
-
}], ionPull: [{
|
|
2077
|
-
type: Output
|
|
2078
|
-
}], ionStart: [{
|
|
2079
|
-
type: Output
|
|
2080
|
-
}], ionPullStart: [{
|
|
2081
|
-
type: Output
|
|
2082
|
-
}], ionPullEnd: [{
|
|
2083
|
-
type: Output
|
|
2084
|
-
}] } });
|
|
1901
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2085
1902
|
let IonRefresherContent = class IonRefresherContent {
|
|
2086
1903
|
z;
|
|
2087
1904
|
el;
|
|
@@ -2090,25 +1907,24 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
2090
1907
|
c.detach();
|
|
2091
1908
|
this.el = r.nativeElement;
|
|
2092
1909
|
}
|
|
2093
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2094
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1910
|
+
/** @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 });
|
|
1911
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, selector: "ion-refresher-content", inputs: { mode: "mode", pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2095
1912
|
};
|
|
2096
1913
|
IonRefresherContent = __decorate([
|
|
2097
1914
|
ProxyCmp({
|
|
2098
|
-
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
1915
|
+
inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme']
|
|
2099
1916
|
})
|
|
2100
1917
|
], IonRefresherContent);
|
|
2101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
2102
1919
|
type: Component,
|
|
2103
1920
|
args: [{
|
|
2104
1921
|
selector: 'ion-refresher-content',
|
|
2105
1922
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2106
1923
|
template: '<ng-content></ng-content>',
|
|
2107
1924
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2108
|
-
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText'],
|
|
2109
|
-
standalone: false
|
|
1925
|
+
inputs: ['mode', 'pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText', 'theme'],
|
|
2110
1926
|
}]
|
|
2111
|
-
}], ctorParameters: ()
|
|
1927
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2112
1928
|
let IonReorder = class IonReorder {
|
|
2113
1929
|
z;
|
|
2114
1930
|
el;
|
|
@@ -2117,64 +1933,52 @@ let IonReorder = class IonReorder {
|
|
|
2117
1933
|
c.detach();
|
|
2118
1934
|
this.el = r.nativeElement;
|
|
2119
1935
|
}
|
|
2120
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2121
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1936
|
+
/** @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 });
|
|
1937
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, selector: "ion-reorder", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2122
1938
|
};
|
|
2123
1939
|
IonReorder = __decorate([
|
|
2124
|
-
ProxyCmp({
|
|
1940
|
+
ProxyCmp({
|
|
1941
|
+
inputs: ['mode', 'theme']
|
|
1942
|
+
})
|
|
2125
1943
|
], IonReorder);
|
|
2126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
|
|
2127
1945
|
type: Component,
|
|
2128
1946
|
args: [{
|
|
2129
1947
|
selector: 'ion-reorder',
|
|
2130
1948
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2131
1949
|
template: '<ng-content></ng-content>',
|
|
2132
1950
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2133
|
-
inputs: [],
|
|
2134
|
-
standalone: false
|
|
1951
|
+
inputs: ['mode', 'theme'],
|
|
2135
1952
|
}]
|
|
2136
|
-
}], ctorParameters: ()
|
|
1953
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2137
1954
|
let IonReorderGroup = class IonReorderGroup {
|
|
2138
1955
|
z;
|
|
2139
1956
|
el;
|
|
2140
|
-
ionItemReorder = new EventEmitter();
|
|
2141
|
-
ionReorderStart = new EventEmitter();
|
|
2142
|
-
ionReorderMove = new EventEmitter();
|
|
2143
|
-
ionReorderEnd = new EventEmitter();
|
|
2144
1957
|
constructor(c, r, z) {
|
|
2145
1958
|
this.z = z;
|
|
2146
1959
|
c.detach();
|
|
2147
1960
|
this.el = r.nativeElement;
|
|
1961
|
+
proxyOutputs(this, this.el, ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd']);
|
|
2148
1962
|
}
|
|
2149
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2150
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1963
|
+
/** @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 });
|
|
1964
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, selector: "ion-reorder-group", inputs: { disabled: "disabled", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2151
1965
|
};
|
|
2152
1966
|
IonReorderGroup = __decorate([
|
|
2153
1967
|
ProxyCmp({
|
|
2154
|
-
inputs: ['disabled'],
|
|
1968
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
2155
1969
|
methods: ['complete']
|
|
2156
1970
|
})
|
|
2157
1971
|
], IonReorderGroup);
|
|
2158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
2159
1973
|
type: Component,
|
|
2160
1974
|
args: [{
|
|
2161
1975
|
selector: 'ion-reorder-group',
|
|
2162
1976
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2163
1977
|
template: '<ng-content></ng-content>',
|
|
2164
1978
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2165
|
-
inputs: ['disabled'],
|
|
2166
|
-
outputs: ['ionItemReorder', 'ionReorderStart', 'ionReorderMove', 'ionReorderEnd'],
|
|
2167
|
-
standalone: false
|
|
1979
|
+
inputs: ['disabled', 'mode', 'theme'],
|
|
2168
1980
|
}]
|
|
2169
|
-
}], ctorParameters: ()
|
|
2170
|
-
type: Output
|
|
2171
|
-
}], ionReorderStart: [{
|
|
2172
|
-
type: Output
|
|
2173
|
-
}], ionReorderMove: [{
|
|
2174
|
-
type: Output
|
|
2175
|
-
}], ionReorderEnd: [{
|
|
2176
|
-
type: Output
|
|
2177
|
-
}] } });
|
|
1981
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2178
1982
|
let IonRippleEffect = class IonRippleEffect {
|
|
2179
1983
|
z;
|
|
2180
1984
|
el;
|
|
@@ -2183,26 +1987,25 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
2183
1987
|
c.detach();
|
|
2184
1988
|
this.el = r.nativeElement;
|
|
2185
1989
|
}
|
|
2186
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2187
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1990
|
+
/** @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 });
|
|
1991
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, selector: "ion-ripple-effect", inputs: { mode: "mode", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2188
1992
|
};
|
|
2189
1993
|
IonRippleEffect = __decorate([
|
|
2190
1994
|
ProxyCmp({
|
|
2191
|
-
inputs: ['type'],
|
|
1995
|
+
inputs: ['mode', 'theme', 'type'],
|
|
2192
1996
|
methods: ['addRipple']
|
|
2193
1997
|
})
|
|
2194
1998
|
], IonRippleEffect);
|
|
2195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2196
2000
|
type: Component,
|
|
2197
2001
|
args: [{
|
|
2198
2002
|
selector: 'ion-ripple-effect',
|
|
2199
2003
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2200
2004
|
template: '<ng-content></ng-content>',
|
|
2201
2005
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2202
|
-
inputs: ['type'],
|
|
2203
|
-
standalone: false
|
|
2006
|
+
inputs: ['mode', 'theme', 'type'],
|
|
2204
2007
|
}]
|
|
2205
|
-
}], ctorParameters: ()
|
|
2008
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2206
2009
|
let IonRow = class IonRow {
|
|
2207
2010
|
z;
|
|
2208
2011
|
el;
|
|
@@ -2211,101 +2014,79 @@ let IonRow = class IonRow {
|
|
|
2211
2014
|
c.detach();
|
|
2212
2015
|
this.el = r.nativeElement;
|
|
2213
2016
|
}
|
|
2214
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2215
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2017
|
+
/** @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 });
|
|
2018
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, selector: "ion-row", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2216
2019
|
};
|
|
2217
2020
|
IonRow = __decorate([
|
|
2218
|
-
ProxyCmp({
|
|
2021
|
+
ProxyCmp({
|
|
2022
|
+
inputs: ['mode', 'theme']
|
|
2023
|
+
})
|
|
2219
2024
|
], IonRow);
|
|
2220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
|
|
2221
2026
|
type: Component,
|
|
2222
2027
|
args: [{
|
|
2223
2028
|
selector: 'ion-row',
|
|
2224
2029
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2225
2030
|
template: '<ng-content></ng-content>',
|
|
2226
2031
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2227
|
-
inputs: [],
|
|
2228
|
-
standalone: false
|
|
2032
|
+
inputs: ['mode', 'theme'],
|
|
2229
2033
|
}]
|
|
2230
|
-
}], ctorParameters: ()
|
|
2034
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2231
2035
|
let IonSearchbar = class IonSearchbar {
|
|
2232
2036
|
z;
|
|
2233
2037
|
el;
|
|
2234
|
-
ionInput = new EventEmitter();
|
|
2235
|
-
ionChange = new EventEmitter();
|
|
2236
|
-
ionCancel = new EventEmitter();
|
|
2237
|
-
ionClear = new EventEmitter();
|
|
2238
|
-
ionBlur = new EventEmitter();
|
|
2239
|
-
ionFocus = new EventEmitter();
|
|
2240
2038
|
constructor(c, r, z) {
|
|
2241
2039
|
this.z = z;
|
|
2242
2040
|
c.detach();
|
|
2243
2041
|
this.el = r.nativeElement;
|
|
2042
|
+
proxyOutputs(this, this.el, ['ionInput', 'ionChange', 'ionCancel', 'ionClear', 'ionBlur', 'ionFocus']);
|
|
2244
2043
|
}
|
|
2245
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2246
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2044
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2045
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSearchbar, selector: "ion-searchbar", inputs: { animated: "animated", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", shape: "shape", showCancelButton: "showCancelButton", showClearButton: "showClearButton", size: "size", spellcheck: "spellcheck", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2247
2046
|
};
|
|
2248
2047
|
IonSearchbar = __decorate([
|
|
2249
2048
|
ProxyCmp({
|
|
2250
|
-
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'showCancelButton', 'showClearButton', 'spellcheck', 'type', 'value'],
|
|
2049
|
+
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
|
|
2251
2050
|
methods: ['setFocus', 'getInputElement']
|
|
2252
2051
|
})
|
|
2253
2052
|
], IonSearchbar);
|
|
2254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
2255
2054
|
type: Component,
|
|
2256
2055
|
args: [{
|
|
2257
2056
|
selector: 'ion-searchbar',
|
|
2258
2057
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2259
2058
|
template: '<ng-content></ng-content>',
|
|
2260
2059
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2261
|
-
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'showCancelButton', 'showClearButton', 'spellcheck', 'type', 'value'],
|
|
2262
|
-
outputs: ['ionInput', 'ionChange', 'ionCancel', 'ionClear', 'ionBlur', 'ionFocus'],
|
|
2263
|
-
standalone: false
|
|
2060
|
+
inputs: ['animated', 'autocapitalize', 'autocomplete', 'autocorrect', 'cancelButtonIcon', 'cancelButtonText', 'clearIcon', 'color', 'debounce', 'disabled', 'enterkeyhint', 'inputmode', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'searchIcon', 'shape', 'showCancelButton', 'showClearButton', 'size', 'spellcheck', 'theme', 'type', 'value'],
|
|
2264
2061
|
}]
|
|
2265
|
-
}], ctorParameters: ()
|
|
2266
|
-
type: Output
|
|
2267
|
-
}], ionChange: [{
|
|
2268
|
-
type: Output
|
|
2269
|
-
}], ionCancel: [{
|
|
2270
|
-
type: Output
|
|
2271
|
-
}], ionClear: [{
|
|
2272
|
-
type: Output
|
|
2273
|
-
}], ionBlur: [{
|
|
2274
|
-
type: Output
|
|
2275
|
-
}], ionFocus: [{
|
|
2276
|
-
type: Output
|
|
2277
|
-
}] } });
|
|
2062
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2278
2063
|
let IonSegment = class IonSegment {
|
|
2279
2064
|
z;
|
|
2280
2065
|
el;
|
|
2281
|
-
ionChange = new EventEmitter();
|
|
2282
2066
|
constructor(c, r, z) {
|
|
2283
2067
|
this.z = z;
|
|
2284
2068
|
c.detach();
|
|
2285
2069
|
this.el = r.nativeElement;
|
|
2070
|
+
proxyOutputs(this, this.el, ['ionChange']);
|
|
2286
2071
|
}
|
|
2287
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2288
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2072
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2073
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegment, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2289
2074
|
};
|
|
2290
2075
|
IonSegment = __decorate([
|
|
2291
2076
|
ProxyCmp({
|
|
2292
|
-
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value']
|
|
2077
|
+
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value']
|
|
2293
2078
|
})
|
|
2294
2079
|
], IonSegment);
|
|
2295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2080
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegment, decorators: [{
|
|
2296
2081
|
type: Component,
|
|
2297
2082
|
args: [{
|
|
2298
2083
|
selector: 'ion-segment',
|
|
2299
2084
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2300
2085
|
template: '<ng-content></ng-content>',
|
|
2301
2086
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2302
|
-
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value'],
|
|
2303
|
-
outputs: ['ionChange'],
|
|
2304
|
-
standalone: false
|
|
2087
|
+
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'theme', 'value'],
|
|
2305
2088
|
}]
|
|
2306
|
-
}], ctorParameters: ()
|
|
2307
|
-
type: Output
|
|
2308
|
-
}] } });
|
|
2089
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2309
2090
|
let IonSegmentButton = class IonSegmentButton {
|
|
2310
2091
|
z;
|
|
2311
2092
|
el;
|
|
@@ -2314,25 +2095,24 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
2314
2095
|
c.detach();
|
|
2315
2096
|
this.el = r.nativeElement;
|
|
2316
2097
|
}
|
|
2317
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2318
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2098
|
+
/** @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 });
|
|
2099
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", theme: "theme", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2319
2100
|
};
|
|
2320
2101
|
IonSegmentButton = __decorate([
|
|
2321
2102
|
ProxyCmp({
|
|
2322
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2103
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value']
|
|
2323
2104
|
})
|
|
2324
2105
|
], IonSegmentButton);
|
|
2325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2326
2107
|
type: Component,
|
|
2327
2108
|
args: [{
|
|
2328
2109
|
selector: 'ion-segment-button',
|
|
2329
2110
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2330
2111
|
template: '<ng-content></ng-content>',
|
|
2331
2112
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2332
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value'],
|
|
2333
|
-
standalone: false
|
|
2113
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'theme', 'type', 'value'],
|
|
2334
2114
|
}]
|
|
2335
|
-
}], ctorParameters: ()
|
|
2115
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2336
2116
|
let IonSegmentContent = class IonSegmentContent {
|
|
2337
2117
|
z;
|
|
2338
2118
|
el;
|
|
@@ -2341,13 +2121,13 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2341
2121
|
c.detach();
|
|
2342
2122
|
this.el = r.nativeElement;
|
|
2343
2123
|
}
|
|
2344
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2345
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2124
|
+
/** @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 });
|
|
2125
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentContent, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2346
2126
|
};
|
|
2347
2127
|
IonSegmentContent = __decorate([
|
|
2348
2128
|
ProxyCmp({})
|
|
2349
2129
|
], IonSegmentContent);
|
|
2350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2351
2131
|
type: Component,
|
|
2352
2132
|
args: [{
|
|
2353
2133
|
selector: 'ion-segment-content',
|
|
@@ -2355,27 +2135,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2355
2135
|
template: '<ng-content></ng-content>',
|
|
2356
2136
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2357
2137
|
inputs: [],
|
|
2358
|
-
standalone: false
|
|
2359
2138
|
}]
|
|
2360
|
-
}], ctorParameters: ()
|
|
2139
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2361
2140
|
let IonSegmentView = class IonSegmentView {
|
|
2362
2141
|
z;
|
|
2363
2142
|
el;
|
|
2364
|
-
ionSegmentViewScroll = new EventEmitter();
|
|
2365
2143
|
constructor(c, r, z) {
|
|
2366
2144
|
this.z = z;
|
|
2367
2145
|
c.detach();
|
|
2368
2146
|
this.el = r.nativeElement;
|
|
2147
|
+
proxyOutputs(this, this.el, ['ionSegmentViewScroll']);
|
|
2369
2148
|
}
|
|
2370
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2371
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2149
|
+
/** @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 });
|
|
2150
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentView, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2372
2151
|
};
|
|
2373
2152
|
IonSegmentView = __decorate([
|
|
2374
2153
|
ProxyCmp({
|
|
2375
2154
|
inputs: ['disabled', 'swipeGesture']
|
|
2376
2155
|
})
|
|
2377
2156
|
], IonSegmentView);
|
|
2378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2379
2158
|
type: Component,
|
|
2380
2159
|
args: [{
|
|
2381
2160
|
selector: 'ion-segment-view',
|
|
@@ -2383,56 +2162,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2383
2162
|
template: '<ng-content></ng-content>',
|
|
2384
2163
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2385
2164
|
inputs: ['disabled', 'swipeGesture'],
|
|
2386
|
-
outputs: ['ionSegmentViewScroll'],
|
|
2387
|
-
standalone: false
|
|
2388
2165
|
}]
|
|
2389
|
-
}], ctorParameters: ()
|
|
2390
|
-
type: Output
|
|
2391
|
-
}] } });
|
|
2166
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2392
2167
|
let IonSelect = class IonSelect {
|
|
2393
2168
|
z;
|
|
2394
2169
|
el;
|
|
2395
|
-
ionChange = new EventEmitter();
|
|
2396
|
-
ionCancel = new EventEmitter();
|
|
2397
|
-
ionDismiss = new EventEmitter();
|
|
2398
|
-
ionFocus = new EventEmitter();
|
|
2399
|
-
ionBlur = new EventEmitter();
|
|
2400
2170
|
constructor(c, r, z) {
|
|
2401
2171
|
this.z = z;
|
|
2402
2172
|
c.detach();
|
|
2403
2173
|
this.el = r.nativeElement;
|
|
2174
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionCancel', 'ionDismiss', 'ionFocus', 'ionBlur']);
|
|
2404
2175
|
}
|
|
2405
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2406
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2176
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2177
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelect, selector: "ion-select", inputs: { cancelIcon: "cancelIcon", cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", required: "required", selectedText: "selectedText", shape: "shape", size: "size", theme: "theme", toggleIcon: "toggleIcon", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2407
2178
|
};
|
|
2408
2179
|
IonSelect = __decorate([
|
|
2409
2180
|
ProxyCmp({
|
|
2410
|
-
inputs: ['cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'toggleIcon', 'value'],
|
|
2181
|
+
inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
|
|
2411
2182
|
methods: ['open']
|
|
2412
2183
|
})
|
|
2413
2184
|
], IonSelect);
|
|
2414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelect, decorators: [{
|
|
2415
2186
|
type: Component,
|
|
2416
2187
|
args: [{
|
|
2417
2188
|
selector: 'ion-select',
|
|
2418
2189
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2419
2190
|
template: '<ng-content></ng-content>',
|
|
2420
2191
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2421
|
-
inputs: ['cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'toggleIcon', 'value'],
|
|
2422
|
-
outputs: ['ionChange', 'ionCancel', 'ionDismiss', 'ionFocus', 'ionBlur'],
|
|
2423
|
-
standalone: false
|
|
2192
|
+
inputs: ['cancelIcon', 'cancelText', 'color', 'compareWith', 'disabled', 'errorText', 'expandedIcon', 'fill', 'helperText', 'interface', 'interfaceOptions', 'justify', 'label', 'labelPlacement', 'mode', 'multiple', 'name', 'okText', 'placeholder', 'required', 'selectedText', 'shape', 'size', 'theme', 'toggleIcon', 'value'],
|
|
2424
2193
|
}]
|
|
2425
|
-
}], ctorParameters: ()
|
|
2426
|
-
type: Output
|
|
2427
|
-
}], ionCancel: [{
|
|
2428
|
-
type: Output
|
|
2429
|
-
}], ionDismiss: [{
|
|
2430
|
-
type: Output
|
|
2431
|
-
}], ionFocus: [{
|
|
2432
|
-
type: Output
|
|
2433
|
-
}], ionBlur: [{
|
|
2434
|
-
type: Output
|
|
2435
|
-
}] } });
|
|
2194
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2436
2195
|
let IonSelectModal = class IonSelectModal {
|
|
2437
2196
|
z;
|
|
2438
2197
|
el;
|
|
@@ -2441,25 +2200,24 @@ let IonSelectModal = class IonSelectModal {
|
|
|
2441
2200
|
c.detach();
|
|
2442
2201
|
this.el = r.nativeElement;
|
|
2443
2202
|
}
|
|
2444
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2445
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2203
|
+
/** @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 });
|
|
2204
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectModal, selector: "ion-select-modal", inputs: { cancelIcon: "cancelIcon", cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2446
2205
|
};
|
|
2447
2206
|
IonSelectModal = __decorate([
|
|
2448
2207
|
ProxyCmp({
|
|
2449
|
-
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2208
|
+
inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options']
|
|
2450
2209
|
})
|
|
2451
2210
|
], IonSelectModal);
|
|
2452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2453
2212
|
type: Component,
|
|
2454
2213
|
args: [{
|
|
2455
2214
|
selector: 'ion-select-modal',
|
|
2456
2215
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2457
2216
|
template: '<ng-content></ng-content>',
|
|
2458
2217
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2459
|
-
inputs: ['cancelText', 'header', 'multiple', 'options'],
|
|
2460
|
-
standalone: false
|
|
2218
|
+
inputs: ['cancelIcon', 'cancelText', 'header', 'multiple', 'options'],
|
|
2461
2219
|
}]
|
|
2462
|
-
}], ctorParameters: ()
|
|
2220
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2463
2221
|
let IonSelectOption = class IonSelectOption {
|
|
2464
2222
|
z;
|
|
2465
2223
|
el;
|
|
@@ -2468,25 +2226,24 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2468
2226
|
c.detach();
|
|
2469
2227
|
this.el = r.nativeElement;
|
|
2470
2228
|
}
|
|
2471
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2472
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2229
|
+
/** @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 });
|
|
2230
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, selector: "ion-select-option", inputs: { description: "description", disabled: "disabled", mode: "mode", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2473
2231
|
};
|
|
2474
2232
|
IonSelectOption = __decorate([
|
|
2475
2233
|
ProxyCmp({
|
|
2476
|
-
inputs: ['disabled', 'value']
|
|
2234
|
+
inputs: ['description', 'disabled', 'mode', 'theme', 'value']
|
|
2477
2235
|
})
|
|
2478
2236
|
], IonSelectOption);
|
|
2479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2480
2238
|
type: Component,
|
|
2481
2239
|
args: [{
|
|
2482
2240
|
selector: 'ion-select-option',
|
|
2483
2241
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2484
2242
|
template: '<ng-content></ng-content>',
|
|
2485
2243
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2486
|
-
inputs: ['disabled', 'value'],
|
|
2487
|
-
standalone: false
|
|
2244
|
+
inputs: ['description', 'disabled', 'mode', 'theme', 'value'],
|
|
2488
2245
|
}]
|
|
2489
|
-
}], ctorParameters: ()
|
|
2246
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2490
2247
|
let IonSkeletonText = class IonSkeletonText {
|
|
2491
2248
|
z;
|
|
2492
2249
|
el;
|
|
@@ -2495,25 +2252,24 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2495
2252
|
c.detach();
|
|
2496
2253
|
this.el = r.nativeElement;
|
|
2497
2254
|
}
|
|
2498
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2499
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2255
|
+
/** @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 });
|
|
2256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, selector: "ion-skeleton-text", inputs: { animated: "animated", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2500
2257
|
};
|
|
2501
2258
|
IonSkeletonText = __decorate([
|
|
2502
2259
|
ProxyCmp({
|
|
2503
|
-
inputs: ['animated']
|
|
2260
|
+
inputs: ['animated', 'mode', 'theme']
|
|
2504
2261
|
})
|
|
2505
2262
|
], IonSkeletonText);
|
|
2506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2507
2264
|
type: Component,
|
|
2508
2265
|
args: [{
|
|
2509
2266
|
selector: 'ion-skeleton-text',
|
|
2510
2267
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2511
2268
|
template: '<ng-content></ng-content>',
|
|
2512
2269
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2513
|
-
inputs: ['animated'],
|
|
2514
|
-
standalone: false
|
|
2270
|
+
inputs: ['animated', 'mode', 'theme'],
|
|
2515
2271
|
}]
|
|
2516
|
-
}], ctorParameters: ()
|
|
2272
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2517
2273
|
let IonSpinner = class IonSpinner {
|
|
2518
2274
|
z;
|
|
2519
2275
|
el;
|
|
@@ -2522,56 +2278,51 @@ let IonSpinner = class IonSpinner {
|
|
|
2522
2278
|
c.detach();
|
|
2523
2279
|
this.el = r.nativeElement;
|
|
2524
2280
|
}
|
|
2525
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2526
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2281
|
+
/** @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 });
|
|
2282
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, selector: "ion-spinner", inputs: { color: "color", duration: "duration", mode: "mode", name: "name", paused: "paused", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2527
2283
|
};
|
|
2528
2284
|
IonSpinner = __decorate([
|
|
2529
2285
|
ProxyCmp({
|
|
2530
|
-
inputs: ['color', 'duration', 'name', 'paused']
|
|
2286
|
+
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme']
|
|
2531
2287
|
})
|
|
2532
2288
|
], IonSpinner);
|
|
2533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2534
2290
|
type: Component,
|
|
2535
2291
|
args: [{
|
|
2536
2292
|
selector: 'ion-spinner',
|
|
2537
2293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2538
2294
|
template: '<ng-content></ng-content>',
|
|
2539
2295
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2540
|
-
inputs: ['color', 'duration', 'name', 'paused'],
|
|
2541
|
-
standalone: false
|
|
2296
|
+
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme'],
|
|
2542
2297
|
}]
|
|
2543
|
-
}], ctorParameters: ()
|
|
2298
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2544
2299
|
let IonSplitPane = class IonSplitPane {
|
|
2545
2300
|
z;
|
|
2546
2301
|
el;
|
|
2547
|
-
ionSplitPaneVisible = new EventEmitter();
|
|
2548
2302
|
constructor(c, r, z) {
|
|
2549
2303
|
this.z = z;
|
|
2550
2304
|
c.detach();
|
|
2551
2305
|
this.el = r.nativeElement;
|
|
2306
|
+
proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
|
|
2552
2307
|
}
|
|
2553
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2554
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2308
|
+
/** @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 });
|
|
2309
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", mode: "mode", theme: "theme", when: "when" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2555
2310
|
};
|
|
2556
2311
|
IonSplitPane = __decorate([
|
|
2557
2312
|
ProxyCmp({
|
|
2558
|
-
inputs: ['contentId', 'disabled', 'when']
|
|
2313
|
+
inputs: ['contentId', 'disabled', 'mode', 'theme', 'when']
|
|
2559
2314
|
})
|
|
2560
2315
|
], IonSplitPane);
|
|
2561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2562
2317
|
type: Component,
|
|
2563
2318
|
args: [{
|
|
2564
2319
|
selector: 'ion-split-pane',
|
|
2565
2320
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2566
2321
|
template: '<ng-content></ng-content>',
|
|
2567
2322
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2568
|
-
inputs: ['contentId', 'disabled', 'when'],
|
|
2569
|
-
outputs: ['ionSplitPaneVisible'],
|
|
2570
|
-
standalone: false
|
|
2323
|
+
inputs: ['contentId', 'disabled', 'mode', 'theme', 'when'],
|
|
2571
2324
|
}]
|
|
2572
|
-
}], ctorParameters: ()
|
|
2573
|
-
type: Output
|
|
2574
|
-
}] } });
|
|
2325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2575
2326
|
let IonTab = class IonTab {
|
|
2576
2327
|
z;
|
|
2577
2328
|
el;
|
|
@@ -2580,26 +2331,25 @@ let IonTab = class IonTab {
|
|
|
2580
2331
|
c.detach();
|
|
2581
2332
|
this.el = r.nativeElement;
|
|
2582
2333
|
}
|
|
2583
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2584
|
-
/** @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: IonTab, 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: IonTab, selector: "ion-tab", inputs: { component: "component", mode: "mode", tab: "tab", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2585
2336
|
};
|
|
2586
2337
|
IonTab = __decorate([
|
|
2587
2338
|
ProxyCmp({
|
|
2588
|
-
inputs: ['component', 'tab'],
|
|
2339
|
+
inputs: ['component', 'mode', 'tab', 'theme'],
|
|
2589
2340
|
methods: ['setActive']
|
|
2590
2341
|
})
|
|
2591
2342
|
], IonTab);
|
|
2592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, decorators: [{
|
|
2593
2344
|
type: Component,
|
|
2594
2345
|
args: [{
|
|
2595
2346
|
selector: 'ion-tab',
|
|
2596
2347
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2597
2348
|
template: '<ng-content></ng-content>',
|
|
2598
2349
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2599
|
-
inputs: ['component',
|
|
2600
|
-
standalone: false
|
|
2350
|
+
inputs: ['component', 'mode', 'tab', 'theme'],
|
|
2601
2351
|
}]
|
|
2602
|
-
}], ctorParameters: ()
|
|
2352
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2603
2353
|
let IonTabBar = class IonTabBar {
|
|
2604
2354
|
z;
|
|
2605
2355
|
el;
|
|
@@ -2608,25 +2358,24 @@ let IonTabBar = class IonTabBar {
|
|
|
2608
2358
|
c.detach();
|
|
2609
2359
|
this.el = r.nativeElement;
|
|
2610
2360
|
}
|
|
2611
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2612
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2361
|
+
/** @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 });
|
|
2362
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, selector: "ion-tab-bar", inputs: { color: "color", expand: "expand", hideOnScroll: "hideOnScroll", mode: "mode", selectedTab: "selectedTab", shape: "shape", theme: "theme", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2613
2363
|
};
|
|
2614
2364
|
IonTabBar = __decorate([
|
|
2615
2365
|
ProxyCmp({
|
|
2616
|
-
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2366
|
+
inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent']
|
|
2617
2367
|
})
|
|
2618
2368
|
], IonTabBar);
|
|
2619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2620
2370
|
type: Component,
|
|
2621
2371
|
args: [{
|
|
2622
2372
|
selector: 'ion-tab-bar',
|
|
2623
2373
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2624
2374
|
template: '<ng-content></ng-content>',
|
|
2625
2375
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2626
|
-
inputs: ['color', 'mode', 'selectedTab', 'translucent'],
|
|
2627
|
-
standalone: false
|
|
2376
|
+
inputs: ['color', 'expand', 'hideOnScroll', 'mode', 'selectedTab', 'shape', 'theme', 'translucent'],
|
|
2628
2377
|
}]
|
|
2629
|
-
}], ctorParameters: ()
|
|
2378
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2630
2379
|
let IonTabButton = class IonTabButton {
|
|
2631
2380
|
z;
|
|
2632
2381
|
el;
|
|
@@ -2635,25 +2384,24 @@ let IonTabButton = class IonTabButton {
|
|
|
2635
2384
|
c.detach();
|
|
2636
2385
|
this.el = r.nativeElement;
|
|
2637
2386
|
}
|
|
2638
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2639
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2387
|
+
/** @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 });
|
|
2388
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", shape: "shape", tab: "tab", target: "target", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2640
2389
|
};
|
|
2641
2390
|
IonTabButton = __decorate([
|
|
2642
2391
|
ProxyCmp({
|
|
2643
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2392
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme']
|
|
2644
2393
|
})
|
|
2645
2394
|
], IonTabButton);
|
|
2646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2647
2396
|
type: Component,
|
|
2648
2397
|
args: [{
|
|
2649
2398
|
selector: 'ion-tab-button',
|
|
2650
2399
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2651
2400
|
template: '<ng-content></ng-content>',
|
|
2652
2401
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2653
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target'],
|
|
2654
|
-
standalone: false
|
|
2402
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'shape', 'tab', 'target', 'theme'],
|
|
2655
2403
|
}]
|
|
2656
|
-
}], ctorParameters: ()
|
|
2404
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2657
2405
|
let IonText = class IonText {
|
|
2658
2406
|
z;
|
|
2659
2407
|
el;
|
|
@@ -2662,66 +2410,52 @@ let IonText = class IonText {
|
|
|
2662
2410
|
c.detach();
|
|
2663
2411
|
this.el = r.nativeElement;
|
|
2664
2412
|
}
|
|
2665
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2666
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2413
|
+
/** @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 });
|
|
2414
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, selector: "ion-text", inputs: { color: "color", mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2667
2415
|
};
|
|
2668
2416
|
IonText = __decorate([
|
|
2669
2417
|
ProxyCmp({
|
|
2670
|
-
inputs: ['color', 'mode']
|
|
2418
|
+
inputs: ['color', 'mode', 'theme']
|
|
2671
2419
|
})
|
|
2672
2420
|
], IonText);
|
|
2673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
|
|
2674
2422
|
type: Component,
|
|
2675
2423
|
args: [{
|
|
2676
2424
|
selector: 'ion-text',
|
|
2677
2425
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2678
2426
|
template: '<ng-content></ng-content>',
|
|
2679
2427
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2680
|
-
inputs: ['color', 'mode'],
|
|
2681
|
-
standalone: false
|
|
2428
|
+
inputs: ['color', 'mode', 'theme'],
|
|
2682
2429
|
}]
|
|
2683
|
-
}], ctorParameters: ()
|
|
2430
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2684
2431
|
let IonTextarea = class IonTextarea {
|
|
2685
2432
|
z;
|
|
2686
2433
|
el;
|
|
2687
|
-
ionChange = new EventEmitter();
|
|
2688
|
-
ionInput = new EventEmitter();
|
|
2689
|
-
ionBlur = new EventEmitter();
|
|
2690
|
-
ionFocus = new EventEmitter();
|
|
2691
2434
|
constructor(c, r, z) {
|
|
2692
2435
|
this.z = z;
|
|
2693
2436
|
c.detach();
|
|
2694
2437
|
this.el = r.nativeElement;
|
|
2438
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionInput', 'ionBlur', 'ionFocus']);
|
|
2695
2439
|
}
|
|
2696
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2697
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2440
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2441
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTextarea, 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", size: "size", spellcheck: "spellcheck", theme: "theme", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2698
2442
|
};
|
|
2699
2443
|
IonTextarea = __decorate([
|
|
2700
2444
|
ProxyCmp({
|
|
2701
|
-
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'spellcheck', 'value', 'wrap'],
|
|
2445
|
+
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
|
|
2702
2446
|
methods: ['setFocus', 'getInputElement']
|
|
2703
2447
|
})
|
|
2704
2448
|
], IonTextarea);
|
|
2705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTextarea, decorators: [{
|
|
2706
2450
|
type: Component,
|
|
2707
2451
|
args: [{
|
|
2708
2452
|
selector: 'ion-textarea',
|
|
2709
2453
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2710
2454
|
template: '<ng-content></ng-content>',
|
|
2711
2455
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2712
|
-
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'spellcheck', 'value', 'wrap'],
|
|
2713
|
-
outputs: ['ionChange', 'ionInput', 'ionBlur', 'ionFocus'],
|
|
2714
|
-
standalone: false
|
|
2456
|
+
inputs: ['autoGrow', 'autocapitalize', 'autofocus', 'clearOnEdit', 'color', 'cols', 'counter', 'counterFormatter', 'debounce', 'disabled', 'enterkeyhint', 'errorText', 'fill', 'helperText', 'inputmode', 'label', 'labelPlacement', 'maxlength', 'minlength', 'mode', 'name', 'placeholder', 'readonly', 'required', 'rows', 'shape', 'size', 'spellcheck', 'theme', 'value', 'wrap'],
|
|
2715
2457
|
}]
|
|
2716
|
-
}], ctorParameters: ()
|
|
2717
|
-
type: Output
|
|
2718
|
-
}], ionInput: [{
|
|
2719
|
-
type: Output
|
|
2720
|
-
}], ionBlur: [{
|
|
2721
|
-
type: Output
|
|
2722
|
-
}], ionFocus: [{
|
|
2723
|
-
type: Output
|
|
2724
|
-
}] } });
|
|
2458
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2725
2459
|
let IonThumbnail = class IonThumbnail {
|
|
2726
2460
|
z;
|
|
2727
2461
|
el;
|
|
@@ -2730,23 +2464,24 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2730
2464
|
c.detach();
|
|
2731
2465
|
this.el = r.nativeElement;
|
|
2732
2466
|
}
|
|
2733
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2734
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2467
|
+
/** @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 });
|
|
2468
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, selector: "ion-thumbnail", inputs: { mode: "mode", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2735
2469
|
};
|
|
2736
2470
|
IonThumbnail = __decorate([
|
|
2737
|
-
ProxyCmp({
|
|
2471
|
+
ProxyCmp({
|
|
2472
|
+
inputs: ['mode', 'theme']
|
|
2473
|
+
})
|
|
2738
2474
|
], IonThumbnail);
|
|
2739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2740
2476
|
type: Component,
|
|
2741
2477
|
args: [{
|
|
2742
2478
|
selector: 'ion-thumbnail',
|
|
2743
2479
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2744
2480
|
template: '<ng-content></ng-content>',
|
|
2745
2481
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2746
|
-
inputs: [],
|
|
2747
|
-
standalone: false
|
|
2482
|
+
inputs: ['mode', 'theme'],
|
|
2748
2483
|
}]
|
|
2749
|
-
}], ctorParameters: ()
|
|
2484
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2750
2485
|
let IonTitle = class IonTitle {
|
|
2751
2486
|
z;
|
|
2752
2487
|
el;
|
|
@@ -2755,115 +2490,79 @@ let IonTitle = class IonTitle {
|
|
|
2755
2490
|
c.detach();
|
|
2756
2491
|
this.el = r.nativeElement;
|
|
2757
2492
|
}
|
|
2758
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2759
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2493
|
+
/** @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 });
|
|
2494
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, selector: "ion-title", inputs: { color: "color", mode: "mode", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2760
2495
|
};
|
|
2761
2496
|
IonTitle = __decorate([
|
|
2762
2497
|
ProxyCmp({
|
|
2763
|
-
inputs: ['color', 'size']
|
|
2498
|
+
inputs: ['color', 'mode', 'size', 'theme']
|
|
2764
2499
|
})
|
|
2765
2500
|
], IonTitle);
|
|
2766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
|
|
2767
2502
|
type: Component,
|
|
2768
2503
|
args: [{
|
|
2769
2504
|
selector: 'ion-title',
|
|
2770
2505
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2771
2506
|
template: '<ng-content></ng-content>',
|
|
2772
2507
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2773
|
-
inputs: ['color', 'size'],
|
|
2774
|
-
standalone: false
|
|
2508
|
+
inputs: ['color', 'mode', 'size', 'theme'],
|
|
2775
2509
|
}]
|
|
2776
|
-
}], ctorParameters: ()
|
|
2510
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2777
2511
|
let IonToast = class IonToast {
|
|
2778
2512
|
z;
|
|
2779
2513
|
el;
|
|
2780
|
-
ionToastDidPresent = new EventEmitter();
|
|
2781
|
-
ionToastWillPresent = new EventEmitter();
|
|
2782
|
-
ionToastWillDismiss = new EventEmitter();
|
|
2783
|
-
ionToastDidDismiss = new EventEmitter();
|
|
2784
|
-
didPresent = new EventEmitter();
|
|
2785
|
-
willPresent = new EventEmitter();
|
|
2786
|
-
willDismiss = new EventEmitter();
|
|
2787
|
-
didDismiss = new EventEmitter();
|
|
2788
2514
|
constructor(c, r, z) {
|
|
2789
2515
|
this.z = z;
|
|
2790
2516
|
c.detach();
|
|
2791
2517
|
this.el = r.nativeElement;
|
|
2518
|
+
proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
2792
2519
|
}
|
|
2793
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2794
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2520
|
+
/** @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 });
|
|
2521
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", hue: "hue", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", shape: "shape", swipeGesture: "swipeGesture", theme: "theme", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2795
2522
|
};
|
|
2796
2523
|
IonToast = __decorate([
|
|
2797
2524
|
ProxyCmp({
|
|
2798
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2525
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
|
|
2799
2526
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2800
2527
|
})
|
|
2801
2528
|
], IonToast);
|
|
2802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, decorators: [{
|
|
2803
2530
|
type: Component,
|
|
2804
2531
|
args: [{
|
|
2805
2532
|
selector: 'ion-toast',
|
|
2806
2533
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2807
2534
|
template: '<ng-content></ng-content>',
|
|
2808
2535
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2809
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
}]
|
|
2813
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionToastDidPresent: [{
|
|
2814
|
-
type: Output
|
|
2815
|
-
}], ionToastWillPresent: [{
|
|
2816
|
-
type: Output
|
|
2817
|
-
}], ionToastWillDismiss: [{
|
|
2818
|
-
type: Output
|
|
2819
|
-
}], ionToastDidDismiss: [{
|
|
2820
|
-
type: Output
|
|
2821
|
-
}], didPresent: [{
|
|
2822
|
-
type: Output
|
|
2823
|
-
}], willPresent: [{
|
|
2824
|
-
type: Output
|
|
2825
|
-
}], willDismiss: [{
|
|
2826
|
-
type: Output
|
|
2827
|
-
}], didDismiss: [{
|
|
2828
|
-
type: Output
|
|
2829
|
-
}] } });
|
|
2536
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'hue', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'shape', 'swipeGesture', 'theme', 'translucent', 'trigger'],
|
|
2537
|
+
}]
|
|
2538
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2830
2539
|
let IonToggle = class IonToggle {
|
|
2831
2540
|
z;
|
|
2832
2541
|
el;
|
|
2833
|
-
ionChange = new EventEmitter();
|
|
2834
|
-
ionFocus = new EventEmitter();
|
|
2835
|
-
ionBlur = new EventEmitter();
|
|
2836
2542
|
constructor(c, r, z) {
|
|
2837
2543
|
this.z = z;
|
|
2838
2544
|
c.detach();
|
|
2839
2545
|
this.el = r.nativeElement;
|
|
2546
|
+
proxyOutputs(this, this.el, ['ionChange', 'ionFocus', 'ionBlur']);
|
|
2840
2547
|
}
|
|
2841
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2842
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2548
|
+
/** @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 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2549
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, selector: "ion-toggle", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2843
2550
|
};
|
|
2844
2551
|
IonToggle = __decorate([
|
|
2845
2552
|
ProxyCmp({
|
|
2846
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
2553
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value']
|
|
2847
2554
|
})
|
|
2848
2555
|
], IonToggle);
|
|
2849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, decorators: [{
|
|
2850
2557
|
type: Component,
|
|
2851
2558
|
args: [{
|
|
2852
2559
|
selector: 'ion-toggle',
|
|
2853
2560
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2854
2561
|
template: '<ng-content></ng-content>',
|
|
2855
2562
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2856
|
-
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value'],
|
|
2857
|
-
outputs: ['ionChange', 'ionFocus', 'ionBlur'],
|
|
2858
|
-
standalone: false
|
|
2563
|
+
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'theme', 'value'],
|
|
2859
2564
|
}]
|
|
2860
|
-
}], ctorParameters: ()
|
|
2861
|
-
type: Output
|
|
2862
|
-
}], ionFocus: [{
|
|
2863
|
-
type: Output
|
|
2864
|
-
}], ionBlur: [{
|
|
2865
|
-
type: Output
|
|
2866
|
-
}] } });
|
|
2565
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2867
2566
|
let IonToolbar = class IonToolbar {
|
|
2868
2567
|
z;
|
|
2869
2568
|
el;
|
|
@@ -2872,27 +2571,25 @@ let IonToolbar = class IonToolbar {
|
|
|
2872
2571
|
c.detach();
|
|
2873
2572
|
this.el = r.nativeElement;
|
|
2874
2573
|
}
|
|
2875
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2876
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2574
|
+
/** @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 });
|
|
2575
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, selector: "ion-toolbar", inputs: { color: "color", mode: "mode", theme: "theme", titlePlacement: "titlePlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2877
2576
|
};
|
|
2878
2577
|
IonToolbar = __decorate([
|
|
2879
2578
|
ProxyCmp({
|
|
2880
|
-
inputs: ['color', 'mode']
|
|
2579
|
+
inputs: ['color', 'mode', 'theme', 'titlePlacement']
|
|
2881
2580
|
})
|
|
2882
2581
|
], IonToolbar);
|
|
2883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2884
2583
|
type: Component,
|
|
2885
2584
|
args: [{
|
|
2886
2585
|
selector: 'ion-toolbar',
|
|
2887
2586
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2888
2587
|
template: '<ng-content></ng-content>',
|
|
2889
2588
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2890
|
-
inputs: ['color', 'mode'],
|
|
2891
|
-
standalone: false
|
|
2589
|
+
inputs: ['color', 'mode', 'theme', 'titlePlacement'],
|
|
2892
2590
|
}]
|
|
2893
|
-
}], ctorParameters: ()
|
|
2591
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2894
2592
|
|
|
2895
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
2896
2593
|
class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
2897
2594
|
parentOutlet;
|
|
2898
2595
|
/**
|
|
@@ -2913,17 +2610,16 @@ class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
|
2913
2610
|
super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
|
|
2914
2611
|
this.parentOutlet = parentOutlet;
|
|
2915
2612
|
}
|
|
2916
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2917
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2613
|
+
/** @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 });
|
|
2614
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRouterOutlet, 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 });
|
|
2918
2615
|
}
|
|
2919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRouterOutlet, decorators: [{
|
|
2920
2617
|
type: Component,
|
|
2921
2618
|
args: [{
|
|
2922
|
-
standalone: false,
|
|
2923
2619
|
selector: 'ion-router-outlet',
|
|
2924
2620
|
template: '<ng-container #outletContent><ng-content></ng-content></ng-container>',
|
|
2925
2621
|
}]
|
|
2926
|
-
}], ctorParameters: ()
|
|
2622
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
2927
2623
|
type: Attribute,
|
|
2928
2624
|
args: ['name']
|
|
2929
2625
|
}] }, { type: undefined, decorators: [{
|
|
@@ -2935,19 +2631,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2935
2631
|
type: SkipSelf
|
|
2936
2632
|
}, {
|
|
2937
2633
|
type: Optional
|
|
2938
|
-
}] }], propDecorators: { outletContent: [{
|
|
2634
|
+
}] }]; }, propDecorators: { outletContent: [{
|
|
2939
2635
|
type: ViewChild,
|
|
2940
2636
|
args: ['outletContent', { read: ViewContainerRef, static: true }]
|
|
2941
2637
|
}] } });
|
|
2942
2638
|
|
|
2943
|
-
// eslint-disable-next-line @angular-eslint/component-class-suffix
|
|
2944
2639
|
class IonTabs extends IonTabs$1 {
|
|
2945
2640
|
outlet;
|
|
2946
2641
|
tabBar;
|
|
2947
2642
|
tabBars;
|
|
2948
2643
|
tabs;
|
|
2949
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2950
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2644
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2645
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabs, 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: `
|
|
2951
2646
|
<ng-content select="[slot=top]"></ng-content>
|
|
2952
2647
|
<div class="tabs-inner" #tabsInner>
|
|
2953
2648
|
<ion-router-outlet
|
|
@@ -2962,9 +2657,9 @@ class IonTabs extends IonTabs$1 {
|
|
|
2962
2657
|
<ng-content></ng-content>
|
|
2963
2658
|
`, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }] });
|
|
2964
2659
|
}
|
|
2965
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabs, decorators: [{
|
|
2966
2661
|
type: Component,
|
|
2967
|
-
args: [{
|
|
2662
|
+
args: [{ selector: 'ion-tabs', template: `
|
|
2968
2663
|
<ng-content select="[slot=top]"></ng-content>
|
|
2969
2664
|
<div class="tabs-inner" #tabsInner>
|
|
2970
2665
|
<ion-router-outlet
|
|
@@ -2992,43 +2687,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2992
2687
|
args: [IonTab]
|
|
2993
2688
|
}] } });
|
|
2994
2689
|
|
|
2995
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
2996
2690
|
class IonBackButton extends IonBackButton$1 {
|
|
2997
2691
|
constructor(routerOutlet, navCtrl, config, r, z, c) {
|
|
2998
2692
|
super(routerOutlet, navCtrl, config, r, z, c);
|
|
2999
2693
|
}
|
|
3000
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3001
|
-
/** @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: 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 });
|
|
2695
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackButton, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3002
2696
|
}
|
|
3003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackButton, decorators: [{
|
|
3004
2698
|
type: Component,
|
|
3005
2699
|
args: [{
|
|
3006
|
-
standalone: false,
|
|
3007
2700
|
selector: 'ion-back-button',
|
|
3008
2701
|
template: '<ng-content></ng-content>',
|
|
3009
2702
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3010
2703
|
}]
|
|
3011
|
-
}], ctorParameters: ()
|
|
2704
|
+
}], ctorParameters: function () { return [{ type: IonRouterOutlet, decorators: [{
|
|
3012
2705
|
type: Optional
|
|
3013
|
-
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
2706
|
+
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
3014
2707
|
|
|
3015
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3016
2708
|
class IonNav extends IonNav$1 {
|
|
3017
2709
|
constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
|
|
3018
2710
|
super(ref, environmentInjector, injector, angularDelegate, z, c);
|
|
3019
2711
|
}
|
|
3020
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3021
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2712
|
+
/** @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 });
|
|
2713
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNav, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3022
2714
|
}
|
|
3023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNav, decorators: [{
|
|
3024
2716
|
type: Component,
|
|
3025
2717
|
args: [{
|
|
3026
|
-
standalone: false,
|
|
3027
2718
|
selector: 'ion-nav',
|
|
3028
2719
|
template: '<ng-content></ng-content>',
|
|
3029
2720
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3030
2721
|
}]
|
|
3031
|
-
}], ctorParameters: ()
|
|
2722
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.EnvironmentInjector }, { type: i0.Injector }, { type: i2$1.AngularDelegate }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }]; } });
|
|
3032
2723
|
|
|
3033
2724
|
/**
|
|
3034
2725
|
* Adds support for Ionic routing directions and animations to the base Angular router link directive.
|
|
@@ -3037,38 +2728,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3037
2728
|
* animation so that the routing integration will transition correctly.
|
|
3038
2729
|
*/
|
|
3039
2730
|
class RouterLinkDelegateDirective extends RouterLinkDelegateDirective$1 {
|
|
3040
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3041
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2731
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2732
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkDelegateDirective, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3042
2733
|
}
|
|
3043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
|
|
3044
2735
|
type: Directive,
|
|
3045
2736
|
args: [{
|
|
3046
|
-
standalone: false,
|
|
3047
2737
|
selector: ':not(a):not(area)[routerLink]',
|
|
3048
2738
|
}]
|
|
3049
2739
|
}] });
|
|
3050
2740
|
class RouterLinkWithHrefDelegateDirective extends RouterLinkWithHrefDelegateDirective$1 {
|
|
3051
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3052
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2741
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2742
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: RouterLinkWithHrefDelegateDirective, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3053
2743
|
}
|
|
3054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
|
|
3055
2745
|
type: Directive,
|
|
3056
2746
|
args: [{
|
|
3057
|
-
standalone: false,
|
|
3058
2747
|
selector: 'a[routerLink],area[routerLink]',
|
|
3059
2748
|
}]
|
|
3060
2749
|
}] });
|
|
3061
2750
|
|
|
3062
2751
|
class IonModal extends IonModal$1 {
|
|
3063
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3064
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2752
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2753
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
3065
2754
|
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
3066
2755
|
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3067
2756
|
}
|
|
3068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, decorators: [{
|
|
3069
2758
|
type: Component,
|
|
3070
2759
|
args: [{
|
|
3071
|
-
standalone: false,
|
|
3072
2760
|
selector: 'ion-modal',
|
|
3073
2761
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3074
2762
|
template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
@@ -3078,13 +2766,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3078
2766
|
}] });
|
|
3079
2767
|
|
|
3080
2768
|
class IonPopover extends IonPopover$1 {
|
|
3081
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3082
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2769
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2770
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPopover, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3083
2771
|
}
|
|
3084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPopover, decorators: [{
|
|
3085
2773
|
type: Component,
|
|
3086
2774
|
args: [{
|
|
3087
|
-
standalone: false,
|
|
3088
2775
|
selector: 'ion-popover',
|
|
3089
2776
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3090
2777
|
template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`,
|
|
@@ -3100,18 +2787,17 @@ const ION_MAX_VALIDATOR = {
|
|
|
3100
2787
|
useExisting: forwardRef(() => IonMaxValidator),
|
|
3101
2788
|
multi: true,
|
|
3102
2789
|
};
|
|
3103
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3104
2790
|
class IonMaxValidator extends MaxValidator {
|
|
3105
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3106
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2791
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2792
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMaxValidator, selector: "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", host: { properties: { "attr.max": "_enabled ? max : null" } }, providers: [ION_MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3107
2793
|
}
|
|
3108
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMaxValidator, decorators: [{
|
|
3109
2795
|
type: Directive,
|
|
3110
2796
|
args: [{
|
|
3111
|
-
standalone: false,
|
|
3112
2797
|
selector: 'ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]',
|
|
3113
2798
|
providers: [ION_MAX_VALIDATOR],
|
|
3114
|
-
|
|
2799
|
+
// eslint-disable-next-line @angular-eslint/no-host-metadata-property
|
|
2800
|
+
host: { '[attr.max]': '_enabled ? max : null' },
|
|
3115
2801
|
}]
|
|
3116
2802
|
}] });
|
|
3117
2803
|
|
|
@@ -3124,18 +2810,17 @@ const ION_MIN_VALIDATOR = {
|
|
|
3124
2810
|
useExisting: forwardRef(() => IonMinValidator),
|
|
3125
2811
|
multi: true,
|
|
3126
2812
|
};
|
|
3127
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3128
2813
|
class IonMinValidator extends MinValidator {
|
|
3129
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3130
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2814
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2815
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonMinValidator, selector: "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", host: { properties: { "attr.min": "_enabled ? min : null" } }, providers: [ION_MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3131
2816
|
}
|
|
3132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMinValidator, decorators: [{
|
|
3133
2818
|
type: Directive,
|
|
3134
2819
|
args: [{
|
|
3135
|
-
standalone: false,
|
|
3136
2820
|
selector: 'ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]',
|
|
3137
2821
|
providers: [ION_MIN_VALIDATOR],
|
|
3138
|
-
|
|
2822
|
+
// eslint-disable-next-line @angular-eslint/no-host-metadata-property
|
|
2823
|
+
host: { '[attr.min]': '_enabled ? min : null' },
|
|
3139
2824
|
}]
|
|
3140
2825
|
}] });
|
|
3141
2826
|
|
|
@@ -3143,15 +2828,15 @@ class AlertController extends OverlayBaseController {
|
|
|
3143
2828
|
constructor() {
|
|
3144
2829
|
super(alertController);
|
|
3145
2830
|
}
|
|
3146
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3147
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2831
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2832
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
3148
2833
|
}
|
|
3149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AlertController, decorators: [{
|
|
3150
2835
|
type: Injectable,
|
|
3151
2836
|
args: [{
|
|
3152
2837
|
providedIn: 'root',
|
|
3153
2838
|
}]
|
|
3154
|
-
}], ctorParameters: ()
|
|
2839
|
+
}], ctorParameters: function () { return []; } });
|
|
3155
2840
|
|
|
3156
2841
|
class AnimationController {
|
|
3157
2842
|
/**
|
|
@@ -3177,10 +2862,10 @@ class AnimationController {
|
|
|
3177
2862
|
easingTime(p0, p1, p2, p3, progression) {
|
|
3178
2863
|
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
3179
2864
|
}
|
|
3180
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3181
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2865
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2866
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
3182
2867
|
}
|
|
3183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AnimationController, decorators: [{
|
|
3184
2869
|
type: Injectable,
|
|
3185
2870
|
args: [{
|
|
3186
2871
|
providedIn: 'root',
|
|
@@ -3191,15 +2876,15 @@ class ActionSheetController extends OverlayBaseController {
|
|
|
3191
2876
|
constructor() {
|
|
3192
2877
|
super(actionSheetController);
|
|
3193
2878
|
}
|
|
3194
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3195
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2879
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2880
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
3196
2881
|
}
|
|
3197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
3198
2883
|
type: Injectable,
|
|
3199
2884
|
args: [{
|
|
3200
2885
|
providedIn: 'root',
|
|
3201
2886
|
}]
|
|
3202
|
-
}], ctorParameters: ()
|
|
2887
|
+
}], ctorParameters: function () { return []; } });
|
|
3203
2888
|
|
|
3204
2889
|
class GestureController {
|
|
3205
2890
|
zone;
|
|
@@ -3220,43 +2905,43 @@ class GestureController {
|
|
|
3220
2905
|
}
|
|
3221
2906
|
return createGesture(opts);
|
|
3222
2907
|
}
|
|
3223
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3224
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2908
|
+
/** @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 });
|
|
2909
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
3225
2910
|
}
|
|
3226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GestureController, decorators: [{
|
|
3227
2912
|
type: Injectable,
|
|
3228
2913
|
args: [{
|
|
3229
2914
|
providedIn: 'root',
|
|
3230
2915
|
}]
|
|
3231
|
-
}], ctorParameters: ()
|
|
2916
|
+
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
3232
2917
|
|
|
3233
2918
|
class LoadingController extends OverlayBaseController {
|
|
3234
2919
|
constructor() {
|
|
3235
2920
|
super(loadingController);
|
|
3236
2921
|
}
|
|
3237
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3238
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2922
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2923
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
3239
2924
|
}
|
|
3240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2925
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LoadingController, decorators: [{
|
|
3241
2926
|
type: Injectable,
|
|
3242
2927
|
args: [{
|
|
3243
2928
|
providedIn: 'root',
|
|
3244
2929
|
}]
|
|
3245
|
-
}], ctorParameters: ()
|
|
2930
|
+
}], ctorParameters: function () { return []; } });
|
|
3246
2931
|
|
|
3247
2932
|
class MenuController extends MenuController$1 {
|
|
3248
2933
|
constructor() {
|
|
3249
2934
|
super(menuController);
|
|
3250
2935
|
}
|
|
3251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3252
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2936
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2937
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
3253
2938
|
}
|
|
3254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MenuController, decorators: [{
|
|
3255
2940
|
type: Injectable,
|
|
3256
2941
|
args: [{
|
|
3257
2942
|
providedIn: 'root',
|
|
3258
2943
|
}]
|
|
3259
|
-
}], ctorParameters: ()
|
|
2944
|
+
}], ctorParameters: function () { return []; } });
|
|
3260
2945
|
|
|
3261
2946
|
class ModalController extends OverlayBaseController {
|
|
3262
2947
|
angularDelegate = inject(AngularDelegate);
|
|
@@ -3272,12 +2957,29 @@ class ModalController extends OverlayBaseController {
|
|
|
3272
2957
|
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
3273
2958
|
});
|
|
3274
2959
|
}
|
|
3275
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3276
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2960
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2961
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController });
|
|
3277
2962
|
}
|
|
3278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, decorators: [{
|
|
3279
2964
|
type: Injectable
|
|
3280
|
-
}], ctorParameters: ()
|
|
2965
|
+
}], ctorParameters: function () { return []; } });
|
|
2966
|
+
|
|
2967
|
+
/**
|
|
2968
|
+
* @deprecated Use the inline ion-picker component instead.
|
|
2969
|
+
*/
|
|
2970
|
+
class PickerController extends OverlayBaseController {
|
|
2971
|
+
constructor() {
|
|
2972
|
+
super(pickerController);
|
|
2973
|
+
}
|
|
2974
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2975
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, providedIn: 'root' });
|
|
2976
|
+
}
|
|
2977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PickerController, decorators: [{
|
|
2978
|
+
type: Injectable,
|
|
2979
|
+
args: [{
|
|
2980
|
+
providedIn: 'root',
|
|
2981
|
+
}]
|
|
2982
|
+
}], ctorParameters: function () { return []; } });
|
|
3281
2983
|
|
|
3282
2984
|
class PopoverController extends OverlayBaseController {
|
|
3283
2985
|
angularDelegate = inject(AngularDelegate);
|
|
@@ -3299,15 +3001,15 @@ class ToastController extends OverlayBaseController {
|
|
|
3299
3001
|
constructor() {
|
|
3300
3002
|
super(toastController);
|
|
3301
3003
|
}
|
|
3302
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3303
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3004
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3005
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
3304
3006
|
}
|
|
3305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3007
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToastController, decorators: [{
|
|
3306
3008
|
type: Injectable,
|
|
3307
3009
|
args: [{
|
|
3308
3010
|
providedIn: 'root',
|
|
3309
3011
|
}]
|
|
3310
|
-
}], ctorParameters: ()
|
|
3012
|
+
}], ctorParameters: function () { return []; } });
|
|
3311
3013
|
|
|
3312
3014
|
// TODO(FW-2827): types
|
|
3313
3015
|
const appInitialize = (config, doc, zone) => {
|
|
@@ -3359,10 +3061,13 @@ const DIRECTIVES = [
|
|
|
3359
3061
|
IonContent,
|
|
3360
3062
|
IonDatetime,
|
|
3361
3063
|
IonDatetimeButton,
|
|
3064
|
+
IonDivider,
|
|
3362
3065
|
IonFab,
|
|
3363
3066
|
IonFabButton,
|
|
3364
3067
|
IonFabList,
|
|
3365
3068
|
IonFooter,
|
|
3069
|
+
IonGallery,
|
|
3070
|
+
IonGalleryItem,
|
|
3366
3071
|
IonGrid,
|
|
3367
3072
|
IonHeader,
|
|
3368
3073
|
IonIcon,
|
|
@@ -3390,6 +3095,7 @@ const DIRECTIVES = [
|
|
|
3390
3095
|
IonPicker,
|
|
3391
3096
|
IonPickerColumn,
|
|
3392
3097
|
IonPickerColumnOption,
|
|
3098
|
+
IonPickerLegacy,
|
|
3393
3099
|
IonProgressBar,
|
|
3394
3100
|
IonRadio,
|
|
3395
3101
|
IonRadioGroup,
|
|
@@ -3465,8 +3171,8 @@ class IonicModule {
|
|
|
3465
3171
|
],
|
|
3466
3172
|
};
|
|
3467
3173
|
}
|
|
3468
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3469
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3174
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3175
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, declarations: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3470
3176
|
// manual proxies
|
|
3471
3177
|
IonModal,
|
|
3472
3178
|
IonPopover,
|
|
@@ -3484,7 +3190,7 @@ class IonicModule {
|
|
|
3484
3190
|
RouterLinkWithHrefDelegateDirective,
|
|
3485
3191
|
// validators
|
|
3486
3192
|
IonMinValidator,
|
|
3487
|
-
IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3193
|
+
IonMaxValidator], imports: [CommonModule], exports: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3488
3194
|
// manual proxies
|
|
3489
3195
|
IonModal,
|
|
3490
3196
|
IonPopover,
|
|
@@ -3503,9 +3209,9 @@ class IonicModule {
|
|
|
3503
3209
|
// validators
|
|
3504
3210
|
IonMinValidator,
|
|
3505
3211
|
IonMaxValidator] });
|
|
3506
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3212
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
|
|
3507
3213
|
}
|
|
3508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonicModule, decorators: [{
|
|
3509
3215
|
type: NgModule,
|
|
3510
3216
|
args: [{
|
|
3511
3217
|
declarations: DECLARATIONS,
|
|
@@ -3521,5 +3227,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3521
3227
|
* Generated bundle index. Do not edit.
|
|
3522
3228
|
*/
|
|
3523
3229
|
|
|
3524
|
-
export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
|
|
3230
|
+
export { ActionSheetController, AlertController, AnimationController, BooleanValueAccessorDirective as BooleanValueAccessor, GestureController, ION_MAX_VALIDATOR, ION_MIN_VALIDATOR, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonDivider, IonFab, IonFabButton, IonFabList, IonFooter, IonGallery, IonGalleryItem, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMaxValidator, IonMenu, IonMenuButton, IonMenuToggle, IonMinValidator, IonModal, IonNav, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, IonicModule, LoadingController, MenuController, ModalController, NumericValueAccessorDirective as NumericValueAccessor, PickerController, PopoverController, RouterLinkDelegateDirective as RouterLinkDelegate, RouterLinkWithHrefDelegateDirective as RouterLinkWithHrefDelegate, SelectValueAccessorDirective as SelectValueAccessor, TextValueAccessorDirective as TextValueAccessor, ToastController };
|
|
3525
3231
|
//# sourceMappingURL=ionic-angular.mjs.map
|