@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.
@@ -2470,10 +2470,9 @@ class ModalController extends OverlayBaseController {
2470
2470
  defineCustomElement$3();
2471
2471
  }
2472
2472
  create(opts) {
2473
- const { injector: customInjector, ...restOpts } = opts;
2474
2473
  return super.create({
2475
- ...restOpts,
2476
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
2474
+ ...opts,
2475
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal'),
2477
2476
  });
2478
2477
  }
2479
2478
  /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
@@ -2492,10 +2491,9 @@ class PopoverController extends OverlayBaseController {
2492
2491
  defineCustomElement$4();
2493
2492
  }
2494
2493
  create(opts) {
2495
- const { injector: customInjector, ...restOpts } = opts;
2496
2494
  return super.create({
2497
- ...restOpts,
2498
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
2495
+ ...opts,
2496
+ delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover'),
2499
2497
  });
2500
2498
  }
2501
2499
  }