vxe-table 4.8.1 → 4.8.4
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/style.min.css +1 -1
- package/es/table/src/cell.js +16 -7
- package/es/table/src/table.js +4 -4
- package/es/table/style.css +3 -0
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +3 -2
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +3 -0
- package/es/vxe-table/style.min.css +1 -1
- package/lib/index.umd.js +32 -14
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/src/cell.js +24 -7
- package/lib/table/src/cell.min.js +1 -1
- package/lib/table/src/table.js +4 -4
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +3 -0
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +3 -2
- 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/lib/vxe-table/style/style.css +3 -0
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/src/cell.ts +16 -7
- package/packages/table/src/table.ts +4 -4
- package/packages/ui/index.ts +2 -1
- package/styles/components/table-module/custom.scss +5 -0
- /package/es/{iconfont.1730873064176.ttf → iconfont.1730946045701.ttf} +0 -0
- /package/es/{iconfont.1730873064176.woff → iconfont.1730946045701.woff} +0 -0
- /package/es/{iconfont.1730873064176.woff2 → iconfont.1730946045701.woff2} +0 -0
- /package/lib/{iconfont.1730873064176.ttf → iconfont.1730946045701.ttf} +0 -0
- /package/lib/{iconfont.1730873064176.woff → iconfont.1730946045701.woff} +0 -0
- /package/lib/{iconfont.1730873064176.woff2 → iconfont.1730946045701.woff2} +0 -0
package/lib/table/src/table.js
CHANGED
|
@@ -7688,10 +7688,10 @@ var _default = exports.default = (0, _vue.defineComponent)({
|
|
|
7688
7688
|
const {
|
|
7689
7689
|
treeConfig
|
|
7690
7690
|
} = props;
|
|
7691
|
-
const
|
|
7691
|
+
const dragOpts = computeDragOpts.value;
|
|
7692
7692
|
const {
|
|
7693
7693
|
dragEndMethod
|
|
7694
|
-
} =
|
|
7694
|
+
} = dragOpts;
|
|
7695
7695
|
const treeOpts = computeTreeOpts.value;
|
|
7696
7696
|
const {
|
|
7697
7697
|
transform
|
|
@@ -7791,10 +7791,10 @@ var _default = exports.default = (0, _vue.defineComponent)({
|
|
|
7791
7791
|
handleCellDragMousedownEvent(evnt, params) {
|
|
7792
7792
|
var _a;
|
|
7793
7793
|
evnt.stopPropagation();
|
|
7794
|
-
const
|
|
7794
|
+
const dragOpts = computeDragOpts.value;
|
|
7795
7795
|
const {
|
|
7796
7796
|
dragStartMethod
|
|
7797
|
-
} =
|
|
7797
|
+
} = dragOpts;
|
|
7798
7798
|
const {
|
|
7799
7799
|
row
|
|
7800
7800
|
} = params;
|