@wx-design/components 0.10.6 → 0.10.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wx-design/components",
3
- "version": "0.10.6",
3
+ "version": "0.10.8",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./lib/index.js",
@@ -247,4 +247,7 @@ export type SabColumnProps<D = VxeTableDataRow> = VxeColumnProps<D> & {
247
247
  noHeaderSet?: boolean
248
248
  // 参与表格尾部汇总
249
249
  withSummary?: boolean
250
+
251
+ // 表头分组
252
+ children?: SabColumnProps<D>[]
250
253
  };