@sumaris-net/ngx-components 1.23.23 → 1.23.24

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.23",
4
+ "version": "1.23.24",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -53,11 +53,11 @@ export declare class InMemoryEntitiesService<T extends IEntity<T, ID>, F = any,
53
53
  get count(): number;
54
54
  get hiddenCount(): number;
55
55
  waitIdle(opts?: WaitForOptions): Promise<void>;
56
+ markAsDirty(): void;
57
+ markAsPristine(): void;
56
58
  protected filter(data: T[], _filter: F, hiddenData: T[]): T[];
57
59
  protected connect(): Observable<LoadResult<T>>;
58
60
  protected waitWhileSaving(opts?: WaitForOptions): Promise<void>;
59
61
  protected markAsSaving(): void;
60
62
  protected markAsSaved(): void;
61
- protected markAsDirty(): void;
62
- protected markAsPristine(): void;
63
63
  }