@ionic/angular 8.4.4-dev.11741384305.15abf5ef → 8.4.4-dev.11741630999.189d7fc2
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/common/overlays/modal.d.ts +1 -1
- package/css/core.css.map +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/directives/proxies.d.ts +3 -3
- package/esm2022/common/overlays/modal.mjs +3 -2
- package/esm2022/directives/proxies.mjs +10 -10
- package/esm2022/standalone/directives/toggle.mjs +4 -2
- package/fesm2022/ionic-angular-common.mjs +2 -1
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +3 -1
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +9 -9
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/toggle.d.ts +1 -1
|
@@ -3404,6 +3404,8 @@ const TOGGLE_INPUTS = [
|
|
|
3404
3404
|
'color',
|
|
3405
3405
|
'disabled',
|
|
3406
3406
|
'enableOnOffLabels',
|
|
3407
|
+
'errorText',
|
|
3408
|
+
'helperText',
|
|
3407
3409
|
'justify',
|
|
3408
3410
|
'labelPlacement',
|
|
3409
3411
|
'mode',
|
|
@@ -3441,7 +3443,7 @@ let IonToggle = class IonToggle extends ValueAccessor {
|
|
|
3441
3443
|
this.handleValueChange(el, el.checked);
|
|
3442
3444
|
}
|
|
3443
3445
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3444
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, isStandalone: true, selector: "ion-toggle", inputs: { checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3446
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonToggle, isStandalone: true, selector: "ion-toggle", inputs: { checked: "checked", color: "color", disabled: "disabled", enableOnOffLabels: "enableOnOffLabels", errorText: "errorText", helperText: "helperText", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3445
3447
|
};
|
|
3446
3448
|
IonToggle = __decorate([
|
|
3447
3449
|
ProxyCmp({
|