@sumaris-net/ngx-components 2.8.3-beta26 → 2.8.3-beta27
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
|
@@ -9,7 +9,8 @@ export declare function isNotEmptyArray<T>(obj: T[] | null | undefined): boolean
|
|
|
9
9
|
export declare function firstArrayValue<T>(obj: T[] | null | undefined): T | undefined;
|
|
10
10
|
export declare function lastArrayValue<T>(obj: T[] | null | undefined): T | undefined;
|
|
11
11
|
export declare function isEmptyArray<T>(obj: T[] | null | undefined): boolean;
|
|
12
|
-
export declare function arrayResize<T>(array: T[] | null | undefined,
|
|
12
|
+
export declare function arrayResize<T>(array: T[] | null | undefined, size: number, defaultValue?: T): T[];
|
|
13
|
+
export declare function newArray<T>(size: number, defaultValue?: T): T[];
|
|
13
14
|
export declare function isNotNilBoolean(obj: any | null | undefined): obj is boolean;
|
|
14
15
|
export declare function isNotNilString(obj: any | null | undefined): obj is string;
|
|
15
16
|
export declare function isBlankString(obj: any | null | undefined): obj is string;
|
package/src/assets/manifest.json
CHANGED
|
@@ -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.8.3-
|
|
5
|
+
"version": "2.8.3-beta27",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|