@ionic/angular 8.4.2-dev.11739468652.1ae78967 → 8.4.2-dev.11741080979.1715cc06
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/ionic/bundle.ionic.css +1 -1
- package/css/ionic/bundle.ionic.css.map +1 -1
- package/css/ionic/core.ionic.css.map +1 -1
- package/css/ionic/global.bundle.ionic.css +1 -1
- package/css/ionic/global.bundle.ionic.css.map +1 -1
- package/css/ionic/link.ionic.css +1 -1
- package/css/ionic/link.ionic.css.map +1 -1
- package/css/ionic/typography.ionic.css.map +1 -1
- package/css/ionic/utils.bundle.ionic.css +1 -1
- package/css/ionic/utils.bundle.ionic.css.map +1 -1
- package/directives/proxies.d.ts +2 -2
- package/esm2022/directives/proxies.mjs +7 -7
- package/esm2022/standalone/directives/proxies.mjs +4 -4
- package/fesm2022/ionic-angular-standalone.mjs +3 -3
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +6 -6
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/proxies.d.ts +1 -1
|
@@ -517,12 +517,12 @@ let IonBadge = class IonBadge {
|
|
|
517
517
|
this.el = r.nativeElement;
|
|
518
518
|
}
|
|
519
519
|
/** @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", shape: "shape", size: "size", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
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", shape: "shape", size: "size", theme: "theme", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
521
521
|
};
|
|
522
522
|
IonBadge = __decorate([
|
|
523
523
|
ProxyCmp({
|
|
524
524
|
defineCustomElementFn: defineCustomElement$c,
|
|
525
|
-
inputs: ['color', 'mode', 'shape', 'size', 'theme']
|
|
525
|
+
inputs: ['color', 'mode', 'shape', 'size', 'theme', 'vertical']
|
|
526
526
|
})
|
|
527
527
|
], IonBadge);
|
|
528
528
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonBadge, decorators: [{
|
|
@@ -532,7 +532,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
532
532
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
533
533
|
template: '<ng-content></ng-content>',
|
|
534
534
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
535
|
-
inputs: ['color', 'mode', 'shape', 'size', 'theme'],
|
|
535
|
+
inputs: ['color', 'mode', 'shape', 'size', 'theme', 'vertical'],
|
|
536
536
|
standalone: true
|
|
537
537
|
}]
|
|
538
538
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|