@sumaris-net/ngx-components 2.6.2 → 2.6.4-alpha1

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": "2.6.2",
4
+ "version": "2.6.4-alpha1",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -17,8 +17,8 @@
17
17
  "tslib": "~2.3.1"
18
18
  },
19
19
  "peerDependencies": {
20
- "@angular-devkit/build-angular": "~14.2.11",
21
- "@angular/compiler-cli": "~14.2.12",
20
+ "@angular-devkit/build-angular": "~14.2.12",
21
+ "@angular/compiler-cli": "~14.3.0",
22
22
  "@apollo/client": "~3.7.16",
23
23
  "@ionic/storage": "~3.0.6",
24
24
  "d3": "~7.6.1",
@@ -1,12 +1,22 @@
1
1
  import { Entity, EntityAsObjectOptions, IEntity } from './entity.model';
2
2
  import { FilterFn } from '../../../shared/services/entity-service.class';
3
+ import { Person } from './person.model';
4
+ import { Department } from './department.model';
3
5
  export interface IEntityFilter<F extends IEntityFilter<F, T, ID, AO, FO>, T extends IEntity<T, any>, ID = number, AO extends EntityAsObjectOptions = EntityAsObjectOptions, FO = any> extends IEntity<F, ID, AO, FO> {
6
+ filterName: string;
7
+ filterType: string;
8
+ filterRecorderPerson: Person;
9
+ filterRecorderDepartment: Department;
4
10
  asPodObject(): any;
5
11
  asFilterFn(): FilterFn<T>;
6
12
  isEmpty(): boolean;
7
13
  countNotEmptyCriteria(): number;
8
14
  }
9
15
  export declare abstract class EntityFilter<F extends EntityFilter<F, T, ID, AO, FO>, T extends IEntity<T, any>, ID = number, AO extends EntityAsObjectOptions = EntityAsObjectOptions, FO = any> extends Entity<F, ID, AO, FO> implements IEntityFilter<F, T, ID, AO, FO> {
16
+ filterName: string;
17
+ filterType: string;
18
+ filterRecorderPerson: Person;
19
+ filterRecorderDepartment: Department;
10
20
  /**
11
21
  * Compose some filter functions: all should return true
12
22
  * @param filterFns
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "2.6.2",
5
+ "version": "2.6.4-alpha1",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{