@sumaris-net/ngx-components 18.2.34 → 18.2.35-alpha2

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": "18.2.34",
4
+ "version": "18.2.35-alpha2",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -32,7 +32,8 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> extends A
32
32
  formButtonsBar: FormButtonsBarToken | null;
33
33
  content: IonContent;
34
34
  abstract get isNewData(): boolean;
35
- protected constructor(route: ActivatedRoute, router: Router, navController: NavController, alertCtrl: AlertController, translate: TranslateService);
35
+ protected constructor(route: ActivatedRoute, // Modal editor give 'null'
36
+ router: Router, navController: NavController, alertCtrl: AlertController, translate: TranslateService);
36
37
  ngOnInit(): void;
37
38
  ngAfterViewInit(): void;
38
39
  ngOnDestroy(): void;
@@ -78,6 +79,6 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> extends A
78
79
  }): Promise<boolean>;
79
80
  protected saveDirtyChildren(): Promise<boolean>;
80
81
  protected showToast(opts: ShowToastOptions): Promise<void>;
81
- static ɵfac: i0.ɵɵFactoryDeclaration<AppEditor<any, any, any>, never>;
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppEditor<any, any, any>, [{ optional: true; }, null, null, null, null]>;
82
83
  static ɵdir: i0.ɵɵDirectiveDeclaration<AppEditor<any, any, any>, never, never, {}, {}, never, never, false, never>;
83
84
  }
@@ -32,11 +32,6 @@ export declare class AppTabEditorOptions {
32
32
  enableSwipe?: boolean;
33
33
  }
34
34
  export declare abstract class AppTabEditor<T = any, ID = number, O = any> extends AppEditor<T, ID, O> implements IAppTabEditor<T>, OnInit, OnDestroy {
35
- protected route: ActivatedRoute;
36
- protected router: Router;
37
- protected navController: NavController;
38
- protected alertCtrl: AlertController;
39
- protected translate: TranslateService;
40
35
  protected _selectedTabIndex: number;
41
36
  protected tabCount: number;
42
37
  protected enableSwipe: boolean;