@gx-design-vue/pro-table 0.0.18 → 0.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/README.md +1 -1
- package/package.json +3 -2
- package/volar.d.ts +8 -0
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ pnpm add @gx-design-vue/pro-table
|
|
|
9
9
|
import { GProTable } from '@gx-design-vue/pro-table'
|
|
10
10
|
|
|
11
11
|
// 如果引入了ant-design-vue 相关组件的样式(table、menu、tooltip、button、input、treeSelect、select、dataPicker、dropdown等相关组件),则执行下面
|
|
12
|
-
import '@gx-design-vue/pro-table/dist/
|
|
12
|
+
import '@gx-design-vue/pro-table/dist/proTable.less'
|
|
13
13
|
|
|
14
14
|
// 如果没有引入了ant-design-vue 相关组件,则执行下面
|
|
15
15
|
import '@gx-design-vue/pro-table/dist/style.less'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gx-design-vue/pro-table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"lint": "TIMING=1 eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"dist"
|
|
14
|
+
"dist",
|
|
15
|
+
"volar.d.ts"
|
|
15
16
|
],
|
|
16
17
|
"types": "./dist",
|
|
17
18
|
"style": "./dist/style.css",
|