@fox-js/foxui-pc 4.0.1-34 → 4.0.1-35

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/style.esm.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @fox-js/foxui-desktop v4.0.0 Mon Apr 24 2023 10:23:58 GMT+0800 (中国标准时间)
2
+ * @fox-js/foxui-desktop v4.0.0 Tue Apr 25 2023 10:13:51 GMT+0800 (中国标准时间)
3
3
  */
4
4
  const t = "";
5
5
  export {
@@ -931,6 +931,12 @@ declare interface Installer {
931
931
  (app: App, options?: any): void;
932
932
  }
933
933
 
934
+ /**
935
+ * 安装校验规则
936
+ * @param proxy
937
+ */
938
+ export declare function installRules(proxy: FoxComponentPublicInstance, validateScheme: ValidateSchema, name: string): void;
939
+
934
940
  /**
935
941
  * 获取整数长度
936
942
  * @param value
@@ -990,6 +996,12 @@ export declare function isESModule(obj: any): obj is Object;
990
996
  */
991
997
  export declare const isFunction: (val: unknown) => val is Function;
992
998
 
999
+ /**
1000
+ * 是否是隐藏element
1001
+ * @param el
1002
+ */
1003
+ export declare function isHidden(el: any): boolean;
1004
+
993
1005
  /**
994
1006
  * 是否为内嵌页面
995
1007
  * 内嵌页面为内嵌在容器内,如dialog,不需要设置content的高度
@@ -1409,7 +1421,7 @@ export declare function useBroadcast(proxy?: FoxComponentPublicInstance | null):
1409
1421
  * 获取当前domain
1410
1422
  * @returns
1411
1423
  */
1412
- export declare function useDomain(instance?: ComponentInternalInstance | null): Domain | null;
1424
+ export declare function useDomain(proxy?: ComponentPublicInstance | null): Domain | null;
1413
1425
 
1414
1426
  /**
1415
1427
  * use expose
@@ -1456,8 +1468,10 @@ export declare function useTouch(): {
1456
1468
  * 校验条件
1457
1469
  */
1458
1470
  export declare interface ValidateCondition {
1459
- exclude?: string[];
1471
+ deep?: boolean;
1460
1472
  include?: string[];
1473
+ exclude?: string[];
1474
+ ignoreHidden?: boolean;
1461
1475
  }
1462
1476
 
1463
1477
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fox-js/foxui-pc",
3
- "version": "4.0.1-34",
3
+ "version": "4.0.1-35",
4
4
  "description": "FoxUI PC端组件库",
5
5
  "author": "jiangcheng",
6
6
  "main": "dist/index.umd.js",