@libs-ui/utils 0.2.286 → 0.2.287
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
|
@@ -195,7 +195,10 @@ export declare const range: (start: number, end?: number, step?: number) => Arra
|
|
|
195
195
|
* isEqual([1,2,3], [3,2,1]); // false khi exactlyPosition = true
|
|
196
196
|
* isEqual({a:1}, {a:1}); // true
|
|
197
197
|
*/
|
|
198
|
-
export declare const isEqual: (value1: any, value2: any,
|
|
198
|
+
export declare const isEqual: (value1: any, value2: any, options?: {
|
|
199
|
+
exactlyPosition?: boolean;
|
|
200
|
+
ignoreExactlyDataType?: boolean;
|
|
201
|
+
}) => boolean;
|
|
199
202
|
/**
|
|
200
203
|
* Loại bỏ các phần tử trùng lặp trong mảng dựa trên một thuộc tính chỉ định
|
|
201
204
|
* @param data Mảng dữ liệu cần xử lý
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/utils",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.287",
|
|
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.
|
|
9
|
+
"@libs-ui/interfaces-types": "0.2.287",
|
|
10
10
|
"rxjs": "~7.8.0"
|
|
11
11
|
},
|
|
12
12
|
"sideEffects": false,
|