@ionic/angular 8.5.2-dev.11742574407.1a7233c2 → 8.5.2-nightly.20250320
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/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- package/directives/proxies.d.ts +83 -84
- package/esm2022/directives/proxies.mjs +240 -251
- package/esm2022/standalone/directives/proxies.mjs +210 -216
- package/fesm2022/ionic-angular-standalone.mjs +209 -215
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +239 -250
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +70 -70
- package/css/ionic/bundle.ionic.css +0 -1
- package/css/ionic/bundle.ionic.css.map +0 -1
- package/css/ionic/core.ionic.css +0 -1
- package/css/ionic/core.ionic.css.map +0 -1
- package/css/ionic/global.bundle.ionic.css +0 -1
- package/css/ionic/global.bundle.ionic.css.map +0 -1
- package/css/ionic/ionic-swiper.ionic.css +0 -1
- package/css/ionic/ionic-swiper.ionic.css.map +0 -1
- package/css/ionic/link.ionic.css +0 -1
- package/css/ionic/link.ionic.css.map +0 -1
- package/css/ionic/structure.ionic.css +0 -1
- package/css/ionic/structure.ionic.css.map +0 -1
- package/css/ionic/typography.ionic.css +0 -1
- package/css/ionic/typography.ionic.css.map +0 -1
- package/css/ionic/utils.bundle.ionic.css +0 -1
- package/css/ionic/utils.bundle.ionic.css.map +0 -1
|
@@ -314,12 +314,12 @@ let IonAccordion = class IonAccordion {
|
|
|
314
314
|
this.el = r.nativeElement;
|
|
315
315
|
}
|
|
316
316
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
317
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, isStandalone: true, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly",
|
|
317
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordion, isStandalone: true, selector: "ion-accordion", inputs: { disabled: "disabled", mode: "mode", readonly: "readonly", toggleIcon: "toggleIcon", toggleIconSlot: "toggleIconSlot", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
318
318
|
};
|
|
319
319
|
IonAccordion = __decorate([
|
|
320
320
|
ProxyCmp({
|
|
321
321
|
defineCustomElementFn: defineCustomElement$5,
|
|
322
|
-
inputs: ['disabled', 'mode', 'readonly', '
|
|
322
|
+
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']
|
|
323
323
|
})
|
|
324
324
|
], IonAccordion);
|
|
325
325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordion, decorators: [{
|
|
@@ -329,7 +329,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
329
329
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
330
330
|
template: '<ng-content></ng-content>',
|
|
331
331
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
332
|
-
inputs: ['disabled', 'mode', 'readonly', '
|
|
332
|
+
inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],
|
|
333
333
|
standalone: true
|
|
334
334
|
}]
|
|
335
335
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -343,12 +343,12 @@ let IonAccordionGroup = class IonAccordionGroup {
|
|
|
343
343
|
proxyOutputs(this, this.el, ['ionChange']);
|
|
344
344
|
}
|
|
345
345
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
346
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, isStandalone: true, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly",
|
|
346
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAccordionGroup, isStandalone: true, selector: "ion-accordion-group", inputs: { animated: "animated", disabled: "disabled", expand: "expand", mode: "mode", multiple: "multiple", readonly: "readonly", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
347
347
|
};
|
|
348
348
|
IonAccordionGroup = __decorate([
|
|
349
349
|
ProxyCmp({
|
|
350
350
|
defineCustomElementFn: defineCustomElement$6,
|
|
351
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', '
|
|
351
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value']
|
|
352
352
|
})
|
|
353
353
|
], IonAccordionGroup);
|
|
354
354
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAccordionGroup, decorators: [{
|
|
@@ -358,7 +358,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
358
358
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
359
359
|
template: '<ng-content></ng-content>',
|
|
360
360
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
361
|
-
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', '
|
|
361
|
+
inputs: ['animated', 'disabled', 'expand', 'mode', 'multiple', 'readonly', 'value'],
|
|
362
362
|
standalone: true
|
|
363
363
|
}]
|
|
364
364
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -372,12 +372,12 @@ let IonActionSheet = class IonActionSheet {
|
|
|
372
372
|
proxyOutputs(this, this.el, ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
373
373
|
}
|
|
374
374
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
375
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader",
|
|
375
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
376
376
|
};
|
|
377
377
|
IonActionSheet = __decorate([
|
|
378
378
|
ProxyCmp({
|
|
379
379
|
defineCustomElementFn: defineCustomElement$7,
|
|
380
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', '
|
|
380
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
381
381
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
382
382
|
})
|
|
383
383
|
], IonActionSheet);
|
|
@@ -388,7 +388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
388
388
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
389
389
|
template: '<ng-content></ng-content>',
|
|
390
390
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
391
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', '
|
|
391
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
392
392
|
standalone: true
|
|
393
393
|
}]
|
|
394
394
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -402,12 +402,12 @@ let IonAlert = class IonAlert {
|
|
|
402
402
|
proxyOutputs(this, this.el, ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
403
403
|
}
|
|
404
404
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
405
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader",
|
|
405
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
406
406
|
};
|
|
407
407
|
IonAlert = __decorate([
|
|
408
408
|
ProxyCmp({
|
|
409
409
|
defineCustomElementFn: defineCustomElement$8,
|
|
410
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', '
|
|
410
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
411
411
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
412
412
|
})
|
|
413
413
|
], IonAlert);
|
|
@@ -418,7 +418,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
418
418
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
419
419
|
template: '<ng-content></ng-content>',
|
|
420
420
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
421
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', '
|
|
421
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
|
|
422
422
|
standalone: true
|
|
423
423
|
}]
|
|
424
424
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -431,12 +431,11 @@ let IonApp = class IonApp {
|
|
|
431
431
|
this.el = r.nativeElement;
|
|
432
432
|
}
|
|
433
433
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
434
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, isStandalone: true, selector: "ion-app",
|
|
434
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonApp, isStandalone: true, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
435
435
|
};
|
|
436
436
|
IonApp = __decorate([
|
|
437
437
|
ProxyCmp({
|
|
438
438
|
defineCustomElementFn: defineCustomElement$9,
|
|
439
|
-
inputs: ['mode', 'theme'],
|
|
440
439
|
methods: ['setFocus']
|
|
441
440
|
})
|
|
442
441
|
], IonApp);
|
|
@@ -447,7 +446,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
447
446
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
448
447
|
template: '<ng-content></ng-content>',
|
|
449
448
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
450
|
-
inputs: [
|
|
449
|
+
inputs: [],
|
|
451
450
|
standalone: true
|
|
452
451
|
}]
|
|
453
452
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -460,12 +459,11 @@ let IonAvatar = class IonAvatar {
|
|
|
460
459
|
this.el = r.nativeElement;
|
|
461
460
|
}
|
|
462
461
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
463
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, isStandalone: true, selector: "ion-avatar",
|
|
462
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonAvatar, isStandalone: true, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
464
463
|
};
|
|
465
464
|
IonAvatar = __decorate([
|
|
466
465
|
ProxyCmp({
|
|
467
|
-
defineCustomElementFn: defineCustomElement$a
|
|
468
|
-
inputs: ['mode', 'shape', 'size', 'theme']
|
|
466
|
+
defineCustomElementFn: defineCustomElement$a
|
|
469
467
|
})
|
|
470
468
|
], IonAvatar);
|
|
471
469
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonAvatar, decorators: [{
|
|
@@ -475,7 +473,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
475
473
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
476
474
|
template: '<ng-content></ng-content>',
|
|
477
475
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
478
|
-
inputs: [
|
|
476
|
+
inputs: [],
|
|
479
477
|
standalone: true
|
|
480
478
|
}]
|
|
481
479
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -489,12 +487,12 @@ let IonBackdrop = class IonBackdrop {
|
|
|
489
487
|
proxyOutputs(this, this.el, ['ionBackdropTap']);
|
|
490
488
|
}
|
|
491
489
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
492
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: {
|
|
490
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
493
491
|
};
|
|
494
492
|
IonBackdrop = __decorate([
|
|
495
493
|
ProxyCmp({
|
|
496
494
|
defineCustomElementFn: defineCustomElement$b,
|
|
497
|
-
inputs: ['
|
|
495
|
+
inputs: ['stopPropagation', 'tappable', 'visible']
|
|
498
496
|
})
|
|
499
497
|
], IonBackdrop);
|
|
500
498
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBackdrop, decorators: [{
|
|
@@ -504,7 +502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
504
502
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
505
503
|
template: '<ng-content></ng-content>',
|
|
506
504
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
507
|
-
inputs: ['
|
|
505
|
+
inputs: ['stopPropagation', 'tappable', 'visible'],
|
|
508
506
|
standalone: true
|
|
509
507
|
}]
|
|
510
508
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -517,12 +515,12 @@ let IonBadge = class IonBadge {
|
|
|
517
515
|
this.el = r.nativeElement;
|
|
518
516
|
}
|
|
519
517
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
520
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", mode: "mode"
|
|
518
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
521
519
|
};
|
|
522
520
|
IonBadge = __decorate([
|
|
523
521
|
ProxyCmp({
|
|
524
522
|
defineCustomElementFn: defineCustomElement$c,
|
|
525
|
-
inputs: ['color', 'mode'
|
|
523
|
+
inputs: ['color', 'mode']
|
|
526
524
|
})
|
|
527
525
|
], IonBadge);
|
|
528
526
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
|
|
@@ -532,7 +530,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
532
530
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
531
|
template: '<ng-content></ng-content>',
|
|
534
532
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
-
inputs: ['color', 'mode'
|
|
533
|
+
inputs: ['color', 'mode'],
|
|
536
534
|
standalone: true
|
|
537
535
|
}]
|
|
538
536
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -546,12 +544,12 @@ let IonBreadcrumb = class IonBreadcrumb {
|
|
|
546
544
|
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
547
545
|
}
|
|
548
546
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
549
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target"
|
|
547
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
550
548
|
};
|
|
551
549
|
IonBreadcrumb = __decorate([
|
|
552
550
|
ProxyCmp({
|
|
553
551
|
defineCustomElementFn: defineCustomElement$d,
|
|
554
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'
|
|
552
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
|
|
555
553
|
})
|
|
556
554
|
], IonBreadcrumb);
|
|
557
555
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumb, decorators: [{
|
|
@@ -561,7 +559,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
561
559
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
562
560
|
template: '<ng-content></ng-content>',
|
|
563
561
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
564
|
-
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'
|
|
562
|
+
inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
|
|
565
563
|
standalone: true
|
|
566
564
|
}]
|
|
567
565
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -575,12 +573,12 @@ let IonBreadcrumbs = class IonBreadcrumbs {
|
|
|
575
573
|
proxyOutputs(this, this.el, ['ionCollapsedClick']);
|
|
576
574
|
}
|
|
577
575
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
578
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, isStandalone: true, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode"
|
|
576
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonBreadcrumbs, isStandalone: true, selector: "ion-breadcrumbs", inputs: { color: "color", itemsAfterCollapse: "itemsAfterCollapse", itemsBeforeCollapse: "itemsBeforeCollapse", maxItems: "maxItems", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
579
577
|
};
|
|
580
578
|
IonBreadcrumbs = __decorate([
|
|
581
579
|
ProxyCmp({
|
|
582
580
|
defineCustomElementFn: defineCustomElement$e,
|
|
583
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'
|
|
581
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode']
|
|
584
582
|
})
|
|
585
583
|
], IonBreadcrumbs);
|
|
586
584
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBreadcrumbs, decorators: [{
|
|
@@ -590,7 +588,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
590
588
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
591
589
|
template: '<ng-content></ng-content>',
|
|
592
590
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
593
|
-
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'
|
|
591
|
+
inputs: ['color', 'itemsAfterCollapse', 'itemsBeforeCollapse', 'maxItems', 'mode'],
|
|
594
592
|
standalone: true
|
|
595
593
|
}]
|
|
596
594
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -604,12 +602,12 @@ let IonButton = class IonButton {
|
|
|
604
602
|
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
605
603
|
}
|
|
606
604
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
607
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, isStandalone: true, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target",
|
|
605
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButton, isStandalone: true, selector: "ion-button", inputs: { buttonType: "buttonType", color: "color", disabled: "disabled", download: "download", expand: "expand", fill: "fill", form: "form", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", shape: "shape", size: "size", strong: "strong", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
608
606
|
};
|
|
609
607
|
IonButton = __decorate([
|
|
610
608
|
ProxyCmp({
|
|
611
609
|
defineCustomElementFn: defineCustomElement$f,
|
|
612
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', '
|
|
610
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type']
|
|
613
611
|
})
|
|
614
612
|
], IonButton);
|
|
615
613
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButton, decorators: [{
|
|
@@ -619,7 +617,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
619
617
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
620
618
|
template: '<ng-content></ng-content>',
|
|
621
619
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
622
|
-
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', '
|
|
620
|
+
inputs: ['buttonType', 'color', 'disabled', 'download', 'expand', 'fill', 'form', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'shape', 'size', 'strong', 'target', 'type'],
|
|
623
621
|
standalone: true
|
|
624
622
|
}]
|
|
625
623
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -632,12 +630,12 @@ let IonButtons = class IonButtons {
|
|
|
632
630
|
this.el = r.nativeElement;
|
|
633
631
|
}
|
|
634
632
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
635
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, isStandalone: true, selector: "ion-buttons", inputs: { collapse: "collapse"
|
|
633
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonButtons, isStandalone: true, selector: "ion-buttons", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
636
634
|
};
|
|
637
635
|
IonButtons = __decorate([
|
|
638
636
|
ProxyCmp({
|
|
639
637
|
defineCustomElementFn: defineCustomElement$g,
|
|
640
|
-
inputs: ['collapse'
|
|
638
|
+
inputs: ['collapse']
|
|
641
639
|
})
|
|
642
640
|
], IonButtons);
|
|
643
641
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonButtons, decorators: [{
|
|
@@ -647,7 +645,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
647
645
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
648
646
|
template: '<ng-content></ng-content>',
|
|
649
647
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
650
|
-
inputs: ['collapse'
|
|
648
|
+
inputs: ['collapse'],
|
|
651
649
|
standalone: true
|
|
652
650
|
}]
|
|
653
651
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -660,12 +658,12 @@ let IonCard = class IonCard {
|
|
|
660
658
|
this.el = r.nativeElement;
|
|
661
659
|
}
|
|
662
660
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
663
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, isStandalone: true, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection",
|
|
661
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCard, isStandalone: true, selector: "ion-card", inputs: { button: "button", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
664
662
|
};
|
|
665
663
|
IonCard = __decorate([
|
|
666
664
|
ProxyCmp({
|
|
667
665
|
defineCustomElementFn: defineCustomElement$h,
|
|
668
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', '
|
|
666
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
669
667
|
})
|
|
670
668
|
], IonCard);
|
|
671
669
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCard, decorators: [{
|
|
@@ -675,7 +673,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
675
673
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
676
674
|
template: '<ng-content></ng-content>',
|
|
677
675
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
678
|
-
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', '
|
|
676
|
+
inputs: ['button', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
679
677
|
standalone: true
|
|
680
678
|
}]
|
|
681
679
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -688,12 +686,12 @@ let IonCardContent = class IonCardContent {
|
|
|
688
686
|
this.el = r.nativeElement;
|
|
689
687
|
}
|
|
690
688
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
691
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, isStandalone: true, selector: "ion-card-content", inputs: { mode: "mode"
|
|
689
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardContent, isStandalone: true, selector: "ion-card-content", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
692
690
|
};
|
|
693
691
|
IonCardContent = __decorate([
|
|
694
692
|
ProxyCmp({
|
|
695
693
|
defineCustomElementFn: defineCustomElement$i,
|
|
696
|
-
inputs: ['mode'
|
|
694
|
+
inputs: ['mode']
|
|
697
695
|
})
|
|
698
696
|
], IonCardContent);
|
|
699
697
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardContent, decorators: [{
|
|
@@ -703,7 +701,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
703
701
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
704
702
|
template: '<ng-content></ng-content>',
|
|
705
703
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
706
|
-
inputs: ['mode'
|
|
704
|
+
inputs: ['mode'],
|
|
707
705
|
standalone: true
|
|
708
706
|
}]
|
|
709
707
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -716,12 +714,12 @@ let IonCardHeader = class IonCardHeader {
|
|
|
716
714
|
this.el = r.nativeElement;
|
|
717
715
|
}
|
|
718
716
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
719
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, isStandalone: true, selector: "ion-card-header", inputs: { color: "color", mode: "mode",
|
|
717
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardHeader, isStandalone: true, selector: "ion-card-header", inputs: { color: "color", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
720
718
|
};
|
|
721
719
|
IonCardHeader = __decorate([
|
|
722
720
|
ProxyCmp({
|
|
723
721
|
defineCustomElementFn: defineCustomElement$j,
|
|
724
|
-
inputs: ['color', 'mode', '
|
|
722
|
+
inputs: ['color', 'mode', 'translucent']
|
|
725
723
|
})
|
|
726
724
|
], IonCardHeader);
|
|
727
725
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardHeader, decorators: [{
|
|
@@ -731,7 +729,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
731
729
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
732
730
|
template: '<ng-content></ng-content>',
|
|
733
731
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
734
|
-
inputs: ['color', 'mode', '
|
|
732
|
+
inputs: ['color', 'mode', 'translucent'],
|
|
735
733
|
standalone: true
|
|
736
734
|
}]
|
|
737
735
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -744,12 +742,12 @@ let IonCardSubtitle = class IonCardSubtitle {
|
|
|
744
742
|
this.el = r.nativeElement;
|
|
745
743
|
}
|
|
746
744
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
747
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, isStandalone: true, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode"
|
|
745
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardSubtitle, isStandalone: true, selector: "ion-card-subtitle", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
748
746
|
};
|
|
749
747
|
IonCardSubtitle = __decorate([
|
|
750
748
|
ProxyCmp({
|
|
751
749
|
defineCustomElementFn: defineCustomElement$k,
|
|
752
|
-
inputs: ['color', 'mode'
|
|
750
|
+
inputs: ['color', 'mode']
|
|
753
751
|
})
|
|
754
752
|
], IonCardSubtitle);
|
|
755
753
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardSubtitle, decorators: [{
|
|
@@ -759,7 +757,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
759
757
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
760
758
|
template: '<ng-content></ng-content>',
|
|
761
759
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
762
|
-
inputs: ['color', 'mode'
|
|
760
|
+
inputs: ['color', 'mode'],
|
|
763
761
|
standalone: true
|
|
764
762
|
}]
|
|
765
763
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -772,12 +770,12 @@ let IonCardTitle = class IonCardTitle {
|
|
|
772
770
|
this.el = r.nativeElement;
|
|
773
771
|
}
|
|
774
772
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
775
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, isStandalone: true, selector: "ion-card-title", inputs: { color: "color", mode: "mode"
|
|
773
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCardTitle, isStandalone: true, selector: "ion-card-title", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
776
774
|
};
|
|
777
775
|
IonCardTitle = __decorate([
|
|
778
776
|
ProxyCmp({
|
|
779
777
|
defineCustomElementFn: defineCustomElement$l,
|
|
780
|
-
inputs: ['color', 'mode'
|
|
778
|
+
inputs: ['color', 'mode']
|
|
781
779
|
})
|
|
782
780
|
], IonCardTitle);
|
|
783
781
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCardTitle, decorators: [{
|
|
@@ -787,7 +785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
787
785
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
788
786
|
template: '<ng-content></ng-content>',
|
|
789
787
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
790
|
-
inputs: ['color', 'mode'
|
|
788
|
+
inputs: ['color', 'mode'],
|
|
791
789
|
standalone: true
|
|
792
790
|
}]
|
|
793
791
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -800,12 +798,12 @@ let IonChip = class IonChip {
|
|
|
800
798
|
this.el = r.nativeElement;
|
|
801
799
|
}
|
|
802
800
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
803
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, isStandalone: true, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline"
|
|
801
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonChip, isStandalone: true, selector: "ion-chip", inputs: { color: "color", disabled: "disabled", mode: "mode", outline: "outline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
804
802
|
};
|
|
805
803
|
IonChip = __decorate([
|
|
806
804
|
ProxyCmp({
|
|
807
805
|
defineCustomElementFn: defineCustomElement$m,
|
|
808
|
-
inputs: ['color', 'disabled', 'mode', 'outline'
|
|
806
|
+
inputs: ['color', 'disabled', 'mode', 'outline']
|
|
809
807
|
})
|
|
810
808
|
], IonChip);
|
|
811
809
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonChip, decorators: [{
|
|
@@ -815,7 +813,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
815
813
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
816
814
|
template: '<ng-content></ng-content>',
|
|
817
815
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
818
|
-
inputs: ['color', 'disabled', 'mode', 'outline'
|
|
816
|
+
inputs: ['color', 'disabled', 'mode', 'outline'],
|
|
819
817
|
standalone: true
|
|
820
818
|
}]
|
|
821
819
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -828,12 +826,12 @@ let IonCol = class IonCol {
|
|
|
828
826
|
this.el = r.nativeElement;
|
|
829
827
|
}
|
|
830
828
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
831
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, isStandalone: true, selector: "ion-col", inputs: {
|
|
829
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCol, isStandalone: true, selector: "ion-col", inputs: { offset: "offset", offsetLg: "offsetLg", offsetMd: "offsetMd", offsetSm: "offsetSm", offsetXl: "offsetXl", offsetXs: "offsetXs", pull: "pull", pullLg: "pullLg", pullMd: "pullMd", pullSm: "pullSm", pullXl: "pullXl", pullXs: "pullXs", push: "push", pushLg: "pushLg", pushMd: "pushMd", pushSm: "pushSm", pushXl: "pushXl", pushXs: "pushXs", size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm", sizeXl: "sizeXl", sizeXs: "sizeXs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
832
830
|
};
|
|
833
831
|
IonCol = __decorate([
|
|
834
832
|
ProxyCmp({
|
|
835
833
|
defineCustomElementFn: defineCustomElement$n,
|
|
836
|
-
inputs: ['
|
|
834
|
+
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']
|
|
837
835
|
})
|
|
838
836
|
], IonCol);
|
|
839
837
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCol, decorators: [{
|
|
@@ -843,7 +841,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
843
841
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
844
842
|
template: '<ng-content></ng-content>',
|
|
845
843
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
846
|
-
inputs: ['
|
|
844
|
+
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'],
|
|
847
845
|
standalone: true
|
|
848
846
|
}]
|
|
849
847
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -857,12 +855,12 @@ let IonContent = class IonContent {
|
|
|
857
855
|
proxyOutputs(this, this.el, ['ionScrollStart', 'ionScroll', 'ionScrollEnd']);
|
|
858
856
|
}
|
|
859
857
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
860
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, isStandalone: true, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen",
|
|
858
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonContent, isStandalone: true, selector: "ion-content", inputs: { color: "color", fixedSlotPlacement: "fixedSlotPlacement", forceOverscroll: "forceOverscroll", fullscreen: "fullscreen", scrollEvents: "scrollEvents", scrollX: "scrollX", scrollY: "scrollY" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
861
859
|
};
|
|
862
860
|
IonContent = __decorate([
|
|
863
861
|
ProxyCmp({
|
|
864
862
|
defineCustomElementFn: defineCustomElement$o,
|
|
865
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', '
|
|
863
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
866
864
|
methods: ['getScrollElement', 'scrollToTop', 'scrollToBottom', 'scrollByPoint', 'scrollToPoint']
|
|
867
865
|
})
|
|
868
866
|
], IonContent);
|
|
@@ -873,7 +871,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
873
871
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
874
872
|
template: '<ng-content></ng-content>',
|
|
875
873
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
876
|
-
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', '
|
|
874
|
+
inputs: ['color', 'fixedSlotPlacement', 'forceOverscroll', 'fullscreen', 'scrollEvents', 'scrollX', 'scrollY'],
|
|
877
875
|
standalone: true
|
|
878
876
|
}]
|
|
879
877
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -886,12 +884,12 @@ let IonDatetimeButton = class IonDatetimeButton {
|
|
|
886
884
|
this.el = r.nativeElement;
|
|
887
885
|
}
|
|
888
886
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
889
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, isStandalone: true, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode"
|
|
887
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonDatetimeButton, isStandalone: true, selector: "ion-datetime-button", inputs: { color: "color", datetime: "datetime", disabled: "disabled", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
890
888
|
};
|
|
891
889
|
IonDatetimeButton = __decorate([
|
|
892
890
|
ProxyCmp({
|
|
893
891
|
defineCustomElementFn: defineCustomElement$p,
|
|
894
|
-
inputs: ['color', 'datetime', 'disabled', 'mode'
|
|
892
|
+
inputs: ['color', 'datetime', 'disabled', 'mode']
|
|
895
893
|
})
|
|
896
894
|
], IonDatetimeButton);
|
|
897
895
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonDatetimeButton, decorators: [{
|
|
@@ -901,7 +899,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
901
899
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
902
900
|
template: '<ng-content></ng-content>',
|
|
903
901
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
904
|
-
inputs: ['color', 'datetime', 'disabled', 'mode'
|
|
902
|
+
inputs: ['color', 'datetime', 'disabled', 'mode'],
|
|
905
903
|
standalone: true
|
|
906
904
|
}]
|
|
907
905
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -914,12 +912,12 @@ let IonFab = class IonFab {
|
|
|
914
912
|
this.el = r.nativeElement;
|
|
915
913
|
}
|
|
916
914
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
917
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, isStandalone: true, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal",
|
|
915
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFab, isStandalone: true, selector: "ion-fab", inputs: { activated: "activated", edge: "edge", horizontal: "horizontal", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
918
916
|
};
|
|
919
917
|
IonFab = __decorate([
|
|
920
918
|
ProxyCmp({
|
|
921
919
|
defineCustomElementFn: defineCustomElement$q,
|
|
922
|
-
inputs: ['activated', 'edge', 'horizontal', '
|
|
920
|
+
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
923
921
|
methods: ['close']
|
|
924
922
|
})
|
|
925
923
|
], IonFab);
|
|
@@ -930,7 +928,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
930
928
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
931
929
|
template: '<ng-content></ng-content>',
|
|
932
930
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
933
|
-
inputs: ['activated', 'edge', 'horizontal', '
|
|
931
|
+
inputs: ['activated', 'edge', 'horizontal', 'vertical'],
|
|
934
932
|
standalone: true
|
|
935
933
|
}]
|
|
936
934
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -944,12 +942,12 @@ let IonFabButton = class IonFabButton {
|
|
|
944
942
|
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
945
943
|
}
|
|
946
944
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
947
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, isStandalone: true, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target",
|
|
945
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabButton, isStandalone: true, selector: "ion-fab-button", inputs: { activated: "activated", closeIcon: "closeIcon", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", show: "show", size: "size", target: "target", translucent: "translucent", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
948
946
|
};
|
|
949
947
|
IonFabButton = __decorate([
|
|
950
948
|
ProxyCmp({
|
|
951
949
|
defineCustomElementFn: defineCustomElement$r,
|
|
952
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', '
|
|
950
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type']
|
|
953
951
|
})
|
|
954
952
|
], IonFabButton);
|
|
955
953
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabButton, decorators: [{
|
|
@@ -959,7 +957,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
959
957
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
960
958
|
template: '<ng-content></ng-content>',
|
|
961
959
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
962
|
-
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', '
|
|
960
|
+
inputs: ['activated', 'closeIcon', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'show', 'size', 'target', 'translucent', 'type'],
|
|
963
961
|
standalone: true
|
|
964
962
|
}]
|
|
965
963
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -972,12 +970,12 @@ let IonFabList = class IonFabList {
|
|
|
972
970
|
this.el = r.nativeElement;
|
|
973
971
|
}
|
|
974
972
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
975
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, isStandalone: true, selector: "ion-fab-list", inputs: { activated: "activated",
|
|
973
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFabList, isStandalone: true, selector: "ion-fab-list", inputs: { activated: "activated", side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
976
974
|
};
|
|
977
975
|
IonFabList = __decorate([
|
|
978
976
|
ProxyCmp({
|
|
979
977
|
defineCustomElementFn: defineCustomElement$s,
|
|
980
|
-
inputs: ['activated', '
|
|
978
|
+
inputs: ['activated', 'side']
|
|
981
979
|
})
|
|
982
980
|
], IonFabList);
|
|
983
981
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFabList, decorators: [{
|
|
@@ -987,7 +985,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
987
985
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
988
986
|
template: '<ng-content></ng-content>',
|
|
989
987
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
990
|
-
inputs: ['activated', '
|
|
988
|
+
inputs: ['activated', 'side'],
|
|
991
989
|
standalone: true
|
|
992
990
|
}]
|
|
993
991
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1000,12 +998,12 @@ let IonFooter = class IonFooter {
|
|
|
1000
998
|
this.el = r.nativeElement;
|
|
1001
999
|
}
|
|
1002
1000
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1003
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, isStandalone: true, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode",
|
|
1001
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonFooter, isStandalone: true, selector: "ion-footer", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1004
1002
|
};
|
|
1005
1003
|
IonFooter = __decorate([
|
|
1006
1004
|
ProxyCmp({
|
|
1007
1005
|
defineCustomElementFn: defineCustomElement$t,
|
|
1008
|
-
inputs: ['collapse', 'mode', '
|
|
1006
|
+
inputs: ['collapse', 'mode', 'translucent']
|
|
1009
1007
|
})
|
|
1010
1008
|
], IonFooter);
|
|
1011
1009
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonFooter, decorators: [{
|
|
@@ -1015,7 +1013,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1015
1013
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1016
1014
|
template: '<ng-content></ng-content>',
|
|
1017
1015
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1018
|
-
inputs: ['collapse', 'mode', '
|
|
1016
|
+
inputs: ['collapse', 'mode', 'translucent'],
|
|
1019
1017
|
standalone: true
|
|
1020
1018
|
}]
|
|
1021
1019
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1028,12 +1026,12 @@ let IonGrid = class IonGrid {
|
|
|
1028
1026
|
this.el = r.nativeElement;
|
|
1029
1027
|
}
|
|
1030
1028
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1031
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, isStandalone: true, selector: "ion-grid", inputs: { fixed: "fixed"
|
|
1029
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonGrid, isStandalone: true, selector: "ion-grid", inputs: { fixed: "fixed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1032
1030
|
};
|
|
1033
1031
|
IonGrid = __decorate([
|
|
1034
1032
|
ProxyCmp({
|
|
1035
1033
|
defineCustomElementFn: defineCustomElement$u,
|
|
1036
|
-
inputs: ['fixed'
|
|
1034
|
+
inputs: ['fixed']
|
|
1037
1035
|
})
|
|
1038
1036
|
], IonGrid);
|
|
1039
1037
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonGrid, decorators: [{
|
|
@@ -1043,7 +1041,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1043
1041
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1044
1042
|
template: '<ng-content></ng-content>',
|
|
1045
1043
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1046
|
-
inputs: ['fixed'
|
|
1044
|
+
inputs: ['fixed'],
|
|
1047
1045
|
standalone: true
|
|
1048
1046
|
}]
|
|
1049
1047
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1056,12 +1054,12 @@ let IonHeader = class IonHeader {
|
|
|
1056
1054
|
this.el = r.nativeElement;
|
|
1057
1055
|
}
|
|
1058
1056
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1059
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, isStandalone: true, selector: "ion-header", inputs: { collapse: "collapse",
|
|
1057
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonHeader, isStandalone: true, selector: "ion-header", inputs: { collapse: "collapse", mode: "mode", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1060
1058
|
};
|
|
1061
1059
|
IonHeader = __decorate([
|
|
1062
1060
|
ProxyCmp({
|
|
1063
1061
|
defineCustomElementFn: defineCustomElement$v,
|
|
1064
|
-
inputs: ['collapse', '
|
|
1062
|
+
inputs: ['collapse', 'mode', 'translucent']
|
|
1065
1063
|
})
|
|
1066
1064
|
], IonHeader);
|
|
1067
1065
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonHeader, decorators: [{
|
|
@@ -1071,7 +1069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1071
1069
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1072
1070
|
template: '<ng-content></ng-content>',
|
|
1073
1071
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1074
|
-
inputs: ['collapse', '
|
|
1072
|
+
inputs: ['collapse', 'mode', 'translucent'],
|
|
1075
1073
|
standalone: true
|
|
1076
1074
|
}]
|
|
1077
1075
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1085,12 +1083,12 @@ let IonImg = class IonImg {
|
|
|
1085
1083
|
proxyOutputs(this, this.el, ['ionImgWillLoad', 'ionImgDidLoad', 'ionError']);
|
|
1086
1084
|
}
|
|
1087
1085
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1088
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, isStandalone: true, selector: "ion-img", inputs: { alt: "alt",
|
|
1086
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonImg, isStandalone: true, selector: "ion-img", inputs: { alt: "alt", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1089
1087
|
};
|
|
1090
1088
|
IonImg = __decorate([
|
|
1091
1089
|
ProxyCmp({
|
|
1092
1090
|
defineCustomElementFn: defineCustomElement$w,
|
|
1093
|
-
inputs: ['alt', '
|
|
1091
|
+
inputs: ['alt', 'src']
|
|
1094
1092
|
})
|
|
1095
1093
|
], IonImg);
|
|
1096
1094
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonImg, decorators: [{
|
|
@@ -1100,7 +1098,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1100
1098
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1101
1099
|
template: '<ng-content></ng-content>',
|
|
1102
1100
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1103
|
-
inputs: ['alt', '
|
|
1101
|
+
inputs: ['alt', 'src'],
|
|
1104
1102
|
standalone: true
|
|
1105
1103
|
}]
|
|
1106
1104
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1114,12 +1112,12 @@ let IonInfiniteScroll = class IonInfiniteScroll {
|
|
|
1114
1112
|
proxyOutputs(this, this.el, ['ionInfinite']);
|
|
1115
1113
|
}
|
|
1116
1114
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1117
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, isStandalone: true, selector: "ion-infinite-scroll", inputs: { disabled: "disabled",
|
|
1115
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScroll, isStandalone: true, selector: "ion-infinite-scroll", inputs: { disabled: "disabled", position: "position", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1118
1116
|
};
|
|
1119
1117
|
IonInfiniteScroll = __decorate([
|
|
1120
1118
|
ProxyCmp({
|
|
1121
1119
|
defineCustomElementFn: defineCustomElement$x,
|
|
1122
|
-
inputs: ['disabled', '
|
|
1120
|
+
inputs: ['disabled', 'position', 'threshold'],
|
|
1123
1121
|
methods: ['complete']
|
|
1124
1122
|
})
|
|
1125
1123
|
], IonInfiniteScroll);
|
|
@@ -1130,7 +1128,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1130
1128
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1131
1129
|
template: '<ng-content></ng-content>',
|
|
1132
1130
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1133
|
-
inputs: ['disabled', '
|
|
1131
|
+
inputs: ['disabled', 'position', 'threshold'],
|
|
1134
1132
|
standalone: true
|
|
1135
1133
|
}]
|
|
1136
1134
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1143,12 +1141,12 @@ let IonInfiniteScrollContent = class IonInfiniteScrollContent {
|
|
|
1143
1141
|
this.el = r.nativeElement;
|
|
1144
1142
|
}
|
|
1145
1143
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1146
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, isStandalone: true, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText"
|
|
1144
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonInfiniteScrollContent, isStandalone: true, selector: "ion-infinite-scroll-content", inputs: { loadingSpinner: "loadingSpinner", loadingText: "loadingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1147
1145
|
};
|
|
1148
1146
|
IonInfiniteScrollContent = __decorate([
|
|
1149
1147
|
ProxyCmp({
|
|
1150
1148
|
defineCustomElementFn: defineCustomElement$y,
|
|
1151
|
-
inputs: ['loadingSpinner', 'loadingText'
|
|
1149
|
+
inputs: ['loadingSpinner', 'loadingText']
|
|
1152
1150
|
})
|
|
1153
1151
|
], IonInfiniteScrollContent);
|
|
1154
1152
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonInfiniteScrollContent, decorators: [{
|
|
@@ -1158,7 +1156,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1158
1156
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1159
1157
|
template: '<ng-content></ng-content>',
|
|
1160
1158
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1161
|
-
inputs: ['loadingSpinner', 'loadingText'
|
|
1159
|
+
inputs: ['loadingSpinner', 'loadingText'],
|
|
1162
1160
|
standalone: true
|
|
1163
1161
|
}]
|
|
1164
1162
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1199,12 +1197,12 @@ let IonItem = class IonItem {
|
|
|
1199
1197
|
this.el = r.nativeElement;
|
|
1200
1198
|
}
|
|
1201
1199
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1202
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, isStandalone: true, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target",
|
|
1200
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItem, isStandalone: true, selector: "ion-item", inputs: { button: "button", color: "color", detail: "detail", detailIcon: "detailIcon", disabled: "disabled", download: "download", href: "href", lines: "lines", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1203
1201
|
};
|
|
1204
1202
|
IonItem = __decorate([
|
|
1205
1203
|
ProxyCmp({
|
|
1206
1204
|
defineCustomElementFn: defineCustomElement$A,
|
|
1207
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', '
|
|
1205
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type']
|
|
1208
1206
|
})
|
|
1209
1207
|
], IonItem);
|
|
1210
1208
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItem, decorators: [{
|
|
@@ -1214,7 +1212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1214
1212
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1215
1213
|
template: '<ng-content></ng-content>',
|
|
1216
1214
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1217
|
-
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', '
|
|
1215
|
+
inputs: ['button', 'color', 'detail', 'detailIcon', 'disabled', 'download', 'href', 'lines', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'target', 'type'],
|
|
1218
1216
|
standalone: true
|
|
1219
1217
|
}]
|
|
1220
1218
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1227,12 +1225,12 @@ let IonItemDivider = class IonItemDivider {
|
|
|
1227
1225
|
this.el = r.nativeElement;
|
|
1228
1226
|
}
|
|
1229
1227
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1230
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, isStandalone: true, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky"
|
|
1228
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemDivider, isStandalone: true, selector: "ion-item-divider", inputs: { color: "color", mode: "mode", sticky: "sticky" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1231
1229
|
};
|
|
1232
1230
|
IonItemDivider = __decorate([
|
|
1233
1231
|
ProxyCmp({
|
|
1234
1232
|
defineCustomElementFn: defineCustomElement$B,
|
|
1235
|
-
inputs: ['color', 'mode', 'sticky'
|
|
1233
|
+
inputs: ['color', 'mode', 'sticky']
|
|
1236
1234
|
})
|
|
1237
1235
|
], IonItemDivider);
|
|
1238
1236
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemDivider, decorators: [{
|
|
@@ -1242,7 +1240,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1242
1240
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1243
1241
|
template: '<ng-content></ng-content>',
|
|
1244
1242
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1245
|
-
inputs: ['color', 'mode', 'sticky'
|
|
1243
|
+
inputs: ['color', 'mode', 'sticky'],
|
|
1246
1244
|
standalone: true
|
|
1247
1245
|
}]
|
|
1248
1246
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1255,12 +1253,11 @@ let IonItemGroup = class IonItemGroup {
|
|
|
1255
1253
|
this.el = r.nativeElement;
|
|
1256
1254
|
}
|
|
1257
1255
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1258
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, isStandalone: true, selector: "ion-item-group",
|
|
1256
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemGroup, isStandalone: true, selector: "ion-item-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1259
1257
|
};
|
|
1260
1258
|
IonItemGroup = __decorate([
|
|
1261
1259
|
ProxyCmp({
|
|
1262
|
-
defineCustomElementFn: defineCustomElement$C
|
|
1263
|
-
inputs: ['mode', 'theme']
|
|
1260
|
+
defineCustomElementFn: defineCustomElement$C
|
|
1264
1261
|
})
|
|
1265
1262
|
], IonItemGroup);
|
|
1266
1263
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemGroup, decorators: [{
|
|
@@ -1270,7 +1267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1270
1267
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1271
1268
|
template: '<ng-content></ng-content>',
|
|
1272
1269
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1273
|
-
inputs: [
|
|
1270
|
+
inputs: [],
|
|
1274
1271
|
standalone: true
|
|
1275
1272
|
}]
|
|
1276
1273
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1283,12 +1280,12 @@ let IonItemOption = class IonItemOption {
|
|
|
1283
1280
|
this.el = r.nativeElement;
|
|
1284
1281
|
}
|
|
1285
1282
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1286
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, isStandalone: true, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel",
|
|
1283
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOption, isStandalone: true, selector: "ion-item-option", inputs: { color: "color", disabled: "disabled", download: "download", expandable: "expandable", href: "href", mode: "mode", rel: "rel", target: "target", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1287
1284
|
};
|
|
1288
1285
|
IonItemOption = __decorate([
|
|
1289
1286
|
ProxyCmp({
|
|
1290
1287
|
defineCustomElementFn: defineCustomElement$D,
|
|
1291
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', '
|
|
1288
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type']
|
|
1292
1289
|
})
|
|
1293
1290
|
], IonItemOption);
|
|
1294
1291
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOption, decorators: [{
|
|
@@ -1298,7 +1295,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1298
1295
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1299
1296
|
template: '<ng-content></ng-content>',
|
|
1300
1297
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1301
|
-
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', '
|
|
1298
|
+
inputs: ['color', 'disabled', 'download', 'expandable', 'href', 'mode', 'rel', 'target', 'type'],
|
|
1302
1299
|
standalone: true
|
|
1303
1300
|
}]
|
|
1304
1301
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1312,12 +1309,12 @@ let IonItemOptions = class IonItemOptions {
|
|
|
1312
1309
|
proxyOutputs(this, this.el, ['ionSwipe']);
|
|
1313
1310
|
}
|
|
1314
1311
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1315
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, isStandalone: true, selector: "ion-item-options", inputs: {
|
|
1312
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemOptions, isStandalone: true, selector: "ion-item-options", inputs: { side: "side" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1316
1313
|
};
|
|
1317
1314
|
IonItemOptions = __decorate([
|
|
1318
1315
|
ProxyCmp({
|
|
1319
1316
|
defineCustomElementFn: defineCustomElement$E,
|
|
1320
|
-
inputs: ['
|
|
1317
|
+
inputs: ['side']
|
|
1321
1318
|
})
|
|
1322
1319
|
], IonItemOptions);
|
|
1323
1320
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemOptions, decorators: [{
|
|
@@ -1327,7 +1324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1327
1324
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1328
1325
|
template: '<ng-content></ng-content>',
|
|
1329
1326
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1330
|
-
inputs: ['
|
|
1327
|
+
inputs: ['side'],
|
|
1331
1328
|
standalone: true
|
|
1332
1329
|
}]
|
|
1333
1330
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1341,12 +1338,12 @@ let IonItemSliding = class IonItemSliding {
|
|
|
1341
1338
|
proxyOutputs(this, this.el, ['ionDrag']);
|
|
1342
1339
|
}
|
|
1343
1340
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonItemSliding, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1344
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, isStandalone: true, selector: "ion-item-sliding", inputs: { disabled: "disabled"
|
|
1341
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonItemSliding, isStandalone: true, selector: "ion-item-sliding", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1345
1342
|
};
|
|
1346
1343
|
IonItemSliding = __decorate([
|
|
1347
1344
|
ProxyCmp({
|
|
1348
1345
|
defineCustomElementFn: defineCustomElement$F,
|
|
1349
|
-
inputs: ['disabled'
|
|
1346
|
+
inputs: ['disabled'],
|
|
1350
1347
|
methods: ['getOpenAmount', 'getSlidingRatio', 'open', 'close', 'closeOpened']
|
|
1351
1348
|
})
|
|
1352
1349
|
], IonItemSliding);
|
|
@@ -1357,7 +1354,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1357
1354
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1358
1355
|
template: '<ng-content></ng-content>',
|
|
1359
1356
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1360
|
-
inputs: ['disabled'
|
|
1357
|
+
inputs: ['disabled'],
|
|
1361
1358
|
standalone: true
|
|
1362
1359
|
}]
|
|
1363
1360
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1370,12 +1367,12 @@ let IonLabel = class IonLabel {
|
|
|
1370
1367
|
this.el = r.nativeElement;
|
|
1371
1368
|
}
|
|
1372
1369
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1373
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, isStandalone: true, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position"
|
|
1370
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLabel, isStandalone: true, selector: "ion-label", inputs: { color: "color", mode: "mode", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1374
1371
|
};
|
|
1375
1372
|
IonLabel = __decorate([
|
|
1376
1373
|
ProxyCmp({
|
|
1377
1374
|
defineCustomElementFn: defineCustomElement$G,
|
|
1378
|
-
inputs: ['color', 'mode', 'position'
|
|
1375
|
+
inputs: ['color', 'mode', 'position']
|
|
1379
1376
|
})
|
|
1380
1377
|
], IonLabel);
|
|
1381
1378
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLabel, decorators: [{
|
|
@@ -1385,7 +1382,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1385
1382
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1386
1383
|
template: '<ng-content></ng-content>',
|
|
1387
1384
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1388
|
-
inputs: ['color', 'mode', 'position'
|
|
1385
|
+
inputs: ['color', 'mode', 'position'],
|
|
1389
1386
|
standalone: true
|
|
1390
1387
|
}]
|
|
1391
1388
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1398,12 +1395,12 @@ let IonList = class IonList {
|
|
|
1398
1395
|
this.el = r.nativeElement;
|
|
1399
1396
|
}
|
|
1400
1397
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1401
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, isStandalone: true, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode"
|
|
1398
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonList, isStandalone: true, selector: "ion-list", inputs: { inset: "inset", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1402
1399
|
};
|
|
1403
1400
|
IonList = __decorate([
|
|
1404
1401
|
ProxyCmp({
|
|
1405
1402
|
defineCustomElementFn: defineCustomElement$H,
|
|
1406
|
-
inputs: ['inset', 'lines', 'mode'
|
|
1403
|
+
inputs: ['inset', 'lines', 'mode'],
|
|
1407
1404
|
methods: ['closeSlidingItems']
|
|
1408
1405
|
})
|
|
1409
1406
|
], IonList);
|
|
@@ -1414,7 +1411,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1414
1411
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1415
1412
|
template: '<ng-content></ng-content>',
|
|
1416
1413
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1417
|
-
inputs: ['inset', 'lines', 'mode'
|
|
1414
|
+
inputs: ['inset', 'lines', 'mode'],
|
|
1418
1415
|
standalone: true
|
|
1419
1416
|
}]
|
|
1420
1417
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1427,12 +1424,12 @@ let IonListHeader = class IonListHeader {
|
|
|
1427
1424
|
this.el = r.nativeElement;
|
|
1428
1425
|
}
|
|
1429
1426
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1430
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, isStandalone: true, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode"
|
|
1427
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonListHeader, isStandalone: true, selector: "ion-list-header", inputs: { color: "color", lines: "lines", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1431
1428
|
};
|
|
1432
1429
|
IonListHeader = __decorate([
|
|
1433
1430
|
ProxyCmp({
|
|
1434
1431
|
defineCustomElementFn: defineCustomElement$I,
|
|
1435
|
-
inputs: ['color', 'lines', 'mode'
|
|
1432
|
+
inputs: ['color', 'lines', 'mode']
|
|
1436
1433
|
})
|
|
1437
1434
|
], IonListHeader);
|
|
1438
1435
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonListHeader, decorators: [{
|
|
@@ -1442,7 +1439,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1442
1439
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1443
1440
|
template: '<ng-content></ng-content>',
|
|
1444
1441
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1445
|
-
inputs: ['color', 'lines', 'mode'
|
|
1442
|
+
inputs: ['color', 'lines', 'mode'],
|
|
1446
1443
|
standalone: true
|
|
1447
1444
|
}]
|
|
1448
1445
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1456,12 +1453,12 @@ let IonLoading = class IonLoading {
|
|
|
1456
1453
|
proxyOutputs(this, this.el, ['ionLoadingDidPresent', 'ionLoadingWillPresent', 'ionLoadingWillDismiss', 'ionLoadingDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1457
1454
|
}
|
|
1458
1455
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1459
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, isStandalone: true, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner",
|
|
1456
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonLoading, isStandalone: true, selector: "ion-loading", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", showBackdrop: "showBackdrop", spinner: "spinner", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1460
1457
|
};
|
|
1461
1458
|
IonLoading = __decorate([
|
|
1462
1459
|
ProxyCmp({
|
|
1463
1460
|
defineCustomElementFn: defineCustomElement$J,
|
|
1464
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', '
|
|
1461
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1465
1462
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
1466
1463
|
})
|
|
1467
1464
|
], IonLoading);
|
|
@@ -1472,7 +1469,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1472
1469
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1473
1470
|
template: '<ng-content></ng-content>',
|
|
1474
1471
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1475
|
-
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', '
|
|
1472
|
+
inputs: ['animated', 'backdropDismiss', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'showBackdrop', 'spinner', 'translucent', 'trigger'],
|
|
1476
1473
|
standalone: true
|
|
1477
1474
|
}]
|
|
1478
1475
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1486,12 +1483,12 @@ let IonMenu = class IonMenu {
|
|
|
1486
1483
|
proxyOutputs(this, this.el, ['ionWillOpen', 'ionWillClose', 'ionDidOpen', 'ionDidClose']);
|
|
1487
1484
|
}
|
|
1488
1485
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1489
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, isStandalone: true, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId",
|
|
1486
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenu, isStandalone: true, selector: "ion-menu", inputs: { contentId: "contentId", disabled: "disabled", maxEdgeStart: "maxEdgeStart", menuId: "menuId", side: "side", swipeGesture: "swipeGesture", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1490
1487
|
};
|
|
1491
1488
|
IonMenu = __decorate([
|
|
1492
1489
|
ProxyCmp({
|
|
1493
1490
|
defineCustomElementFn: defineCustomElement$K,
|
|
1494
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', '
|
|
1491
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1495
1492
|
methods: ['isOpen', 'isActive', 'open', 'close', 'toggle', 'setOpen']
|
|
1496
1493
|
})
|
|
1497
1494
|
], IonMenu);
|
|
@@ -1502,7 +1499,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1502
1499
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1503
1500
|
template: '<ng-content></ng-content>',
|
|
1504
1501
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1505
|
-
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', '
|
|
1502
|
+
inputs: ['contentId', 'disabled', 'maxEdgeStart', 'menuId', 'side', 'swipeGesture', 'type'],
|
|
1506
1503
|
standalone: true
|
|
1507
1504
|
}]
|
|
1508
1505
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1515,12 +1512,12 @@ let IonMenuButton = class IonMenuButton {
|
|
|
1515
1512
|
this.el = r.nativeElement;
|
|
1516
1513
|
}
|
|
1517
1514
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1518
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, isStandalone: true, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode",
|
|
1515
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuButton, isStandalone: true, selector: "ion-menu-button", inputs: { autoHide: "autoHide", color: "color", disabled: "disabled", menu: "menu", mode: "mode", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1519
1516
|
};
|
|
1520
1517
|
IonMenuButton = __decorate([
|
|
1521
1518
|
ProxyCmp({
|
|
1522
1519
|
defineCustomElementFn: defineCustomElement$L,
|
|
1523
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', '
|
|
1520
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type']
|
|
1524
1521
|
})
|
|
1525
1522
|
], IonMenuButton);
|
|
1526
1523
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuButton, decorators: [{
|
|
@@ -1530,7 +1527,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1530
1527
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1531
1528
|
template: '<ng-content></ng-content>',
|
|
1532
1529
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1533
|
-
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', '
|
|
1530
|
+
inputs: ['autoHide', 'color', 'disabled', 'menu', 'mode', 'type'],
|
|
1534
1531
|
standalone: true
|
|
1535
1532
|
}]
|
|
1536
1533
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1543,12 +1540,12 @@ let IonMenuToggle = class IonMenuToggle {
|
|
|
1543
1540
|
this.el = r.nativeElement;
|
|
1544
1541
|
}
|
|
1545
1542
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1546
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, isStandalone: true, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu"
|
|
1543
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonMenuToggle, isStandalone: true, selector: "ion-menu-toggle", inputs: { autoHide: "autoHide", menu: "menu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1547
1544
|
};
|
|
1548
1545
|
IonMenuToggle = __decorate([
|
|
1549
1546
|
ProxyCmp({
|
|
1550
1547
|
defineCustomElementFn: defineCustomElement$M,
|
|
1551
|
-
inputs: ['autoHide', 'menu'
|
|
1548
|
+
inputs: ['autoHide', 'menu']
|
|
1552
1549
|
})
|
|
1553
1550
|
], IonMenuToggle);
|
|
1554
1551
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonMenuToggle, decorators: [{
|
|
@@ -1558,7 +1555,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1558
1555
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1559
1556
|
template: '<ng-content></ng-content>',
|
|
1560
1557
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1561
|
-
inputs: ['autoHide', 'menu'
|
|
1558
|
+
inputs: ['autoHide', 'menu'],
|
|
1562
1559
|
standalone: true
|
|
1563
1560
|
}]
|
|
1564
1561
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1571,12 +1568,12 @@ let IonNavLink = class IonNavLink {
|
|
|
1571
1568
|
this.el = r.nativeElement;
|
|
1572
1569
|
}
|
|
1573
1570
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1574
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, isStandalone: true, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps",
|
|
1571
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNavLink, isStandalone: true, selector: "ion-nav-link", inputs: { component: "component", componentProps: "componentProps", routerAnimation: "routerAnimation", routerDirection: "routerDirection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1575
1572
|
};
|
|
1576
1573
|
IonNavLink = __decorate([
|
|
1577
1574
|
ProxyCmp({
|
|
1578
1575
|
defineCustomElementFn: defineCustomElement$N,
|
|
1579
|
-
inputs: ['component', 'componentProps', '
|
|
1576
|
+
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection']
|
|
1580
1577
|
})
|
|
1581
1578
|
], IonNavLink);
|
|
1582
1579
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNavLink, decorators: [{
|
|
@@ -1586,7 +1583,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1586
1583
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1587
1584
|
template: '<ng-content></ng-content>',
|
|
1588
1585
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1589
|
-
inputs: ['component', 'componentProps', '
|
|
1586
|
+
inputs: ['component', 'componentProps', 'routerAnimation', 'routerDirection'],
|
|
1590
1587
|
standalone: true
|
|
1591
1588
|
}]
|
|
1592
1589
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1599,12 +1596,12 @@ let IonNote = class IonNote {
|
|
|
1599
1596
|
this.el = r.nativeElement;
|
|
1600
1597
|
}
|
|
1601
1598
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1602
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, isStandalone: true, selector: "ion-note", inputs: { color: "color", mode: "mode"
|
|
1599
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonNote, isStandalone: true, selector: "ion-note", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1603
1600
|
};
|
|
1604
1601
|
IonNote = __decorate([
|
|
1605
1602
|
ProxyCmp({
|
|
1606
1603
|
defineCustomElementFn: defineCustomElement$O,
|
|
1607
|
-
inputs: ['color', 'mode'
|
|
1604
|
+
inputs: ['color', 'mode']
|
|
1608
1605
|
})
|
|
1609
1606
|
], IonNote);
|
|
1610
1607
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonNote, decorators: [{
|
|
@@ -1614,7 +1611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1614
1611
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1615
1612
|
template: '<ng-content></ng-content>',
|
|
1616
1613
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1617
|
-
inputs: ['color', 'mode'
|
|
1614
|
+
inputs: ['color', 'mode'],
|
|
1618
1615
|
standalone: true
|
|
1619
1616
|
}]
|
|
1620
1617
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1627,12 +1624,12 @@ let IonPicker = class IonPicker {
|
|
|
1627
1624
|
this.el = r.nativeElement;
|
|
1628
1625
|
}
|
|
1629
1626
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1630
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, isStandalone: true, selector: "ion-picker", inputs: { mode: "mode"
|
|
1627
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPicker, isStandalone: true, selector: "ion-picker", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1631
1628
|
};
|
|
1632
1629
|
IonPicker = __decorate([
|
|
1633
1630
|
ProxyCmp({
|
|
1634
1631
|
defineCustomElementFn: defineCustomElement$P,
|
|
1635
|
-
inputs: ['mode'
|
|
1632
|
+
inputs: ['mode']
|
|
1636
1633
|
})
|
|
1637
1634
|
], IonPicker);
|
|
1638
1635
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPicker, decorators: [{
|
|
@@ -1642,7 +1639,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1642
1639
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1643
1640
|
template: '<ng-content></ng-content>',
|
|
1644
1641
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1645
|
-
inputs: ['mode'
|
|
1642
|
+
inputs: ['mode'],
|
|
1646
1643
|
standalone: true
|
|
1647
1644
|
}]
|
|
1648
1645
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1656,12 +1653,12 @@ let IonPickerColumn = class IonPickerColumn {
|
|
|
1656
1653
|
proxyOutputs(this, this.el, ['ionChange']);
|
|
1657
1654
|
}
|
|
1658
1655
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1659
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, isStandalone: true, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode",
|
|
1656
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumn, isStandalone: true, selector: "ion-picker-column", inputs: { color: "color", disabled: "disabled", mode: "mode", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1660
1657
|
};
|
|
1661
1658
|
IonPickerColumn = __decorate([
|
|
1662
1659
|
ProxyCmp({
|
|
1663
1660
|
defineCustomElementFn: defineCustomElement$Q,
|
|
1664
|
-
inputs: ['color', 'disabled', 'mode', '
|
|
1661
|
+
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1665
1662
|
methods: ['setFocus']
|
|
1666
1663
|
})
|
|
1667
1664
|
], IonPickerColumn);
|
|
@@ -1672,7 +1669,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1672
1669
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1673
1670
|
template: '<ng-content></ng-content>',
|
|
1674
1671
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1675
|
-
inputs: ['color', 'disabled', 'mode', '
|
|
1672
|
+
inputs: ['color', 'disabled', 'mode', 'value'],
|
|
1676
1673
|
standalone: true
|
|
1677
1674
|
}]
|
|
1678
1675
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1685,12 +1682,12 @@ let IonPickerColumnOption = class IonPickerColumnOption {
|
|
|
1685
1682
|
this.el = r.nativeElement;
|
|
1686
1683
|
}
|
|
1687
1684
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1688
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, isStandalone: true, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled",
|
|
1685
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerColumnOption, isStandalone: true, selector: "ion-picker-column-option", inputs: { color: "color", disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1689
1686
|
};
|
|
1690
1687
|
IonPickerColumnOption = __decorate([
|
|
1691
1688
|
ProxyCmp({
|
|
1692
1689
|
defineCustomElementFn: defineCustomElement$R,
|
|
1693
|
-
inputs: ['color', 'disabled', '
|
|
1690
|
+
inputs: ['color', 'disabled', 'value']
|
|
1694
1691
|
})
|
|
1695
1692
|
], IonPickerColumnOption);
|
|
1696
1693
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerColumnOption, decorators: [{
|
|
@@ -1700,7 +1697,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1700
1697
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1701
1698
|
template: '<ng-content></ng-content>',
|
|
1702
1699
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1703
|
-
inputs: ['color', 'disabled', '
|
|
1700
|
+
inputs: ['color', 'disabled', 'value'],
|
|
1704
1701
|
standalone: true
|
|
1705
1702
|
}]
|
|
1706
1703
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1714,12 +1711,12 @@ let IonPickerLegacy = class IonPickerLegacy {
|
|
|
1714
1711
|
proxyOutputs(this, this.el, ['ionPickerDidPresent', 'ionPickerWillPresent', 'ionPickerWillDismiss', 'ionPickerDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
1715
1712
|
}
|
|
1716
1713
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonPickerLegacy, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1717
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, isStandalone: true, selector: "ion-picker-legacy", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", columns: "columns", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop",
|
|
1714
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonPickerLegacy, isStandalone: true, selector: "ion-picker-legacy", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", columns: "columns", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", showBackdrop: "showBackdrop", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1718
1715
|
};
|
|
1719
1716
|
IonPickerLegacy = __decorate([
|
|
1720
1717
|
ProxyCmp({
|
|
1721
1718
|
defineCustomElementFn: defineCustomElement$S,
|
|
1722
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', '
|
|
1719
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'trigger'],
|
|
1723
1720
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss', 'getColumn']
|
|
1724
1721
|
})
|
|
1725
1722
|
], IonPickerLegacy);
|
|
@@ -1730,7 +1727,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1730
1727
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1731
1728
|
template: '<ng-content></ng-content>',
|
|
1732
1729
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1733
|
-
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', '
|
|
1730
|
+
inputs: ['animated', 'backdropDismiss', 'buttons', 'columns', 'cssClass', 'duration', 'enterAnimation', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'showBackdrop', 'trigger'],
|
|
1734
1731
|
standalone: true
|
|
1735
1732
|
}]
|
|
1736
1733
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1743,12 +1740,12 @@ let IonProgressBar = class IonProgressBar {
|
|
|
1743
1740
|
this.el = r.nativeElement;
|
|
1744
1741
|
}
|
|
1745
1742
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1746
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, isStandalone: true, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed",
|
|
1743
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonProgressBar, isStandalone: true, selector: "ion-progress-bar", inputs: { buffer: "buffer", color: "color", mode: "mode", reversed: "reversed", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1747
1744
|
};
|
|
1748
1745
|
IonProgressBar = __decorate([
|
|
1749
1746
|
ProxyCmp({
|
|
1750
1747
|
defineCustomElementFn: defineCustomElement$T,
|
|
1751
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', '
|
|
1748
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value']
|
|
1752
1749
|
})
|
|
1753
1750
|
], IonProgressBar);
|
|
1754
1751
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonProgressBar, decorators: [{
|
|
@@ -1758,7 +1755,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1758
1755
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1759
1756
|
template: '<ng-content></ng-content>',
|
|
1760
1757
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1761
|
-
inputs: ['buffer', 'color', 'mode', 'reversed', '
|
|
1758
|
+
inputs: ['buffer', 'color', 'mode', 'reversed', 'type', 'value'],
|
|
1762
1759
|
standalone: true
|
|
1763
1760
|
}]
|
|
1764
1761
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1772,12 +1769,12 @@ let IonRadio = class IonRadio {
|
|
|
1772
1769
|
proxyOutputs(this, this.el, ['ionFocus', 'ionBlur']);
|
|
1773
1770
|
}
|
|
1774
1771
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1775
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, isStandalone: true, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name",
|
|
1772
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadio, isStandalone: true, selector: "ion-radio", inputs: { alignment: "alignment", color: "color", disabled: "disabled", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1776
1773
|
};
|
|
1777
1774
|
IonRadio = __decorate([
|
|
1778
1775
|
ProxyCmp({
|
|
1779
1776
|
defineCustomElementFn: defineCustomElement$U,
|
|
1780
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', '
|
|
1777
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value']
|
|
1781
1778
|
})
|
|
1782
1779
|
], IonRadio);
|
|
1783
1780
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadio, decorators: [{
|
|
@@ -1787,7 +1784,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1787
1784
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1788
1785
|
template: '<ng-content></ng-content>',
|
|
1789
1786
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1790
|
-
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', '
|
|
1787
|
+
inputs: ['alignment', 'color', 'disabled', 'justify', 'labelPlacement', 'mode', 'name', 'value'],
|
|
1791
1788
|
standalone: true
|
|
1792
1789
|
}]
|
|
1793
1790
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1801,12 +1798,12 @@ let IonRefresher = class IonRefresher {
|
|
|
1801
1798
|
proxyOutputs(this, this.el, ['ionRefresh', 'ionPull', 'ionStart']);
|
|
1802
1799
|
}
|
|
1803
1800
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1804
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, isStandalone: true, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration"
|
|
1801
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresher, isStandalone: true, selector: "ion-refresher", inputs: { closeDuration: "closeDuration", disabled: "disabled", mode: "mode", pullFactor: "pullFactor", pullMax: "pullMax", pullMin: "pullMin", snapbackDuration: "snapbackDuration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1805
1802
|
};
|
|
1806
1803
|
IonRefresher = __decorate([
|
|
1807
1804
|
ProxyCmp({
|
|
1808
1805
|
defineCustomElementFn: defineCustomElement$V,
|
|
1809
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'
|
|
1806
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1810
1807
|
methods: ['complete', 'cancel', 'getProgress']
|
|
1811
1808
|
})
|
|
1812
1809
|
], IonRefresher);
|
|
@@ -1817,7 +1814,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1817
1814
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1818
1815
|
template: '<ng-content></ng-content>',
|
|
1819
1816
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1820
|
-
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'
|
|
1817
|
+
inputs: ['closeDuration', 'disabled', 'mode', 'pullFactor', 'pullMax', 'pullMin', 'snapbackDuration'],
|
|
1821
1818
|
standalone: true
|
|
1822
1819
|
}]
|
|
1823
1820
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1830,12 +1827,12 @@ let IonRefresherContent = class IonRefresherContent {
|
|
|
1830
1827
|
this.el = r.nativeElement;
|
|
1831
1828
|
}
|
|
1832
1829
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1833
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, isStandalone: true, selector: "ion-refresher-content", inputs: {
|
|
1830
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRefresherContent, isStandalone: true, selector: "ion-refresher-content", inputs: { pullingIcon: "pullingIcon", pullingText: "pullingText", refreshingSpinner: "refreshingSpinner", refreshingText: "refreshingText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1834
1831
|
};
|
|
1835
1832
|
IonRefresherContent = __decorate([
|
|
1836
1833
|
ProxyCmp({
|
|
1837
1834
|
defineCustomElementFn: defineCustomElement$W,
|
|
1838
|
-
inputs: ['
|
|
1835
|
+
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText']
|
|
1839
1836
|
})
|
|
1840
1837
|
], IonRefresherContent);
|
|
1841
1838
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRefresherContent, decorators: [{
|
|
@@ -1845,7 +1842,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1845
1842
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1846
1843
|
template: '<ng-content></ng-content>',
|
|
1847
1844
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1848
|
-
inputs: ['
|
|
1845
|
+
inputs: ['pullingIcon', 'pullingText', 'refreshingSpinner', 'refreshingText'],
|
|
1849
1846
|
standalone: true
|
|
1850
1847
|
}]
|
|
1851
1848
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1858,12 +1855,11 @@ let IonReorder = class IonReorder {
|
|
|
1858
1855
|
this.el = r.nativeElement;
|
|
1859
1856
|
}
|
|
1860
1857
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1861
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, isStandalone: true, selector: "ion-reorder",
|
|
1858
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorder, isStandalone: true, selector: "ion-reorder", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1862
1859
|
};
|
|
1863
1860
|
IonReorder = __decorate([
|
|
1864
1861
|
ProxyCmp({
|
|
1865
|
-
defineCustomElementFn: defineCustomElement$X
|
|
1866
|
-
inputs: ['mode', 'theme']
|
|
1862
|
+
defineCustomElementFn: defineCustomElement$X
|
|
1867
1863
|
})
|
|
1868
1864
|
], IonReorder);
|
|
1869
1865
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorder, decorators: [{
|
|
@@ -1873,7 +1869,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1873
1869
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1874
1870
|
template: '<ng-content></ng-content>',
|
|
1875
1871
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1876
|
-
inputs: [
|
|
1872
|
+
inputs: [],
|
|
1877
1873
|
standalone: true
|
|
1878
1874
|
}]
|
|
1879
1875
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1887,12 +1883,12 @@ let IonReorderGroup = class IonReorderGroup {
|
|
|
1887
1883
|
proxyOutputs(this, this.el, ['ionItemReorder']);
|
|
1888
1884
|
}
|
|
1889
1885
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonReorderGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1890
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, isStandalone: true, selector: "ion-reorder-group", inputs: { disabled: "disabled"
|
|
1886
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonReorderGroup, isStandalone: true, selector: "ion-reorder-group", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1891
1887
|
};
|
|
1892
1888
|
IonReorderGroup = __decorate([
|
|
1893
1889
|
ProxyCmp({
|
|
1894
1890
|
defineCustomElementFn: defineCustomElement$Y,
|
|
1895
|
-
inputs: ['disabled'
|
|
1891
|
+
inputs: ['disabled'],
|
|
1896
1892
|
methods: ['complete']
|
|
1897
1893
|
})
|
|
1898
1894
|
], IonReorderGroup);
|
|
@@ -1903,7 +1899,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1903
1899
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1904
1900
|
template: '<ng-content></ng-content>',
|
|
1905
1901
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1906
|
-
inputs: ['disabled'
|
|
1902
|
+
inputs: ['disabled'],
|
|
1907
1903
|
standalone: true
|
|
1908
1904
|
}]
|
|
1909
1905
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1916,12 +1912,12 @@ let IonRippleEffect = class IonRippleEffect {
|
|
|
1916
1912
|
this.el = r.nativeElement;
|
|
1917
1913
|
}
|
|
1918
1914
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRippleEffect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1919
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, isStandalone: true, selector: "ion-ripple-effect", inputs: {
|
|
1915
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRippleEffect, isStandalone: true, selector: "ion-ripple-effect", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1920
1916
|
};
|
|
1921
1917
|
IonRippleEffect = __decorate([
|
|
1922
1918
|
ProxyCmp({
|
|
1923
1919
|
defineCustomElementFn: defineCustomElement$Z,
|
|
1924
|
-
inputs: ['
|
|
1920
|
+
inputs: ['type'],
|
|
1925
1921
|
methods: ['addRipple']
|
|
1926
1922
|
})
|
|
1927
1923
|
], IonRippleEffect);
|
|
@@ -1932,7 +1928,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1932
1928
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1933
1929
|
template: '<ng-content></ng-content>',
|
|
1934
1930
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1935
|
-
inputs: ['
|
|
1931
|
+
inputs: ['type'],
|
|
1936
1932
|
standalone: true
|
|
1937
1933
|
}]
|
|
1938
1934
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1945,12 +1941,11 @@ let IonRow = class IonRow {
|
|
|
1945
1941
|
this.el = r.nativeElement;
|
|
1946
1942
|
}
|
|
1947
1943
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1948
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, isStandalone: true, selector: "ion-row",
|
|
1944
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRow, isStandalone: true, selector: "ion-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1949
1945
|
};
|
|
1950
1946
|
IonRow = __decorate([
|
|
1951
1947
|
ProxyCmp({
|
|
1952
|
-
defineCustomElementFn: defineCustomElement$_
|
|
1953
|
-
inputs: ['mode', 'theme']
|
|
1948
|
+
defineCustomElementFn: defineCustomElement$_
|
|
1954
1949
|
})
|
|
1955
1950
|
], IonRow);
|
|
1956
1951
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRow, decorators: [{
|
|
@@ -1960,7 +1955,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1960
1955
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1961
1956
|
template: '<ng-content></ng-content>',
|
|
1962
1957
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1963
|
-
inputs: [
|
|
1958
|
+
inputs: [],
|
|
1964
1959
|
standalone: true
|
|
1965
1960
|
}]
|
|
1966
1961
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -1973,12 +1968,12 @@ let IonSegmentButton = class IonSegmentButton {
|
|
|
1973
1968
|
this.el = r.nativeElement;
|
|
1974
1969
|
}
|
|
1975
1970
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1976
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, isStandalone: true, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode",
|
|
1971
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSegmentButton, isStandalone: true, selector: "ion-segment-button", inputs: { contentId: "contentId", disabled: "disabled", layout: "layout", mode: "mode", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1977
1972
|
};
|
|
1978
1973
|
IonSegmentButton = __decorate([
|
|
1979
1974
|
ProxyCmp({
|
|
1980
1975
|
defineCustomElementFn: defineCustomElement$$,
|
|
1981
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', '
|
|
1976
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value']
|
|
1982
1977
|
})
|
|
1983
1978
|
], IonSegmentButton);
|
|
1984
1979
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSegmentButton, decorators: [{
|
|
@@ -1988,7 +1983,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1988
1983
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1989
1984
|
template: '<ng-content></ng-content>',
|
|
1990
1985
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1991
|
-
inputs: ['contentId', 'disabled', 'layout', 'mode', '
|
|
1986
|
+
inputs: ['contentId', 'disabled', 'layout', 'mode', 'type', 'value'],
|
|
1992
1987
|
standalone: true
|
|
1993
1988
|
}]
|
|
1994
1989
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2085,12 +2080,12 @@ let IonSelectOption = class IonSelectOption {
|
|
|
2085
2080
|
this.el = r.nativeElement;
|
|
2086
2081
|
}
|
|
2087
2082
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2088
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, isStandalone: true, selector: "ion-select-option", inputs: { disabled: "disabled",
|
|
2083
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSelectOption, isStandalone: true, selector: "ion-select-option", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2089
2084
|
};
|
|
2090
2085
|
IonSelectOption = __decorate([
|
|
2091
2086
|
ProxyCmp({
|
|
2092
2087
|
defineCustomElementFn: defineCustomElement$13,
|
|
2093
|
-
inputs: ['disabled', '
|
|
2088
|
+
inputs: ['disabled', 'value']
|
|
2094
2089
|
})
|
|
2095
2090
|
], IonSelectOption);
|
|
2096
2091
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSelectOption, decorators: [{
|
|
@@ -2100,7 +2095,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2100
2095
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2101
2096
|
template: '<ng-content></ng-content>',
|
|
2102
2097
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2103
|
-
inputs: ['disabled', '
|
|
2098
|
+
inputs: ['disabled', 'value'],
|
|
2104
2099
|
standalone: true
|
|
2105
2100
|
}]
|
|
2106
2101
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2113,12 +2108,12 @@ let IonSkeletonText = class IonSkeletonText {
|
|
|
2113
2108
|
this.el = r.nativeElement;
|
|
2114
2109
|
}
|
|
2115
2110
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2116
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, isStandalone: true, selector: "ion-skeleton-text", inputs: { animated: "animated"
|
|
2111
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSkeletonText, isStandalone: true, selector: "ion-skeleton-text", inputs: { animated: "animated" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2117
2112
|
};
|
|
2118
2113
|
IonSkeletonText = __decorate([
|
|
2119
2114
|
ProxyCmp({
|
|
2120
2115
|
defineCustomElementFn: defineCustomElement$14,
|
|
2121
|
-
inputs: ['animated'
|
|
2116
|
+
inputs: ['animated']
|
|
2122
2117
|
})
|
|
2123
2118
|
], IonSkeletonText);
|
|
2124
2119
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSkeletonText, decorators: [{
|
|
@@ -2128,7 +2123,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2128
2123
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2129
2124
|
template: '<ng-content></ng-content>',
|
|
2130
2125
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2131
|
-
inputs: ['animated'
|
|
2126
|
+
inputs: ['animated'],
|
|
2132
2127
|
standalone: true
|
|
2133
2128
|
}]
|
|
2134
2129
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2141,12 +2136,12 @@ let IonSpinner = class IonSpinner {
|
|
|
2141
2136
|
this.el = r.nativeElement;
|
|
2142
2137
|
}
|
|
2143
2138
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2144
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, isStandalone: true, selector: "ion-spinner", inputs: { color: "color", duration: "duration",
|
|
2139
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSpinner, isStandalone: true, selector: "ion-spinner", inputs: { color: "color", duration: "duration", name: "name", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2145
2140
|
};
|
|
2146
2141
|
IonSpinner = __decorate([
|
|
2147
2142
|
ProxyCmp({
|
|
2148
2143
|
defineCustomElementFn: defineCustomElement$15,
|
|
2149
|
-
inputs: ['color', 'duration', '
|
|
2144
|
+
inputs: ['color', 'duration', 'name', 'paused']
|
|
2150
2145
|
})
|
|
2151
2146
|
], IonSpinner);
|
|
2152
2147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSpinner, decorators: [{
|
|
@@ -2156,7 +2151,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2156
2151
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2157
2152
|
template: '<ng-content></ng-content>',
|
|
2158
2153
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2159
|
-
inputs: ['color', 'duration', '
|
|
2154
|
+
inputs: ['color', 'duration', 'name', 'paused'],
|
|
2160
2155
|
standalone: true
|
|
2161
2156
|
}]
|
|
2162
2157
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2170,12 +2165,12 @@ let IonSplitPane = class IonSplitPane {
|
|
|
2170
2165
|
proxyOutputs(this, this.el, ['ionSplitPaneVisible']);
|
|
2171
2166
|
}
|
|
2172
2167
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2173
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, isStandalone: true, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled",
|
|
2168
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonSplitPane, isStandalone: true, selector: "ion-split-pane", inputs: { contentId: "contentId", disabled: "disabled", when: "when" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2174
2169
|
};
|
|
2175
2170
|
IonSplitPane = __decorate([
|
|
2176
2171
|
ProxyCmp({
|
|
2177
2172
|
defineCustomElementFn: defineCustomElement$16,
|
|
2178
|
-
inputs: ['contentId', 'disabled', '
|
|
2173
|
+
inputs: ['contentId', 'disabled', 'when']
|
|
2179
2174
|
})
|
|
2180
2175
|
], IonSplitPane);
|
|
2181
2176
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonSplitPane, decorators: [{
|
|
@@ -2185,7 +2180,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2185
2180
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2186
2181
|
template: '<ng-content></ng-content>',
|
|
2187
2182
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2188
|
-
inputs: ['contentId', 'disabled', '
|
|
2183
|
+
inputs: ['contentId', 'disabled', 'when'],
|
|
2189
2184
|
standalone: true
|
|
2190
2185
|
}]
|
|
2191
2186
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2198,12 +2193,12 @@ let IonTab = class IonTab {
|
|
|
2198
2193
|
this.el = r.nativeElement;
|
|
2199
2194
|
}
|
|
2200
2195
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2201
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, isStandalone: true, selector: "ion-tab", inputs: { component: "component",
|
|
2196
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTab, isStandalone: true, selector: "ion-tab", inputs: { component: "component", tab: "tab" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2202
2197
|
};
|
|
2203
2198
|
IonTab = __decorate([
|
|
2204
2199
|
ProxyCmp({
|
|
2205
2200
|
defineCustomElementFn: defineCustomElement$17,
|
|
2206
|
-
inputs: ['component', '
|
|
2201
|
+
inputs: ['component', 'tab'],
|
|
2207
2202
|
methods: ['setActive']
|
|
2208
2203
|
})
|
|
2209
2204
|
], IonTab);
|
|
@@ -2214,7 +2209,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2214
2209
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2215
2210
|
template: '<ng-content></ng-content>',
|
|
2216
2211
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2217
|
-
inputs: ['component', '
|
|
2212
|
+
inputs: ['component', 'tab'],
|
|
2218
2213
|
standalone: true
|
|
2219
2214
|
}]
|
|
2220
2215
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2227,12 +2222,12 @@ let IonTabBar = class IonTabBar {
|
|
|
2227
2222
|
this.el = r.nativeElement;
|
|
2228
2223
|
}
|
|
2229
2224
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2230
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, isStandalone: true, selector: "ion-tab-bar", inputs: { color: "color",
|
|
2225
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabBar, isStandalone: true, selector: "ion-tab-bar", inputs: { color: "color", mode: "mode", selectedTab: "selectedTab", translucent: "translucent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2231
2226
|
};
|
|
2232
2227
|
IonTabBar = __decorate([
|
|
2233
2228
|
ProxyCmp({
|
|
2234
2229
|
defineCustomElementFn: defineCustomElement$18,
|
|
2235
|
-
inputs: ['color', '
|
|
2230
|
+
inputs: ['color', 'mode', 'selectedTab', 'translucent']
|
|
2236
2231
|
})
|
|
2237
2232
|
], IonTabBar);
|
|
2238
2233
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabBar, decorators: [{
|
|
@@ -2242,7 +2237,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2242
2237
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2243
2238
|
template: '<ng-content></ng-content>',
|
|
2244
2239
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2245
|
-
inputs: ['color', '
|
|
2240
|
+
inputs: ['color', 'mode', 'selectedTab', 'translucent'],
|
|
2246
2241
|
standalone: true
|
|
2247
2242
|
}]
|
|
2248
2243
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2255,12 +2250,12 @@ let IonTabButton = class IonTabButton {
|
|
|
2255
2250
|
this.el = r.nativeElement;
|
|
2256
2251
|
}
|
|
2257
2252
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2258
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, isStandalone: true, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected",
|
|
2253
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTabButton, isStandalone: true, selector: "ion-tab-button", inputs: { disabled: "disabled", download: "download", href: "href", layout: "layout", mode: "mode", rel: "rel", selected: "selected", tab: "tab", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2259
2254
|
};
|
|
2260
2255
|
IonTabButton = __decorate([
|
|
2261
2256
|
ProxyCmp({
|
|
2262
2257
|
defineCustomElementFn: defineCustomElement$19,
|
|
2263
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', '
|
|
2258
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target']
|
|
2264
2259
|
})
|
|
2265
2260
|
], IonTabButton);
|
|
2266
2261
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTabButton, decorators: [{
|
|
@@ -2270,7 +2265,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2270
2265
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2271
2266
|
template: '<ng-content></ng-content>',
|
|
2272
2267
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2273
|
-
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', '
|
|
2268
|
+
inputs: ['disabled', 'download', 'href', 'layout', 'mode', 'rel', 'selected', 'tab', 'target'],
|
|
2274
2269
|
standalone: true
|
|
2275
2270
|
}]
|
|
2276
2271
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2283,12 +2278,12 @@ let IonText = class IonText {
|
|
|
2283
2278
|
this.el = r.nativeElement;
|
|
2284
2279
|
}
|
|
2285
2280
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2286
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, isStandalone: true, selector: "ion-text", inputs: { color: "color", mode: "mode"
|
|
2281
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonText, isStandalone: true, selector: "ion-text", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2287
2282
|
};
|
|
2288
2283
|
IonText = __decorate([
|
|
2289
2284
|
ProxyCmp({
|
|
2290
2285
|
defineCustomElementFn: defineCustomElement$1a,
|
|
2291
|
-
inputs: ['color', 'mode'
|
|
2286
|
+
inputs: ['color', 'mode']
|
|
2292
2287
|
})
|
|
2293
2288
|
], IonText);
|
|
2294
2289
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonText, decorators: [{
|
|
@@ -2298,7 +2293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2298
2293
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2299
2294
|
template: '<ng-content></ng-content>',
|
|
2300
2295
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2301
|
-
inputs: ['color', 'mode'
|
|
2296
|
+
inputs: ['color', 'mode'],
|
|
2302
2297
|
standalone: true
|
|
2303
2298
|
}]
|
|
2304
2299
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2311,12 +2306,11 @@ let IonThumbnail = class IonThumbnail {
|
|
|
2311
2306
|
this.el = r.nativeElement;
|
|
2312
2307
|
}
|
|
2313
2308
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2314
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, isStandalone: true, selector: "ion-thumbnail",
|
|
2309
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonThumbnail, isStandalone: true, selector: "ion-thumbnail", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2315
2310
|
};
|
|
2316
2311
|
IonThumbnail = __decorate([
|
|
2317
2312
|
ProxyCmp({
|
|
2318
|
-
defineCustomElementFn: defineCustomElement$1b
|
|
2319
|
-
inputs: ['mode', 'theme']
|
|
2313
|
+
defineCustomElementFn: defineCustomElement$1b
|
|
2320
2314
|
})
|
|
2321
2315
|
], IonThumbnail);
|
|
2322
2316
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonThumbnail, decorators: [{
|
|
@@ -2326,7 +2320,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2326
2320
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2327
2321
|
template: '<ng-content></ng-content>',
|
|
2328
2322
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2329
|
-
inputs: [
|
|
2323
|
+
inputs: [],
|
|
2330
2324
|
standalone: true
|
|
2331
2325
|
}]
|
|
2332
2326
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2339,12 +2333,12 @@ let IonTitle = class IonTitle {
|
|
|
2339
2333
|
this.el = r.nativeElement;
|
|
2340
2334
|
}
|
|
2341
2335
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2342
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, isStandalone: true, selector: "ion-title", inputs: { color: "color",
|
|
2336
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonTitle, isStandalone: true, selector: "ion-title", inputs: { color: "color", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2343
2337
|
};
|
|
2344
2338
|
IonTitle = __decorate([
|
|
2345
2339
|
ProxyCmp({
|
|
2346
2340
|
defineCustomElementFn: defineCustomElement$1c,
|
|
2347
|
-
inputs: ['color', '
|
|
2341
|
+
inputs: ['color', 'size']
|
|
2348
2342
|
})
|
|
2349
2343
|
], IonTitle);
|
|
2350
2344
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonTitle, decorators: [{
|
|
@@ -2354,7 +2348,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2354
2348
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2355
2349
|
template: '<ng-content></ng-content>',
|
|
2356
2350
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2357
|
-
inputs: ['color', '
|
|
2351
|
+
inputs: ['color', 'size'],
|
|
2358
2352
|
standalone: true
|
|
2359
2353
|
}]
|
|
2360
2354
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2368,12 +2362,12 @@ let IonToast = class IonToast {
|
|
|
2368
2362
|
proxyOutputs(this, this.el, ['ionToastDidPresent', 'ionToastWillPresent', 'ionToastWillDismiss', 'ionToastDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss']);
|
|
2369
2363
|
}
|
|
2370
2364
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2371
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, isStandalone: true, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor",
|
|
2365
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToast, isStandalone: true, selector: "ion-toast", inputs: { animated: "animated", buttons: "buttons", color: "color", cssClass: "cssClass", duration: "duration", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", icon: "icon", isOpen: "isOpen", keyboardClose: "keyboardClose", layout: "layout", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", position: "position", positionAnchor: "positionAnchor", swipeGesture: "swipeGesture", translucent: "translucent", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2372
2366
|
};
|
|
2373
2367
|
IonToast = __decorate([
|
|
2374
2368
|
ProxyCmp({
|
|
2375
2369
|
defineCustomElementFn: defineCustomElement$1d,
|
|
2376
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', '
|
|
2370
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2377
2371
|
methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
|
|
2378
2372
|
})
|
|
2379
2373
|
], IonToast);
|
|
@@ -2384,7 +2378,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2384
2378
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2385
2379
|
template: '<ng-content></ng-content>',
|
|
2386
2380
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2387
|
-
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', '
|
|
2381
|
+
inputs: ['animated', 'buttons', 'color', 'cssClass', 'duration', 'enterAnimation', 'header', 'htmlAttributes', 'icon', 'isOpen', 'keyboardClose', 'layout', 'leaveAnimation', 'message', 'mode', 'position', 'positionAnchor', 'swipeGesture', 'translucent', 'trigger'],
|
|
2388
2382
|
standalone: true
|
|
2389
2383
|
}]
|
|
2390
2384
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
@@ -2397,12 +2391,12 @@ let IonToolbar = class IonToolbar {
|
|
|
2397
2391
|
this.el = r.nativeElement;
|
|
2398
2392
|
}
|
|
2399
2393
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2400
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, isStandalone: true, selector: "ion-toolbar", inputs: { color: "color", mode: "mode"
|
|
2394
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToolbar, isStandalone: true, selector: "ion-toolbar", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2401
2395
|
};
|
|
2402
2396
|
IonToolbar = __decorate([
|
|
2403
2397
|
ProxyCmp({
|
|
2404
2398
|
defineCustomElementFn: defineCustomElement$1e,
|
|
2405
|
-
inputs: ['color', 'mode'
|
|
2399
|
+
inputs: ['color', 'mode']
|
|
2406
2400
|
})
|
|
2407
2401
|
], IonToolbar);
|
|
2408
2402
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToolbar, decorators: [{
|
|
@@ -2412,7 +2406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2412
2406
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2413
2407
|
template: '<ng-content></ng-content>',
|
|
2414
2408
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2415
|
-
inputs: ['color', 'mode'
|
|
2409
|
+
inputs: ['color', 'mode'],
|
|
2416
2410
|
standalone: true
|
|
2417
2411
|
}]
|
|
2418
2412
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|