vxe-table 4.19.24 → 4.20.0
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/README.md +4 -2
- 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 +2 -5
- package/packages/table/src/table.ts +3 -3
- package/types/all.d.ts +40 -1
- /package/es/{iconfont.1783331249334.ttf → iconfont.1783442178628.ttf} +0 -0
- /package/es/{iconfont.1783331249334.woff → iconfont.1783442178628.woff} +0 -0
- /package/es/{iconfont.1783331249334.woff2 → iconfont.1783442178628.woff2} +0 -0
- /package/lib/{iconfont.1783331249334.ttf → iconfont.1783442178628.ttf} +0 -0
- /package/lib/{iconfont.1783331249334.woff → iconfont.1783442178628.woff} +0 -0
- /package/lib/{iconfont.1783331249334.woff2 → iconfont.1783442178628.woff2} +0 -0
package/README.md
CHANGED
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
|
|
23
23
|
* 版本说明
|
|
24
24
|
* **V4**
|
|
25
|
-
* [ ] v4.
|
|
25
|
+
* [ ] v4.21 功能需求收集中,大福提升渲染性能,优化百万级渲染量
|
|
26
|
+
* [x] v4.20 内部重构优化,内部结构调整
|
|
26
27
|
* [x] v4.19 增加对增删改操作撤销回退的支持;优化虚拟渲染,优化提升 Window/Mac 触摸板滚动流畅度
|
|
27
28
|
* [x] v4.18 基于 xe-utils@4.0+,内部优化,优化键盘操作
|
|
28
29
|
* [x] v4.17 优化触摸板操作;重构筛选渲染,筛选配置更简单功能更强大
|
|
@@ -35,7 +36,8 @@
|
|
|
35
36
|
* [x] v4.7 基于 vue3.2+,内部重构,拆分 Table 库和 UI 库,只支持现代浏览器,不支持 IE
|
|
36
37
|
* [x] ~~v4.0 基于 vue3.2+,只支持现代浏览器,不支持 IE(2020-03-01 ~ 2024-12-01 已停止维护)~~
|
|
37
38
|
* **V3**
|
|
38
|
-
* [ ] v3.
|
|
39
|
+
* [ ] v3.23 功能需求收集中,大福提升渲染性能,优化百万级渲染量
|
|
40
|
+
* [x] v3.22 内部重构优化,内部结构调整
|
|
39
41
|
* [x] v3.21 增加对增删改操作撤销回退的支持;优化虚拟渲染,优化提升 Window/Mac 触摸板滚动流畅度
|
|
40
42
|
* [x] v3.20 基于 xe-utils@4.0+,优化渲染性能,优化键盘操作
|
|
41
43
|
* [x] v3.19 优化触摸板操作;重构筛选渲染,筛选配置更简单功能更强大
|
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.
|
|
47
|
+
const version = "4.20.0";
|
|
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.
|
|
758
|
+
const tableVersion = `table v${"4.20.0"}`;
|
|
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 });
|