vxe-table 4.15.0-beta.13 → 4.15.0-beta.14

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/ui/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  import { getFuncText } from './src/utils';
3
- export const version = "4.15.0-beta.13";
3
+ export const version = "4.15.0-beta.14";
4
4
  VxeUI.version = version;
5
5
  VxeUI.tableVersion = version;
6
6
  VxeUI.setConfig({
package/es/ui/src/log.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  const { log } = VxeUI;
3
- const version = `table v${"4.15.0-beta.13"}`;
3
+ const version = `table v${"4.15.0-beta.14"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
package/lib/index.umd.js CHANGED
@@ -3138,7 +3138,7 @@ function eqEmptyValue(cellValue) {
3138
3138
  ;// ./packages/ui/index.ts
3139
3139
 
3140
3140
 
3141
- const version = "4.15.0-beta.13";
3141
+ const version = "4.15.0-beta.14";
3142
3142
  core_.VxeUI.version = version;
3143
3143
  core_.VxeUI.tableVersion = version;
3144
3144
  core_.VxeUI.setConfig({
@@ -3629,7 +3629,7 @@ var esnext_iterator_some = __webpack_require__(7550);
3629
3629
  const {
3630
3630
  log: log_log
3631
3631
  } = core_.VxeUI;
3632
- const log_version = `table v${"4.15.0-beta.13"}`;
3632
+ const log_version = `table v${"4.15.0-beta.14"}`;
3633
3633
  const warnLog = log_log.create('warn', log_version);
3634
3634
  const errLog = log_log.create('error', log_version);
3635
3635
  ;// ./packages/table/src/columnInfo.ts
@@ -19791,7 +19791,7 @@ core_.VxeUI.hooks.add('tableCustomModule', {
19791
19791
  });
19792
19792
  reactData.isCustomStatus = true;
19793
19793
  return $xeTable.saveCustomStore('confirm').then(() => {
19794
- if (allowGroup && allowValues && $xeTable.handlePivotTableAggregateData) {
19794
+ if (allowGroup && !!$xeTable.handlePivotTableAggregateData) {
19795
19795
  if (rowGroupList.length !== aggHandleFields.length || rowGroupList.some((conf, i) => conf.field !== aggHandleFields[i])) {
19796
19796
  // 更新数据分组
19797
19797
  if (aggHandleFields.length) {
@@ -19799,7 +19799,7 @@ core_.VxeUI.hooks.add('tableCustomModule', {
19799
19799
  } else {
19800
19800
  $xeTable.clearRowGroups();
19801
19801
  }
19802
- } else {
19802
+ } else if (allowValues) {
19803
19803
  // 更新聚合函数
19804
19804
  $xeTable.handleUpdateAggData();
19805
19805
  }