@sumaris-net/ngx-components 1.23.52 → 1.23.53

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": "1.23.52",
4
+ "version": "1.23.53",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -87,6 +87,7 @@ export declare abstract class AppEditor<T = any, ID = number, O = any> implement
87
87
  get error(): string;
88
88
  set error(error: string);
89
89
  get saving(): boolean;
90
+ destroyed(): boolean;
90
91
  toolbar: ToolbarToken | null;
91
92
  formButtonsBar: FormButtonsBarToken | null;
92
93
  content: IonContent;
@@ -62,6 +62,7 @@ export declare abstract class AppForm<T> implements IAppForm, OnInit, OnDestroy,
62
62
  onlySelf?: boolean;
63
63
  emitEvent?: boolean;
64
64
  }): void;
65
+ destroyed(): boolean;
65
66
  debug: boolean;
66
67
  tabindex: number;
67
68
  errorTranslatorOptions: FormErrorTranslatorOptions;
@@ -217,6 +217,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
217
217
  private _paginator;
218
218
  set paginator(value: MatPaginator);
219
219
  get paginator(): MatPaginator;
220
+ destroyed(): boolean;
220
221
  table: MatTable<T>;
221
222
  childPaginator: MatPaginator;
222
223
  sort: MatSort;