@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/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.20.29",
4
+ "version": "1.20.30",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -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 inside the service.
47
+ * Count data stored by the service (without hidden data).
48
48
  * @param opts
49
49
  */
50
- count(opts?: {
51
- withHidden: boolean;
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;