@sumaris-net/ngx-components 2.5.2 → 2.5.3
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/esm2020/src/app/core/table/async-table.class.mjs +13 -7
- package/esm2020/src/app/core/table/table.class.mjs +13 -7
- package/fesm2015/sumaris-net.ngx-components.mjs +28 -12
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +24 -12
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +2 -0
- package/src/app/core/table/table.class.d.ts +2 -0
package/package.json
CHANGED
|
@@ -354,6 +354,8 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
|
|
|
354
354
|
onlySelf?: boolean;
|
|
355
355
|
emitEVent?: boolean;
|
|
356
356
|
}): void;
|
|
357
|
+
protected getPageSettings<T = any>(propertyName?: string): T;
|
|
358
|
+
protected savePageSettings(value: any, propertyName?: string): Promise<void>;
|
|
357
359
|
private listenSortAndPaginationEvents;
|
|
358
360
|
private editRowById;
|
|
359
361
|
private setLoading;
|
|
@@ -364,6 +364,8 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
364
364
|
onlySelf?: boolean;
|
|
365
365
|
emitEVent?: boolean;
|
|
366
366
|
}): void;
|
|
367
|
+
protected getPageSettings<T = any>(propertyName?: string): T;
|
|
368
|
+
protected savePageSettings(value: any, propertyName?: string): Promise<void>;
|
|
367
369
|
private listenSortAndPaginationEvents;
|
|
368
370
|
private editRowById;
|
|
369
371
|
private setLoading;
|