vxe-table 4.7.41 → 4.7.42
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/locale/lang/en-US.js +2 -5
- package/es/locale/lang/es-ES.js +2 -5
- package/es/locale/lang/ja-JP.js +2 -5
- package/es/locale/lang/pt-BR.js +2 -5
- package/es/locale/lang/zh-CN.js +2 -5
- package/es/locale/lang/zh-TC.js +3 -6
- package/es/style.css +1 -1
- package/es/table/module/custom/panel.js +10 -6
- package/es/table/src/table.js +21 -20
- package/es/ui/index.js +11 -4
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +47 -40
- package/lib/index.umd.min.js +1 -1
- package/lib/locale/lang/en-US.js +2 -5
- package/lib/locale/lang/en-US.min.js +1 -1
- package/lib/locale/lang/en-US.umd.js +2 -5
- package/lib/locale/lang/es-ES.js +2 -5
- package/lib/locale/lang/es-ES.min.js +1 -1
- package/lib/locale/lang/es-ES.umd.js +2 -5
- package/lib/locale/lang/ja-JP.js +2 -5
- package/lib/locale/lang/ja-JP.min.js +1 -1
- package/lib/locale/lang/ja-JP.umd.js +2 -5
- package/lib/locale/lang/pt-BR.js +2 -5
- package/lib/locale/lang/pt-BR.min.js +1 -1
- package/lib/locale/lang/pt-BR.umd.js +2 -5
- package/lib/locale/lang/zh-CN.js +2 -5
- package/lib/locale/lang/zh-CN.min.js +1 -1
- package/lib/locale/lang/zh-CN.umd.js +2 -5
- package/lib/locale/lang/zh-HK.min.js +1 -1
- package/lib/locale/lang/zh-HK.umd.js +3 -6
- package/lib/locale/lang/zh-MO.min.js +1 -1
- package/lib/locale/lang/zh-MO.umd.js +3 -6
- package/lib/locale/lang/zh-TC.js +3 -6
- package/lib/locale/lang/zh-TC.min.js +1 -1
- package/lib/locale/lang/zh-TC.umd.js +3 -6
- package/lib/locale/lang/zh-TW.min.js +1 -1
- package/lib/locale/lang/zh-TW.umd.js +3 -6
- package/lib/style.css +1 -1
- package/lib/table/module/custom/panel.js +12 -6
- package/lib/table/module/custom/panel.min.js +1 -1
- package/lib/table/src/table.js +21 -24
- package/lib/table/src/table.min.js +1 -1
- package/lib/ui/index.js +11 -4
- 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/locale/lang/en-US.ts +2 -5
- package/packages/locale/lang/es-ES.ts +2 -5
- package/packages/locale/lang/ja-JP.ts +2 -5
- package/packages/locale/lang/pt-BR.ts +2 -5
- package/packages/locale/lang/zh-CN.ts +2 -5
- package/packages/locale/lang/zh-TC.ts +3 -6
- package/packages/table/module/custom/panel.ts +10 -6
- package/packages/table/src/table.ts +21 -20
- package/packages/ui/index.ts +9 -2
- /package/es/{iconfont.1719997006744.ttf → iconfont.1720011186898.ttf} +0 -0
- /package/es/{iconfont.1719997006744.woff → iconfont.1720011186898.woff} +0 -0
- /package/es/{iconfont.1719997006744.woff2 → iconfont.1720011186898.woff2} +0 -0
- /package/lib/{iconfont.1719997006744.ttf → iconfont.1720011186898.ttf} +0 -0
- /package/lib/{iconfont.1719997006744.woff → iconfont.1720011186898.woff} +0 -0
- /package/lib/{iconfont.1719997006744.woff2 → iconfont.1720011186898.woff2} +0 -0
package/es/table/src/table.js
CHANGED
|
@@ -483,7 +483,7 @@ export default defineComponent({
|
|
|
483
483
|
let fixedSize = 0;
|
|
484
484
|
// 只判断第一层
|
|
485
485
|
collectColumn.forEach((column) => {
|
|
486
|
-
if (column.
|
|
486
|
+
if (column.renderFixed) {
|
|
487
487
|
fixedSize++;
|
|
488
488
|
}
|
|
489
489
|
});
|
|
@@ -822,27 +822,29 @@ export default defineComponent({
|
|
|
822
822
|
return num;
|
|
823
823
|
};
|
|
824
824
|
const handleCustomRestore = (storeData) => {
|
|
825
|
-
const { tableFullColumn } = internalData;
|
|
826
825
|
let { collectColumn } = internalData;
|
|
827
826
|
const { resizableData, sortData, visibleData, fixedData } = storeData;
|
|
828
827
|
let hasCustomSort = false;
|
|
829
828
|
// 处理还原
|
|
830
829
|
if (resizableData || sortData || visibleData || fixedData) {
|
|
831
|
-
|
|
830
|
+
XEUtils.eachTree(collectColumn, (column, index, items, path, parent) => {
|
|
832
831
|
const colKey = column.getKey();
|
|
832
|
+
// 支持一级
|
|
833
|
+
if (!parent) {
|
|
834
|
+
if (fixedData && fixedData[colKey]) {
|
|
835
|
+
column.fixed = fixedData[colKey];
|
|
836
|
+
}
|
|
837
|
+
if (sortData && XEUtils.isNumber(sortData[colKey])) {
|
|
838
|
+
hasCustomSort = true;
|
|
839
|
+
column.renderSortNumber = sortData[colKey];
|
|
840
|
+
}
|
|
841
|
+
}
|
|
833
842
|
if (resizableData && XEUtils.isNumber(resizableData[colKey])) {
|
|
834
843
|
column.resizeWidth = resizableData[colKey];
|
|
835
844
|
}
|
|
836
845
|
if (visibleData && XEUtils.isBoolean(visibleData[colKey])) {
|
|
837
846
|
column.visible = visibleData[colKey];
|
|
838
847
|
}
|
|
839
|
-
if (fixedData && fixedData[colKey]) {
|
|
840
|
-
column.fixed = fixedData[colKey];
|
|
841
|
-
}
|
|
842
|
-
if (sortData && XEUtils.isNumber(sortData[colKey])) {
|
|
843
|
-
hasCustomSort = true;
|
|
844
|
-
column.renderSortNumber = sortData[colKey];
|
|
845
|
-
}
|
|
846
848
|
});
|
|
847
849
|
// 如果自定义了顺序
|
|
848
850
|
if (hasCustomSort) {
|
|
@@ -3241,14 +3243,13 @@ export default defineComponent({
|
|
|
3241
3243
|
const targetColumn = getRootColumn($xeTable, column);
|
|
3242
3244
|
const isMaxFixedColumn = computeIsMaxFixedColumn.value;
|
|
3243
3245
|
const columnOpts = computeColumnOpts.value;
|
|
3244
|
-
const { maxFixedSize } = columnOpts;
|
|
3245
3246
|
if (targetColumn && targetColumn.fixed !== fixed) {
|
|
3246
3247
|
// 是否超过最大固定列数量
|
|
3247
3248
|
if (!targetColumn.fixed && isMaxFixedColumn) {
|
|
3248
3249
|
if (VxeUI.modal) {
|
|
3249
3250
|
VxeUI.modal.message({
|
|
3250
3251
|
status: 'error',
|
|
3251
|
-
content: getI18n('vxe.table.maxFixedCol', [maxFixedSize])
|
|
3252
|
+
content: getI18n('vxe.table.maxFixedCol', [columnOpts.maxFixedSize])
|
|
3252
3253
|
});
|
|
3253
3254
|
}
|
|
3254
3255
|
return nextTick();
|
|
@@ -4533,7 +4534,7 @@ export default defineComponent({
|
|
|
4533
4534
|
let hasFixedt = 0;
|
|
4534
4535
|
let hasVisible = 0;
|
|
4535
4536
|
XEUtils.eachTree(collectColumn, (column, index, items, path, parent) => {
|
|
4536
|
-
//
|
|
4537
|
+
// 只支持一级
|
|
4537
4538
|
if (!parent) {
|
|
4538
4539
|
collectColumn.forEach((column) => {
|
|
4539
4540
|
const colKey = column.getKey();
|
|
@@ -4542,6 +4543,13 @@ export default defineComponent({
|
|
|
4542
4543
|
sortData[colKey] = column.renderSortNumber;
|
|
4543
4544
|
}
|
|
4544
4545
|
});
|
|
4546
|
+
if (column.fixed && column.fixed !== column.defaultFixed) {
|
|
4547
|
+
const colKey = column.getKey();
|
|
4548
|
+
if (colKey) {
|
|
4549
|
+
hasFixedt = 1;
|
|
4550
|
+
fixedData[colKey] = column.fixed;
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4545
4553
|
}
|
|
4546
4554
|
if (column.resizeWidth) {
|
|
4547
4555
|
const colKey = column.getKey();
|
|
@@ -4550,13 +4558,6 @@ export default defineComponent({
|
|
|
4550
4558
|
resizableData[colKey] = column.renderWidth;
|
|
4551
4559
|
}
|
|
4552
4560
|
}
|
|
4553
|
-
if (column.fixed && column.fixed !== column.defaultFixed) {
|
|
4554
|
-
const colKey = column.getKey();
|
|
4555
|
-
if (colKey) {
|
|
4556
|
-
hasFixedt = 1;
|
|
4557
|
-
fixedData[colKey] = column.fixed;
|
|
4558
|
-
}
|
|
4559
|
-
}
|
|
4560
4561
|
if (!checkMethod || checkMethod({ column })) {
|
|
4561
4562
|
if (!column.visible && column.defaultVisible) {
|
|
4562
4563
|
const colKey = column.getKey();
|
package/es/ui/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { VxeUI } from '@vxe-ui/core';
|
|
2
2
|
import { getFuncText } from './src/utils';
|
|
3
|
-
export const version = "4.7.
|
|
3
|
+
export const version = "4.7.42";
|
|
4
4
|
VxeUI.version = version;
|
|
5
|
-
VxeUI.tableVersion = "4.7.
|
|
5
|
+
VxeUI.tableVersion = "4.7.42";
|
|
6
6
|
VxeUI.setConfig({
|
|
7
7
|
emptyCell: ' ',
|
|
8
8
|
table: {
|
|
@@ -62,9 +62,16 @@ VxeUI.setConfig({
|
|
|
62
62
|
allowFixed: true,
|
|
63
63
|
allowSort: true,
|
|
64
64
|
showFooter: true,
|
|
65
|
-
placement: 'top-right'
|
|
65
|
+
placement: 'top-right',
|
|
66
66
|
// storage: false,
|
|
67
|
-
// checkMethod () {}
|
|
67
|
+
// checkMethod () {},
|
|
68
|
+
modalOptions: {
|
|
69
|
+
showMaximize: true,
|
|
70
|
+
mask: true,
|
|
71
|
+
lockView: true,
|
|
72
|
+
resize: true,
|
|
73
|
+
escClosable: true
|
|
74
|
+
}
|
|
68
75
|
},
|
|
69
76
|
sortConfig: {
|
|
70
77
|
// remote: false,
|
package/es/ui/src/log.js
CHANGED
package/lib/index.umd.js
CHANGED
|
@@ -1951,9 +1951,9 @@ function eqEmptyValue(cellValue) {
|
|
|
1951
1951
|
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
1952
1952
|
|
|
1953
1953
|
|
|
1954
|
-
const version = "4.7.
|
|
1954
|
+
const version = "4.7.42";
|
|
1955
1955
|
core_.VxeUI.version = version;
|
|
1956
|
-
core_.VxeUI.tableVersion = "4.7.
|
|
1956
|
+
core_.VxeUI.tableVersion = "4.7.42";
|
|
1957
1957
|
core_.VxeUI.setConfig({
|
|
1958
1958
|
emptyCell: ' ',
|
|
1959
1959
|
table: {
|
|
@@ -2013,9 +2013,16 @@ core_.VxeUI.setConfig({
|
|
|
2013
2013
|
allowFixed: true,
|
|
2014
2014
|
allowSort: true,
|
|
2015
2015
|
showFooter: true,
|
|
2016
|
-
placement: 'top-right'
|
|
2016
|
+
placement: 'top-right',
|
|
2017
2017
|
// storage: false,
|
|
2018
|
-
// checkMethod () {}
|
|
2018
|
+
// checkMethod () {},
|
|
2019
|
+
modalOptions: {
|
|
2020
|
+
showMaximize: true,
|
|
2021
|
+
mask: true,
|
|
2022
|
+
lockView: true,
|
|
2023
|
+
resize: true,
|
|
2024
|
+
escClosable: true
|
|
2025
|
+
}
|
|
2019
2026
|
},
|
|
2020
2027
|
sortConfig: {
|
|
2021
2028
|
// remote: false,
|
|
@@ -2324,7 +2331,7 @@ var es_array_push = __webpack_require__(4114);
|
|
|
2324
2331
|
const {
|
|
2325
2332
|
log: log_log
|
|
2326
2333
|
} = core_.VxeUI;
|
|
2327
|
-
const log_version = `table v${"4.7.
|
|
2334
|
+
const log_version = `table v${"4.7.42"}`;
|
|
2328
2335
|
const warnLog = log_log.create('warn', log_version);
|
|
2329
2336
|
const errLog = log_log.create('error', log_version);
|
|
2330
2337
|
;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
|
|
@@ -6988,6 +6995,9 @@ const {
|
|
|
6988
6995
|
visibleMethod
|
|
6989
6996
|
} = customOpts;
|
|
6990
6997
|
const columnOpts = computeColumnOpts.value;
|
|
6998
|
+
const {
|
|
6999
|
+
maxFixedSize
|
|
7000
|
+
} = columnOpts;
|
|
6991
7001
|
const modalOpts = Object.assign({}, modalOptions);
|
|
6992
7002
|
const isMaxFixedColumn = computeIsMaxFixedColumn.value;
|
|
6993
7003
|
const trVNs = [];
|
|
@@ -7089,12 +7099,15 @@ const {
|
|
|
7089
7099
|
minWidth: modalOpts.minWidth || 700,
|
|
7090
7100
|
height: modalOpts.height || '50vh',
|
|
7091
7101
|
minHeight: modalOpts.minHeight || 400,
|
|
7092
|
-
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
|
|
7096
|
-
|
|
7102
|
+
showZoom: modalOpts.showZoom,
|
|
7103
|
+
showMaximize: modalOpts.showMaximize,
|
|
7104
|
+
showMinimize: modalOpts.showMinimize,
|
|
7105
|
+
mask: modalOpts.mask,
|
|
7106
|
+
lockView: modalOpts.lockView,
|
|
7107
|
+
resize: modalOpts.resize,
|
|
7108
|
+
escClosable: !!modalOpts.escClosable,
|
|
7097
7109
|
destroyOnClose: true,
|
|
7110
|
+
showFooter: true,
|
|
7098
7111
|
'onUpdate:modelValue'(value) {
|
|
7099
7112
|
customStore.visible = value;
|
|
7100
7113
|
}
|
|
@@ -7147,7 +7160,7 @@ const {
|
|
|
7147
7160
|
class: 'vxe-table-custom-popup--table-sort-help-icon vxe-icon-question-circle-fill'
|
|
7148
7161
|
});
|
|
7149
7162
|
}
|
|
7150
|
-
}) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)()]) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n('vxe.custom.setting.colTitle')), allowResizable ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n('vxe.custom.setting.colResizable')) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), allowFixed ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n(
|
|
7163
|
+
}) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)()]) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n('vxe.custom.setting.colTitle')), allowResizable ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n('vxe.custom.setting.colResizable')) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), allowFixed ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('th', {}, panel_getI18n(`vxe.custom.setting.${maxFixedSize ? 'colFixedMax' : 'colFixed'}`, [maxFixedSize])) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)()])]), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(external_commonjs_vue_commonjs2_vue_root_Vue_.TransitionGroup, {
|
|
7151
7164
|
class: 'vxe-table-custom--body',
|
|
7152
7165
|
tag: 'tbody',
|
|
7153
7166
|
name: 'vxe-table-custom--list'
|
|
@@ -8644,7 +8657,7 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
8644
8657
|
let fixedSize = 0;
|
|
8645
8658
|
// 只判断第一层
|
|
8646
8659
|
collectColumn.forEach(column => {
|
|
8647
|
-
if (column.
|
|
8660
|
+
if (column.renderFixed) {
|
|
8648
8661
|
fixedSize++;
|
|
8649
8662
|
}
|
|
8650
8663
|
});
|
|
@@ -9043,9 +9056,6 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
9043
9056
|
return num;
|
|
9044
9057
|
};
|
|
9045
9058
|
const handleCustomRestore = storeData => {
|
|
9046
|
-
const {
|
|
9047
|
-
tableFullColumn
|
|
9048
|
-
} = internalData;
|
|
9049
9059
|
let {
|
|
9050
9060
|
collectColumn
|
|
9051
9061
|
} = internalData;
|
|
@@ -9058,21 +9068,24 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
9058
9068
|
let hasCustomSort = false;
|
|
9059
9069
|
// 处理还原
|
|
9060
9070
|
if (resizableData || sortData || visibleData || fixedData) {
|
|
9061
|
-
|
|
9071
|
+
external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().eachTree(collectColumn, (column, index, items, path, parent) => {
|
|
9062
9072
|
const colKey = column.getKey();
|
|
9073
|
+
// 支持一级
|
|
9074
|
+
if (!parent) {
|
|
9075
|
+
if (fixedData && fixedData[colKey]) {
|
|
9076
|
+
column.fixed = fixedData[colKey];
|
|
9077
|
+
}
|
|
9078
|
+
if (sortData && external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().isNumber(sortData[colKey])) {
|
|
9079
|
+
hasCustomSort = true;
|
|
9080
|
+
column.renderSortNumber = sortData[colKey];
|
|
9081
|
+
}
|
|
9082
|
+
}
|
|
9063
9083
|
if (resizableData && external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().isNumber(resizableData[colKey])) {
|
|
9064
9084
|
column.resizeWidth = resizableData[colKey];
|
|
9065
9085
|
}
|
|
9066
9086
|
if (visibleData && external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().isBoolean(visibleData[colKey])) {
|
|
9067
9087
|
column.visible = visibleData[colKey];
|
|
9068
9088
|
}
|
|
9069
|
-
if (fixedData && fixedData[colKey]) {
|
|
9070
|
-
column.fixed = fixedData[colKey];
|
|
9071
|
-
}
|
|
9072
|
-
if (sortData && external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().isNumber(sortData[colKey])) {
|
|
9073
|
-
hasCustomSort = true;
|
|
9074
|
-
column.renderSortNumber = sortData[colKey];
|
|
9075
|
-
}
|
|
9076
9089
|
});
|
|
9077
9090
|
// 如果自定义了顺序
|
|
9078
9091
|
if (hasCustomSort) {
|
|
@@ -11953,16 +11966,13 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
11953
11966
|
const targetColumn = getRootColumn($xeTable, column);
|
|
11954
11967
|
const isMaxFixedColumn = computeIsMaxFixedColumn.value;
|
|
11955
11968
|
const columnOpts = computeColumnOpts.value;
|
|
11956
|
-
const {
|
|
11957
|
-
maxFixedSize
|
|
11958
|
-
} = columnOpts;
|
|
11959
11969
|
if (targetColumn && targetColumn.fixed !== fixed) {
|
|
11960
11970
|
// 是否超过最大固定列数量
|
|
11961
11971
|
if (!targetColumn.fixed && isMaxFixedColumn) {
|
|
11962
11972
|
if (core_.VxeUI.modal) {
|
|
11963
11973
|
core_.VxeUI.modal.message({
|
|
11964
11974
|
status: 'error',
|
|
11965
|
-
content: table_getI18n('vxe.table.maxFixedCol', [maxFixedSize])
|
|
11975
|
+
content: table_getI18n('vxe.table.maxFixedCol', [columnOpts.maxFixedSize])
|
|
11966
11976
|
});
|
|
11967
11977
|
}
|
|
11968
11978
|
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_.nextTick)();
|
|
@@ -13448,7 +13458,7 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
13448
13458
|
let hasFixedt = 0;
|
|
13449
13459
|
let hasVisible = 0;
|
|
13450
13460
|
external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().eachTree(collectColumn, (column, index, items, path, parent) => {
|
|
13451
|
-
//
|
|
13461
|
+
// 只支持一级
|
|
13452
13462
|
if (!parent) {
|
|
13453
13463
|
collectColumn.forEach(column => {
|
|
13454
13464
|
const colKey = column.getKey();
|
|
@@ -13457,6 +13467,13 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
13457
13467
|
sortData[colKey] = column.renderSortNumber;
|
|
13458
13468
|
}
|
|
13459
13469
|
});
|
|
13470
|
+
if (column.fixed && column.fixed !== column.defaultFixed) {
|
|
13471
|
+
const colKey = column.getKey();
|
|
13472
|
+
if (colKey) {
|
|
13473
|
+
hasFixedt = 1;
|
|
13474
|
+
fixedData[colKey] = column.fixed;
|
|
13475
|
+
}
|
|
13476
|
+
}
|
|
13460
13477
|
}
|
|
13461
13478
|
if (column.resizeWidth) {
|
|
13462
13479
|
const colKey = column.getKey();
|
|
@@ -13465,13 +13482,6 @@ const customStorageKey = 'VXE_CUSTOM_STORE';
|
|
|
13465
13482
|
resizableData[colKey] = column.renderWidth;
|
|
13466
13483
|
}
|
|
13467
13484
|
}
|
|
13468
|
-
if (column.fixed && column.fixed !== column.defaultFixed) {
|
|
13469
|
-
const colKey = column.getKey();
|
|
13470
|
-
if (colKey) {
|
|
13471
|
-
hasFixedt = 1;
|
|
13472
|
-
fixedData[colKey] = column.fixed;
|
|
13473
|
-
}
|
|
13474
|
-
}
|
|
13475
13485
|
if (!checkMethod || checkMethod({
|
|
13476
13486
|
column
|
|
13477
13487
|
})) {
|
|
@@ -23814,10 +23824,6 @@ core_.VxeUI.component(grid);
|
|
|
23814
23824
|
const Grid = VxeGrid;
|
|
23815
23825
|
/* harmony default export */ var packages_grid = ((/* unused pure expression or super */ null && (VxeGrid)));
|
|
23816
23826
|
;// CONCATENATED MODULE: ./packages/locale/lang/zh-CN.ts
|
|
23817
|
-
/**
|
|
23818
|
-
* v4保留兼容,已废弃,即将删除文件
|
|
23819
|
-
* @deprecated
|
|
23820
|
-
*/
|
|
23821
23827
|
/* harmony default export */ var zh_CN = ({
|
|
23822
23828
|
vxe: {
|
|
23823
23829
|
base: {
|
|
@@ -23942,7 +23948,8 @@ const Grid = VxeGrid;
|
|
|
23942
23948
|
colTitle: '标题',
|
|
23943
23949
|
colResizable: '列宽(像素)',
|
|
23944
23950
|
colVisible: '是否显示',
|
|
23945
|
-
colFixed: '
|
|
23951
|
+
colFixed: '冻结列',
|
|
23952
|
+
colFixedMax: '冻结列(最多 {0} 列)',
|
|
23946
23953
|
fixedLeft: '左侧',
|
|
23947
23954
|
fixedUnset: '不设置',
|
|
23948
23955
|
fixedRight: '右侧'
|