@lx-frontend/wrap-element-ui 0.4.6-beta.1 → 0.4.6-beta.2
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 +10 -10
- package/packages/LxTable/src/LxTable.vue +2 -2
package/package.json
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lx-frontend/wrap-element-ui",
|
|
3
|
-
"version": "0.4.6-beta.
|
|
3
|
+
"version": "0.4.6-beta.2",
|
|
4
4
|
"description": "wrap-element-ui",
|
|
5
5
|
"author": "Vic <18373209286@163.com>",
|
|
6
6
|
"main": "packages/index.js",
|
|
7
7
|
"private": false,
|
|
8
|
-
"scripts": {
|
|
9
|
-
"serve": "npm run build:style && vue-cli-service serve",
|
|
10
|
-
"build:style": "gulp build --gulpfile packages/theme-default/gulpfile.js",
|
|
11
|
-
"dist": "npm run build:style && vue-cli-service build",
|
|
12
|
-
"build:single": "webpack --config build/build-one-by-one.js",
|
|
13
|
-
"lint": "vue-cli-service lint",
|
|
14
|
-
"test:unit": "vue-cli-service test:unit"
|
|
15
|
-
},
|
|
16
8
|
"dependencies": {
|
|
17
9
|
"cheerio": "^1.0.0-rc.2",
|
|
18
10
|
"core-js": "^3.3.2",
|
|
@@ -44,5 +36,13 @@
|
|
|
44
36
|
"typescript": "~3.5.3",
|
|
45
37
|
"vue-template-compiler": "^2.7.16",
|
|
46
38
|
"webpack-cli": "^3.3.10"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"serve": "npm run build:style && vue-cli-service serve",
|
|
42
|
+
"build:style": "gulp build --gulpfile packages/theme-default/gulpfile.js",
|
|
43
|
+
"dist": "npm run build:style && vue-cli-service build",
|
|
44
|
+
"build:single": "webpack --config build/build-one-by-one.js",
|
|
45
|
+
"lint": "vue-cli-service lint",
|
|
46
|
+
"test:unit": "vue-cli-service test:unit"
|
|
47
47
|
}
|
|
48
|
-
}
|
|
48
|
+
}
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
<script
|
|
200
200
|
lang="ts"
|
|
201
201
|
setup
|
|
202
|
-
generic="K extends (string | number) | (string | number)[], TableData =
|
|
202
|
+
generic="K extends (string | number) | (string | number)[], TableData = any"
|
|
203
203
|
>
|
|
204
204
|
import Ellipsis from "../../Ellipsis";
|
|
205
205
|
|
|
@@ -230,7 +230,7 @@ const props = withDefaults(
|
|
|
230
230
|
tableData: () => [],
|
|
231
231
|
cloumns: () => [],
|
|
232
232
|
keys: () => [],
|
|
233
|
-
customConfig: () => ({}),
|
|
233
|
+
customConfig: (): Record<string, any> => ({}),
|
|
234
234
|
stripe: true,
|
|
235
235
|
loading: true,
|
|
236
236
|
background: true,
|