@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/bundles/sumaris-net.ngx-components.umd.js +18 -4
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/editor.class.js +5 -1
- package/esm2015/src/app/core/form/form.class.js +5 -1
- package/esm2015/src/app/core/table/table.class.js +11 -5
- package/fesm2015/sumaris-net.ngx-components.js +18 -4
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/editor.class.d.ts +1 -0
- package/src/app/core/form/form.class.d.ts +1 -0
- package/src/app/core/table/table.class.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -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;
|
|
@@ -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;
|