vxe-table 4.11.27 → 4.11.29
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/style.css +1 -1
- package/es/table/src/table.js +5 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +7 -3
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/table.js +5 -1
- 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 -2
- package/packages/table/src/table.ts +5 -1
- /package/es/{iconfont.1742341602729.ttf → iconfont.1742787995150.ttf} +0 -0
- /package/es/{iconfont.1742341602729.woff → iconfont.1742787995150.woff} +0 -0
- /package/es/{iconfont.1742341602729.woff2 → iconfont.1742787995150.woff2} +0 -0
- /package/lib/{iconfont.1742341602729.ttf → iconfont.1742787995150.ttf} +0 -0
- /package/lib/{iconfont.1742341602729.woff → iconfont.1742787995150.woff} +0 -0
- /package/lib/{iconfont.1742341602729.woff2 → iconfont.1742787995150.woff2} +0 -0
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.
|
|
3054
|
+
const version = "4.11.29";
|
|
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.
|
|
3502
|
+
const log_version = `table v${"4.11.29"}`;
|
|
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
|
|
@@ -10288,6 +10288,7 @@ const {
|
|
|
10288
10288
|
useFns,
|
|
10289
10289
|
renderEmptyElement: table_renderEmptyElement
|
|
10290
10290
|
} = core_.VxeUI;
|
|
10291
|
+
const supportMaxRow = 3e5;
|
|
10291
10292
|
const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
10292
10293
|
/* harmony default export */ var table = ((0,external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent)({
|
|
10293
10294
|
name: 'VxeTable',
|
|
@@ -13345,6 +13346,9 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
13345
13346
|
const childrenField = treeOpts.children || treeOpts.childrenField;
|
|
13346
13347
|
let treeData = [];
|
|
13347
13348
|
let fullData = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.reactive)(datas ? datas.slice(0) : []); // 转为响应式
|
|
13349
|
+
if (fullData.length > supportMaxRow) {
|
|
13350
|
+
errLog('vxe.error.errMaxRow', [supportMaxRow]);
|
|
13351
|
+
}
|
|
13348
13352
|
if (treeConfig) {
|
|
13349
13353
|
if (transform) {
|
|
13350
13354
|
// 树结构自动转换
|
|
@@ -20724,7 +20728,7 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
20724
20728
|
} = reactData;
|
|
20725
20729
|
const leftFixedWidth = computeLeftFixedWidth.value;
|
|
20726
20730
|
const rightFixedWidth = computeRightFixedWidth.value;
|
|
20727
|
-
if (!(
|
|
20731
|
+
if (!(leftFixedWidth || rightFixedWidth || expandColumn)) {
|
|
20728
20732
|
return;
|
|
20729
20733
|
}
|
|
20730
20734
|
const {
|