vxe-table 3.19.35 → 3.19.37
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 +55 -25
- package/es/table/src/methods.js +36 -0
- package/es/table/src/props.js +2 -0
- package/es/table/src/table.js +5 -0
- package/es/ui/index.js +4 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +85 -27
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/cell.js +65 -25
- package/lib/table/src/cell.min.js +1 -1
- package/lib/table/src/methods.js +44 -0
- package/lib/table/src/methods.min.js +1 -1
- package/lib/table/src/props.js +2 -0
- package/lib/table/src/props.min.js +1 -1
- package/lib/table/src/table.js +5 -0
- package/lib/table/src/table.min.js +1 -1
- package/lib/ui/index.js +4 -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 +55 -25
- package/packages/table/src/methods.ts +40 -0
- package/packages/table/src/props.ts +2 -0
- package/packages/table/src/table.ts +6 -0
- package/packages/ui/index.ts +3 -0
- /package/es/{iconfont.1766728191601.ttf → iconfont.1767063889499.ttf} +0 -0
- /package/es/{iconfont.1766728191601.woff → iconfont.1767063889499.woff} +0 -0
- /package/es/{iconfont.1766728191601.woff2 → iconfont.1767063889499.woff2} +0 -0
- /package/lib/{iconfont.1766728191601.ttf → iconfont.1767063889499.ttf} +0 -0
- /package/lib/{iconfont.1766728191601.woff → iconfont.1767063889499.woff} +0 -0
- /package/lib/{iconfont.1766728191601.woff2 → iconfont.1767063889499.woff2} +0 -0
|
@@ -296,6 +296,8 @@ export const tableProps = {
|
|
|
296
296
|
virtualYConfig: Object as PropType<VxeTablePropTypes.VirtualYConfig>,
|
|
297
297
|
// 滚动条配置项
|
|
298
298
|
scrollbarConfig: Object as PropType<VxeTablePropTypes.ScrollbarConfig>,
|
|
299
|
+
// 可撤销配置项
|
|
300
|
+
undoHistoryConfig: Object as PropType<VxeTablePropTypes.UndoHistoryConfig>,
|
|
299
301
|
// (即将废弃)优化相关
|
|
300
302
|
animat: { type: Boolean, default: () => getConfig().table.animat },
|
|
301
303
|
// (可能会被废弃的参数,不要使用)
|
|
@@ -1575,6 +1575,12 @@ export default {
|
|
|
1575
1575
|
}
|
|
1576
1576
|
return []
|
|
1577
1577
|
},
|
|
1578
|
+
computeUndoHistoryOpts () {
|
|
1579
|
+
const $xeTable = this as VxeTableConstructor & VxeTablePrivateMethods
|
|
1580
|
+
const props = $xeTable
|
|
1581
|
+
|
|
1582
|
+
return Object.assign({}, getConfig().table.undoHistoryConfig, props.undoHistoryConfig)
|
|
1583
|
+
},
|
|
1578
1584
|
tabsResizeFlag () {
|
|
1579
1585
|
const $xeTable = this as VxeTableConstructor & VxeTablePrivateMethods
|
|
1580
1586
|
const $xeTabs = $xeTable.$xeTabs
|
package/packages/ui/index.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|