vxe-table 3.19.21 → 3.19.22
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/style.css +1 -1
- package/es/table/src/cell.js +7 -5
- package/es/table/src/methods.js +140 -58
- package/es/table/src/table.js +12 -2
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +41 -18
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/cell.js +7 -4
- package/lib/table/src/cell.min.js +1 -1
- package/lib/table/src/methods.js +125 -41
- package/lib/table/src/methods.min.js +1 -1
- package/lib/table/src/table.js +15 -2
- package/lib/table/src/table.min.js +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/table/src/cell.ts +7 -5
- package/packages/table/src/methods.ts +141 -58
- package/packages/table/src/table.ts +13 -2
- /package/es/{iconfont.1764298141619.ttf → iconfont.1764380622607.ttf} +0 -0
- /package/es/{iconfont.1764298141619.woff → iconfont.1764380622607.woff} +0 -0
- /package/es/{iconfont.1764298141619.woff2 → iconfont.1764380622607.woff2} +0 -0
- /package/lib/{iconfont.1764298141619.ttf → iconfont.1764380622607.ttf} +0 -0
- /package/lib/{iconfont.1764298141619.woff → iconfont.1764380622607.woff} +0 -0
- /package/lib/{iconfont.1764298141619.woff2 → iconfont.1764380622607.woff2} +0 -0
|
@@ -1554,6 +1554,16 @@ export default {
|
|
|
1554
1554
|
})
|
|
1555
1555
|
return rgColumns
|
|
1556
1556
|
},
|
|
1557
|
+
computeAggFuncColumns () {
|
|
1558
|
+
const $xeTable = this as VxeTableConstructor & VxeTablePrivateMethods
|
|
1559
|
+
const reactData = $xeTable as unknown as TableReactData
|
|
1560
|
+
|
|
1561
|
+
const { rowGroupList, tableColumn } = reactData
|
|
1562
|
+
if (rowGroupList.length) {
|
|
1563
|
+
return tableColumn.filter(column => column.field && column.aggFunc)
|
|
1564
|
+
}
|
|
1565
|
+
return []
|
|
1566
|
+
},
|
|
1557
1567
|
tabsResizeFlag () {
|
|
1558
1568
|
const $xeTable = this as VxeTableConstructor & VxeTablePrivateMethods
|
|
1559
1569
|
const $xeTabs = $xeTable.$xeTabs
|
|
@@ -2145,8 +2155,9 @@ export default {
|
|
|
2145
2155
|
if (this.$resize) {
|
|
2146
2156
|
this.$resize.disconnect()
|
|
2147
2157
|
}
|
|
2148
|
-
|
|
2149
|
-
|
|
2158
|
+
$xeTable.closeTooltip()
|
|
2159
|
+
$xeTable.closeFilter()
|
|
2160
|
+
$xeTable.closeMenu()
|
|
2150
2161
|
|
|
2151
2162
|
globalEvents.off($xeTable, 'paste')
|
|
2152
2163
|
globalEvents.off($xeTable, 'copy')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|