vxe-table 4.13.0 → 4.13.1
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/grid/src/grid.js +0 -1
- package/es/style.css +1 -1
- package/es/table/module/filter/hook.js +7 -1
- package/es/table/src/table.js +8 -6
- package/es/table/src/util.js +2 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/grid/src/grid.js +0 -1
- package/lib/grid/src/grid.min.js +1 -1
- package/lib/index.umd.js +13 -8
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/module/filter/hook.js +6 -1
- package/lib/table/module/filter/hook.min.js +1 -1
- package/lib/table/src/table.js +8 -6
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/src/util.js +2 -1
- package/lib/table/src/util.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 +2 -2
- package/packages/grid/src/grid.ts +0 -1
- package/packages/table/module/filter/hook.ts +6 -1
- package/packages/table/src/table.ts +8 -6
- package/packages/table/src/util.ts +2 -1
- /package/es/{iconfont.1744252965278.ttf → iconfont.1744337102291.ttf} +0 -0
- /package/es/{iconfont.1744252965278.woff → iconfont.1744337102291.woff} +0 -0
- /package/es/{iconfont.1744252965278.woff2 → iconfont.1744337102291.woff2} +0 -0
- /package/lib/{iconfont.1744252965278.ttf → iconfont.1744337102291.ttf} +0 -0
- /package/lib/{iconfont.1744252965278.woff → iconfont.1744337102291.woff} +0 -0
- /package/lib/{iconfont.1744252965278.woff2 → iconfont.1744337102291.woff2} +0 -0
package/lib/table/src/table.js
CHANGED
|
@@ -263,6 +263,7 @@ var _default = exports.default = (0, _vue.defineComponent)({
|
|
|
263
263
|
mergeBodyFlag: 1,
|
|
264
264
|
mergeFootFlag: 1,
|
|
265
265
|
rowHeightStore: {
|
|
266
|
+
large: 52,
|
|
266
267
|
default: 48,
|
|
267
268
|
medium: 44,
|
|
268
269
|
small: 40,
|
|
@@ -6165,12 +6166,10 @@ var _default = exports.default = (0, _vue.defineComponent)({
|
|
|
6165
6166
|
column,
|
|
6166
6167
|
visible
|
|
6167
6168
|
} = filterStore;
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
visible: false
|
|
6173
|
-
});
|
|
6169
|
+
filterStore.isAllSelected = false;
|
|
6170
|
+
filterStore.isIndeterminate = false;
|
|
6171
|
+
filterStore.options = [];
|
|
6172
|
+
filterStore.visible = false;
|
|
6174
6173
|
if (visible) {
|
|
6175
6174
|
dispatchEvent('filter-visible', {
|
|
6176
6175
|
column,
|
|
@@ -10508,6 +10507,9 @@ var _default = exports.default = (0, _vue.defineComponent)({
|
|
|
10508
10507
|
}, params);
|
|
10509
10508
|
updateRowExpandStyle();
|
|
10510
10509
|
checkLastSyncScroll(isRollX, isRollY);
|
|
10510
|
+
if (isRollX) {
|
|
10511
|
+
$xeTable.closeFilter();
|
|
10512
|
+
}
|
|
10511
10513
|
if (rowOpts.isHover || highlightHoverRow) {
|
|
10512
10514
|
$xeTable.clearHoverRow();
|
|
10513
10515
|
}
|