vxe-table 3.19.8 → 3.19.10
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/column.js +6 -0
- package/es/table/src/columnInfo.js +3 -0
- package/es/table/src/header.js +1 -7
- package/es/table/src/methods.js +105 -43
- package/es/table/src/table.js +2 -10
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +122 -65
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/column.js +6 -0
- package/lib/table/src/column.min.js +1 -1
- package/lib/table/src/columnInfo.js +3 -0
- package/lib/table/src/columnInfo.min.js +1 -1
- package/lib/table/src/header.js +1 -7
- package/lib/table/src/header.min.js +1 -1
- package/lib/table/src/methods.js +109 -46
- package/lib/table/src/methods.min.js +1 -1
- package/lib/table/src/table.js +1 -10
- 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/column.ts +8 -0
- package/packages/table/src/columnInfo.ts +5 -0
- package/packages/table/src/header.ts +2 -8
- package/packages/table/src/methods.ts +108 -47
- package/packages/table/src/table.ts +2 -10
- /package/es/{iconfont.1762324067655.ttf → iconfont.1762412469745.ttf} +0 -0
- /package/es/{iconfont.1762324067655.woff → iconfont.1762412469745.woff} +0 -0
- /package/es/{iconfont.1762324067655.woff2 → iconfont.1762412469745.woff2} +0 -0
- /package/lib/{iconfont.1762324067655.ttf → iconfont.1762412469745.ttf} +0 -0
- /package/lib/{iconfont.1762324067655.woff → iconfont.1762412469745.woff} +0 -0
- /package/lib/{iconfont.1762324067655.woff2 → iconfont.1762412469745.woff2} +0 -0
|
@@ -1727,7 +1727,7 @@ export default {
|
|
|
1727
1727
|
|
|
1728
1728
|
handleKeyField($xeTable)
|
|
1729
1729
|
|
|
1730
|
-
const {
|
|
1730
|
+
const { exportConfig, importConfig, treeConfig, highlightCurrentRow, highlightCurrentColumn } = props
|
|
1731
1731
|
const { scrollXStore, scrollYStore } = internalData
|
|
1732
1732
|
const columnOpts = $xeTable.computeColumnOpts
|
|
1733
1733
|
const editOpts = $xeTable.computeEditOpts
|
|
@@ -1990,15 +1990,7 @@ export default {
|
|
|
1990
1990
|
|
|
1991
1991
|
this.handleUpdateRowGroup(groupFields)
|
|
1992
1992
|
|
|
1993
|
-
this.
|
|
1994
|
-
if (data && data.length) {
|
|
1995
|
-
this.inited = true
|
|
1996
|
-
this.initStatus = true
|
|
1997
|
-
this.handleLoadDefaults()
|
|
1998
|
-
}
|
|
1999
|
-
this.handleInitDefaults()
|
|
2000
|
-
this.updateStyle()
|
|
2001
|
-
})
|
|
1993
|
+
this.initData()
|
|
2002
1994
|
|
|
2003
1995
|
globalEvents.on($xeTable, 'paste', this.handleGlobalPasteEvent)
|
|
2004
1996
|
globalEvents.on($xeTable, 'copy', this.handleGlobalCopyEvent)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|