@ionic/angular 8.4.4-dev.11741197052.19804443 → 8.4.4-dev.11741198674.16b83b14
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/fesm2022/ionic-angular-common.mjs +0 -7
- package/fesm2022/ionic-angular-common.mjs.map +1 -1
- package/fesm2022/ionic-angular.mjs +6 -6
- package/fesm2022/ionic-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2473,13 +2473,6 @@ class ValueAccessor {
|
|
|
2473
2473
|
if (el === this.elementRef.nativeElement) {
|
|
2474
2474
|
this.onTouched();
|
|
2475
2475
|
setIonicClasses(this.elementRef);
|
|
2476
|
-
// When ion-radio is blurred, el and this.elementRef.nativeElement are
|
|
2477
|
-
// different so we need to check if the closest ion-radio-group is the same
|
|
2478
|
-
// as this.elementRef.nativeElement and if so, we need to mark the radio group
|
|
2479
|
-
// as touched
|
|
2480
|
-
}
|
|
2481
|
-
else if (el.closest('ion-radio-group') === this.elementRef.nativeElement) {
|
|
2482
|
-
this.onTouched();
|
|
2483
2476
|
}
|
|
2484
2477
|
}
|
|
2485
2478
|
registerOnChange(fn) {
|