@wx-design/components 0.6.4 → 0.6.6
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/index.vue.d.ts +2 -0
- package/es/index.mjs +610 -600
- package/es/style.css +1 -1
- package/lib/core/Table/index.vue.d.ts +2 -0
- package/lib/index.js +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/table.d.ts +8 -0
package/package.json
CHANGED
package/types/table/table.d.ts
CHANGED
|
@@ -22,6 +22,14 @@ export type SabTableProps<D = VxeTableDataRow> = VxeTableProps<D> & {
|
|
|
22
22
|
autoColumnWidth?: boolean;
|
|
23
23
|
// 单击是否选中当前行
|
|
24
24
|
selectWhenClickRow?: boolean;
|
|
25
|
+
// 行背景高亮,默认 true
|
|
26
|
+
// 如果 false, 那么
|
|
27
|
+
// row-config.isCurrent = false
|
|
28
|
+
// row-config.isHover = false
|
|
29
|
+
// checkbox-config.highlight, 背景为透明
|
|
30
|
+
rowBackgroundHighlight?: boolean;
|
|
31
|
+
// TODO: 行边框高亮, 默认 true
|
|
32
|
+
rowBorderHighlight?: boolean;
|
|
25
33
|
}
|
|
26
34
|
|
|
27
35
|
// 表格插槽
|