vxe-table 3.19.32 → 3.19.34

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.
Files changed (33) hide show
  1. package/es/style.css +1 -1
  2. package/es/table/module/custom/panel.js +11 -11
  3. package/es/table/src/cell.js +11 -3
  4. package/es/table/src/header.js +3 -3
  5. package/es/table/src/methods.js +3 -1
  6. package/es/ui/index.js +1 -1
  7. package/es/ui/src/log.js +1 -1
  8. package/lib/index.umd.js +43 -25
  9. package/lib/index.umd.min.js +1 -1
  10. package/lib/style.css +1 -1
  11. package/lib/table/module/custom/panel.js +11 -11
  12. package/lib/table/module/custom/panel.min.js +1 -1
  13. package/lib/table/src/cell.js +26 -8
  14. package/lib/table/src/cell.min.js +1 -1
  15. package/lib/table/src/header.js +3 -3
  16. package/lib/table/src/header.min.js +1 -1
  17. package/lib/table/src/methods.js +3 -1
  18. package/lib/table/src/methods.min.js +1 -1
  19. package/lib/ui/index.js +1 -1
  20. package/lib/ui/index.min.js +1 -1
  21. package/lib/ui/src/log.js +1 -1
  22. package/lib/ui/src/log.min.js +1 -1
  23. package/package.json +1 -1
  24. package/packages/table/module/custom/panel.ts +11 -11
  25. package/packages/table/src/cell.ts +11 -3
  26. package/packages/table/src/header.ts +3 -3
  27. package/packages/table/src/methods.ts +3 -1
  28. /package/es/{iconfont.1766115857940.ttf → iconfont.1766711835500.ttf} +0 -0
  29. /package/es/{iconfont.1766115857940.woff → iconfont.1766711835500.woff} +0 -0
  30. /package/es/{iconfont.1766115857940.woff2 → iconfont.1766711835500.woff2} +0 -0
  31. /package/lib/{iconfont.1766115857940.ttf → iconfont.1766711835500.ttf} +0 -0
  32. /package/lib/{iconfont.1766115857940.woff → iconfont.1766711835500.woff} +0 -0
  33. /package/lib/{iconfont.1766115857940.woff2 → iconfont.1766711835500.woff2} +0 -0
@@ -201,12 +201,12 @@ const renderSimplePanel = (h, _vm) => {
201
201
  }, [
202
202
  h('span', {
203
203
  class: ['vxe-table-custom--sort-btn', {
204
- 'is--disabled': isDisabled || isHidden
204
+ 'is--disabled': isHidden
205
205
  }],
206
206
  attrs: {
207
207
  title: getI18n('vxe.custom.setting.sortHelpTip')
208
208
  },
209
- on: isDisabled || isHidden
209
+ on: isHidden
210
210
  ? {}
211
211
  : {
212
212
  mousedown: _vm.sortMousedownEvent,
@@ -244,7 +244,7 @@ const renderSimplePanel = (h, _vm) => {
244
244
  mode: 'text',
245
245
  icon: column.renderFixed === 'left' ? getIcon().TOOLBAR_TOOLS_FIXED_LEFT_ACTIVE : getIcon().TOOLBAR_TOOLS_FIXED_LEFT,
246
246
  status: column.renderFixed === 'left' ? 'primary' : '',
247
- disabled: isDisabled || isHidden || (isMaxFixedColumn && !column.renderFixed),
247
+ disabled: isHidden || (isMaxFixedColumn && !column.renderFixed),
248
248
  title: getI18n(column.renderFixed === 'left' ? 'vxe.toolbar.cancelFixed' : 'vxe.toolbar.fixedLeft')
249
249
  },
250
250
  on: {
@@ -258,7 +258,7 @@ const renderSimplePanel = (h, _vm) => {
258
258
  mode: 'text',
259
259
  icon: column.renderFixed === 'right' ? getIcon().TOOLBAR_TOOLS_FIXED_RIGHT_ACTIVE : getIcon().TOOLBAR_TOOLS_FIXED_RIGHT,
260
260
  status: column.renderFixed === 'right' ? 'primary' : '',
261
- disabled: isDisabled || isHidden || (isMaxFixedColumn && !column.renderFixed),
261
+ disabled: isHidden || (isMaxFixedColumn && !column.renderFixed),
262
262
  title: getI18n(column.renderFixed === 'right' ? 'vxe.toolbar.cancelFixed' : 'vxe.toolbar.fixedRight')
263
263
  },
264
264
  on: {
@@ -545,12 +545,12 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
545
545
  ? ((isCrossDrag ? immediate : false) || column.level === 1
546
546
  ? h('div', {
547
547
  class: ['vxe-table-custom-popup--column-sort-btn', {
548
- 'is--disabled': isDisabled || isHidden
548
+ 'is--disabled': isHidden
549
549
  }],
550
550
  attrs: {
551
551
  title: getI18n('vxe.custom.setting.sortHelpTip')
552
552
  },
553
- on: (isDisabled || isHidden
553
+ on: (isHidden
554
554
  ? {}
555
555
  : {
556
556
  mousedown: _vm.sortMousedownEvent,
@@ -594,7 +594,7 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
594
594
  props: {
595
595
  type: 'integer',
596
596
  immediate: false,
597
- disabled: isDisabled || isHidden,
597
+ disabled: isHidden,
598
598
  value: column.renderResizeWidth,
599
599
  min: customMinWidth || undefined,
600
600
  max: customMaxWidth || undefined
@@ -622,11 +622,11 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
622
622
  value: column.renderFixed || '',
623
623
  type: 'button',
624
624
  size: 'mini',
625
- disabled: isDisabled || isHidden,
625
+ disabled: isHidden,
626
626
  options: [
627
- { label: getI18n('vxe.custom.setting.fixedLeft'), value: 'left', disabled: isDisabled || isHidden || isMaxFixedColumn },
628
- { label: getI18n('vxe.custom.setting.fixedUnset'), value: '', disabled: isDisabled || isHidden },
629
- { label: getI18n('vxe.custom.setting.fixedRight'), value: 'right', disabled: isDisabled || isHidden || isMaxFixedColumn }
627
+ { label: getI18n('vxe.custom.setting.fixedLeft'), value: 'left', disabled: isHidden || isMaxFixedColumn },
628
+ { label: getI18n('vxe.custom.setting.fixedUnset'), value: '', disabled: isHidden },
629
+ { label: getI18n('vxe.custom.setting.fixedRight'), value: 'right', disabled: isHidden || isMaxFixedColumn }
630
630
  ]
631
631
  },
632
632
  on: {
@@ -359,6 +359,7 @@ export const Cell = {
359
359
  const renderOpts = editConfig && isEnableConf(editRender) ? editRender : (isEnableConf(cellRender) ? cellRender : null);
360
360
  const defaultSlot = slots ? slots.default : null;
361
361
  const gcSlot = slots ? (slots.groupContent || slots['group-content']) : null;
362
+ const gvSlot = slots ? (slots.groupValues || slots['group-values']) : null;
362
363
  let cellValue = '';
363
364
  if (isRowGroupStatus && field && row.isAggregate) {
364
365
  const aggRow = row;
@@ -392,9 +393,6 @@ export const Cell = {
392
393
  */
393
394
  totalValue: childCount
394
395
  };
395
- if (gcSlot) {
396
- return renderCellBaseVNs(h, params, $table.callSlot(gcSlot, Object.assign({ groupField, groupContent, childList, childCount }, params), h));
397
- }
398
396
  if (mode === 'column' ? field === aggRow.groupField : rowGroupNode) {
399
397
  cellValue = groupContent;
400
398
  if (contentMethod) {
@@ -403,9 +401,16 @@ export const Cell = {
403
401
  if (showTotal) {
404
402
  cellValue = getI18n('vxe.table.rowGroupContentTotal', [cellValue, totalMethod ? totalMethod(ctParams) : childCount, childCount]);
405
403
  }
404
+ if (gcSlot) {
405
+ return renderCellBaseVNs(h, params, $table.callSlot(gcSlot, Object.assign({ groupField, groupContent, childList, childCount }, params), h));
406
+ }
406
407
  }
407
408
  else if ($table.getPivotTableAggregateCellAggValue) {
408
409
  cellValue = $table.getPivotTableAggregateCellAggValue(params);
410
+ ctParams.aggValue = cellValue;
411
+ if (gvSlot) {
412
+ return renderCellBaseVNs(h, params, $table.callSlot(gvSlot, Object.assign({ groupField, groupContent, childList, childCount }, params, ctParams), h));
413
+ }
409
414
  }
410
415
  else if (aggFunc === true || (countFields && countFields.includes(field))) {
411
416
  cellValue = currAggData ? currAggData.value : childCount;
@@ -413,6 +418,9 @@ export const Cell = {
413
418
  if (formatValuesMethod) {
414
419
  cellValue = formatValuesMethod(ctParams);
415
420
  }
421
+ if (gvSlot) {
422
+ return renderCellBaseVNs(h, params, $table.callSlot(gvSlot, Object.assign({ groupField, groupContent, childList, childCount }, params, ctParams), h));
423
+ }
416
424
  }
417
425
  }
418
426
  else {
@@ -307,7 +307,7 @@ function renderFilterRows(h, _vm, isOptimizeMode, cols) {
307
307
  ]);
308
308
  });
309
309
  }
310
- function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups) {
310
+ function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups, renderColumnList) {
311
311
  const props = _vm;
312
312
  const $xeTable = _vm.$parent;
313
313
  const tableProps = $xeTable;
@@ -331,7 +331,7 @@ function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups) {
331
331
  class: [
332
332
  'vxe-header--row'
333
333
  ]
334
- }, renderFilterRows(h, _vm, isOptimizeMode, headerGroups[headerGroups.length - 1])));
334
+ }, renderFilterRows(h, _vm, isOptimizeMode, renderColumnList)));
335
335
  }
336
336
  return rowVNs;
337
337
  }
@@ -508,7 +508,7 @@ export default {
508
508
  */
509
509
  h('thead', {
510
510
  ref: 'refHeaderTHead'
511
- }, renderHeads(h, _vm, isGroup, isOptimizeMode, renderHeaderList))
511
+ }, renderHeads(h, _vm, isGroup, isOptimizeMode, renderHeaderList, renderColumnList))
512
512
  ]),
513
513
  mouseConfig && mouseOpts.area
514
514
  ? h('div', {
@@ -4415,7 +4415,6 @@ const tableMethods = {
4415
4415
  const reactData = $xeTable;
4416
4416
  const internalData = $xeTable;
4417
4417
  const { data } = props;
4418
- $xeTable.dispatchEvent('ready', {}, null);
4419
4418
  loadTableData($xeTable, data || [], true, true).then(() => {
4420
4419
  if (data && data.length) {
4421
4420
  internalData.inited = true;
@@ -4429,6 +4428,9 @@ const tableMethods = {
4429
4428
  updateRowOffsetTop($xeTable);
4430
4429
  }
4431
4430
  });
4431
+ $xeTable.$nextTick().then(() => {
4432
+ $xeTable.dispatchEvent('ready', {}, null);
4433
+ });
4432
4434
  },
4433
4435
  /**
4434
4436
  * 加载表格数据
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 = "3.19.32";
3
+ export const version = "3.19.34";
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${"3.19.32"}`;
3
+ const version = `table v${"3.19.34"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
package/lib/index.umd.js CHANGED
@@ -2005,7 +2005,7 @@ function getClass(property, params) {
2005
2005
  ;// CONCATENATED MODULE: ./packages/ui/index.ts
2006
2006
 
2007
2007
 
2008
- const version = "3.19.32";
2008
+ const version = "3.19.34";
2009
2009
  core_.VxeUI.version = version;
2010
2010
  core_.VxeUI.tableVersion = version;
2011
2011
  core_.VxeUI.setConfig({
@@ -2715,7 +2715,7 @@ function isNodeElement(elem) {
2715
2715
  const {
2716
2716
  log: log_log
2717
2717
  } = core_.VxeUI;
2718
- const log_version = `table v${"3.19.32"}`;
2718
+ const log_version = `table v${"3.19.34"}`;
2719
2719
  const warnLog = log_log.create('warn', log_version);
2720
2720
  const errLog = log_log.create('error', log_version);
2721
2721
  ;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
@@ -4184,6 +4184,7 @@ const Cell = {
4184
4184
  const renderOpts = editConfig && isEnableConf(editRender) ? editRender : isEnableConf(cellRender) ? cellRender : null;
4185
4185
  const defaultSlot = slots ? slots.default : null;
4186
4186
  const gcSlot = slots ? slots.groupContent || slots['group-content'] : null;
4187
+ const gvSlot = slots ? slots.groupValues || slots['group-values'] : null;
4187
4188
  let cellValue = '';
4188
4189
  if (isRowGroupStatus && field && row.isAggregate) {
4189
4190
  const aggRow = row;
@@ -4227,14 +4228,6 @@ const Cell = {
4227
4228
  */
4228
4229
  totalValue: childCount
4229
4230
  };
4230
- if (gcSlot) {
4231
- return renderCellBaseVNs(h, params, $table.callSlot(gcSlot, Object.assign({
4232
- groupField,
4233
- groupContent,
4234
- childList,
4235
- childCount
4236
- }, params), h));
4237
- }
4238
4231
  if (mode === 'column' ? field === aggRow.groupField : rowGroupNode) {
4239
4232
  cellValue = groupContent;
4240
4233
  if (contentMethod) {
@@ -4243,14 +4236,39 @@ const Cell = {
4243
4236
  if (showTotal) {
4244
4237
  cellValue = cell_getI18n('vxe.table.rowGroupContentTotal', [cellValue, totalMethod ? totalMethod(ctParams) : childCount, childCount]);
4245
4238
  }
4239
+ if (gcSlot) {
4240
+ return renderCellBaseVNs(h, params, $table.callSlot(gcSlot, Object.assign({
4241
+ groupField,
4242
+ groupContent,
4243
+ childList,
4244
+ childCount
4245
+ }, params), h));
4246
+ }
4246
4247
  } else if ($table.getPivotTableAggregateCellAggValue) {
4247
4248
  cellValue = $table.getPivotTableAggregateCellAggValue(params);
4249
+ ctParams.aggValue = cellValue;
4250
+ if (gvSlot) {
4251
+ return renderCellBaseVNs(h, params, $table.callSlot(gvSlot, Object.assign({
4252
+ groupField,
4253
+ groupContent,
4254
+ childList,
4255
+ childCount
4256
+ }, params, ctParams), h));
4257
+ }
4248
4258
  } else if (aggFunc === true || countFields && countFields.includes(field)) {
4249
4259
  cellValue = currAggData ? currAggData.value : childCount;
4250
4260
  ctParams.aggValue = cellValue;
4251
4261
  if (formatValuesMethod) {
4252
4262
  cellValue = formatValuesMethod(ctParams);
4253
4263
  }
4264
+ if (gvSlot) {
4265
+ return renderCellBaseVNs(h, params, $table.callSlot(gvSlot, Object.assign({
4266
+ groupField,
4267
+ groupContent,
4268
+ childList,
4269
+ childCount
4270
+ }, params, ctParams), h));
4271
+ }
4254
4272
  }
4255
4273
  } else {
4256
4274
  if (defaultSlot) {
@@ -6142,7 +6160,7 @@ if(external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_defau
6142
6160
  setTimeout(()=>handleLazyRecalculate($xeTable,false,true,true),50);});},handleTableData(force){const $xeTable=this;const reactData=$xeTable;const internalData=$xeTable;const{scrollYLoad}=reactData;const{scrollYStore,fullDataRowIdData}=internalData;const $xeGanttView=internalData.xeGanttView;let fullList=internalData.afterFullData;// 是否进行数据处理
6143
6161
  if(force){// 更新数据,处理筛选和排序
6144
6162
  updateAfterFullData($xeTable);// 如果为虚拟树,将树结构拍平
6145
- fullList=handleVirtualTreeToList($xeTable);}const tableData=scrollYLoad?fullList.slice(scrollYStore.startIndex,scrollYStore.endIndex):fullList.slice(0);const visibleDataRowIdMaps={};tableData.forEach((row,$index)=>{const rowid=getRowid($xeTable,row);const rest=fullDataRowIdData[rowid];if(rest){rest.$index=$index;}visibleDataRowIdMaps[rowid]=row;});reactData.tableData=tableData;internalData.visibleDataRowIdData=visibleDataRowIdMaps;if($xeGanttView&&$xeGanttView.updateViewData){$xeGanttView.updateViewData();}return $xeTable.$nextTick();},initData(){const $xeTable=this;const props=$xeTable;const reactData=$xeTable;const internalData=$xeTable;const{data}=props;$xeTable.dispatchEvent('ready',{},null);loadTableData($xeTable,data||[],true,true).then(()=>{if(data&&data.length){internalData.inited=true;internalData.initStatus=true;handleLoadDefaults($xeTable);}handleInitDefaults($xeTable);updateStyle($xeTable);if(!reactData.isAllOverflow){calcCellHeight($xeTable);updateRowOffsetTop($xeTable);}});},/**
6163
+ fullList=handleVirtualTreeToList($xeTable);}const tableData=scrollYLoad?fullList.slice(scrollYStore.startIndex,scrollYStore.endIndex):fullList.slice(0);const visibleDataRowIdMaps={};tableData.forEach((row,$index)=>{const rowid=getRowid($xeTable,row);const rest=fullDataRowIdData[rowid];if(rest){rest.$index=$index;}visibleDataRowIdMaps[rowid]=row;});reactData.tableData=tableData;internalData.visibleDataRowIdData=visibleDataRowIdMaps;if($xeGanttView&&$xeGanttView.updateViewData){$xeGanttView.updateViewData();}return $xeTable.$nextTick();},initData(){const $xeTable=this;const props=$xeTable;const reactData=$xeTable;const internalData=$xeTable;const{data}=props;loadTableData($xeTable,data||[],true,true).then(()=>{if(data&&data.length){internalData.inited=true;internalData.initStatus=true;handleLoadDefaults($xeTable);}handleInitDefaults($xeTable);updateStyle($xeTable);if(!reactData.isAllOverflow){calcCellHeight($xeTable);updateRowOffsetTop($xeTable);}});$xeTable.$nextTick().then(()=>{$xeTable.dispatchEvent('ready',{},null);});},/**
6146
6164
  * 加载表格数据
6147
6165
  * @param {Array} datas 数据
6148
6166
  */loadTableData(datas,isReload,isReset){const $xeTable=this;return loadTableData($xeTable,datas,isReload,isReset);},/**
@@ -8086,7 +8104,7 @@ function renderFilterRows(h, _vm, isOptimizeMode, cols) {
8086
8104
  }, flSlot ? $xeTable.callSlot(flSlot, cellParams, h) : rtFloatingFilter && firstFilterOption ? getSlotVNs(rtFloatingFilter.call($xeTable, h, filterRender, cellParams)) : [])])]);
8087
8105
  });
8088
8106
  }
8089
- function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups) {
8107
+ function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups, renderColumnList) {
8090
8108
  const props = _vm;
8091
8109
  const $xeTable = _vm.$parent;
8092
8110
  const tableProps = $xeTable;
@@ -8115,7 +8133,7 @@ function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups) {
8115
8133
  rowVNs.push(h('tr', {
8116
8134
  key: 'ff',
8117
8135
  class: ['vxe-header--row']
8118
- }, renderFilterRows(h, _vm, isOptimizeMode, headerGroups[headerGroups.length - 1])));
8136
+ }, renderFilterRows(h, _vm, isOptimizeMode, renderColumnList)));
8119
8137
  }
8120
8138
  return rowVNs;
8121
8139
  }
@@ -8312,7 +8330,7 @@ function renderHeads(h, _vm, isGroup, isOptimizeMode, headerGroups) {
8312
8330
  */
8313
8331
  h('thead', {
8314
8332
  ref: 'refHeaderTHead'
8315
- }, renderHeads(h, _vm, isGroup, isOptimizeMode, renderHeaderList))]), mouseConfig && mouseOpts.area ? h('div', {
8333
+ }, renderHeads(h, _vm, isGroup, isOptimizeMode, renderHeaderList, renderColumnList))]), mouseConfig && mouseOpts.area ? h('div', {
8316
8334
  class: 'vxe-table--cell-area',
8317
8335
  attrs: {
8318
8336
  xid: xID
@@ -9010,12 +9028,12 @@ const renderSimplePanel = (h, _vm) => {
9010
9028
  class: 'vxe-table-custom--sort-option'
9011
9029
  }, [h('span', {
9012
9030
  class: ['vxe-table-custom--sort-btn', {
9013
- 'is--disabled': isDisabled || isHidden
9031
+ 'is--disabled': isHidden
9014
9032
  }],
9015
9033
  attrs: {
9016
9034
  title: panel_getI18n('vxe.custom.setting.sortHelpTip')
9017
9035
  },
9018
- on: isDisabled || isHidden ? {} : {
9036
+ on: isHidden ? {} : {
9019
9037
  mousedown: _vm.sortMousedownEvent,
9020
9038
  mouseup: _vm.sortMouseupEvent
9021
9039
  }
@@ -9040,7 +9058,7 @@ const renderSimplePanel = (h, _vm) => {
9040
9058
  mode: 'text',
9041
9059
  icon: column.renderFixed === 'left' ? panel_getIcon().TOOLBAR_TOOLS_FIXED_LEFT_ACTIVE : panel_getIcon().TOOLBAR_TOOLS_FIXED_LEFT,
9042
9060
  status: column.renderFixed === 'left' ? 'primary' : '',
9043
- disabled: isDisabled || isHidden || isMaxFixedColumn && !column.renderFixed,
9061
+ disabled: isHidden || isMaxFixedColumn && !column.renderFixed,
9044
9062
  title: panel_getI18n(column.renderFixed === 'left' ? 'vxe.toolbar.cancelFixed' : 'vxe.toolbar.fixedLeft')
9045
9063
  },
9046
9064
  on: {
@@ -9055,7 +9073,7 @@ const renderSimplePanel = (h, _vm) => {
9055
9073
  mode: 'text',
9056
9074
  icon: column.renderFixed === 'right' ? panel_getIcon().TOOLBAR_TOOLS_FIXED_RIGHT_ACTIVE : panel_getIcon().TOOLBAR_TOOLS_FIXED_RIGHT,
9057
9075
  status: column.renderFixed === 'right' ? 'primary' : '',
9058
- disabled: isDisabled || isHidden || isMaxFixedColumn && !column.renderFixed,
9076
+ disabled: isHidden || isMaxFixedColumn && !column.renderFixed,
9059
9077
  title: panel_getI18n(column.renderFixed === 'right' ? 'vxe.toolbar.cancelFixed' : 'vxe.toolbar.fixedRight')
9060
9078
  },
9061
9079
  on: {
@@ -9311,12 +9329,12 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
9311
9329
  class: 'vxe-table-custom-popup--name'
9312
9330
  }, [allowSort ? (isCrossDrag ? immediate : false) || column.level === 1 ? h('div', {
9313
9331
  class: ['vxe-table-custom-popup--column-sort-btn', {
9314
- 'is--disabled': isDisabled || isHidden
9332
+ 'is--disabled': isHidden
9315
9333
  }],
9316
9334
  attrs: {
9317
9335
  title: panel_getI18n('vxe.custom.setting.sortHelpTip')
9318
9336
  },
9319
- on: isDisabled || isHidden ? {} : {
9337
+ on: isHidden ? {} : {
9320
9338
  mousedown: _vm.sortMousedownEvent,
9321
9339
  mouseup: _vm.sortMouseupEvent
9322
9340
  }
@@ -9342,7 +9360,7 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
9342
9360
  props: {
9343
9361
  type: 'integer',
9344
9362
  immediate: false,
9345
- disabled: isDisabled || isHidden,
9363
+ disabled: isHidden,
9346
9364
  value: column.renderResizeWidth,
9347
9365
  min: customMinWidth || undefined,
9348
9366
  max: customMaxWidth || undefined
@@ -9362,19 +9380,19 @@ const renderPopupPanel = (h, $xeTableCustomPanel) => {
9362
9380
  value: column.renderFixed || '',
9363
9381
  type: 'button',
9364
9382
  size: 'mini',
9365
- disabled: isDisabled || isHidden,
9383
+ disabled: isHidden,
9366
9384
  options: [{
9367
9385
  label: panel_getI18n('vxe.custom.setting.fixedLeft'),
9368
9386
  value: 'left',
9369
- disabled: isDisabled || isHidden || isMaxFixedColumn
9387
+ disabled: isHidden || isMaxFixedColumn
9370
9388
  }, {
9371
9389
  label: panel_getI18n('vxe.custom.setting.fixedUnset'),
9372
9390
  value: '',
9373
- disabled: isDisabled || isHidden
9391
+ disabled: isHidden
9374
9392
  }, {
9375
9393
  label: panel_getI18n('vxe.custom.setting.fixedRight'),
9376
9394
  value: 'right',
9377
- disabled: isDisabled || isHidden || isMaxFixedColumn
9395
+ disabled: isHidden || isMaxFixedColumn
9378
9396
  }]
9379
9397
  },
9380
9398
  on: {