vxe-table 4.16.5 → 4.16.6

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.
@@ -504,8 +504,7 @@ export default defineVxeComponent({
504
504
  if (!dragCol ||
505
505
  (dragCol && dragCol.id === column.id) ||
506
506
  (!isCrossDrag && column.level > 1) ||
507
- (!immediate && column.level > 1) ||
508
- column.renderFixed) {
507
+ (!immediate && column.level > 1)) {
509
508
  showDropTip(evnt, optEl, false, dragPos);
510
509
  return;
511
510
  }
@@ -643,8 +642,8 @@ export default defineVxeComponent({
643
642
  class: 'vxe-table-custom--sort-option'
644
643
  }, [
645
644
  h('span', Object.assign({ class: ['vxe-table-custom--sort-btn', {
646
- 'is--disabled': isDisabled || isHidden || column.renderFixed
647
- }], title: getI18n('vxe.custom.setting.sortHelpTip') }, (isDisabled || isHidden || column.renderFixed
645
+ 'is--disabled': isDisabled || isHidden
646
+ }], title: getI18n('vxe.custom.setting.sortHelpTip') }, (isDisabled || isHidden
648
647
  ? {}
649
648
  : {
650
649
  onMousedown: sortMousedownEvent,
@@ -936,8 +935,8 @@ export default defineVxeComponent({
936
935
  allowSort
937
936
  ? ((isCrossDrag ? immediate : false) || column.level === 1
938
937
  ? h('div', Object.assign({ class: ['vxe-table-custom-popup--column-sort-btn', {
939
- 'is--disabled': isDisabled || isHidden || column.renderFixed
940
- }], title: getI18n('vxe.custom.setting.sortHelpTip') }, (isDisabled || isHidden || column.renderFixed
938
+ 'is--disabled': isDisabled || isHidden
939
+ }], title: getI18n('vxe.custom.setting.sortHelpTip') }, (isDisabled || isHidden
941
940
  ? {}
942
941
  : {
943
942
  onMousedown: sortMousedownEvent,
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.16.5";
3
+ export const version = "4.16.6";
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.16.5"}`;
3
+ const version = `table v${"4.16.6"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
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.16.5";
3141
+ const version = "4.16.6";
3142
3142
  core_.VxeUI.version = version;
3143
3143
  core_.VxeUI.tableVersion = version;
3144
3144
  core_.VxeUI.setConfig({
@@ -3641,7 +3641,7 @@ var esnext_iterator_some = __webpack_require__(7550);
3641
3641
  const {
3642
3642
  log: log_log
3643
3643
  } = core_.VxeUI;
3644
- const log_version = `table v${"4.16.5"}`;
3644
+ const log_version = `table v${"4.16.6"}`;
3645
3645
  const warnLog = log_log.create('warn', log_version);
3646
3646
  const errLog = log_log.create('error', log_version);
3647
3647
  ;// ./packages/table/src/columnInfo.ts
@@ -9627,7 +9627,7 @@ function panel_createInternalData() {
9627
9627
  evnt.preventDefault();
9628
9628
  const offsetY = evnt.clientY - optEl.getBoundingClientRect().y;
9629
9629
  const dragPos = offsetY < optEl.clientHeight / 2 ? 'top' : 'bottom';
9630
- if (!dragCol || dragCol && dragCol.id === column.id || !isCrossDrag && column.level > 1 || !immediate && column.level > 1 || column.renderFixed) {
9630
+ if (!dragCol || dragCol && dragCol.id === column.id || !isCrossDrag && column.level > 1 || !immediate && column.level > 1) {
9631
9631
  showDropTip(evnt, optEl, false, dragPos);
9632
9632
  return;
9633
9633
  }
@@ -9774,10 +9774,10 @@ function panel_createInternalData() {
9774
9774
  class: 'vxe-table-custom--sort-option'
9775
9775
  }, [(0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('span', {
9776
9776
  class: ['vxe-table-custom--sort-btn', {
9777
- 'is--disabled': isDisabled || isHidden || column.renderFixed
9777
+ 'is--disabled': isDisabled || isHidden
9778
9778
  }],
9779
9779
  title: panel_getI18n('vxe.custom.setting.sortHelpTip'),
9780
- ...(isDisabled || isHidden || column.renderFixed ? {} : {
9780
+ ...(isDisabled || isHidden ? {} : {
9781
9781
  onMousedown: sortMousedownEvent,
9782
9782
  onMouseup: sortMouseupEvent
9783
9783
  })
@@ -10021,10 +10021,10 @@ function panel_createInternalData() {
10021
10021
  class: 'vxe-table-custom-popup--name'
10022
10022
  }, [allowSort ? (isCrossDrag ? immediate : false) || column.level === 1 ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
10023
10023
  class: ['vxe-table-custom-popup--column-sort-btn', {
10024
- 'is--disabled': isDisabled || isHidden || column.renderFixed
10024
+ 'is--disabled': isDisabled || isHidden
10025
10025
  }],
10026
10026
  title: panel_getI18n('vxe.custom.setting.sortHelpTip'),
10027
- ...(isDisabled || isHidden || column.renderFixed ? {} : {
10027
+ ...(isDisabled || isHidden ? {} : {
10028
10028
  onMousedown: sortMousedownEvent,
10029
10029
  onMouseup: sortMouseupEvent
10030
10030
  })