@sumaris-net/ngx-components 1.12.8 → 1.12.9
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/bundles/sumaris-net.ngx-components.umd.js +3 -2
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/shared/functions.js +3 -2
- package/fesm2015/sumaris-net.ngx-components.js +2 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/functions.d.ts +1 -1
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@ export declare function removeAll<T>(array: T[], predicate: (pmfm: T) => boolean
|
|
|
88
88
|
export declare function remove<T>(array: T[], predicate: (pmfm: T) => boolean): T;
|
|
89
89
|
export declare function capitalizeFirstLetter(value: string): string;
|
|
90
90
|
export declare function uncapitalizeFirstLetter(value: string): string;
|
|
91
|
-
export declare function splitByProperty<T, M extends KeyValueType<T> = KeyValueType<T>>(array: T[] | readonly T[], propertyName: string): M;
|
|
91
|
+
export declare function splitByProperty<T, M extends KeyValueType<T> = KeyValueType<T>>(array: T[] | readonly T[], propertyName: keyof T | string): M;
|
|
92
92
|
export declare function splitById<T, M extends KeyValueType<T> = KeyValueType<T>>(array: T[] | readonly T[]): M;
|
|
93
93
|
/**
|
|
94
94
|
* Determines if two objects or two values are equivalent.
|