@ionic/angular 8.4.4-dev.11741197052.19804443 → 8.4.4-dev.11741206641.18dd4e91
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/directives/proxies.d.ts +2 -2
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +1 -8
- package/esm2022/directives/proxies.mjs +7 -7
- package/esm2022/standalone/directives/checkbox.mjs +4 -2
- package/fesm2022/ionic-angular-common.mjs +0 -7
- 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 +6 -6
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/checkbox.d.ts +1 -1
|
@@ -2712,6 +2712,8 @@ const CHECKBOX_INPUTS = [
|
|
|
2712
2712
|
'checked',
|
|
2713
2713
|
'color',
|
|
2714
2714
|
'disabled',
|
|
2715
|
+
'errorText',
|
|
2716
|
+
'helperText',
|
|
2715
2717
|
'indeterminate',
|
|
2716
2718
|
'justify',
|
|
2717
2719
|
'labelPlacement',
|
|
@@ -2750,7 +2752,7 @@ let IonCheckbox = class IonCheckbox extends ValueAccessor {
|
|
|
2750
2752
|
this.handleValueChange(el, el.checked);
|
|
2751
2753
|
}
|
|
2752
2754
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
2753
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, isStandalone: true, selector: "ion-checkbox", inputs: { checked: "checked", color: "color", disabled: "disabled", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$9], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2755
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonCheckbox, isStandalone: true, selector: "ion-checkbox", inputs: { checked: "checked", color: "color", disabled: "disabled", errorText: "errorText", helperText: "helperText", indeterminate: "indeterminate", justify: "justify", labelPlacement: "labelPlacement", mode: "mode", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$9], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2754
2756
|
};
|
|
2755
2757
|
IonCheckbox = __decorate([
|
|
2756
2758
|
ProxyCmp({
|