vxe-table 4.17.13 → 4.17.14
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/header.js +2 -3
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +4 -8
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/src/header.js +2 -6
- package/lib/table/src/header.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/header.ts +2 -3
- /package/es/{iconfont.1762758719777.ttf → iconfont.1762844790572.ttf} +0 -0
- /package/es/{iconfont.1762758719777.woff → iconfont.1762844790572.woff} +0 -0
- /package/es/{iconfont.1762758719777.woff2 → iconfont.1762844790572.woff2} +0 -0
- /package/lib/{iconfont.1762758719777.ttf → iconfont.1762844790572.ttf} +0 -0
- /package/lib/{iconfont.1762758719777.woff → iconfont.1762844790572.woff} +0 -0
- /package/lib/{iconfont.1762758719777.woff2 → iconfont.1762844790572.woff2} +0 -0
package/es/table/src/header.js
CHANGED
|
@@ -340,9 +340,8 @@ export default defineVxeComponent({
|
|
|
340
340
|
});
|
|
341
341
|
};
|
|
342
342
|
const renderHeads = (isGroup, isOptimizeMode, headerGroups) => {
|
|
343
|
-
const { fixedType
|
|
343
|
+
const { fixedType } = props;
|
|
344
344
|
const { headerRowClassName, headerRowStyle } = tableProps;
|
|
345
|
-
const { visibleColumn } = tableInternalData;
|
|
346
345
|
const floatingFilterOpts = computeFloatingFilterOpts.value;
|
|
347
346
|
const rowVNs = headerGroups.map((cols, $rowIndex) => {
|
|
348
347
|
const params = { $table: $xeTable, $rowIndex, fixed: fixedType, type: renderType };
|
|
@@ -361,7 +360,7 @@ export default defineVxeComponent({
|
|
|
361
360
|
class: [
|
|
362
361
|
'vxe-header--row'
|
|
363
362
|
]
|
|
364
|
-
}, renderFilterRows(isOptimizeMode,
|
|
363
|
+
}, renderFilterRows(isOptimizeMode, headerGroups[headerGroups.length - 1])));
|
|
365
364
|
}
|
|
366
365
|
return rowVNs;
|
|
367
366
|
};
|
package/es/ui/index.js
CHANGED
package/es/ui/src/log.js
CHANGED
package/lib/index.umd.js
CHANGED
|
@@ -3141,7 +3141,7 @@ function eqEmptyValue(cellValue) {
|
|
|
3141
3141
|
;// ./packages/ui/index.ts
|
|
3142
3142
|
|
|
3143
3143
|
|
|
3144
|
-
const version = "4.17.
|
|
3144
|
+
const version = "4.17.14";
|
|
3145
3145
|
core_.VxeUI.version = version;
|
|
3146
3146
|
core_.VxeUI.tableVersion = version;
|
|
3147
3147
|
core_.VxeUI.setConfig({
|
|
@@ -3655,7 +3655,7 @@ var esnext_iterator_some = __webpack_require__(7550);
|
|
|
3655
3655
|
const {
|
|
3656
3656
|
log: log_log
|
|
3657
3657
|
} = core_.VxeUI;
|
|
3658
|
-
const log_version = `table v${"4.17.
|
|
3658
|
+
const log_version = `table v${"4.17.14"}`;
|
|
3659
3659
|
const warnLog = log_log.create('warn', log_version);
|
|
3660
3660
|
const errLog = log_log.create('error', log_version);
|
|
3661
3661
|
;// ./packages/table/src/columnInfo.ts
|
|
@@ -8569,16 +8569,12 @@ function getColumnLastChild(column) {
|
|
|
8569
8569
|
};
|
|
8570
8570
|
const renderHeads = (isGroup, isOptimizeMode, headerGroups) => {
|
|
8571
8571
|
const {
|
|
8572
|
-
fixedType
|
|
8573
|
-
fixedColumn
|
|
8572
|
+
fixedType
|
|
8574
8573
|
} = props;
|
|
8575
8574
|
const {
|
|
8576
8575
|
headerRowClassName,
|
|
8577
8576
|
headerRowStyle
|
|
8578
8577
|
} = tableProps;
|
|
8579
|
-
const {
|
|
8580
|
-
visibleColumn
|
|
8581
|
-
} = tableInternalData;
|
|
8582
8578
|
const floatingFilterOpts = computeFloatingFilterOpts.value;
|
|
8583
8579
|
const rowVNs = headerGroups.map((cols, $rowIndex) => {
|
|
8584
8580
|
const params = {
|
|
@@ -8597,7 +8593,7 @@ function getColumnLastChild(column) {
|
|
|
8597
8593
|
rowVNs.push((0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('tr', {
|
|
8598
8594
|
key: 'ff',
|
|
8599
8595
|
class: ['vxe-header--row']
|
|
8600
|
-
}, renderFilterRows(isOptimizeMode,
|
|
8596
|
+
}, renderFilterRows(isOptimizeMode, headerGroups[headerGroups.length - 1])));
|
|
8601
8597
|
}
|
|
8602
8598
|
return rowVNs;
|
|
8603
8599
|
};
|