@sumaris-net/ngx-components 1.23.64 → 1.23.65

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.64",
4
+ "version": "1.23.65",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -5,6 +5,12 @@ export declare class IsNotNilOrBlankPipe implements PipeTransform {
5
5
  export declare class IsNilOrBlankPipe implements PipeTransform {
6
6
  transform(value: string): boolean;
7
7
  }
8
+ export declare class IsNotNilOrNaNPipe implements PipeTransform {
9
+ transform(value: number): boolean;
10
+ }
11
+ export declare class IsNotNilPipe implements PipeTransform {
12
+ transform(value: any): boolean;
13
+ }
8
14
  export declare class ToStringPipe implements PipeTransform {
9
15
  transform(value: number): string;
10
16
  }