@libs-ui/utils 0.2.289 → 0.2.291

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
@@ -84,7 +84,6 @@ export declare const omitBy: <T>(objData: Record<string, any>, predicate: (val:
84
84
  * { name: 'Item 2', price: 200 }
85
85
  * ];
86
86
  * get(items, '[0].name'); // 'Item 1'
87
- * get(items, '0.price'); // 100
88
87
  * get(items, '[1].name'); // 'Item 2'
89
88
  * get(items, '[2].name', 'Not found'); // 'Not found'
90
89
  *
package/index.d.ts CHANGED
@@ -25,3 +25,4 @@ export * from './file';
25
25
  export * from './uri';
26
26
  export * from './format-text';
27
27
  export * from './get-smart-axis-scale';
28
+ export * from './random';
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@libs-ui/utils",
3
- "version": "0.2.289",
3
+ "version": "0.2.291",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
7
7
  "crypto-es": "^2.1.0",
8
8
  "dayjs": "1.11.5",
9
- "@libs-ui/interfaces-types": "0.2.289",
9
+ "@libs-ui/interfaces-types": "0.2.291",
10
10
  "rxjs": "~7.8.0"
11
11
  },
12
12
  "sideEffects": false,
package/random.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export declare const protectString: (input: string) => string;
2
+ export declare const revealString: (encoded: string) => string;
3
+ export declare const createUniqueRandomIntGenerator: (min: number, max: number) => () => number;