@wx-design/components 0.10.10 → 0.10.12
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/CellRender.d.ts +1 -0
- package/es/index.mjs +437 -430
- package/es/style.css +1 -1
- package/lib/core/Table/components/CellRender.d.ts +1 -0
- package/lib/index.js +2 -2
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/column.d.ts +2 -0
package/package.json
CHANGED
package/types/table/column.d.ts
CHANGED
|
@@ -247,6 +247,8 @@ export type SabColumnProps<D = VxeTableDataRow> = VxeColumnProps<D> & {
|
|
|
247
247
|
noHeaderSet?: boolean
|
|
248
248
|
// 参与表格尾部汇总
|
|
249
249
|
withSummary?: boolean
|
|
250
|
+
// 自定义表格尾部数据汇总处理
|
|
251
|
+
footerMethod?(column: SabColumnProps<D>, data: D[]): any
|
|
250
252
|
|
|
251
253
|
// 表头分组
|
|
252
254
|
children?: SabColumnProps<D>[]
|