@wx-design/components 2.0.0-alpha → 2.0.0-alpha.10
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/es/core/Select/index.vue.d.ts +16 -4
- package/es/index.mjs +31841 -33560
- package/es/style.css +1 -1
- package/lib/core/Select/index.vue.d.ts +16 -4
- package/lib/index.js +5 -5
- package/lib/style.css +1 -1
- package/package.json +3 -3
- package/types/select/index.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wx-design/components",
|
|
3
|
-
"version": "2.0.0-alpha",
|
|
3
|
+
"version": "2.0.0-alpha.10",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"lodash": "^4.17.21",
|
|
39
39
|
"number-precision": "^1.6.0",
|
|
40
40
|
"vue": "^3.3.7",
|
|
41
|
-
"vxe-pc-ui": "4.10.
|
|
42
|
-
"vxe-table": "4.
|
|
41
|
+
"vxe-pc-ui": "4.10.6",
|
|
42
|
+
"vxe-table": "4.17.0"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@element-plus/icons-vue": "2",
|
package/types/select/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ type ResponseType =
|
|
|
10
10
|
}
|
|
11
11
|
| any[];
|
|
12
12
|
|
|
13
|
-
type Pagination = {
|
|
13
|
+
export type Pagination = {
|
|
14
14
|
current: number;
|
|
15
15
|
size: number;
|
|
16
16
|
pages: number;
|
|
@@ -55,6 +55,8 @@ export type SabSelectProps = {
|
|
|
55
55
|
|
|
56
56
|
// 启用加载更多
|
|
57
57
|
enableLoadmore?: boolean;
|
|
58
|
+
// 禁用内部状态管理
|
|
59
|
+
disabledInnerState?: boolean
|
|
58
60
|
// 聚焦后重新请求
|
|
59
61
|
revalidateWhenFocus?: boolean;
|
|
60
62
|
// 指定使用的 Select 版本
|