@libs-ui/utils 0.2.244 → 0.2.246

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/helpers.d.ts CHANGED
@@ -5,7 +5,9 @@ export declare const isEmpty: (value: unknown) => boolean;
5
5
  export declare const omitBy: <T>(objData: Record<string, any>, predicate: (val: any) => boolean) => T;
6
6
  export declare const get: <T = any>(obj: any, path: string | string[], defaultValue?: any, keepLastValueIfSignal?: boolean) => T;
7
7
  export declare const set: <T = any>(obj: any, path: string | string[], value: any) => T;
8
- export declare const cloneDeep: <T = any>(data: any, seen?: WeakMap<object, any>) => T;
8
+ export declare const cloneDeep: <T = any>(data: any, options?: {
9
+ ignoreSignal: boolean;
10
+ }, seen?: WeakMap<object, any>) => T;
9
11
  export declare const keyBy: (data: Array<TYPE_OBJECT>, key: string) => TYPE_OBJECT;
10
12
  export declare const groupBy: (data: Array<TYPE_OBJECT>, key: string) => TYPE_OBJECT;
11
13
  export declare const range: (start: number, end?: number, step?: number) => Array<number>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@libs-ui/utils",
3
- "version": "0.2.244",
3
+ "version": "0.2.246",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
7
7
  "crypto-es": "^2.1.0",
8
8
  "dayjs": "1.11.5",
9
- "@libs-ui/interfaces-types": "^0.2.244",
9
+ "@libs-ui/interfaces-types": "^0.2.246",
10
10
  "rxjs": "~7.8.0"
11
11
  },
12
12
  "sideEffects": false,