@lx-frontend/wrap-element-ui 1.0.26-beta.2 → 1.0.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.26-beta.2",
3
+ "version": "1.0.27",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -440,7 +440,6 @@ const props = withDefaults(defineProps<IProps>(), {
440
440
  currentPage: 1,
441
441
  pageSizes: () => [10, 15, 30, 60, 100],
442
442
  pagerCount: 11,
443
- customFixed: false,
444
443
  });
445
444
 
446
445
  // 同defineProps一样,不支持泛型参数从外部导入
@@ -468,6 +467,7 @@ const actualColumns = computed(() => {
468
467
  _sortable: rawItem.sortable,
469
468
  };
470
469
 
470
+ // leftFixedColumnCount 控制覆盖的列数,优先级高于列配置中的 fixed 属性
471
471
  if (cnt > 0) {
472
472
  item.fixed = 'left';
473
473
  // eslint-disable-next-line no-plusplus