@sumaris-net/ngx-components 1.20.29 → 1.20.30
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 +41 -33
- 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/shared/services/memory-entity-service.class.js +9 -8
- package/fesm2015/sumaris-net.ngx-components.js +8 -7
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/services/memory-entity-service.class.d.ts +3 -4
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -44,12 +44,11 @@ export declare class InMemoryEntitiesService<T extends IEntity<T, ID>, F = any,
|
|
|
44
44
|
addSortByReplacement(source: string, target: string): void;
|
|
45
45
|
equals(d1: T, d2: T): boolean;
|
|
46
46
|
/**
|
|
47
|
-
* Count data
|
|
47
|
+
* Count data stored by the service (without hidden data).
|
|
48
48
|
* @param opts
|
|
49
49
|
*/
|
|
50
|
-
count(
|
|
51
|
-
|
|
52
|
-
}): number;
|
|
50
|
+
get count(): number;
|
|
51
|
+
get hiddenCount(): number;
|
|
53
52
|
protected filter(data: T[], _filter: F, hiddenData: T[]): T[];
|
|
54
53
|
protected connect(): Observable<LoadResult<T>>;
|
|
55
54
|
protected markAsSaving(): void;
|