@lx-frontend/wrap-element-ui 1.0.19 → 1.0.20

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.19",
3
+ "version": "1.0.20",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -565,6 +565,7 @@ const beforeDragStart = () => {
565
565
  return true;
566
566
  };
567
567
 
568
+ // @ts-ignore
568
569
  useDragSort({
569
570
  emit,
570
571
  props,
@@ -88,6 +88,7 @@ type _IColumnConfigRequired = {
88
88
  /** 自定义颜色表头label */
89
89
  customColorLabel?: boolean;
90
90
  filters?: FilterListType;
91
+ selectOptions?: any
91
92
  }
92
93
 
93
94
  export type IColumnConfigRequired = _IColumnConfigRequired & Partial<Omit<TableColumn, keyof _IColumnConfigRequired>>