@gx-design-vue/pro-table 0.2.0-beta.46 → 0.2.0-beta.48
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/dist/ProTable.d.ts +160 -286
- package/dist/_utils/ant-design-vue/table/props.d.ts +31 -96
- package/dist/_utils/ant-design-vue/table/typings.d.ts +2 -2
- package/dist/components/ColumnSetting/index.d.ts +8 -8
- package/dist/components/ListToolBar/index.d.ts +10 -10
- package/dist/components/ToolBar/index.d.ts +15 -15
- package/dist/context/TableContext.d.ts +2 -3
- package/dist/hooks/useColums.d.ts +1 -1
- package/dist/hooks/useFetchData.d.ts +3 -3
- package/dist/hooks/usePagination.d.ts +2 -2
- package/dist/hooks/useTable.d.ts +1 -1
- package/dist/hooks/useTableScroll.d.ts +3 -3
- package/dist/pro-table.js +920 -916
- package/dist/pro-table.umd.cjs +1 -1
- package/dist/props.d.ts +74 -152
- package/dist/types/ColumnTypings.d.ts +1 -1
- package/dist/types/SlotsTypings.d.ts +1 -1
- package/dist/types/TableTypings.d.ts +11 -11
- package/dist/utils/utils.d.ts +2 -0
- package/package.json +15 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gx-design-vue/pro-table",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.48",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -26,49 +26,23 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@vueuse/core": "^9.10.0",
|
|
29
|
-
"@gx-design-vue/pro-utils": "^0.2.0-beta.
|
|
30
|
-
"@gx-design-vue/pro-hooks": "^0.2.0-beta.
|
|
31
|
-
"@gx-design-vue/pro-provider": "^0.1.0-beta.
|
|
32
|
-
"@gx-design-vue/pro-app": "^0.1.0-beta.
|
|
33
|
-
"ant-design-vue": "^4.1.2",
|
|
29
|
+
"@gx-design-vue/pro-utils": "^0.2.0-beta.28",
|
|
30
|
+
"@gx-design-vue/pro-hooks": "^0.2.0-beta.20",
|
|
31
|
+
"@gx-design-vue/pro-provider": "^0.1.0-beta.55",
|
|
32
|
+
"@gx-design-vue/pro-app": "^0.1.0-beta.11",
|
|
34
33
|
"dayjs": "^1.11.0",
|
|
35
|
-
"lodash-es": "^4.17.21"
|
|
36
|
-
"vue": "^3.3.7",
|
|
37
|
-
"vue-types": "^4.1.1"
|
|
34
|
+
"lodash-es": "^4.17.21"
|
|
38
35
|
},
|
|
39
36
|
"devDependencies": {
|
|
40
|
-
"@rollup/plugin-typescript": "^8.3.0",
|
|
41
|
-
"@rushstack/eslint-patch": "^1.1.0",
|
|
42
37
|
"@types/lodash-es": "^4.17.6",
|
|
43
|
-
"
|
|
44
|
-
"@types/node": "^20.11.19",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
46
|
-
"@typescript-eslint/parser": "^7.0.1",
|
|
47
|
-
"@vitejs/plugin-vue": "^5.0.4",
|
|
48
|
-
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
49
|
-
"eslint": "^8.56.0",
|
|
50
|
-
"eslint-config-prettier": "^9.1.0",
|
|
51
|
-
"eslint-plugin-import": "^2.29.1",
|
|
52
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
53
|
-
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
54
|
-
"eslint-plugin-vue": "^9.21.1",
|
|
55
|
-
"jsdom": "^19.0.0",
|
|
56
|
-
"less": "^4.1.2",
|
|
57
|
-
"rollup": "^2.70.2",
|
|
58
|
-
"postcss": "^8.4.35",
|
|
59
|
-
"postcss-html": "^1.6.0",
|
|
60
|
-
"postcss-less": "^6.0.0",
|
|
61
|
-
"prettier": "^3.2.5",
|
|
62
|
-
"stylelint": "^16.2.1",
|
|
63
|
-
"stylelint-config-recommended": "^14.0.0",
|
|
64
|
-
"stylelint-config-recommended-vue": "^1.5.0",
|
|
65
|
-
"stylelint-config-standard": "^25.0.0",
|
|
66
|
-
"stylelint-order": "^6.0.4",
|
|
67
|
-
"stylelint-prettier": "^5.0.0",
|
|
68
|
-
"typescript": "^5.3.3",
|
|
69
|
-
"vite": "^5.1.4",
|
|
70
|
-
"vue-eslint-parser": "^9.4.2",
|
|
71
|
-
"vue-tsc": "^1.8.27"
|
|
38
|
+
"typescript": "^5.3.3"
|
|
72
39
|
},
|
|
73
|
-
"
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"vue": ">=3.0.0",
|
|
42
|
+
"ant-design-vue": "^4.1.2"
|
|
43
|
+
},
|
|
44
|
+
"description": "Gx Design Pro Table",
|
|
45
|
+
"authors": [
|
|
46
|
+
"gx12358 <gx12358@gmail.com> (https://github.com/gx12358)"
|
|
47
|
+
]
|
|
74
48
|
}
|