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.
Files changed (33) hide show
  1. package/es/grid/src/grid.js +0 -1
  2. package/es/style.css +1 -1
  3. package/es/table/module/filter/hook.js +7 -1
  4. package/es/table/src/table.js +8 -6
  5. package/es/table/src/util.js +2 -1
  6. package/es/ui/index.js +1 -1
  7. package/es/ui/src/log.js +1 -1
  8. package/lib/grid/src/grid.js +0 -1
  9. package/lib/grid/src/grid.min.js +1 -1
  10. package/lib/index.umd.js +13 -8
  11. package/lib/index.umd.min.js +1 -1
  12. package/lib/style.css +1 -1
  13. package/lib/table/module/filter/hook.js +6 -1
  14. package/lib/table/module/filter/hook.min.js +1 -1
  15. package/lib/table/src/table.js +8 -6
  16. package/lib/table/src/table.min.js +1 -1
  17. package/lib/table/src/util.js +2 -1
  18. package/lib/table/src/util.min.js +1 -1
  19. package/lib/ui/index.js +1 -1
  20. package/lib/ui/index.min.js +1 -1
  21. package/lib/ui/src/log.js +1 -1
  22. package/lib/ui/src/log.min.js +1 -1
  23. package/package.json +2 -2
  24. package/packages/grid/src/grid.ts +0 -1
  25. package/packages/table/module/filter/hook.ts +6 -1
  26. package/packages/table/src/table.ts +8 -6
  27. package/packages/table/src/util.ts +2 -1
  28. /package/es/{iconfont.1744252965278.ttf → iconfont.1744337102291.ttf} +0 -0
  29. /package/es/{iconfont.1744252965278.woff → iconfont.1744337102291.woff} +0 -0
  30. /package/es/{iconfont.1744252965278.woff2 → iconfont.1744337102291.woff2} +0 -0
  31. /package/lib/{iconfont.1744252965278.ttf → iconfont.1744337102291.ttf} +0 -0
  32. /package/lib/{iconfont.1744252965278.woff → iconfont.1744337102291.woff} +0 -0
  33. /package/lib/{iconfont.1744252965278.woff2 → iconfont.1744337102291.woff2} +0 -0
@@ -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
- Object.assign(filterStore, {
6169
- isAllSelected: false,
6170
- isIndeterminate: false,
6171
- options: [],
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
  }