vxe-table 4.19.24 → 4.19.25

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/dist/all.esm.js CHANGED
@@ -44,7 +44,7 @@ function eqEmptyValue(cellValue) {
44
44
  return cellValue === '' || XEUtils.eqNull(cellValue);
45
45
  }
46
46
 
47
- const version = "4.19.24";
47
+ const version = "4.19.25";
48
48
  VxeUI.version = version;
49
49
  VxeUI.tableVersion = version;
50
50
  VxeUI.setConfig({
@@ -755,7 +755,7 @@ function wheelScrollTopTo(diffNum, cb) {
755
755
  }
756
756
 
757
757
  const { log } = VxeUI;
758
- const tableVersion = `table v${"4.19.24"}`;
758
+ const tableVersion = `table v${"4.19.25"}`;
759
759
  function createComponentLog(name) {
760
760
  const uiVersion = VxeUI.uiVersion ? `ui v${VxeUI.uiVersion}` : '';
761
761
  const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
@@ -20849,10 +20849,10 @@ var VxeTableComponent = defineVxeComponent({
20849
20849
  return false;
20850
20850
  }
20851
20851
  if (arguments.length > 1) {
20852
- return !eqCellValue(oRow, row, field).result;
20852
+ return !eqCellValue(row, oRow, field).result;
20853
20853
  }
20854
20854
  for (let i = 0; i < keepFields.length; i++) {
20855
- if (!eqCellValue(oRow, row, keepFields[i]).result) {
20855
+ if (!eqCellValue(row, oRow, keepFields[i]).result) {
20856
20856
  return true;
20857
20857
  }
20858
20858
  }
@@ -20881,7 +20881,7 @@ var VxeTableComponent = defineVxeComponent({
20881
20881
  }
20882
20882
  for (let i = 0; i < keepFields.length; i++) {
20883
20883
  const field = keepFields[i];
20884
- const { result, newValue, oldValue } = eqCellValue(oRow, row, field);
20884
+ const { result, newValue, oldValue } = eqCellValue(row, oRow, field);
20885
20885
  if (!result) {
20886
20886
  const column = fullColumnFieldData[field] ? fullColumnFieldData[field].column : null;
20887
20887
  cellList.push({ row, rowid, column, field, newValue, oldValue });