@ionic/angular 8.4.4-dev.11741298262.12200f27 → 8.4.4-dev.11741376313.1cb1887d
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 +2 -3
- package/esm2022/directives/proxies.mjs +10 -10
- package/esm2022/standalone/directives/toggle.mjs +2 -4
- package/fesm2022/ionic-angular-common.mjs +1 -2
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +1 -3
- 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,8 +3404,6 @@ const TOGGLE_INPUTS = [
|
|
|
3404
3404
|
'color',
|
|
3405
3405
|
'disabled',
|
|
3406
3406
|
'enableOnOffLabels',
|
|
3407
|
-
'errorText',
|
|
3408
|
-
'helperText',
|
|
3409
3407
|
'justify',
|
|
3410
3408
|
'labelPlacement',
|
|
3411
3409
|
'mode',
|
|
@@ -3443,7 +3441,7 @@ let IonToggle = class IonToggle extends ValueAccessor {
|
|
|
3443
3441
|
this.handleValueChange(el, el.checked);
|
|
3444
3442
|
}
|
|
3445
3443
|
/** @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 });
|
|
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",
|
|
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 });
|
|
3447
3445
|
};
|
|
3448
3446
|
IonToggle = __decorate([
|
|
3449
3447
|
ProxyCmp({
|