@wx-design/components 1.1.27 → 1.1.28
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/package.json
CHANGED
|
@@ -32,6 +32,7 @@ export interface TableSetProps {
|
|
|
32
32
|
onSetTableConfig?:() => void
|
|
33
33
|
// vxe-table 实例
|
|
34
34
|
tableRef?: VxeTableInstance;
|
|
35
|
+
size?: 'small' | 'large' | 'default'
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
// ColumnSet 表头设置配置
|
|
@@ -44,4 +45,5 @@ export interface TableSetColumnsProps {
|
|
|
44
45
|
tableRef?: VxeTableInstance;
|
|
45
46
|
// 展示批量操作列
|
|
46
47
|
showBatchActionColumn?: boolean
|
|
48
|
+
size?: 'small' | 'large' | 'default'
|
|
47
49
|
}
|