@ionic/angular 8.4.4-dev.11741632207.1cb10db6 → 8.4.4-dev.11741733932.1686c035
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 +4 -4
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +1 -8
- package/esm2022/common/overlays/modal.mjs +2 -3
- package/esm2022/directives/proxies.mjs +13 -13
- package/esm2022/standalone/directives/radio-group.mjs +3 -3
- package/fesm2022/ionic-angular-common.mjs +1 -9
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular-standalone.mjs +2 -2
- package/fesm2022/ionic-angular-standalone.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +12 -12
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/radio-group.d.ts +1 -1
|
@@ -2994,7 +2994,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2994
2994
|
args: ['ionInput', ['$event.target']]
|
|
2995
2995
|
}] } });
|
|
2996
2996
|
|
|
2997
|
-
const RADIO_GROUP_INPUTS = ['allowEmptySelection', 'compareWith', '
|
|
2997
|
+
const RADIO_GROUP_INPUTS = ['allowEmptySelection', 'compareWith', 'name', 'value'];
|
|
2998
2998
|
/**
|
|
2999
2999
|
* Pulling the provider into an object and using PURE works
|
|
3000
3000
|
* around an ng-packagr issue that causes
|
|
@@ -3022,7 +3022,7 @@ let IonRadioGroup = class IonRadioGroup extends ValueAccessor {
|
|
|
3022
3022
|
this.handleValueChange(el, el.value);
|
|
3023
3023
|
}
|
|
3024
3024
|
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
3025
|
-
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, isStandalone: true, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith",
|
|
3025
|
+
/** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: IonRadioGroup, isStandalone: true, selector: "ion-radio-group", inputs: { allowEmptySelection: "allowEmptySelection", compareWith: "compareWith", name: "name", value: "value" }, host: { listeners: { "ionChange": "handleIonChange($event.target)" } }, providers: [accessorProvider$6], usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3026
3026
|
};
|
|
3027
3027
|
IonRadioGroup = __decorate([
|
|
3028
3028
|
ProxyCmp({
|