@lx-frontend/wrap-element-ui 1.0.18 → 1.0.19-beta.0

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,22 +1,10 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.18",
3
+ "version": "1.0.19-beta.0",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
7
7
  "private": false,
8
- "scripts": {
9
- "clean": "rimraf dist",
10
- "dev": "cross-env MODE=development storybook dev -p 6006",
11
- "dist": "cross-env MODE=production pnpm build:lib && storybook dev -p 6006",
12
- "build:lib": "pnpm clean && vite build",
13
- "build:sb": "cross-env MODE=production rimraf storybook-static && pnpm build:lib && storybook build",
14
- "preview": "serve ./storybook-static",
15
- "publish:dev": "npm publish --access public --tag beta",
16
- "publish:prod": "npm publish --access public",
17
- "cdn": "gulp oss",
18
- "lint": "eslint src"
19
- },
20
8
  "files": [
21
9
  "README.md",
22
10
  "package.json",
@@ -69,5 +57,17 @@
69
57
  "vite-plugin-lib-inject-css": "^2.1.1",
70
58
  "vite-tsconfig-paths": "^4.3.2",
71
59
  "vue-template-compiler": "^2.6.10"
60
+ },
61
+ "scripts": {
62
+ "clean": "rimraf dist",
63
+ "dev": "cross-env MODE=development storybook dev -p 6006",
64
+ "dist": "cross-env MODE=production pnpm build:lib && storybook dev -p 6006",
65
+ "build:lib": "pnpm clean && vite build",
66
+ "build:sb": "cross-env MODE=production rimraf storybook-static && pnpm build:lib && storybook build",
67
+ "preview": "serve ./storybook-static",
68
+ "publish:dev": "npm publish --access public --tag beta",
69
+ "publish:prod": "npm publish --access public",
70
+ "cdn": "gulp oss",
71
+ "lint": "eslint src"
72
72
  }
73
73
  }
@@ -562,6 +562,7 @@ const beforeDragStart = () => {
562
562
  return true;
563
563
  };
564
564
 
565
+ // @ts-ignore
565
566
  useDragSort({
566
567
  emit,
567
568
  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>>