@ionic/angular 8.4.4-dev.11740674215.19381153 → 8.4.4-dev.11740776520.1b9d8cb9

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.
@@ -1046,6 +1046,7 @@ const MODAL_INPUTS = [
1046
1046
  'canDismiss',
1047
1047
  'cssClass',
1048
1048
  'enterAnimation',
1049
+ 'expandToScroll',
1049
1050
  'event',
1050
1051
  'focusTrap',
1051
1052
  'handle',
@@ -1098,7 +1099,7 @@ let IonModal = class IonModal {
1098
1099
  ]);
1099
1100
  }
1100
1101
  /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IonModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
1101
- /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", inputs: { animated: "animated", keepContentsMounted: "keepContentsMounted", backdropBreakpoint: "backdropBreakpoint", backdropDismiss: "backdropDismiss", breakpoints: "breakpoints", canDismiss: "canDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", event: "event", focusTrap: "focusTrap", handle: "handle", handleBehavior: "handleBehavior", initialBreakpoint: "initialBreakpoint", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", presentingElement: "presentingElement", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1102
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: IonModal, selector: "ion-modal", inputs: { animated: "animated", keepContentsMounted: "keepContentsMounted", backdropBreakpoint: "backdropBreakpoint", backdropDismiss: "backdropDismiss", breakpoints: "breakpoints", canDismiss: "canDismiss", cssClass: "cssClass", enterAnimation: "enterAnimation", expandToScroll: "expandToScroll", event: "event", focusTrap: "focusTrap", handle: "handle", handleBehavior: "handleBehavior", initialBreakpoint: "initialBreakpoint", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", presentingElement: "presentingElement", showBackdrop: "showBackdrop", translucent: "translucent", trigger: "trigger" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0 });
1102
1103
  };
1103
1104
  IonModal = __decorate([
1104
1105
  ProxyCmp({
@@ -2472,6 +2473,13 @@ class ValueAccessor {
2472
2473
  if (el === this.elementRef.nativeElement) {
2473
2474
  this.onTouched();
2474
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();
2475
2483
  }
2476
2484
  }
2477
2485
  registerOnChange(fn) {