@fox-js/foxui-pc 4.1.1-20 → 4.1.1-21
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 +1 -1
- package/dist/index.esm.js +1289 -1295
- package/dist/index.umd.js +1 -1
- package/dist/types/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1298,8 +1298,11 @@ export declare function isESModule(obj: any): obj is Object;
|
|
|
1298
1298
|
export declare const isFunction: (val: unknown) => val is Function;
|
|
1299
1299
|
|
|
1300
1300
|
/**
|
|
1301
|
-
* 是否是隐藏element
|
|
1302
|
-
*
|
|
1301
|
+
* 是否是隐藏 element(自身或任意父级隐藏)
|
|
1302
|
+
* - display: none
|
|
1303
|
+
* - visibility: hidden
|
|
1304
|
+
* - hidden 属性
|
|
1305
|
+
* - 父级隐藏
|
|
1303
1306
|
*/
|
|
1304
1307
|
export declare function isHidden(el: any): boolean;
|
|
1305
1308
|
|