@fox-js/foxui 4.0.1-78 → 4.0.1-79
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/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +1475 -1481
- package/dist/index.umd.js +2 -2
- package/dist/types/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1422,8 +1422,11 @@ export declare function isESModule(obj: any): obj is Object;
|
|
|
1422
1422
|
export declare const isFunction: (val: unknown) => val is Function;
|
|
1423
1423
|
|
|
1424
1424
|
/**
|
|
1425
|
-
* 是否是隐藏element
|
|
1426
|
-
*
|
|
1425
|
+
* 是否是隐藏 element(自身或任意父级隐藏)
|
|
1426
|
+
* - display: none
|
|
1427
|
+
* - visibility: hidden
|
|
1428
|
+
* - hidden 属性
|
|
1429
|
+
* - 父级隐藏
|
|
1427
1430
|
*/
|
|
1428
1431
|
export declare function isHidden(el: any): boolean;
|
|
1429
1432
|
|