@ionic/angular 8.8.9-dev.11781013468.1ed93da9 → 8.8.9-dev.11781098612.122c6758
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/fesm2022/ionic-angular-common.mjs +58 -56
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +303 -306
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +353 -339
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/add/index.js +1 -1
- package/schematics/utils/ast.js +34 -1
- package/schematics/utils/package.js +4 -0
- package/types/ionic-angular-common.d.ts +8 -0
- package/types/ionic-angular.d.ts +4 -4
|
@@ -21,11 +21,16 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
21
21
|
this.elementRef.nativeElement.checked = this.lastValue = value;
|
|
22
22
|
setIonicClasses(this.elementRef);
|
|
23
23
|
}
|
|
24
|
-
|
|
24
|
+
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
25
|
+
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
26
|
+
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
27
|
+
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
28
|
+
_handleIonChange(ev) {
|
|
29
|
+
const el = ev.target;
|
|
25
30
|
this.handleValueChange(el, el.checked);
|
|
26
31
|
}
|
|
27
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
28
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
32
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: BooleanValueAccessorDirective, isStandalone: false, selector: "ion-checkbox,ion-toggle", host: { listeners: { "ionChange": "_handleIonChange($event)" } }, providers: [
|
|
29
34
|
{
|
|
30
35
|
provide: NG_VALUE_ACCESSOR,
|
|
31
36
|
useExisting: BooleanValueAccessorDirective,
|
|
@@ -33,7 +38,7 @@ class BooleanValueAccessorDirective extends ValueAccessor {
|
|
|
33
38
|
},
|
|
34
39
|
], usesInheritance: true, ngImport: i0 });
|
|
35
40
|
}
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
|
|
37
42
|
type: Directive,
|
|
38
43
|
args: [{
|
|
39
44
|
standalone: false,
|
|
@@ -48,7 +53,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
48
53
|
}]
|
|
49
54
|
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleIonChange: [{
|
|
50
55
|
type: HostListener,
|
|
51
|
-
args: ['ionChange', ['$event
|
|
56
|
+
args: ['ionChange', ['$event']]
|
|
52
57
|
}] } });
|
|
53
58
|
|
|
54
59
|
class NumericValueAccessorDirective extends ValueAccessor {
|
|
@@ -57,7 +62,12 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
57
62
|
super(injector, el);
|
|
58
63
|
this.el = el;
|
|
59
64
|
}
|
|
60
|
-
|
|
65
|
+
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
66
|
+
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
67
|
+
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
68
|
+
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
69
|
+
handleInputEvent(ev) {
|
|
70
|
+
const el = ev.target;
|
|
61
71
|
this.handleValueChange(el, el.value);
|
|
62
72
|
}
|
|
63
73
|
registerOnChange(fn) {
|
|
@@ -70,8 +80,8 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
70
80
|
super.registerOnChange(fn);
|
|
71
81
|
}
|
|
72
82
|
}
|
|
73
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
74
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
83
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NumericValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
84
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: NumericValueAccessorDirective, isStandalone: false, selector: "ion-input[type=number],ion-input-otp:not([type=text]),ion-range", host: { listeners: { "ionInput": "handleInputEvent($event)" } }, providers: [
|
|
75
85
|
{
|
|
76
86
|
provide: NG_VALUE_ACCESSOR,
|
|
77
87
|
useExisting: NumericValueAccessorDirective,
|
|
@@ -79,7 +89,7 @@ class NumericValueAccessorDirective extends ValueAccessor {
|
|
|
79
89
|
},
|
|
80
90
|
], usesInheritance: true, ngImport: i0 });
|
|
81
91
|
}
|
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: NumericValueAccessorDirective, decorators: [{
|
|
83
93
|
type: Directive,
|
|
84
94
|
args: [{
|
|
85
95
|
standalone: false,
|
|
@@ -94,18 +104,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
94
104
|
}]
|
|
95
105
|
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { handleInputEvent: [{
|
|
96
106
|
type: HostListener,
|
|
97
|
-
args: ['ionInput', ['$event
|
|
107
|
+
args: ['ionInput', ['$event']]
|
|
98
108
|
}] } });
|
|
99
109
|
|
|
100
110
|
class SelectValueAccessorDirective extends ValueAccessor {
|
|
101
111
|
constructor(injector, el) {
|
|
102
112
|
super(injector, el);
|
|
103
113
|
}
|
|
104
|
-
|
|
114
|
+
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
115
|
+
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
116
|
+
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
117
|
+
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
118
|
+
_handleChangeEvent(ev) {
|
|
119
|
+
const el = ev.target;
|
|
105
120
|
this.handleValueChange(el, el.value);
|
|
106
121
|
}
|
|
107
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
108
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
122
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
123
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: SelectValueAccessorDirective, isStandalone: false, selector: "ion-select, ion-radio-group, ion-segment, ion-datetime", host: { listeners: { "ionChange": "_handleChangeEvent($event)" } }, providers: [
|
|
109
124
|
{
|
|
110
125
|
provide: NG_VALUE_ACCESSOR,
|
|
111
126
|
useExisting: SelectValueAccessorDirective,
|
|
@@ -113,7 +128,7 @@ class SelectValueAccessorDirective extends ValueAccessor {
|
|
|
113
128
|
},
|
|
114
129
|
], usesInheritance: true, ngImport: i0 });
|
|
115
130
|
}
|
|
116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
|
|
117
132
|
type: Directive,
|
|
118
133
|
args: [{
|
|
119
134
|
standalone: false,
|
|
@@ -129,18 +144,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
129
144
|
}]
|
|
130
145
|
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleChangeEvent: [{
|
|
131
146
|
type: HostListener,
|
|
132
|
-
args: ['ionChange', ['$event
|
|
147
|
+
args: ['ionChange', ['$event']]
|
|
133
148
|
}] } });
|
|
134
149
|
|
|
135
150
|
class TextValueAccessorDirective extends ValueAccessor {
|
|
136
151
|
constructor(injector, el) {
|
|
137
152
|
super(injector, el);
|
|
138
153
|
}
|
|
139
|
-
|
|
154
|
+
// Bind `$event` and cast `.target` in the body rather than `['$event.target']`:
|
|
155
|
+
// this directive's multi-element selector makes Angular 22's stricter host-binding
|
|
156
|
+
// type checking infer `$event` as the DOM `Event` (target: `EventTarget | null`),
|
|
157
|
+
// not the concrete element. The single-element standalone CVAs keep `['$event.target']`.
|
|
158
|
+
_handleInputEvent(ev) {
|
|
159
|
+
const el = ev.target;
|
|
140
160
|
this.handleValueChange(el, el.value);
|
|
141
161
|
}
|
|
142
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
143
|
-
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
162
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
163
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: TextValueAccessorDirective, isStandalone: false, selector: "ion-input:not([type=number]),ion-input-otp[type=text],ion-textarea,ion-searchbar", host: { listeners: { "ionInput": "_handleInputEvent($event)" } }, providers: [
|
|
144
164
|
{
|
|
145
165
|
provide: NG_VALUE_ACCESSOR,
|
|
146
166
|
useExisting: TextValueAccessorDirective,
|
|
@@ -148,7 +168,7 @@ class TextValueAccessorDirective extends ValueAccessor {
|
|
|
148
168
|
},
|
|
149
169
|
], usesInheritance: true, ngImport: i0 });
|
|
150
170
|
}
|
|
151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
|
|
152
172
|
type: Directive,
|
|
153
173
|
args: [{
|
|
154
174
|
standalone: false,
|
|
@@ -163,7 +183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
163
183
|
}]
|
|
164
184
|
}], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { _handleInputEvent: [{
|
|
165
185
|
type: HostListener,
|
|
166
|
-
args: ['ionInput', ['$event
|
|
186
|
+
args: ['ionInput', ['$event']]
|
|
167
187
|
}] } });
|
|
168
188
|
|
|
169
189
|
/* eslint-disable */
|
|
@@ -232,15 +252,15 @@ let IonAccordion = class IonAccordion {
|
|
|
232
252
|
c.detach();
|
|
233
253
|
this.el = r.nativeElement;
|
|
234
254
|
}
|
|
235
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
236
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
255
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordion, isStandalone: false, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
237
257
|
};
|
|
238
258
|
IonAccordion = __decorate([
|
|
239
259
|
ProxyCmp({
|
|
240
260
|
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
241
261
|
})
|
|
242
262
|
], IonAccordion);
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordion, decorators: [{
|
|
244
264
|
type: Component,
|
|
245
265
|
args: [{
|
|
246
266
|
selector: 'ion-accordion',
|
|
@@ -260,15 +280,15 @@ let IonAccordionGroup = class IonAccordionGroup {
|
|
|
260
280
|
c.detach();
|
|
261
281
|
this.el = r.nativeElement;
|
|
262
282
|
}
|
|
263
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
264
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
283
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
284
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAccordionGroup, isStandalone: false, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
265
285
|
};
|
|
266
286
|
IonAccordionGroup = __decorate([
|
|
267
287
|
ProxyCmp({
|
|
268
288
|
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
269
289
|
})
|
|
270
290
|
], IonAccordionGroup);
|
|
271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
272
292
|
type: Component,
|
|
273
293
|
args: [{
|
|
274
294
|
selector: 'ion-accordion-group',
|
|
@@ -298,8 +318,8 @@ let IonActionSheet = class IonActionSheet {
|
|
|
298
318
|
c.detach();
|
|
299
319
|
this.el = r.nativeElement;
|
|
300
320
|
}
|
|
301
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
302
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
321
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
322
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonActionSheet, isStandalone: false, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionActionSheetDidPresent: "ionActionSheetDidPresent", ionActionSheetWillPresent: "ionActionSheetWillPresent", ionActionSheetWillDismiss: "ionActionSheetWillDismiss", ionActionSheetDidDismiss: "ionActionSheetDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
303
323
|
};
|
|
304
324
|
IonActionSheet = __decorate([
|
|
305
325
|
ProxyCmp({
|
|
@@ -307,7 +327,7 @@ IonActionSheet = __decorate([
|
|
|
307
327
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
308
328
|
})
|
|
309
329
|
], IonActionSheet);
|
|
310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, decorators: [{
|
|
311
331
|
type: Component,
|
|
312
332
|
args: [{
|
|
313
333
|
selector: 'ion-action-sheet',
|
|
@@ -351,8 +371,8 @@ let IonAlert = class IonAlert {
|
|
|
351
371
|
c.detach();
|
|
352
372
|
this.el = r.nativeElement;
|
|
353
373
|
}
|
|
354
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
355
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
374
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
375
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAlert, isStandalone: false, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionAlertDidPresent: "ionAlertDidPresent", ionAlertWillPresent: "ionAlertWillPresent", ionAlertWillDismiss: "ionAlertWillDismiss", ionAlertDidDismiss: "ionAlertDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
356
376
|
};
|
|
357
377
|
IonAlert = __decorate([
|
|
358
378
|
ProxyCmp({
|
|
@@ -360,7 +380,7 @@ IonAlert = __decorate([
|
|
|
360
380
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
361
381
|
})
|
|
362
382
|
], IonAlert);
|
|
363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, decorators: [{
|
|
364
384
|
type: Component,
|
|
365
385
|
args: [{
|
|
366
386
|
selector: 'ion-alert',
|
|
@@ -396,15 +416,15 @@ let IonApp = class IonApp {
|
|
|
396
416
|
c.detach();
|
|
397
417
|
this.el = r.nativeElement;
|
|
398
418
|
}
|
|
399
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
400
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
419
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
420
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonApp, isStandalone: false, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
401
421
|
};
|
|
402
422
|
IonApp = __decorate([
|
|
403
423
|
ProxyCmp({
|
|
404
424
|
methods: ['setFocus']
|
|
405
425
|
})
|
|
406
426
|
], IonApp);
|
|
407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, decorators: [{
|
|
408
428
|
type: Component,
|
|
409
429
|
args: [{
|
|
410
430
|
selector: 'ion-app',
|
|
@@ -423,13 +443,13 @@ let IonAvatar = class IonAvatar {
|
|
|
423
443
|
c.detach();
|
|
424
444
|
this.el = r.nativeElement;
|
|
425
445
|
}
|
|
426
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
427
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
446
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
447
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAvatar, isStandalone: false, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
428
448
|
};
|
|
429
449
|
IonAvatar = __decorate([
|
|
430
450
|
ProxyCmp({})
|
|
431
451
|
], IonAvatar);
|
|
432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, decorators: [{
|
|
433
453
|
type: Component,
|
|
434
454
|
args: [{
|
|
435
455
|
selector: 'ion-avatar',
|
|
@@ -449,15 +469,15 @@ let IonBackdrop = class IonBackdrop {
|
|
|
449
469
|
c.detach();
|
|
450
470
|
this.el = r.nativeElement;
|
|
451
471
|
}
|
|
452
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
453
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
472
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
473
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackdrop, isStandalone: false, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, outputs: { ionBackdropTap: "ionBackdropTap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
454
474
|
};
|
|
455
475
|
IonBackdrop = __decorate([
|
|
456
476
|
ProxyCmp({
|
|
457
477
|
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
458
478
|
})
|
|
459
479
|
], IonBackdrop);
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
461
481
|
type: Component,
|
|
462
482
|
args: [{
|
|
463
483
|
selector: 'ion-backdrop',
|
|
@@ -479,15 +499,15 @@ let IonBadge = class IonBadge {
|
|
|
479
499
|
c.detach();
|
|
480
500
|
this.el = r.nativeElement;
|
|
481
501
|
}
|
|
482
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
483
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
502
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
503
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBadge, isStandalone: false, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
484
504
|
};
|
|
485
505
|
IonBadge = __decorate([
|
|
486
506
|
ProxyCmp({
|
|
487
507
|
inputs: ['color', 'mode']
|
|
488
508
|
})
|
|
489
509
|
], IonBadge);
|
|
490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, decorators: [{
|
|
491
511
|
type: Component,
|
|
492
512
|
args: [{
|
|
493
513
|
selector: 'ion-badge',
|
|
@@ -508,15 +528,15 @@ let IonBreadcrumb = class IonBreadcrumb {
|
|
|
508
528
|
c.detach();
|
|
509
529
|
this.el = r.nativeElement;
|
|
510
530
|
}
|
|
511
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
512
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
531
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
532
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumb, isStandalone: false, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
513
533
|
};
|
|
514
534
|
IonBreadcrumb = __decorate([
|
|
515
535
|
ProxyCmp({
|
|
516
536
|
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
517
537
|
})
|
|
518
538
|
], IonBreadcrumb);
|
|
519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
520
540
|
type: Component,
|
|
521
541
|
args: [{
|
|
522
542
|
selector: 'ion-breadcrumb',
|
|
@@ -541,15 +561,15 @@ let IonBreadcrumbs = class IonBreadcrumbs {
|
|
|
541
561
|
c.detach();
|
|
542
562
|
this.el = r.nativeElement;
|
|
543
563
|
}
|
|
544
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
545
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
564
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
565
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumbs, isStandalone: false, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode" }, outputs: { ionCollapsedClick: "ionCollapsedClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
546
566
|
};
|
|
547
567
|
IonBreadcrumbs = __decorate([
|
|
548
568
|
ProxyCmp({
|
|
549
569
|
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
550
570
|
})
|
|
551
571
|
], IonBreadcrumbs);
|
|
552
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
553
573
|
type: Component,
|
|
554
574
|
args: [{
|
|
555
575
|
selector: 'ion-breadcrumbs',
|
|
@@ -573,15 +593,15 @@ let IonButton = class IonButton {
|
|
|
573
593
|
c.detach();
|
|
574
594
|
this.el = r.nativeElement;
|
|
575
595
|
}
|
|
576
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
577
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
596
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
597
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButton, isStandalone: false, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
578
598
|
};
|
|
579
599
|
IonButton = __decorate([
|
|
580
600
|
ProxyCmp({
|
|
581
601
|
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
582
602
|
})
|
|
583
603
|
], IonButton);
|
|
584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
604
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButton, decorators: [{
|
|
585
605
|
type: Component,
|
|
586
606
|
args: [{
|
|
587
607
|
selector: 'ion-button',
|
|
@@ -605,15 +625,15 @@ let IonButtons = class IonButtons {
|
|
|
605
625
|
c.detach();
|
|
606
626
|
this.el = r.nativeElement;
|
|
607
627
|
}
|
|
608
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
609
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
628
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
629
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonButtons, isStandalone: false, selector: "ion-buttons", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
610
630
|
};
|
|
611
631
|
IonButtons = __decorate([
|
|
612
632
|
ProxyCmp({
|
|
613
633
|
inputs: ['collapse']
|
|
614
634
|
})
|
|
615
635
|
], IonButtons);
|
|
616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonButtons, decorators: [{
|
|
617
637
|
type: Component,
|
|
618
638
|
args: [{
|
|
619
639
|
selector: 'ion-buttons',
|
|
@@ -632,15 +652,15 @@ let IonCard = class IonCard {
|
|
|
632
652
|
c.detach();
|
|
633
653
|
this.el = r.nativeElement;
|
|
634
654
|
}
|
|
635
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
636
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
655
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
656
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCard, isStandalone: false, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
637
657
|
};
|
|
638
658
|
IonCard = __decorate([
|
|
639
659
|
ProxyCmp({
|
|
640
660
|
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
641
661
|
})
|
|
642
662
|
], IonCard);
|
|
643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCard, decorators: [{
|
|
644
664
|
type: Component,
|
|
645
665
|
args: [{
|
|
646
666
|
selector: 'ion-card',
|
|
@@ -659,15 +679,15 @@ let IonCardContent = class IonCardContent {
|
|
|
659
679
|
c.detach();
|
|
660
680
|
this.el = r.nativeElement;
|
|
661
681
|
}
|
|
662
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
663
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
682
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
683
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardContent, isStandalone: false, selector: "ion-card-content", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
664
684
|
};
|
|
665
685
|
IonCardContent = __decorate([
|
|
666
686
|
ProxyCmp({
|
|
667
687
|
inputs: ['mode']
|
|
668
688
|
})
|
|
669
689
|
], IonCardContent);
|
|
670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardContent, decorators: [{
|
|
671
691
|
type: Component,
|
|
672
692
|
args: [{
|
|
673
693
|
selector: 'ion-card-content',
|
|
@@ -686,15 +706,15 @@ let IonCardHeader = class IonCardHeader {
|
|
|
686
706
|
c.detach();
|
|
687
707
|
this.el = r.nativeElement;
|
|
688
708
|
}
|
|
689
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
690
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
709
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
710
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardHeader, isStandalone: false, selector: "ion-card-header", inputs: { color: "color", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
691
711
|
};
|
|
692
712
|
IonCardHeader = __decorate([
|
|
693
713
|
ProxyCmp({
|
|
694
714
|
inputs: ['color', 'mode', 'translucent']
|
|
695
715
|
})
|
|
696
716
|
], IonCardHeader);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
698
718
|
type: Component,
|
|
699
719
|
args: [{
|
|
700
720
|
selector: 'ion-card-header',
|
|
@@ -713,15 +733,15 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
713
733
|
c.detach();
|
|
714
734
|
this.el = r.nativeElement;
|
|
715
735
|
}
|
|
716
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
717
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
736
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
737
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardSubtitle, isStandalone: false, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
718
738
|
};
|
|
719
739
|
IonCardSubtitle = __decorate([
|
|
720
740
|
ProxyCmp({
|
|
721
741
|
inputs: ['color', 'mode']
|
|
722
742
|
})
|
|
723
743
|
], IonCardSubtitle);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
725
745
|
type: Component,
|
|
726
746
|
args: [{
|
|
727
747
|
selector: 'ion-card-subtitle',
|
|
@@ -740,15 +760,15 @@ let IonCardTitle = class IonCardTitle {
|
|
|
740
760
|
c.detach();
|
|
741
761
|
this.el = r.nativeElement;
|
|
742
762
|
}
|
|
743
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
744
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
763
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
764
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCardTitle, isStandalone: false, selector: "ion-card-title", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
745
765
|
};
|
|
746
766
|
IonCardTitle = __decorate([
|
|
747
767
|
ProxyCmp({
|
|
748
768
|
inputs: ['color', 'mode']
|
|
749
769
|
})
|
|
750
770
|
], IonCardTitle);
|
|
751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
752
772
|
type: Component,
|
|
753
773
|
args: [{
|
|
754
774
|
selector: 'ion-card-title',
|
|
@@ -770,15 +790,15 @@ let IonCheckbox = class IonCheckbox {
|
|
|
770
790
|
c.detach();
|
|
771
791
|
this.el = r.nativeElement;
|
|
772
792
|
}
|
|
773
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
774
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
793
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
794
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCheckbox, isStandalone: false, selector: "ion-checkbox", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", value: "value" }, outputs: { ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
775
795
|
};
|
|
776
796
|
IonCheckbox = __decorate([
|
|
777
797
|
ProxyCmp({
|
|
778
798
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'errorText', 'helperText', 'indeterminate', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
779
799
|
})
|
|
780
800
|
], IonCheckbox);
|
|
781
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
801
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCheckbox, decorators: [{
|
|
782
802
|
type: Component,
|
|
783
803
|
args: [{
|
|
784
804
|
selector: 'ion-checkbox',
|
|
@@ -804,15 +824,15 @@ let IonChip = class IonChip {
|
|
|
804
824
|
c.detach();
|
|
805
825
|
this.el = r.nativeElement;
|
|
806
826
|
}
|
|
807
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
808
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
827
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
828
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonChip, isStandalone: false, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
809
829
|
};
|
|
810
830
|
IonChip = __decorate([
|
|
811
831
|
ProxyCmp({
|
|
812
832
|
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
813
833
|
})
|
|
814
834
|
], IonChip);
|
|
815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonChip, decorators: [{
|
|
816
836
|
type: Component,
|
|
817
837
|
args: [{
|
|
818
838
|
selector: 'ion-chip',
|
|
@@ -831,15 +851,15 @@ let IonCol = class IonCol {
|
|
|
831
851
|
c.detach();
|
|
832
852
|
this.el = r.nativeElement;
|
|
833
853
|
}
|
|
834
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
835
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
854
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
855
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonCol, isStandalone: false, selector: "ion-col", inputs: { offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
836
856
|
};
|
|
837
857
|
IonCol = __decorate([
|
|
838
858
|
ProxyCmp({
|
|
839
859
|
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']
|
|
840
860
|
})
|
|
841
861
|
], IonCol);
|
|
842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonCol, decorators: [{
|
|
843
863
|
type: Component,
|
|
844
864
|
args: [{
|
|
845
865
|
selector: 'ion-col',
|
|
@@ -861,8 +881,8 @@ let IonContent = class IonContent {
|
|
|
861
881
|
c.detach();
|
|
862
882
|
this.el = r.nativeElement;
|
|
863
883
|
}
|
|
864
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
865
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
884
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
885
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonContent, isStandalone: false, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY" }, outputs: { ionScrollStart: "ionScrollStart", ionScroll: "ionScroll", ionScrollEnd: "ionScrollEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
866
886
|
};
|
|
867
887
|
IonContent = __decorate([
|
|
868
888
|
ProxyCmp({
|
|
@@ -870,7 +890,7 @@ IonContent = __decorate([
|
|
|
870
890
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
871
891
|
})
|
|
872
892
|
], IonContent);
|
|
873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
893
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonContent, decorators: [{
|
|
874
894
|
type: Component,
|
|
875
895
|
args: [{
|
|
876
896
|
selector: 'ion-content',
|
|
@@ -900,8 +920,8 @@ let IonDatetime = class IonDatetime {
|
|
|
900
920
|
c.detach();
|
|
901
921
|
this.el = r.nativeElement;
|
|
902
922
|
}
|
|
903
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
904
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
923
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
924
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetime, isStandalone: false, selector: "ion-datetime", inputs: { cancelText: "cancelText", clearText: "clearText", color: "color", dayValues: "dayValues", disabled: "disabled", doneText: "doneText", firstDayOfWeek: "firstDayOfWeek", formatOptions: "formatOptions", highlightedDates: "highlightedDates", hourCycle: "hourCycle", hourValues: "hourValues", isDateEnabled: "isDateEnabled", locale: "locale", max: "max", min: "min", minuteValues: "minuteValues", mode: "mode", monthValues: "monthValues", multiple: "multiple", name: "name", preferWheel: "preferWheel", presentation: "presentation", readonly: "readonly", showAdjacentDays: "showAdjacentDays", showClearButton: "showClearButton", showDefaultButtons: "showDefaultButtons", showDefaultTimeLabel: "showDefaultTimeLabel", showDefaultTitle: "showDefaultTitle", size: "size", titleSelectedDatesFormatter: "titleSelectedDatesFormatter", value: "value", yearValues: "yearValues" }, outputs: { ionCancel: "ionCancel", ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
905
925
|
};
|
|
906
926
|
IonDatetime = __decorate([
|
|
907
927
|
ProxyCmp({
|
|
@@ -909,7 +929,7 @@ IonDatetime = __decorate([
|
|
|
909
929
|
methods: ['confirm', 'reset', 'cancel']
|
|
910
930
|
})
|
|
911
931
|
], IonDatetime);
|
|
912
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetime, decorators: [{
|
|
913
933
|
type: Component,
|
|
914
934
|
args: [{
|
|
915
935
|
selector: 'ion-datetime',
|
|
@@ -937,15 +957,15 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
937
957
|
c.detach();
|
|
938
958
|
this.el = r.nativeElement;
|
|
939
959
|
}
|
|
940
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
941
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
960
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
961
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonDatetimeButton, isStandalone: false, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
942
962
|
};
|
|
943
963
|
IonDatetimeButton = __decorate([
|
|
944
964
|
ProxyCmp({
|
|
945
965
|
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
946
966
|
})
|
|
947
967
|
], IonDatetimeButton);
|
|
948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
949
969
|
type: Component,
|
|
950
970
|
args: [{
|
|
951
971
|
selector: 'ion-datetime-button',
|
|
@@ -964,8 +984,8 @@ let IonFab = class IonFab {
|
|
|
964
984
|
c.detach();
|
|
965
985
|
this.el = r.nativeElement;
|
|
966
986
|
}
|
|
967
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
968
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
987
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
988
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFab, isStandalone: false, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
969
989
|
};
|
|
970
990
|
IonFab = __decorate([
|
|
971
991
|
ProxyCmp({
|
|
@@ -973,7 +993,7 @@ IonFab = __decorate([
|
|
|
973
993
|
methods: ['close']
|
|
974
994
|
})
|
|
975
995
|
], IonFab);
|
|
976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
996
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFab, decorators: [{
|
|
977
997
|
type: Component,
|
|
978
998
|
args: [{
|
|
979
999
|
selector: 'ion-fab',
|
|
@@ -994,15 +1014,15 @@ let IonFabButton = class IonFabButton {
|
|
|
994
1014
|
c.detach();
|
|
995
1015
|
this.el = r.nativeElement;
|
|
996
1016
|
}
|
|
997
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
998
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1017
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1018
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabButton, isStandalone: false, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", translucent: "translucent", type: "type" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
999
1019
|
};
|
|
1000
1020
|
IonFabButton = __decorate([
|
|
1001
1021
|
ProxyCmp({
|
|
1002
1022
|
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
1003
1023
|
})
|
|
1004
1024
|
], IonFabButton);
|
|
1005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabButton, decorators: [{
|
|
1006
1026
|
type: Component,
|
|
1007
1027
|
args: [{
|
|
1008
1028
|
selector: 'ion-fab-button',
|
|
@@ -1026,15 +1046,15 @@ let IonFabList = class IonFabList {
|
|
|
1026
1046
|
c.detach();
|
|
1027
1047
|
this.el = r.nativeElement;
|
|
1028
1048
|
}
|
|
1029
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1030
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1049
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1050
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFabList, isStandalone: false, selector: "ion-fab-list", inputs: { activated: "activated", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1031
1051
|
};
|
|
1032
1052
|
IonFabList = __decorate([
|
|
1033
1053
|
ProxyCmp({
|
|
1034
1054
|
inputs: ['activated', 'side']
|
|
1035
1055
|
})
|
|
1036
1056
|
], IonFabList);
|
|
1037
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1057
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFabList, decorators: [{
|
|
1038
1058
|
type: Component,
|
|
1039
1059
|
args: [{
|
|
1040
1060
|
selector: 'ion-fab-list',
|
|
@@ -1053,15 +1073,15 @@ let IonFooter = class IonFooter {
|
|
|
1053
1073
|
c.detach();
|
|
1054
1074
|
this.el = r.nativeElement;
|
|
1055
1075
|
}
|
|
1056
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1057
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1076
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1077
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonFooter, isStandalone: false, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1058
1078
|
};
|
|
1059
1079
|
IonFooter = __decorate([
|
|
1060
1080
|
ProxyCmp({
|
|
1061
1081
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1062
1082
|
})
|
|
1063
1083
|
], IonFooter);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonFooter, decorators: [{
|
|
1065
1085
|
type: Component,
|
|
1066
1086
|
args: [{
|
|
1067
1087
|
selector: 'ion-footer',
|
|
@@ -1080,15 +1100,15 @@ let IonGrid = class IonGrid {
|
|
|
1080
1100
|
c.detach();
|
|
1081
1101
|
this.el = r.nativeElement;
|
|
1082
1102
|
}
|
|
1083
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1084
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1103
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1104
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonGrid, isStandalone: false, selector: "ion-grid", inputs: { fixed: "fixed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1085
1105
|
};
|
|
1086
1106
|
IonGrid = __decorate([
|
|
1087
1107
|
ProxyCmp({
|
|
1088
1108
|
inputs: ['fixed']
|
|
1089
1109
|
})
|
|
1090
1110
|
], IonGrid);
|
|
1091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonGrid, decorators: [{
|
|
1092
1112
|
type: Component,
|
|
1093
1113
|
args: [{
|
|
1094
1114
|
selector: 'ion-grid',
|
|
@@ -1107,15 +1127,15 @@ let IonHeader = class IonHeader {
|
|
|
1107
1127
|
c.detach();
|
|
1108
1128
|
this.el = r.nativeElement;
|
|
1109
1129
|
}
|
|
1110
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1111
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1130
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1131
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonHeader, isStandalone: false, selector: "ion-header", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1112
1132
|
};
|
|
1113
1133
|
IonHeader = __decorate([
|
|
1114
1134
|
ProxyCmp({
|
|
1115
1135
|
inputs: ['collapse', 'mode', 'translucent']
|
|
1116
1136
|
})
|
|
1117
1137
|
], IonHeader);
|
|
1118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonHeader, decorators: [{
|
|
1119
1139
|
type: Component,
|
|
1120
1140
|
args: [{
|
|
1121
1141
|
selector: 'ion-header',
|
|
@@ -1134,15 +1154,15 @@ let IonIcon = class IonIcon {
|
|
|
1134
1154
|
c.detach();
|
|
1135
1155
|
this.el = r.nativeElement;
|
|
1136
1156
|
}
|
|
1137
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1138
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1157
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1158
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonIcon, isStandalone: false, selector: "ion-icon", inputs: { color: "color", flipRtl: "flipRtl", icon: "icon", ios: "ios", lazy: "lazy", md: "md", mode: "mode", name: "name", sanitize: "sanitize", size: "size", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1139
1159
|
};
|
|
1140
1160
|
IonIcon = __decorate([
|
|
1141
1161
|
ProxyCmp({
|
|
1142
1162
|
inputs: ['color', 'flipRtl', 'icon', 'ios', 'lazy', 'md', 'mode', 'name', 'sanitize', 'size', 'src']
|
|
1143
1163
|
})
|
|
1144
1164
|
], IonIcon);
|
|
1145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonIcon, decorators: [{
|
|
1146
1166
|
type: Component,
|
|
1147
1167
|
args: [{
|
|
1148
1168
|
selector: 'ion-icon',
|
|
@@ -1164,15 +1184,15 @@ let IonImg = class IonImg {
|
|
|
1164
1184
|
c.detach();
|
|
1165
1185
|
this.el = r.nativeElement;
|
|
1166
1186
|
}
|
|
1167
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1168
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1187
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1188
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonImg, isStandalone: false, selector: "ion-img", inputs: { alt: "alt", src: "src" }, outputs: { ionImgWillLoad: "ionImgWillLoad", ionImgDidLoad: "ionImgDidLoad", ionError: "ionError" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1169
1189
|
};
|
|
1170
1190
|
IonImg = __decorate([
|
|
1171
1191
|
ProxyCmp({
|
|
1172
1192
|
inputs: ['alt', 'src']
|
|
1173
1193
|
})
|
|
1174
1194
|
], IonImg);
|
|
1175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonImg, decorators: [{
|
|
1176
1196
|
type: Component,
|
|
1177
1197
|
args: [{
|
|
1178
1198
|
selector: 'ion-img',
|
|
@@ -1199,8 +1219,8 @@ let IonInfiniteScroll = class IonInfiniteScroll {
|
|
|
1199
1219
|
c.detach();
|
|
1200
1220
|
this.el = r.nativeElement;
|
|
1201
1221
|
}
|
|
1202
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1203
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1222
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1223
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScroll, isStandalone: false, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", position: "position", threshold: "threshold" }, outputs: { ionInfinite: "ionInfinite" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1204
1224
|
};
|
|
1205
1225
|
IonInfiniteScroll = __decorate([
|
|
1206
1226
|
ProxyCmp({
|
|
@@ -1208,7 +1228,7 @@ IonInfiniteScroll = __decorate([
|
|
|
1208
1228
|
methods: ['complete']
|
|
1209
1229
|
})
|
|
1210
1230
|
], IonInfiniteScroll);
|
|
1211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScroll, decorators: [{
|
|
1212
1232
|
type: Component,
|
|
1213
1233
|
args: [{
|
|
1214
1234
|
selector: 'ion-infinite-scroll',
|
|
@@ -1230,15 +1250,15 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1230
1250
|
c.detach();
|
|
1231
1251
|
this.el = r.nativeElement;
|
|
1232
1252
|
}
|
|
1233
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1234
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1253
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1254
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInfiniteScrollContent, isStandalone: false, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1235
1255
|
};
|
|
1236
1256
|
IonInfiniteScrollContent = __decorate([
|
|
1237
1257
|
ProxyCmp({
|
|
1238
1258
|
inputs: ['loadingSpinner', 'loadingText']
|
|
1239
1259
|
})
|
|
1240
1260
|
], IonInfiniteScrollContent);
|
|
1241
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
1242
1262
|
type: Component,
|
|
1243
1263
|
args: [{
|
|
1244
1264
|
selector: 'ion-infinite-scroll-content',
|
|
@@ -1261,8 +1281,8 @@ let IonInput = class IonInput {
|
|
|
1261
1281
|
c.detach();
|
|
1262
1282
|
this.el = r.nativeElement;
|
|
1263
1283
|
}
|
|
1264
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1265
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1284
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1285
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInput, isStandalone: false, selector: "ion-input", inputs: { autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", autofocus: "autofocus", clearInput: "clearInput", clearInputIcon: "clearInputIcon", clearOnEdit: "clearOnEdit", color: "color", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", mode: "mode", multiple: "multiple", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", shape: "shape", spellcheck: "spellcheck", step: "step", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1266
1286
|
};
|
|
1267
1287
|
IonInput = __decorate([
|
|
1268
1288
|
ProxyCmp({
|
|
@@ -1270,7 +1290,7 @@ IonInput = __decorate([
|
|
|
1270
1290
|
methods: ['setFocus', 'getInputElement']
|
|
1271
1291
|
})
|
|
1272
1292
|
], IonInput);
|
|
1273
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInput, decorators: [{
|
|
1274
1294
|
type: Component,
|
|
1275
1295
|
args: [{
|
|
1276
1296
|
selector: 'ion-input',
|
|
@@ -1303,8 +1323,8 @@ let IonInputOtp = class IonInputOtp {
|
|
|
1303
1323
|
c.detach();
|
|
1304
1324
|
this.el = r.nativeElement;
|
|
1305
1325
|
}
|
|
1306
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1307
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1326
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1327
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputOtp, isStandalone: false, selector: "ion-input-otp", inputs: { autocapitalize: "autocapitalize", color: "color", disabled: "disabled", fill: "fill", inputmode: "inputmode", length: "length", pattern: "pattern", readonly: "readonly", separators: "separators", shape: "shape", size: "size", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionComplete: "ionComplete", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1308
1328
|
};
|
|
1309
1329
|
IonInputOtp = __decorate([
|
|
1310
1330
|
ProxyCmp({
|
|
@@ -1312,7 +1332,7 @@ IonInputOtp = __decorate([
|
|
|
1312
1332
|
methods: ['setFocus']
|
|
1313
1333
|
})
|
|
1314
1334
|
], IonInputOtp);
|
|
1315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputOtp, decorators: [{
|
|
1316
1336
|
type: Component,
|
|
1317
1337
|
args: [{
|
|
1318
1338
|
selector: 'ion-input-otp',
|
|
@@ -1342,15 +1362,15 @@ let IonInputPasswordToggle = class IonInputPasswordToggle {
|
|
|
1342
1362
|
c.detach();
|
|
1343
1363
|
this.el = r.nativeElement;
|
|
1344
1364
|
}
|
|
1345
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1346
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1365
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1366
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonInputPasswordToggle, isStandalone: false, selector: "ion-input-password-toggle", inputs: { color: "color", hideIcon: "hideIcon", mode: "mode", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1347
1367
|
};
|
|
1348
1368
|
IonInputPasswordToggle = __decorate([
|
|
1349
1369
|
ProxyCmp({
|
|
1350
1370
|
inputs: ['color', 'hideIcon', 'mode', 'showIcon']
|
|
1351
1371
|
})
|
|
1352
1372
|
], IonInputPasswordToggle);
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonInputPasswordToggle, decorators: [{
|
|
1354
1374
|
type: Component,
|
|
1355
1375
|
args: [{
|
|
1356
1376
|
selector: 'ion-input-password-toggle',
|
|
@@ -1369,15 +1389,15 @@ let IonItem = class IonItem {
|
|
|
1369
1389
|
c.detach();
|
|
1370
1390
|
this.el = r.nativeElement;
|
|
1371
1391
|
}
|
|
1372
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1373
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1392
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1393
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItem, isStandalone: false, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1374
1394
|
};
|
|
1375
1395
|
IonItem = __decorate([
|
|
1376
1396
|
ProxyCmp({
|
|
1377
1397
|
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1378
1398
|
})
|
|
1379
1399
|
], IonItem);
|
|
1380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItem, decorators: [{
|
|
1381
1401
|
type: Component,
|
|
1382
1402
|
args: [{
|
|
1383
1403
|
selector: 'ion-item',
|
|
@@ -1396,15 +1416,15 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1396
1416
|
c.detach();
|
|
1397
1417
|
this.el = r.nativeElement;
|
|
1398
1418
|
}
|
|
1399
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1400
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1419
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1420
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemDivider, isStandalone: false, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1401
1421
|
};
|
|
1402
1422
|
IonItemDivider = __decorate([
|
|
1403
1423
|
ProxyCmp({
|
|
1404
1424
|
inputs: ['color', 'mode', 'sticky']
|
|
1405
1425
|
})
|
|
1406
1426
|
], IonItemDivider);
|
|
1407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
1408
1428
|
type: Component,
|
|
1409
1429
|
args: [{
|
|
1410
1430
|
selector: 'ion-item-divider',
|
|
@@ -1423,13 +1443,13 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1423
1443
|
c.detach();
|
|
1424
1444
|
this.el = r.nativeElement;
|
|
1425
1445
|
}
|
|
1426
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1427
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1446
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1447
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemGroup, isStandalone: false, selector: "ion-item-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1428
1448
|
};
|
|
1429
1449
|
IonItemGroup = __decorate([
|
|
1430
1450
|
ProxyCmp({})
|
|
1431
1451
|
], IonItemGroup);
|
|
1432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
1433
1453
|
type: Component,
|
|
1434
1454
|
args: [{
|
|
1435
1455
|
selector: 'ion-item-group',
|
|
@@ -1448,15 +1468,15 @@ let IonItemOption = class IonItemOption {
|
|
|
1448
1468
|
c.detach();
|
|
1449
1469
|
this.el = r.nativeElement;
|
|
1450
1470
|
}
|
|
1451
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1452
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1471
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1472
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOption, isStandalone: false, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1453
1473
|
};
|
|
1454
1474
|
IonItemOption = __decorate([
|
|
1455
1475
|
ProxyCmp({
|
|
1456
1476
|
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1457
1477
|
})
|
|
1458
1478
|
], IonItemOption);
|
|
1459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOption, decorators: [{
|
|
1460
1480
|
type: Component,
|
|
1461
1481
|
args: [{
|
|
1462
1482
|
selector: 'ion-item-option',
|
|
@@ -1476,15 +1496,15 @@ let IonItemOptions = class IonItemOptions {
|
|
|
1476
1496
|
c.detach();
|
|
1477
1497
|
this.el = r.nativeElement;
|
|
1478
1498
|
}
|
|
1479
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1480
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1499
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1500
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemOptions, isStandalone: false, selector: "ion-item-options", inputs: { side: "side" }, outputs: { ionSwipe: "ionSwipe" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1481
1501
|
};
|
|
1482
1502
|
IonItemOptions = __decorate([
|
|
1483
1503
|
ProxyCmp({
|
|
1484
1504
|
inputs: ['side']
|
|
1485
1505
|
})
|
|
1486
1506
|
], IonItemOptions);
|
|
1487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
1488
1508
|
type: Component,
|
|
1489
1509
|
args: [{
|
|
1490
1510
|
selector: 'ion-item-options',
|
|
@@ -1507,8 +1527,8 @@ let IonItemSliding = class IonItemSliding {
|
|
|
1507
1527
|
c.detach();
|
|
1508
1528
|
this.el = r.nativeElement;
|
|
1509
1529
|
}
|
|
1510
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1511
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1530
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1531
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonItemSliding, isStandalone: false, selector: "ion-item-sliding", inputs: { disabled: "disabled" }, outputs: { ionDrag: "ionDrag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1512
1532
|
};
|
|
1513
1533
|
IonItemSliding = __decorate([
|
|
1514
1534
|
ProxyCmp({
|
|
@@ -1516,7 +1536,7 @@ IonItemSliding = __decorate([
|
|
|
1516
1536
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1517
1537
|
})
|
|
1518
1538
|
], IonItemSliding);
|
|
1519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonItemSliding, decorators: [{
|
|
1520
1540
|
type: Component,
|
|
1521
1541
|
args: [{
|
|
1522
1542
|
selector: 'ion-item-sliding',
|
|
@@ -1538,15 +1558,15 @@ let IonLabel = class IonLabel {
|
|
|
1538
1558
|
c.detach();
|
|
1539
1559
|
this.el = r.nativeElement;
|
|
1540
1560
|
}
|
|
1541
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1542
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1561
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1562
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLabel, isStandalone: false, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1543
1563
|
};
|
|
1544
1564
|
IonLabel = __decorate([
|
|
1545
1565
|
ProxyCmp({
|
|
1546
1566
|
inputs: ['color', 'mode', 'position']
|
|
1547
1567
|
})
|
|
1548
1568
|
], IonLabel);
|
|
1549
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLabel, decorators: [{
|
|
1550
1570
|
type: Component,
|
|
1551
1571
|
args: [{
|
|
1552
1572
|
selector: 'ion-label',
|
|
@@ -1565,8 +1585,8 @@ let IonList = class IonList {
|
|
|
1565
1585
|
c.detach();
|
|
1566
1586
|
this.el = r.nativeElement;
|
|
1567
1587
|
}
|
|
1568
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1569
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1588
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1589
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonList, isStandalone: false, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1570
1590
|
};
|
|
1571
1591
|
IonList = __decorate([
|
|
1572
1592
|
ProxyCmp({
|
|
@@ -1574,7 +1594,7 @@ IonList = __decorate([
|
|
|
1574
1594
|
methods: ['closeSlidingItems']
|
|
1575
1595
|
})
|
|
1576
1596
|
], IonList);
|
|
1577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonList, decorators: [{
|
|
1578
1598
|
type: Component,
|
|
1579
1599
|
args: [{
|
|
1580
1600
|
selector: 'ion-list',
|
|
@@ -1593,15 +1613,15 @@ let IonListHeader = class IonListHeader {
|
|
|
1593
1613
|
c.detach();
|
|
1594
1614
|
this.el = r.nativeElement;
|
|
1595
1615
|
}
|
|
1596
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1597
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1616
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1617
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonListHeader, isStandalone: false, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1598
1618
|
};
|
|
1599
1619
|
IonListHeader = __decorate([
|
|
1600
1620
|
ProxyCmp({
|
|
1601
1621
|
inputs: ['color', 'lines', 'mode']
|
|
1602
1622
|
})
|
|
1603
1623
|
], IonListHeader);
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonListHeader, decorators: [{
|
|
1605
1625
|
type: Component,
|
|
1606
1626
|
args: [{
|
|
1607
1627
|
selector: 'ion-list-header',
|
|
@@ -1628,8 +1648,8 @@ let IonLoading = class IonLoading {
|
|
|
1628
1648
|
c.detach();
|
|
1629
1649
|
this.el = r.nativeElement;
|
|
1630
1650
|
}
|
|
1631
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1632
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1651
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1652
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonLoading, isStandalone: false, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", translucent: "translucent", trigger: "trigger" }, outputs: { ionLoadingDidPresent: "ionLoadingDidPresent", ionLoadingWillPresent: "ionLoadingWillPresent", ionLoadingWillDismiss: "ionLoadingWillDismiss", ionLoadingDidDismiss: "ionLoadingDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1633
1653
|
};
|
|
1634
1654
|
IonLoading = __decorate([
|
|
1635
1655
|
ProxyCmp({
|
|
@@ -1637,7 +1657,7 @@ IonLoading = __decorate([
|
|
|
1637
1657
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1638
1658
|
})
|
|
1639
1659
|
], IonLoading);
|
|
1640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonLoading, decorators: [{
|
|
1641
1661
|
type: Component,
|
|
1642
1662
|
args: [{
|
|
1643
1663
|
selector: 'ion-loading',
|
|
@@ -1677,8 +1697,8 @@ let IonMenu = class IonMenu {
|
|
|
1677
1697
|
c.detach();
|
|
1678
1698
|
this.el = r.nativeElement;
|
|
1679
1699
|
}
|
|
1680
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1681
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1700
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1701
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenu, isStandalone: false, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", side: "side", swipeGesture: "swipeGesture", type: "type" }, outputs: { ionWillOpen: "ionWillOpen", ionWillClose: "ionWillClose", ionDidOpen: "ionDidOpen", ionDidClose: "ionDidClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1682
1702
|
};
|
|
1683
1703
|
IonMenu = __decorate([
|
|
1684
1704
|
ProxyCmp({
|
|
@@ -1686,7 +1706,7 @@ IonMenu = __decorate([
|
|
|
1686
1706
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1687
1707
|
})
|
|
1688
1708
|
], IonMenu);
|
|
1689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1709
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenu, decorators: [{
|
|
1690
1710
|
type: Component,
|
|
1691
1711
|
args: [{
|
|
1692
1712
|
selector: 'ion-menu',
|
|
@@ -1714,15 +1734,15 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1714
1734
|
c.detach();
|
|
1715
1735
|
this.el = r.nativeElement;
|
|
1716
1736
|
}
|
|
1717
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1718
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1737
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1738
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuButton, isStandalone: false, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1719
1739
|
};
|
|
1720
1740
|
IonMenuButton = __decorate([
|
|
1721
1741
|
ProxyCmp({
|
|
1722
1742
|
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1723
1743
|
})
|
|
1724
1744
|
], IonMenuButton);
|
|
1725
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
1726
1746
|
type: Component,
|
|
1727
1747
|
args: [{
|
|
1728
1748
|
selector: 'ion-menu-button',
|
|
@@ -1741,15 +1761,15 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1741
1761
|
c.detach();
|
|
1742
1762
|
this.el = r.nativeElement;
|
|
1743
1763
|
}
|
|
1744
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1745
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1764
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1765
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonMenuToggle, isStandalone: false, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1746
1766
|
};
|
|
1747
1767
|
IonMenuToggle = __decorate([
|
|
1748
1768
|
ProxyCmp({
|
|
1749
1769
|
inputs: ['autoHide', 'menu']
|
|
1750
1770
|
})
|
|
1751
1771
|
], IonMenuToggle);
|
|
1752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
1753
1773
|
type: Component,
|
|
1754
1774
|
args: [{
|
|
1755
1775
|
selector: 'ion-menu-toggle',
|
|
@@ -1768,15 +1788,15 @@ let IonNavLink = class IonNavLink {
|
|
|
1768
1788
|
c.detach();
|
|
1769
1789
|
this.el = r.nativeElement;
|
|
1770
1790
|
}
|
|
1771
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1772
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1791
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1792
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNavLink, isStandalone: false, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", routerAnimation: "routerAnimation", routerDirection: "routerDirection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1773
1793
|
};
|
|
1774
1794
|
IonNavLink = __decorate([
|
|
1775
1795
|
ProxyCmp({
|
|
1776
1796
|
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1777
1797
|
})
|
|
1778
1798
|
], IonNavLink);
|
|
1779
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1799
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNavLink, decorators: [{
|
|
1780
1800
|
type: Component,
|
|
1781
1801
|
args: [{
|
|
1782
1802
|
selector: 'ion-nav-link',
|
|
@@ -1795,15 +1815,15 @@ let IonNote = class IonNote {
|
|
|
1795
1815
|
c.detach();
|
|
1796
1816
|
this.el = r.nativeElement;
|
|
1797
1817
|
}
|
|
1798
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1799
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1818
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1819
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNote, isStandalone: false, selector: "ion-note", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1800
1820
|
};
|
|
1801
1821
|
IonNote = __decorate([
|
|
1802
1822
|
ProxyCmp({
|
|
1803
1823
|
inputs: ['color', 'mode']
|
|
1804
1824
|
})
|
|
1805
1825
|
], IonNote);
|
|
1806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1826
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNote, decorators: [{
|
|
1807
1827
|
type: Component,
|
|
1808
1828
|
args: [{
|
|
1809
1829
|
selector: 'ion-note',
|
|
@@ -1822,15 +1842,15 @@ let IonPicker = class IonPicker {
|
|
|
1822
1842
|
c.detach();
|
|
1823
1843
|
this.el = r.nativeElement;
|
|
1824
1844
|
}
|
|
1825
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1826
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1845
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1846
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPicker, isStandalone: false, selector: "ion-picker", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1827
1847
|
};
|
|
1828
1848
|
IonPicker = __decorate([
|
|
1829
1849
|
ProxyCmp({
|
|
1830
1850
|
inputs: ['mode']
|
|
1831
1851
|
})
|
|
1832
1852
|
], IonPicker);
|
|
1833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPicker, decorators: [{
|
|
1834
1854
|
type: Component,
|
|
1835
1855
|
args: [{
|
|
1836
1856
|
selector: 'ion-picker',
|
|
@@ -1850,8 +1870,8 @@ let IonPickerColumn = class IonPickerColumn {
|
|
|
1850
1870
|
c.detach();
|
|
1851
1871
|
this.el = r.nativeElement;
|
|
1852
1872
|
}
|
|
1853
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1854
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1873
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1874
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumn, isStandalone: false, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1855
1875
|
};
|
|
1856
1876
|
IonPickerColumn = __decorate([
|
|
1857
1877
|
ProxyCmp({
|
|
@@ -1859,7 +1879,7 @@ IonPickerColumn = __decorate([
|
|
|
1859
1879
|
methods: ['setFocus']
|
|
1860
1880
|
})
|
|
1861
1881
|
], IonPickerColumn);
|
|
1862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumn, decorators: [{
|
|
1863
1883
|
type: Component,
|
|
1864
1884
|
args: [{
|
|
1865
1885
|
selector: 'ion-picker-column',
|
|
@@ -1881,15 +1901,15 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1881
1901
|
c.detach();
|
|
1882
1902
|
this.el = r.nativeElement;
|
|
1883
1903
|
}
|
|
1884
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1885
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1904
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1905
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPickerColumnOption, isStandalone: false, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1886
1906
|
};
|
|
1887
1907
|
IonPickerColumnOption = __decorate([
|
|
1888
1908
|
ProxyCmp({
|
|
1889
1909
|
inputs: ['color', 'disabled', 'value']
|
|
1890
1910
|
})
|
|
1891
1911
|
], IonPickerColumnOption);
|
|
1892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
1893
1913
|
type: Component,
|
|
1894
1914
|
args: [{
|
|
1895
1915
|
selector: 'ion-picker-column-option',
|
|
@@ -1908,15 +1928,15 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1908
1928
|
c.detach();
|
|
1909
1929
|
this.el = r.nativeElement;
|
|
1910
1930
|
}
|
|
1911
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1912
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1931
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1932
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonProgressBar, isStandalone: false, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1913
1933
|
};
|
|
1914
1934
|
IonProgressBar = __decorate([
|
|
1915
1935
|
ProxyCmp({
|
|
1916
1936
|
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1917
1937
|
})
|
|
1918
1938
|
], IonProgressBar);
|
|
1919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
1920
1940
|
type: Component,
|
|
1921
1941
|
args: [{
|
|
1922
1942
|
selector: 'ion-progress-bar',
|
|
@@ -1937,15 +1957,15 @@ let IonRadio = class IonRadio {
|
|
|
1937
1957
|
c.detach();
|
|
1938
1958
|
this.el = r.nativeElement;
|
|
1939
1959
|
}
|
|
1940
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1941
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1960
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1961
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadio, isStandalone: false, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1942
1962
|
};
|
|
1943
1963
|
IonRadio = __decorate([
|
|
1944
1964
|
ProxyCmp({
|
|
1945
1965
|
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1946
1966
|
})
|
|
1947
1967
|
], IonRadio);
|
|
1948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadio, decorators: [{
|
|
1949
1969
|
type: Component,
|
|
1950
1970
|
args: [{
|
|
1951
1971
|
selector: 'ion-radio',
|
|
@@ -1970,15 +1990,15 @@ let IonRadioGroup = class IonRadioGroup {
|
|
|
1970
1990
|
c.detach();
|
|
1971
1991
|
this.el = r.nativeElement;
|
|
1972
1992
|
}
|
|
1973
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1974
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1993
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1994
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRadioGroup, isStandalone: false, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", errorText: "errorText", helperText: "helperText", name: "name", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1975
1995
|
};
|
|
1976
1996
|
IonRadioGroup = __decorate([
|
|
1977
1997
|
ProxyCmp({
|
|
1978
1998
|
inputs: ['allowEmptySelection', 'compareWith', 'errorText', 'helperText', 'name', 'value']
|
|
1979
1999
|
})
|
|
1980
2000
|
], IonRadioGroup);
|
|
1981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2001
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRadioGroup, decorators: [{
|
|
1982
2002
|
type: Component,
|
|
1983
2003
|
args: [{
|
|
1984
2004
|
selector: 'ion-radio-group',
|
|
@@ -2006,15 +2026,15 @@ let IonRange = class IonRange {
|
|
|
2006
2026
|
c.detach();
|
|
2007
2027
|
this.el = r.nativeElement;
|
|
2008
2028
|
}
|
|
2009
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2010
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2029
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2030
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRange, isStandalone: false, selector: "ion-range", inputs: { activeBarStart: "activeBarStart", color: "color", debounce: "debounce", disabled: "disabled", dualKnobs: "dualKnobs", label: "label", labelPlacement: "labelPlacement", max: "max", min: "min", mode: "mode", name: "name", pin: "pin", pinFormatter: "pinFormatter", snaps: "snaps", step: "step", ticks: "ticks", value: "value" }, outputs: { ionChange: "ionChange", ionInput: "ionInput", ionFocus: "ionFocus", ionBlur: "ionBlur", ionKnobMoveStart: "ionKnobMoveStart", ionKnobMoveEnd: "ionKnobMoveEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2011
2031
|
};
|
|
2012
2032
|
IonRange = __decorate([
|
|
2013
2033
|
ProxyCmp({
|
|
2014
2034
|
inputs: ['activeBarStart', 'color', 'debounce', 'disabled', 'dualKnobs', 'label', 'labelPlacement', 'max', 'min', 'mode', 'name', 'pin', 'pinFormatter', 'snaps', 'step', 'ticks', 'value']
|
|
2015
2035
|
})
|
|
2016
2036
|
], IonRange);
|
|
2017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRange, decorators: [{
|
|
2018
2038
|
type: Component,
|
|
2019
2039
|
args: [{
|
|
2020
2040
|
selector: 'ion-range',
|
|
@@ -2051,8 +2071,8 @@ let IonRefresher = class IonRefresher {
|
|
|
2051
2071
|
c.detach();
|
|
2052
2072
|
this.el = r.nativeElement;
|
|
2053
2073
|
}
|
|
2054
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2055
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2074
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2075
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresher, isStandalone: false, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration" }, outputs: { ionRefresh: "ionRefresh", ionPull: "ionPull", ionStart: "ionStart", ionPullStart: "ionPullStart", ionPullEnd: "ionPullEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2056
2076
|
};
|
|
2057
2077
|
IonRefresher = __decorate([
|
|
2058
2078
|
ProxyCmp({
|
|
@@ -2060,7 +2080,7 @@ IonRefresher = __decorate([
|
|
|
2060
2080
|
methods: ['complete', 'cancel', 'getProgress']
|
|
2061
2081
|
})
|
|
2062
2082
|
], IonRefresher);
|
|
2063
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresher, decorators: [{
|
|
2064
2084
|
type: Component,
|
|
2065
2085
|
args: [{
|
|
2066
2086
|
selector: 'ion-refresher',
|
|
@@ -2090,15 +2110,15 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
2090
2110
|
c.detach();
|
|
2091
2111
|
this.el = r.nativeElement;
|
|
2092
2112
|
}
|
|
2093
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2094
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2113
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2114
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRefresherContent, isStandalone: false, selector: "ion-refresher-content", inputs: { pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2095
2115
|
};
|
|
2096
2116
|
IonRefresherContent = __decorate([
|
|
2097
2117
|
ProxyCmp({
|
|
2098
2118
|
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
2099
2119
|
})
|
|
2100
2120
|
], IonRefresherContent);
|
|
2101
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
2102
2122
|
type: Component,
|
|
2103
2123
|
args: [{
|
|
2104
2124
|
selector: 'ion-refresher-content',
|
|
@@ -2117,13 +2137,13 @@ let IonReorder = class IonReorder {
|
|
|
2117
2137
|
c.detach();
|
|
2118
2138
|
this.el = r.nativeElement;
|
|
2119
2139
|
}
|
|
2120
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2121
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2140
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2141
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorder, isStandalone: false, selector: "ion-reorder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2122
2142
|
};
|
|
2123
2143
|
IonReorder = __decorate([
|
|
2124
2144
|
ProxyCmp({})
|
|
2125
2145
|
], IonReorder);
|
|
2126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorder, decorators: [{
|
|
2127
2147
|
type: Component,
|
|
2128
2148
|
args: [{
|
|
2129
2149
|
selector: 'ion-reorder',
|
|
@@ -2146,8 +2166,8 @@ let IonReorderGroup = class IonReorderGroup {
|
|
|
2146
2166
|
c.detach();
|
|
2147
2167
|
this.el = r.nativeElement;
|
|
2148
2168
|
}
|
|
2149
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2150
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2169
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2170
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonReorderGroup, isStandalone: false, selector: "ion-reorder-group", inputs: { disabled: "disabled" }, outputs: { ionItemReorder: "ionItemReorder", ionReorderStart: "ionReorderStart", ionReorderMove: "ionReorderMove", ionReorderEnd: "ionReorderEnd" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2151
2171
|
};
|
|
2152
2172
|
IonReorderGroup = __decorate([
|
|
2153
2173
|
ProxyCmp({
|
|
@@ -2155,7 +2175,7 @@ IonReorderGroup = __decorate([
|
|
|
2155
2175
|
methods: ['complete']
|
|
2156
2176
|
})
|
|
2157
2177
|
], IonReorderGroup);
|
|
2158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonReorderGroup, decorators: [{
|
|
2159
2179
|
type: Component,
|
|
2160
2180
|
args: [{
|
|
2161
2181
|
selector: 'ion-reorder-group',
|
|
@@ -2183,8 +2203,8 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
2183
2203
|
c.detach();
|
|
2184
2204
|
this.el = r.nativeElement;
|
|
2185
2205
|
}
|
|
2186
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2187
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2206
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2207
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRippleEffect, isStandalone: false, selector: "ion-ripple-effect", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2188
2208
|
};
|
|
2189
2209
|
IonRippleEffect = __decorate([
|
|
2190
2210
|
ProxyCmp({
|
|
@@ -2192,7 +2212,7 @@ IonRippleEffect = __decorate([
|
|
|
2192
2212
|
methods: ['addRipple']
|
|
2193
2213
|
})
|
|
2194
2214
|
], IonRippleEffect);
|
|
2195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRippleEffect, decorators: [{
|
|
2196
2216
|
type: Component,
|
|
2197
2217
|
args: [{
|
|
2198
2218
|
selector: 'ion-ripple-effect',
|
|
@@ -2211,13 +2231,13 @@ let IonRow = class IonRow {
|
|
|
2211
2231
|
c.detach();
|
|
2212
2232
|
this.el = r.nativeElement;
|
|
2213
2233
|
}
|
|
2214
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2215
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2234
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2235
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRow, isStandalone: false, selector: "ion-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2216
2236
|
};
|
|
2217
2237
|
IonRow = __decorate([
|
|
2218
2238
|
ProxyCmp({})
|
|
2219
2239
|
], IonRow);
|
|
2220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRow, decorators: [{
|
|
2221
2241
|
type: Component,
|
|
2222
2242
|
args: [{
|
|
2223
2243
|
selector: 'ion-row',
|
|
@@ -2242,8 +2262,8 @@ let IonSearchbar = class IonSearchbar {
|
|
|
2242
2262
|
c.detach();
|
|
2243
2263
|
this.el = r.nativeElement;
|
|
2244
2264
|
}
|
|
2245
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2246
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2265
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2266
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSearchbar, isStandalone: false, selector: "ion-searchbar", inputs: { animated: "animated", autocapitalize: "autocapitalize", autocomplete: "autocomplete", autocorrect: "autocorrect", cancelButtonIcon: "cancelButtonIcon", cancelButtonText: "cancelButtonText", clearIcon: "clearIcon", color: "color", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", inputmode: "inputmode", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", searchIcon: "searchIcon", showCancelButton: "showCancelButton", showClearButton: "showClearButton", spellcheck: "spellcheck", type: "type", value: "value" }, outputs: { ionInput: "ionInput", ionChange: "ionChange", ionCancel: "ionCancel", ionClear: "ionClear", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2247
2267
|
};
|
|
2248
2268
|
IonSearchbar = __decorate([
|
|
2249
2269
|
ProxyCmp({
|
|
@@ -2251,7 +2271,7 @@ IonSearchbar = __decorate([
|
|
|
2251
2271
|
methods: ['setFocus', 'getInputElement']
|
|
2252
2272
|
})
|
|
2253
2273
|
], IonSearchbar);
|
|
2254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSearchbar, decorators: [{
|
|
2255
2275
|
type: Component,
|
|
2256
2276
|
args: [{
|
|
2257
2277
|
selector: 'ion-searchbar',
|
|
@@ -2284,15 +2304,15 @@ let IonSegment = class IonSegment {
|
|
|
2284
2304
|
c.detach();
|
|
2285
2305
|
this.el = r.nativeElement;
|
|
2286
2306
|
}
|
|
2287
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2288
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2307
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2308
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegment, isStandalone: false, selector: "ion-segment", inputs: { color: "color", disabled: "disabled", mode: "mode", scrollable: "scrollable", selectOnFocus: "selectOnFocus", swipeGesture: "swipeGesture", value: "value" }, outputs: { ionChange: "ionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2289
2309
|
};
|
|
2290
2310
|
IonSegment = __decorate([
|
|
2291
2311
|
ProxyCmp({
|
|
2292
2312
|
inputs: ['color', 'disabled', 'mode', 'scrollable', 'selectOnFocus', 'swipeGesture', 'value']
|
|
2293
2313
|
})
|
|
2294
2314
|
], IonSegment);
|
|
2295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegment, decorators: [{
|
|
2296
2316
|
type: Component,
|
|
2297
2317
|
args: [{
|
|
2298
2318
|
selector: 'ion-segment',
|
|
@@ -2314,15 +2334,15 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
2314
2334
|
c.detach();
|
|
2315
2335
|
this.el = r.nativeElement;
|
|
2316
2336
|
}
|
|
2317
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2318
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2337
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2338
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentButton, isStandalone: false, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2319
2339
|
};
|
|
2320
2340
|
IonSegmentButton = __decorate([
|
|
2321
2341
|
ProxyCmp({
|
|
2322
2342
|
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
2323
2343
|
})
|
|
2324
2344
|
], IonSegmentButton);
|
|
2325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
2326
2346
|
type: Component,
|
|
2327
2347
|
args: [{
|
|
2328
2348
|
selector: 'ion-segment-button',
|
|
@@ -2341,13 +2361,13 @@ let IonSegmentContent = class IonSegmentContent {
|
|
|
2341
2361
|
c.detach();
|
|
2342
2362
|
this.el = r.nativeElement;
|
|
2343
2363
|
}
|
|
2344
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2345
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2364
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2365
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentContent, isStandalone: false, selector: "ion-segment-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2346
2366
|
};
|
|
2347
2367
|
IonSegmentContent = __decorate([
|
|
2348
2368
|
ProxyCmp({})
|
|
2349
2369
|
], IonSegmentContent);
|
|
2350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentContent, decorators: [{
|
|
2351
2371
|
type: Component,
|
|
2352
2372
|
args: [{
|
|
2353
2373
|
selector: 'ion-segment-content',
|
|
@@ -2367,15 +2387,15 @@ let IonSegmentView = class IonSegmentView {
|
|
|
2367
2387
|
c.detach();
|
|
2368
2388
|
this.el = r.nativeElement;
|
|
2369
2389
|
}
|
|
2370
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2371
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2390
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2391
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSegmentView, isStandalone: false, selector: "ion-segment-view", inputs: { disabled: "disabled", swipeGesture: "swipeGesture" }, outputs: { ionSegmentViewScroll: "ionSegmentViewScroll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2372
2392
|
};
|
|
2373
2393
|
IonSegmentView = __decorate([
|
|
2374
2394
|
ProxyCmp({
|
|
2375
2395
|
inputs: ['disabled', 'swipeGesture']
|
|
2376
2396
|
})
|
|
2377
2397
|
], IonSegmentView);
|
|
2378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSegmentView, decorators: [{
|
|
2379
2399
|
type: Component,
|
|
2380
2400
|
args: [{
|
|
2381
2401
|
selector: 'ion-segment-view',
|
|
@@ -2402,8 +2422,8 @@ let IonSelect = class IonSelect {
|
|
|
2402
2422
|
c.detach();
|
|
2403
2423
|
this.el = r.nativeElement;
|
|
2404
2424
|
}
|
|
2405
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2406
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2425
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2426
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelect, isStandalone: false, selector: "ion-select", inputs: { cancelText: "cancelText", color: "color", compareWith: "compareWith", disabled: "disabled", errorText: "errorText", expandedIcon: "expandedIcon", fill: "fill", helperText: "helperText", interface: "interface", interfaceOptions: "interfaceOptions", justify: "justify", label: "label", labelPlacement: "labelPlacement", mode: "mode", multiple: "multiple", name: "name", okText: "okText", placeholder: "placeholder", required: "required", selectedText: "selectedText", shape: "shape", toggleIcon: "toggleIcon", value: "value" }, outputs: { ionChange: "ionChange", ionCancel: "ionCancel", ionDismiss: "ionDismiss", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2407
2427
|
};
|
|
2408
2428
|
IonSelect = __decorate([
|
|
2409
2429
|
ProxyCmp({
|
|
@@ -2411,7 +2431,7 @@ IonSelect = __decorate([
|
|
|
2411
2431
|
methods: ['open']
|
|
2412
2432
|
})
|
|
2413
2433
|
], IonSelect);
|
|
2414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelect, decorators: [{
|
|
2415
2435
|
type: Component,
|
|
2416
2436
|
args: [{
|
|
2417
2437
|
selector: 'ion-select',
|
|
@@ -2441,15 +2461,15 @@ let IonSelectModal = class IonSelectModal {
|
|
|
2441
2461
|
c.detach();
|
|
2442
2462
|
this.el = r.nativeElement;
|
|
2443
2463
|
}
|
|
2444
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2445
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2464
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2465
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectModal, isStandalone: false, selector: "ion-select-modal", inputs: { cancelText: "cancelText", header: "header", multiple: "multiple", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2446
2466
|
};
|
|
2447
2467
|
IonSelectModal = __decorate([
|
|
2448
2468
|
ProxyCmp({
|
|
2449
2469
|
inputs: ['cancelText', 'header', 'multiple', 'options']
|
|
2450
2470
|
})
|
|
2451
2471
|
], IonSelectModal);
|
|
2452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectModal, decorators: [{
|
|
2453
2473
|
type: Component,
|
|
2454
2474
|
args: [{
|
|
2455
2475
|
selector: 'ion-select-modal',
|
|
@@ -2468,15 +2488,15 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2468
2488
|
c.detach();
|
|
2469
2489
|
this.el = r.nativeElement;
|
|
2470
2490
|
}
|
|
2471
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2472
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2491
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2492
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSelectOption, isStandalone: false, selector: "ion-select-option", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2473
2493
|
};
|
|
2474
2494
|
IonSelectOption = __decorate([
|
|
2475
2495
|
ProxyCmp({
|
|
2476
2496
|
inputs: ['disabled', 'value']
|
|
2477
2497
|
})
|
|
2478
2498
|
], IonSelectOption);
|
|
2479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
2480
2500
|
type: Component,
|
|
2481
2501
|
args: [{
|
|
2482
2502
|
selector: 'ion-select-option',
|
|
@@ -2495,15 +2515,15 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2495
2515
|
c.detach();
|
|
2496
2516
|
this.el = r.nativeElement;
|
|
2497
2517
|
}
|
|
2498
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2499
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2518
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2519
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSkeletonText, isStandalone: false, selector: "ion-skeleton-text", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2500
2520
|
};
|
|
2501
2521
|
IonSkeletonText = __decorate([
|
|
2502
2522
|
ProxyCmp({
|
|
2503
2523
|
inputs: ['animated']
|
|
2504
2524
|
})
|
|
2505
2525
|
], IonSkeletonText);
|
|
2506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
2507
2527
|
type: Component,
|
|
2508
2528
|
args: [{
|
|
2509
2529
|
selector: 'ion-skeleton-text',
|
|
@@ -2522,15 +2542,15 @@ let IonSpinner = class IonSpinner {
|
|
|
2522
2542
|
c.detach();
|
|
2523
2543
|
this.el = r.nativeElement;
|
|
2524
2544
|
}
|
|
2525
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2526
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2545
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2546
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSpinner, isStandalone: false, selector: "ion-spinner", inputs: { color: "color", duration: "duration", name: "name", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2527
2547
|
};
|
|
2528
2548
|
IonSpinner = __decorate([
|
|
2529
2549
|
ProxyCmp({
|
|
2530
2550
|
inputs: ['color', 'duration', 'name', 'paused']
|
|
2531
2551
|
})
|
|
2532
2552
|
], IonSpinner);
|
|
2533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSpinner, decorators: [{
|
|
2534
2554
|
type: Component,
|
|
2535
2555
|
args: [{
|
|
2536
2556
|
selector: 'ion-spinner',
|
|
@@ -2550,15 +2570,15 @@ let IonSplitPane = class IonSplitPane {
|
|
|
2550
2570
|
c.detach();
|
|
2551
2571
|
this.el = r.nativeElement;
|
|
2552
2572
|
}
|
|
2553
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2554
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2573
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2574
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonSplitPane, isStandalone: false, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", when: "when" }, outputs: { ionSplitPaneVisible: "ionSplitPaneVisible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2555
2575
|
};
|
|
2556
2576
|
IonSplitPane = __decorate([
|
|
2557
2577
|
ProxyCmp({
|
|
2558
2578
|
inputs: ['contentId', 'disabled', 'when']
|
|
2559
2579
|
})
|
|
2560
2580
|
], IonSplitPane);
|
|
2561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
2562
2582
|
type: Component,
|
|
2563
2583
|
args: [{
|
|
2564
2584
|
selector: 'ion-split-pane',
|
|
@@ -2580,8 +2600,8 @@ let IonTab = class IonTab {
|
|
|
2580
2600
|
c.detach();
|
|
2581
2601
|
this.el = r.nativeElement;
|
|
2582
2602
|
}
|
|
2583
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2584
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2603
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2604
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTab, isStandalone: false, selector: "ion-tab", inputs: { component: "component", tab: "tab" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2585
2605
|
};
|
|
2586
2606
|
IonTab = __decorate([
|
|
2587
2607
|
ProxyCmp({
|
|
@@ -2589,7 +2609,7 @@ IonTab = __decorate([
|
|
|
2589
2609
|
methods: ['setActive']
|
|
2590
2610
|
})
|
|
2591
2611
|
], IonTab);
|
|
2592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTab, decorators: [{
|
|
2593
2613
|
type: Component,
|
|
2594
2614
|
args: [{
|
|
2595
2615
|
selector: 'ion-tab',
|
|
@@ -2608,15 +2628,15 @@ let IonTabBar = class IonTabBar {
|
|
|
2608
2628
|
c.detach();
|
|
2609
2629
|
this.el = r.nativeElement;
|
|
2610
2630
|
}
|
|
2611
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2612
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2631
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2632
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabBar, isStandalone: false, selector: "ion-tab-bar", inputs: { color: "color", mode: "mode", selectedTab: "selectedTab", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2613
2633
|
};
|
|
2614
2634
|
IonTabBar = __decorate([
|
|
2615
2635
|
ProxyCmp({
|
|
2616
2636
|
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2617
2637
|
})
|
|
2618
2638
|
], IonTabBar);
|
|
2619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabBar, decorators: [{
|
|
2620
2640
|
type: Component,
|
|
2621
2641
|
args: [{
|
|
2622
2642
|
selector: 'ion-tab-bar',
|
|
@@ -2635,15 +2655,15 @@ let IonTabButton = class IonTabButton {
|
|
|
2635
2655
|
c.detach();
|
|
2636
2656
|
this.el = r.nativeElement;
|
|
2637
2657
|
}
|
|
2638
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2639
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2658
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2659
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabButton, isStandalone: false, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", tab: "tab", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2640
2660
|
};
|
|
2641
2661
|
IonTabButton = __decorate([
|
|
2642
2662
|
ProxyCmp({
|
|
2643
2663
|
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2644
2664
|
})
|
|
2645
2665
|
], IonTabButton);
|
|
2646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2666
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabButton, decorators: [{
|
|
2647
2667
|
type: Component,
|
|
2648
2668
|
args: [{
|
|
2649
2669
|
selector: 'ion-tab-button',
|
|
@@ -2662,15 +2682,15 @@ let IonText = class IonText {
|
|
|
2662
2682
|
c.detach();
|
|
2663
2683
|
this.el = r.nativeElement;
|
|
2664
2684
|
}
|
|
2665
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2666
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2685
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2686
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonText, isStandalone: false, selector: "ion-text", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2667
2687
|
};
|
|
2668
2688
|
IonText = __decorate([
|
|
2669
2689
|
ProxyCmp({
|
|
2670
2690
|
inputs: ['color', 'mode']
|
|
2671
2691
|
})
|
|
2672
2692
|
], IonText);
|
|
2673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonText, decorators: [{
|
|
2674
2694
|
type: Component,
|
|
2675
2695
|
args: [{
|
|
2676
2696
|
selector: 'ion-text',
|
|
@@ -2693,8 +2713,8 @@ let IonTextarea = class IonTextarea {
|
|
|
2693
2713
|
c.detach();
|
|
2694
2714
|
this.el = r.nativeElement;
|
|
2695
2715
|
}
|
|
2696
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2697
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2716
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2717
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTextarea, isStandalone: false, selector: "ion-textarea", inputs: { autoGrow: "autoGrow", autocapitalize: "autocapitalize", autofocus: "autofocus", clearOnEdit: "clearOnEdit", color: "color", cols: "cols", counter: "counter", counterFormatter: "counterFormatter", debounce: "debounce", disabled: "disabled", enterkeyhint: "enterkeyhint", errorText: "errorText", fill: "fill", helperText: "helperText", inputmode: "inputmode", label: "label", labelPlacement: "labelPlacement", maxlength: "maxlength", minlength: "minlength", mode: "mode", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", shape: "shape", spellcheck: "spellcheck", value: "value", wrap: "wrap" }, outputs: { ionChange: "ionChange", ionInput: "ionInput", ionBlur: "ionBlur", ionFocus: "ionFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2698
2718
|
};
|
|
2699
2719
|
IonTextarea = __decorate([
|
|
2700
2720
|
ProxyCmp({
|
|
@@ -2702,7 +2722,7 @@ IonTextarea = __decorate([
|
|
|
2702
2722
|
methods: ['setFocus', 'getInputElement']
|
|
2703
2723
|
})
|
|
2704
2724
|
], IonTextarea);
|
|
2705
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTextarea, decorators: [{
|
|
2706
2726
|
type: Component,
|
|
2707
2727
|
args: [{
|
|
2708
2728
|
selector: 'ion-textarea',
|
|
@@ -2730,13 +2750,13 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2730
2750
|
c.detach();
|
|
2731
2751
|
this.el = r.nativeElement;
|
|
2732
2752
|
}
|
|
2733
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2734
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2753
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2754
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonThumbnail, isStandalone: false, selector: "ion-thumbnail", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2735
2755
|
};
|
|
2736
2756
|
IonThumbnail = __decorate([
|
|
2737
2757
|
ProxyCmp({})
|
|
2738
2758
|
], IonThumbnail);
|
|
2739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2759
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
2740
2760
|
type: Component,
|
|
2741
2761
|
args: [{
|
|
2742
2762
|
selector: 'ion-thumbnail',
|
|
@@ -2755,15 +2775,15 @@ let IonTitle = class IonTitle {
|
|
|
2755
2775
|
c.detach();
|
|
2756
2776
|
this.el = r.nativeElement;
|
|
2757
2777
|
}
|
|
2758
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2759
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2778
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2779
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTitle, isStandalone: false, selector: "ion-title", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2760
2780
|
};
|
|
2761
2781
|
IonTitle = __decorate([
|
|
2762
2782
|
ProxyCmp({
|
|
2763
2783
|
inputs: ['color', 'size']
|
|
2764
2784
|
})
|
|
2765
2785
|
], IonTitle);
|
|
2766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTitle, decorators: [{
|
|
2767
2787
|
type: Component,
|
|
2768
2788
|
args: [{
|
|
2769
2789
|
selector: 'ion-title',
|
|
@@ -2790,8 +2810,8 @@ let IonToast = class IonToast {
|
|
|
2790
2810
|
c.detach();
|
|
2791
2811
|
this.el = r.nativeElement;
|
|
2792
2812
|
}
|
|
2793
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2794
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2813
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2814
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToast, isStandalone: false, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", swipeGesture: "swipeGesture", translucent: "translucent", trigger: "trigger" }, outputs: { ionToastDidPresent: "ionToastDidPresent", ionToastWillPresent: "ionToastWillPresent", ionToastWillDismiss: "ionToastWillDismiss", ionToastDidDismiss: "ionToastDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2795
2815
|
};
|
|
2796
2816
|
IonToast = __decorate([
|
|
2797
2817
|
ProxyCmp({
|
|
@@ -2799,7 +2819,7 @@ IonToast = __decorate([
|
|
|
2799
2819
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2800
2820
|
})
|
|
2801
2821
|
], IonToast);
|
|
2802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToast, decorators: [{
|
|
2803
2823
|
type: Component,
|
|
2804
2824
|
args: [{
|
|
2805
2825
|
selector: 'ion-toast',
|
|
@@ -2838,15 +2858,15 @@ let IonToggle = class IonToggle {
|
|
|
2838
2858
|
c.detach();
|
|
2839
2859
|
this.el = r.nativeElement;
|
|
2840
2860
|
}
|
|
2841
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2842
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2861
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2862
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToggle, isStandalone: false, selector: "ion-toggle", inputs: { alignment: "alignment", checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", required: "required", value: "value" }, outputs: { ionChange: "ionChange", ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2843
2863
|
};
|
|
2844
2864
|
IonToggle = __decorate([
|
|
2845
2865
|
ProxyCmp({
|
|
2846
2866
|
inputs: ['alignment', 'checked', 'color', 'disabled', 'enableOnOffLabels', 'errorText', 'helperText', 'justify', 'labelPlacement', 'mode', 'name', 'required', 'value']
|
|
2847
2867
|
})
|
|
2848
2868
|
], IonToggle);
|
|
2849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToggle, decorators: [{
|
|
2850
2870
|
type: Component,
|
|
2851
2871
|
args: [{
|
|
2852
2872
|
selector: 'ion-toggle',
|
|
@@ -2872,15 +2892,15 @@ let IonToolbar = class IonToolbar {
|
|
|
2872
2892
|
c.detach();
|
|
2873
2893
|
this.el = r.nativeElement;
|
|
2874
2894
|
}
|
|
2875
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2876
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2895
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2896
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonToolbar, isStandalone: false, selector: "ion-toolbar", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2877
2897
|
};
|
|
2878
2898
|
IonToolbar = __decorate([
|
|
2879
2899
|
ProxyCmp({
|
|
2880
2900
|
inputs: ['color', 'mode']
|
|
2881
2901
|
})
|
|
2882
2902
|
], IonToolbar);
|
|
2883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonToolbar, decorators: [{
|
|
2884
2904
|
type: Component,
|
|
2885
2905
|
args: [{
|
|
2886
2906
|
selector: 'ion-toolbar',
|
|
@@ -2892,7 +2912,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2892
2912
|
}]
|
|
2893
2913
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2894
2914
|
|
|
2895
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
2896
2915
|
class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
2897
2916
|
parentOutlet;
|
|
2898
2917
|
/**
|
|
@@ -2913,10 +2932,10 @@ class IonRouterOutlet extends IonRouterOutlet$1 {
|
|
|
2913
2932
|
super(name, tabs, commonLocation, elementRef, router, zone, activatedRoute, parentOutlet);
|
|
2914
2933
|
this.parentOutlet = parentOutlet;
|
|
2915
2934
|
}
|
|
2916
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2917
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2935
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, deps: [{ token: 'name', attribute: true }, { token: 'tabs', attribute: true, optional: true }, { token: i1.Location }, { token: i0.ElementRef }, { token: i2.Router }, { token: i0.NgZone }, { token: i2.ActivatedRoute }, { token: IonRouterOutlet, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
2936
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonRouterOutlet, isStandalone: false, selector: "ion-router-outlet", viewQueries: [{ propertyName: "outletContent", first: true, predicate: ["outletContent"], descendants: true, read: ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0, template: '<ng-container #outletContent><ng-content></ng-content></ng-container>', isInline: true });
|
|
2918
2937
|
}
|
|
2919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonRouterOutlet, decorators: [{
|
|
2920
2939
|
type: Component,
|
|
2921
2940
|
args: [{
|
|
2922
2941
|
standalone: false,
|
|
@@ -2940,14 +2959,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2940
2959
|
args: ['outletContent', { read: ViewContainerRef, static: true }]
|
|
2941
2960
|
}] } });
|
|
2942
2961
|
|
|
2943
|
-
// eslint-disable-next-line @angular-eslint/component-class-suffix
|
|
2944
2962
|
class IonTabs extends IonTabs$1 {
|
|
2945
2963
|
outlet;
|
|
2946
2964
|
tabBar;
|
|
2947
2965
|
tabBars;
|
|
2948
2966
|
tabs;
|
|
2949
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2950
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2967
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
2968
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonTabs, isStandalone: false, selector: "ion-tabs", queries: [{ propertyName: "tabBar", first: true, predicate: IonTabBar, descendants: true }, { propertyName: "tabBars", predicate: IonTabBar }, { propertyName: "tabs", predicate: IonTab }], viewQueries: [{ propertyName: "outlet", first: true, predicate: ["outlet"], descendants: true, read: IonRouterOutlet }], usesInheritance: true, ngImport: i0, template: `
|
|
2951
2969
|
<ng-content select="[slot=top]"></ng-content>
|
|
2952
2970
|
<div class="tabs-inner" #tabsInner>
|
|
2953
2971
|
<ion-router-outlet
|
|
@@ -2962,7 +2980,7 @@ class IonTabs extends IonTabs$1 {
|
|
|
2962
2980
|
<ng-content></ng-content>
|
|
2963
2981
|
`, isInline: true, styles: [":host{display:flex;position:absolute;inset:0;flex-direction:column;width:100%;height:100%;contain:layout size style}.tabs-inner{position:relative;flex:1;contain:layout size style}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IonRouterOutlet, selector: "ion-router-outlet" }] });
|
|
2964
2982
|
}
|
|
2965
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonTabs, decorators: [{
|
|
2966
2984
|
type: Component,
|
|
2967
2985
|
args: [{ standalone: false, selector: 'ion-tabs', template: `
|
|
2968
2986
|
<ng-content select="[slot=top]"></ng-content>
|
|
@@ -2992,15 +3010,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
2992
3010
|
args: [IonTab]
|
|
2993
3011
|
}] } });
|
|
2994
3012
|
|
|
2995
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
2996
3013
|
class IonBackButton extends IonBackButton$1 {
|
|
2997
3014
|
constructor(routerOutlet, navCtrl, config, r, z, c) {
|
|
2998
3015
|
super(routerOutlet, navCtrl, config, r, z, c);
|
|
2999
3016
|
}
|
|
3000
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3001
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3017
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, deps: [{ token: IonRouterOutlet, optional: true }, { token: i2$1.NavController }, { token: i2$1.Config }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3018
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackButton, isStandalone: false, selector: "ion-back-button", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3002
3019
|
}
|
|
3003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackButton, decorators: [{
|
|
3004
3021
|
type: Component,
|
|
3005
3022
|
args: [{
|
|
3006
3023
|
standalone: false,
|
|
@@ -3012,15 +3029,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3012
3029
|
type: Optional
|
|
3013
3030
|
}] }, { type: i2$1.NavController }, { type: i2$1.Config }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }] });
|
|
3014
3031
|
|
|
3015
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3016
3032
|
class IonNav extends IonNav$1 {
|
|
3017
3033
|
constructor(ref, environmentInjector, injector, angularDelegate, z, c) {
|
|
3018
3034
|
super(ref, environmentInjector, injector, angularDelegate, z, c);
|
|
3019
3035
|
}
|
|
3020
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3021
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3036
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, deps: [{ token: i0.ElementRef }, { token: i0.EnvironmentInjector }, { token: i0.Injector }, { token: i2$1.AngularDelegate }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3037
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonNav, isStandalone: false, selector: "ion-nav", usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3022
3038
|
}
|
|
3023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonNav, decorators: [{
|
|
3024
3040
|
type: Component,
|
|
3025
3041
|
args: [{
|
|
3026
3042
|
standalone: false,
|
|
@@ -3037,10 +3053,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3037
3053
|
* animation so that the routing integration will transition correctly.
|
|
3038
3054
|
*/
|
|
3039
3055
|
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: "
|
|
3056
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3057
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: RouterLinkDelegateDirective, isStandalone: false, selector: ":not(a):not(area)[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3042
3058
|
}
|
|
3043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3059
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkDelegateDirective, decorators: [{
|
|
3044
3060
|
type: Directive,
|
|
3045
3061
|
args: [{
|
|
3046
3062
|
standalone: false,
|
|
@@ -3048,10 +3064,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3048
3064
|
}]
|
|
3049
3065
|
}] });
|
|
3050
3066
|
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: "
|
|
3067
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3068
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: RouterLinkWithHrefDelegateDirective, isStandalone: false, selector: "a[routerLink],area[routerLink]", usesInheritance: true, ngImport: i0 });
|
|
3053
3069
|
}
|
|
3054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3070
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: RouterLinkWithHrefDelegateDirective, decorators: [{
|
|
3055
3071
|
type: Directive,
|
|
3056
3072
|
args: [{
|
|
3057
3073
|
standalone: false,
|
|
@@ -3060,12 +3076,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3060
3076
|
}] });
|
|
3061
3077
|
|
|
3062
3078
|
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: "
|
|
3079
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3080
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonModal, isStandalone: false, selector: "ion-modal", usesInheritance: true, ngImport: i0, template: `<div class="ion-delegate-host ion-page" *ngIf="isCmpOpen || keepContentsMounted">
|
|
3065
3081
|
<ng-container [ngTemplateOutlet]="template"></ng-container>
|
|
3066
3082
|
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3067
3083
|
}
|
|
3068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3084
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonModal, decorators: [{
|
|
3069
3085
|
type: Component,
|
|
3070
3086
|
args: [{
|
|
3071
3087
|
standalone: false,
|
|
@@ -3078,10 +3094,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
3078
3094
|
}] });
|
|
3079
3095
|
|
|
3080
3096
|
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: "
|
|
3097
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3098
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonPopover, isStandalone: false, selector: "ion-popover", usesInheritance: true, ngImport: i0, template: `<ng-container [ngTemplateOutlet]="template" *ngIf="isCmpOpen || keepContentsMounted"></ng-container>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3083
3099
|
}
|
|
3084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonPopover, decorators: [{
|
|
3085
3101
|
type: Component,
|
|
3086
3102
|
args: [{
|
|
3087
3103
|
standalone: false,
|
|
@@ -3100,12 +3116,11 @@ const ION_MAX_VALIDATOR = {
|
|
|
3100
3116
|
useExisting: forwardRef(() => IonMaxValidator),
|
|
3101
3117
|
multi: true,
|
|
3102
3118
|
};
|
|
3103
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3104
3119
|
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: "
|
|
3120
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3121
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonMaxValidator, isStandalone: false, selector: "ion-input[type=number][max][formControlName],ion-input[type=number][max][formControl],ion-input[type=number][max][ngModel]", host: { properties: { "attr.max": "enabled(max) ? max : null" } }, providers: [ION_MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3107
3122
|
}
|
|
3108
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMaxValidator, decorators: [{
|
|
3109
3124
|
type: Directive,
|
|
3110
3125
|
args: [{
|
|
3111
3126
|
standalone: false,
|
|
@@ -3124,12 +3139,11 @@ const ION_MIN_VALIDATOR = {
|
|
|
3124
3139
|
useExisting: forwardRef(() => IonMinValidator),
|
|
3125
3140
|
multi: true,
|
|
3126
3141
|
};
|
|
3127
|
-
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
|
3128
3142
|
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: "
|
|
3143
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3144
|
+
/** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: IonMinValidator, isStandalone: false, selector: "ion-input[type=number][min][formControlName],ion-input[type=number][min][formControl],ion-input[type=number][min][ngModel]", host: { properties: { "attr.min": "enabled(min) ? min : null" } }, providers: [ION_MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
3131
3145
|
}
|
|
3132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonMinValidator, decorators: [{
|
|
3133
3147
|
type: Directive,
|
|
3134
3148
|
args: [{
|
|
3135
3149
|
standalone: false,
|
|
@@ -3143,10 +3157,10 @@ class AlertController extends OverlayBaseController {
|
|
|
3143
3157
|
constructor() {
|
|
3144
3158
|
super(alertController);
|
|
3145
3159
|
}
|
|
3146
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3147
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3160
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3161
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, providedIn: 'root' });
|
|
3148
3162
|
}
|
|
3149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, decorators: [{
|
|
3150
3164
|
type: Injectable,
|
|
3151
3165
|
args: [{
|
|
3152
3166
|
providedIn: 'root',
|
|
@@ -3177,10 +3191,10 @@ class AnimationController {
|
|
|
3177
3191
|
easingTime(p0, p1, p2, p3, progression) {
|
|
3178
3192
|
return getTimeGivenProgression(p0, p1, p2, p3, progression);
|
|
3179
3193
|
}
|
|
3180
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3181
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3194
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3195
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, providedIn: 'root' });
|
|
3182
3196
|
}
|
|
3183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, decorators: [{
|
|
3184
3198
|
type: Injectable,
|
|
3185
3199
|
args: [{
|
|
3186
3200
|
providedIn: 'root',
|
|
@@ -3191,10 +3205,10 @@ class ActionSheetController extends OverlayBaseController {
|
|
|
3191
3205
|
constructor() {
|
|
3192
3206
|
super(actionSheetController);
|
|
3193
3207
|
}
|
|
3194
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3195
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3208
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3209
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
|
|
3196
3210
|
}
|
|
3197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, decorators: [{
|
|
3198
3212
|
type: Injectable,
|
|
3199
3213
|
args: [{
|
|
3200
3214
|
providedIn: 'root',
|
|
@@ -3220,10 +3234,10 @@ class GestureController {
|
|
|
3220
3234
|
}
|
|
3221
3235
|
return createGesture(opts);
|
|
3222
3236
|
}
|
|
3223
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3224
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3237
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3238
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, providedIn: 'root' });
|
|
3225
3239
|
}
|
|
3226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, decorators: [{
|
|
3227
3241
|
type: Injectable,
|
|
3228
3242
|
args: [{
|
|
3229
3243
|
providedIn: 'root',
|
|
@@ -3234,10 +3248,10 @@ class LoadingController extends OverlayBaseController {
|
|
|
3234
3248
|
constructor() {
|
|
3235
3249
|
super(loadingController);
|
|
3236
3250
|
}
|
|
3237
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3238
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3251
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3252
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, providedIn: 'root' });
|
|
3239
3253
|
}
|
|
3240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, decorators: [{
|
|
3241
3255
|
type: Injectable,
|
|
3242
3256
|
args: [{
|
|
3243
3257
|
providedIn: 'root',
|
|
@@ -3248,10 +3262,10 @@ class MenuController extends MenuController$1 {
|
|
|
3248
3262
|
constructor() {
|
|
3249
3263
|
super(menuController);
|
|
3250
3264
|
}
|
|
3251
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3252
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3265
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3266
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, providedIn: 'root' });
|
|
3253
3267
|
}
|
|
3254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, decorators: [{
|
|
3255
3269
|
type: Injectable,
|
|
3256
3270
|
args: [{
|
|
3257
3271
|
providedIn: 'root',
|
|
@@ -3272,10 +3286,10 @@ class ModalController extends OverlayBaseController {
|
|
|
3272
3286
|
delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
|
|
3273
3287
|
});
|
|
3274
3288
|
}
|
|
3275
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3276
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3289
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3290
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController });
|
|
3277
3291
|
}
|
|
3278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, decorators: [{
|
|
3279
3293
|
type: Injectable
|
|
3280
3294
|
}], ctorParameters: () => [] });
|
|
3281
3295
|
|
|
@@ -3299,10 +3313,10 @@ class ToastController extends OverlayBaseController {
|
|
|
3299
3313
|
constructor() {
|
|
3300
3314
|
super(toastController);
|
|
3301
3315
|
}
|
|
3302
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3303
|
-
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3316
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3317
|
+
/** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, providedIn: 'root' });
|
|
3304
3318
|
}
|
|
3305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, decorators: [{
|
|
3306
3320
|
type: Injectable,
|
|
3307
3321
|
args: [{
|
|
3308
3322
|
providedIn: 'root',
|
|
@@ -3465,8 +3479,8 @@ class IonicModule {
|
|
|
3465
3479
|
],
|
|
3466
3480
|
};
|
|
3467
3481
|
}
|
|
3468
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3469
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
3482
|
+
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3483
|
+
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, declarations: [IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonInputOtp, IonInputPasswordToggle, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonNavLink, IonNote, IonPicker, IonPickerColumn, IonPickerColumnOption, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonSelect, IonSelectModal, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar,
|
|
3470
3484
|
// manual proxies
|
|
3471
3485
|
IonModal,
|
|
3472
3486
|
IonPopover,
|
|
@@ -3503,9 +3517,9 @@ class IonicModule {
|
|
|
3503
3517
|
// validators
|
|
3504
3518
|
IonMinValidator,
|
|
3505
3519
|
IonMaxValidator] });
|
|
3506
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3520
|
+
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
|
|
3507
3521
|
}
|
|
3508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, decorators: [{
|
|
3509
3523
|
type: NgModule,
|
|
3510
3524
|
args: [{
|
|
3511
3525
|
declarations: DECLARATIONS,
|