@ionic/angular 8.7.16-dev.11767111768.1552e96d → 8.7.16-dev.11767365495.141917e9

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.
@@ -2862,10 +2862,9 @@ class ModalController extends OverlayBaseController {
2862
2862
  super(modalController);
2863
2863
  }
2864
2864
  create(opts) {
2865
- const { injector: customInjector, ...restOpts } = opts;
2866
2865
  return super.create({
2867
- ...restOpts,
2868
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
2866
+ ...opts,
2867
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal'),
2869
2868
  });
2870
2869
  }
2871
2870
  /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
@@ -2900,10 +2899,9 @@ class PopoverController extends OverlayBaseController {
2900
2899
  super(popoverController);
2901
2900
  }
2902
2901
  create(opts) {
2903
- const { injector: customInjector, ...restOpts } = opts;
2904
2902
  return super.create({
2905
- ...restOpts,
2906
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
2903
+ ...opts,
2904
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover'),
2907
2905
  });
2908
2906
  }
2909
2907
  }