@flatbiz/antd 4.0.23 → 4.0.25
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/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +8 -0
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -788,6 +788,14 @@ export type SelectorWrapperProps = Omit<SelectProps, "onSearch" | "notFoundConte
|
|
|
788
788
|
* ```
|
|
789
789
|
*/
|
|
790
790
|
value?: SelectorWrapperValue;
|
|
791
|
+
/**
|
|
792
|
+
* 使用缓存,默认值:true
|
|
793
|
+
* ```
|
|
794
|
+
* true: 在 modelKey下使用请求参数缓存数据,如果相同model、相同请求参数直接使用缓存数据
|
|
795
|
+
* false: 每次都调用接口,不参与缓存数据、不使用缓存数据
|
|
796
|
+
* ```
|
|
797
|
+
*/
|
|
798
|
+
useCache?: boolean;
|
|
791
799
|
};
|
|
792
800
|
/**
|
|
793
801
|
* 选择器包装组件
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flatbiz/antd",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.25",
|
|
4
4
|
"description": "flat-biz oss ui components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"dayjs": "1.11.7",
|
|
51
51
|
"dequal": "^2.0.3",
|
|
52
52
|
"react": "18.2.0",
|
|
53
|
-
"react-dom": "18.2.0"
|
|
54
|
-
"pubsub-js": "^1.9.4"
|
|
53
|
+
"react-dom": "18.2.0"
|
|
55
54
|
},
|
|
56
55
|
"dependencies": {
|
|
57
|
-
"dequal": "^2.0.3"
|
|
56
|
+
"dequal": "^2.0.3",
|
|
57
|
+
"pubsub-js": "^1.9.4"
|
|
58
58
|
},
|
|
59
59
|
"gitHead": "4378d433b73ee28fd7cb4c64bed8571f993eb5a9"
|
|
60
60
|
}
|