@sumaris-net/ngx-components 2.4.23-rc2 → 2.4.23-rc3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.4.23-rc2",
4
+ "version": "2.4.23-rc3",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -1,4 +1,5 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
2
+ import { IonRouterOutlet } from '@ionic/angular';
2
3
  import { Observable, Subject } from 'rxjs';
3
4
  import { AddToPageHistoryOptions, LocalSettingsService } from '../../services/local-settings.service';
4
5
  import { Entity } from '../../services/model/entity.model';
@@ -58,6 +59,7 @@ export declare abstract class AppEntityEditor<T extends Entity<T, ID>, S extends
58
59
  protected readonly cd: ChangeDetectorRef;
59
60
  protected readonly settings: LocalSettingsService;
60
61
  protected readonly environment: Environment;
62
+ protected readonly routerOutlet: IonRouterOutlet;
61
63
  protected errorTranslator: FormErrorTranslator;
62
64
  data: T;
63
65
  defaultBackHref: string;