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 +5 -5
- package/dist/style.css +1 -1
- package/es/style.css +1 -1
- package/es/table/src/table.js +3 -3
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +4 -4
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/table.js +2 -2
- package/lib/table/src/table.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 +1 -1
- package/packages/table/src/table.ts +3 -3
- /package/es/{iconfont.1783331249334.ttf → iconfont.1783427900429.ttf} +0 -0
- /package/es/{iconfont.1783331249334.woff → iconfont.1783427900429.woff} +0 -0
- /package/es/{iconfont.1783331249334.woff2 → iconfont.1783427900429.woff2} +0 -0
- /package/lib/{iconfont.1783331249334.ttf → iconfont.1783427900429.ttf} +0 -0
- /package/lib/{iconfont.1783331249334.woff → iconfont.1783427900429.woff} +0 -0
- /package/lib/{iconfont.1783331249334.woff2 → iconfont.1783427900429.woff2} +0 -0
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.
|
|
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.
|
|
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(
|
|
20852
|
+
return !eqCellValue(row, oRow, field).result;
|
|
20853
20853
|
}
|
|
20854
20854
|
for (let i = 0; i < keepFields.length; i++) {
|
|
20855
|
-
if (!eqCellValue(
|
|
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(
|
|
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 });
|