@wx-design/components 1.4.0-alpha.8 → 1.4.0
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/Table/components/TableSet/ColumnSetBody.vue.d.ts +326 -314
- package/es/core/Table/index.vue.d.ts +3 -1
- package/es/core/Table/store.d.ts +4 -0
- package/es/index.mjs +6913 -6888
- package/es/style.css +1 -1
- package/lib/core/Table/components/TableSet/ColumnSetBody.vue.d.ts +326 -314
- package/lib/core/Table/index.vue.d.ts +3 -1
- package/lib/core/Table/store.d.ts +4 -0
- package/lib/index.js +7 -7
- package/lib/style.css +1 -1
- package/package.json +2 -2
- package/types/table/table.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wx-design/components",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@element-plus/icons-vue": "2",
|
|
46
|
-
"element-plus": "^2.
|
|
46
|
+
"element-plus": "^2.6"
|
|
47
47
|
}
|
|
48
48
|
}
|
package/types/table/table.d.ts
CHANGED
|
@@ -90,6 +90,10 @@ export type SabTableProps<D = VxeTableDataRow> = VxeTableProps<D> & {
|
|
|
90
90
|
};
|
|
91
91
|
// 动态表头设置的时候是否采用销毁重新渲染的方式
|
|
92
92
|
reloadWithDestroy?: boolean
|
|
93
|
+
customConfig?: VxeTablePropTypes.CustomConfig<D> & {
|
|
94
|
+
// 是否使用 sab 样式的自定义配置弹窗
|
|
95
|
+
useSabModal?: boolean;
|
|
96
|
+
}
|
|
93
97
|
};
|
|
94
98
|
|
|
95
99
|
// 表格插槽
|