vxe-table 4.11.28 → 4.11.30

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/lib/index.umd.js CHANGED
@@ -3051,7 +3051,7 @@ function eqEmptyValue(cellValue) {
3051
3051
  ;// ./packages/ui/index.ts
3052
3052
 
3053
3053
 
3054
- const version = "4.11.28";
3054
+ const version = "4.11.30";
3055
3055
  core_.VxeUI.version = version;
3056
3056
  core_.VxeUI.tableVersion = version;
3057
3057
  core_.VxeUI.setConfig({
@@ -3499,7 +3499,7 @@ var es_iterator_some = __webpack_require__(3579);
3499
3499
  const {
3500
3500
  log: log_log
3501
3501
  } = core_.VxeUI;
3502
- const log_version = `table v${"4.11.28"}`;
3502
+ const log_version = `table v${"4.11.30"}`;
3503
3503
  const warnLog = log_log.create('warn', log_version);
3504
3504
  const errLog = log_log.create('error', log_version);
3505
3505
  ;// ./packages/table/src/columnInfo.ts
@@ -20728,7 +20728,7 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
20728
20728
  } = reactData;
20729
20729
  const leftFixedWidth = computeLeftFixedWidth.value;
20730
20730
  const rightFixedWidth = computeRightFixedWidth.value;
20731
- if (!(scrollYLoad || leftFixedWidth || rightFixedWidth || expandColumn)) {
20731
+ if (!(leftFixedWidth || rightFixedWidth || expandColumn)) {
20732
20732
  return;
20733
20733
  }
20734
20734
  const {
@@ -21850,6 +21850,9 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
21850
21850
  (0,external_commonjs_vue_commonjs2_vue_root_Vue_.watch)(computeScrollbarYToLeft, () => {
21851
21851
  reLayoutFlag.value++;
21852
21852
  });
21853
+ (0,external_commonjs_vue_commonjs2_vue_root_Vue_.watch)(() => core_.VxeUI.getLanguage(), () => {
21854
+ reLayoutFlag.value++;
21855
+ });
21853
21856
  (0,external_commonjs_vue_commonjs2_vue_root_Vue_.watch)(reLayoutFlag, () => {
21854
21857
  (0,external_commonjs_vue_commonjs2_vue_root_Vue_.nextTick)(() => tableMethods.recalculate(true));
21855
21858
  });