@libs-ui/utils 0.2.324-0 → 0.2.326-0
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/dom.d.ts +1 -2
- package/esm2022/dom.mjs +4 -6
- package/esm2022/function-check-embed-frame.mjs +2 -1
- package/esm2022/helpers.mjs +21 -8
- package/esm2022/inject-token.mjs +2 -1
- package/esm2022/key-code.mjs +2 -1
- package/esm2022/xss-filter.mjs +1 -1
- package/fesm2022/libs-ui-utils.mjs +530 -517
- package/fesm2022/libs-ui-utils.mjs.map +1 -1
- package/helpers.d.ts +1 -1
- package/key-code.d.ts +1 -0
- package/package.json +2 -2
package/helpers.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare const isNil: (value: unknown, options?: {
|
|
|
27
27
|
* isEmpty([1, 2, 3]); // false
|
|
28
28
|
* isEmpty({ a: 1 }); // false
|
|
29
29
|
*/
|
|
30
|
-
export declare const isEmpty: (value:
|
|
30
|
+
export declare const isEmpty: (value: any, options?: {
|
|
31
31
|
ignoreCheckTypePrimitive?: boolean;
|
|
32
32
|
ignoreUnWrapSignal?: boolean;
|
|
33
33
|
ignoreCheckString?: boolean;
|
package/key-code.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/utils",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.326-0",
|
|
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.326-0",
|
|
10
10
|
"rxjs": "~7.8.0"
|
|
11
11
|
},
|
|
12
12
|
"sideEffects": false,
|