vxe-table 4.12.0-beta.10 → 4.12.0-beta.12

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/lib/index.umd.js CHANGED
@@ -3138,7 +3138,7 @@ function eqEmptyValue(cellValue) {
3138
3138
  ;// ./packages/ui/index.ts
3139
3139
 
3140
3140
 
3141
- const version = "4.12.0-beta.10";
3141
+ const version = "4.12.0-beta.12";
3142
3142
  core_.VxeUI.version = version;
3143
3143
  core_.VxeUI.tableVersion = version;
3144
3144
  core_.VxeUI.setConfig({
@@ -3586,7 +3586,7 @@ var esnext_iterator_some = __webpack_require__(7550);
3586
3586
  const {
3587
3587
  log: log_log
3588
3588
  } = core_.VxeUI;
3589
- const log_version = `table v${"4.12.0-beta.10"}`;
3589
+ const log_version = `table v${"4.12.0-beta.12"}`;
3590
3590
  const warnLog = log_log.create('warn', log_version);
3591
3591
  const errLog = log_log.create('error', log_version);
3592
3592
  ;// ./packages/table/src/columnInfo.ts
@@ -9426,11 +9426,17 @@ const {
9426
9426
  const rtFilter = compConf ? compConf.renderTableFilter || compConf.renderFilter : null;
9427
9427
  if (filterSlot) {
9428
9428
  return [(0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
9429
- class: 'vxe-table--filter-template'
9429
+ class: 'vxe-table--filter-template',
9430
+ style: maxHeight ? {
9431
+ maxHeight: `${maxHeight}px`
9432
+ } : {}
9430
9433
  }, $xeTable.callSlot(filterSlot, params))];
9431
9434
  } else if (rtFilter) {
9432
9435
  return [(0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
9433
- class: 'vxe-table--filter-template'
9436
+ class: 'vxe-table--filter-template',
9437
+ style: maxHeight ? {
9438
+ maxHeight: `${maxHeight}px`
9439
+ } : {}
9434
9440
  }, getSlotVNs(rtFilter(filterRender, params)))];
9435
9441
  }
9436
9442
  const isAllChecked = multiple ? filterStore.isAllSelected : !filterStore.options.some(item => item._checked);