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.
@@ -340,9 +340,8 @@ export default defineVxeComponent({
340
340
  });
341
341
  };
342
342
  const renderHeads = (isGroup, isOptimizeMode, headerGroups) => {
343
- const { fixedType, fixedColumn } = props;
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, isOptimizeMode && fixedType ? fixedColumn : visibleColumn)));
363
+ }, renderFilterRows(isOptimizeMode, headerGroups[headerGroups.length - 1])));
365
364
  }
366
365
  return rowVNs;
367
366
  };
package/es/ui/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  import { getFuncText } from './src/utils';
3
- export const version = "4.17.13";
3
+ export const version = "4.17.14";
4
4
  VxeUI.version = version;
5
5
  VxeUI.tableVersion = version;
6
6
  VxeUI.setConfig({
package/es/ui/src/log.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  const { log } = VxeUI;
3
- const version = `table v${"4.17.13"}`;
3
+ const version = `table v${"4.17.14"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
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.13";
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.13"}`;
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, isOptimizeMode && fixedType ? fixedColumn : visibleColumn)));
8596
+ }, renderFilterRows(isOptimizeMode, headerGroups[headerGroups.length - 1])));
8601
8597
  }
8602
8598
  return rowVNs;
8603
8599
  };