@gx-design-vue/pro-layout 0.1.0-beta.5 → 0.1.0-beta.50
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 +3 -3
- package/dist/Context.d.ts +10 -6
- package/dist/PageLoading.d.ts +2 -2
- package/dist/ProLayout.d.ts +289 -134
- package/dist/components/GlobalFooter/index.d.ts +2 -2
- package/dist/components/GlobalHeader/DefaultHeader.d.ts +164 -164
- package/dist/components/GlobalHeader/index.d.ts +113 -36
- package/dist/components/GlobalHeader/props.d.ts +78 -14
- package/dist/components/LogoContent/index.d.ts +10 -10
- package/dist/components/LogoContent/props.d.ts +2 -2
- package/dist/components/MultiTab/index.d.ts +5 -4
- package/dist/components/PageContainer/PageHeader.d.ts +16 -7
- package/dist/components/PageContainer/index.d.ts +179 -21
- package/dist/components/PageContainer/props.d.ts +167 -9
- package/dist/components/PageTranstion/index.d.ts +2 -2
- package/dist/components/SettingDrawer/BlockCheckbox.d.ts +3 -3
- package/dist/components/SettingDrawer/OthersChange.d.ts +2 -2
- package/dist/components/SettingDrawer/RegionalChange.d.ts +4 -4
- package/dist/components/SettingDrawer/ThemeColor.d.ts +3 -3
- package/dist/components/SettingDrawer/ThemeEditor.d.ts +2 -2
- package/dist/components/SettingDrawer/index.d.ts +2 -2
- package/dist/components/SiderMenu/BaseMenu.d.ts +35 -27
- package/dist/components/SiderMenu/SiderMenu.d.ts +58 -58
- package/dist/components/SiderMenu/index.d.ts +60 -60
- package/dist/components/SiderMenu/props.d.ts +18 -12
- package/dist/defaultSettings.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/pro-layout.js +4587 -0
- package/dist/pro-layout.umd.cjs +1 -0
- package/dist/props.d.ts +124 -48
- package/dist/route.d.ts +11 -12
- package/dist/utils/getMenuData.d.ts +2 -1
- package/dist/utils/index.d.ts +3 -2
- package/package.json +39 -35
- package/dist/pro-layout.mjs +0 -7421
- package/dist/pro-layout.umd.js +0 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gx-design-vue/pro-layout",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.50",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite",
|
|
6
6
|
"build": "vite build",
|
|
@@ -13,59 +13,63 @@
|
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
|
+
"type": "module",
|
|
16
17
|
"types": "./dist",
|
|
17
|
-
"main": "./dist/pro-layout.umd.
|
|
18
|
-
"module": "./dist/pro-layout.
|
|
18
|
+
"main": "./dist/pro-layout.umd.cjs",
|
|
19
|
+
"module": "./dist/pro-layout.js",
|
|
19
20
|
"exports": {
|
|
20
21
|
".": {
|
|
21
|
-
"import": "./dist/pro-layout.
|
|
22
|
-
"require": "./dist/pro-layout.umd.
|
|
22
|
+
"import": "./dist/pro-layout.js",
|
|
23
|
+
"require": "./dist/pro-layout.umd.cjs"
|
|
23
24
|
}
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@vueuse/core": "^9.10.0",
|
|
27
|
-
"@gx-design-vue/pro-
|
|
28
|
-
"@gx-design-vue/pro-
|
|
29
|
-
"@gx-design-vue/pro-
|
|
30
|
-
"@gx-design-vue/pro-
|
|
31
|
-
"@gx-design-vue/
|
|
32
|
-
"@gx-design-vue/
|
|
33
|
-
"
|
|
28
|
+
"@gx-design-vue/pro-app": "^0.1.0-beta.10",
|
|
29
|
+
"@gx-design-vue/pro-utils": "^0.2.0-beta.26",
|
|
30
|
+
"@gx-design-vue/pro-hooks": "^0.2.0-beta.19",
|
|
31
|
+
"@gx-design-vue/pro-provider": "^0.1.0-beta.49",
|
|
32
|
+
"@gx-design-vue/pro-watermark": "^0.2.0-beta.6",
|
|
33
|
+
"@gx-design-vue/scrollbar": "^0.2.0-beta.12",
|
|
34
|
+
"@gx-design-vue/color-picker": "^0.2.0-beta.17",
|
|
35
|
+
"ant-design-vue": "^4.1.2",
|
|
34
36
|
"dayjs": "^1.11.0",
|
|
35
37
|
"lodash-es": "^4.17.21",
|
|
36
|
-
"vue": "^3.
|
|
38
|
+
"vue": "^3.3.7",
|
|
37
39
|
"vue-types": "^4.1.1"
|
|
38
40
|
},
|
|
39
41
|
"devDependencies": {
|
|
40
42
|
"@rollup/plugin-typescript": "^8.3.0",
|
|
41
43
|
"@rushstack/eslint-patch": "^1.1.0",
|
|
42
44
|
"@types/jsdom": "^16.2.14",
|
|
43
|
-
"@types/node": "^
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"eslint": "^
|
|
50
|
-
"eslint-plugin-
|
|
51
|
-
"eslint-plugin-
|
|
45
|
+
"@types/node": "^20.11.19",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
47
|
+
"@typescript-eslint/parser": "^7.0.1",
|
|
48
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
49
|
+
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
50
|
+
"eslint": "^8.56.0",
|
|
51
|
+
"eslint-config-prettier": "^9.1.0",
|
|
52
|
+
"eslint-plugin-import": "^2.29.1",
|
|
53
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
54
|
+
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
55
|
+
"eslint-plugin-vue": "^9.21.1",
|
|
52
56
|
"jsdom": "^19.0.0",
|
|
53
57
|
"less": "^4.1.2",
|
|
54
|
-
"postcss": "^8.4.12",
|
|
55
|
-
"postcss-html": "^1.4.1",
|
|
56
|
-
"postcss-less": "^6.0.0",
|
|
57
|
-
"prettier": "^2.6.2",
|
|
58
58
|
"rollup": "^2.70.2",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
59
|
+
"postcss": "^8.4.35",
|
|
60
|
+
"postcss-html": "^1.6.0",
|
|
61
|
+
"postcss-less": "^6.0.0",
|
|
62
|
+
"prettier": "^3.2.5",
|
|
63
|
+
"stylelint": "^16.2.1",
|
|
64
|
+
"stylelint-config-recommended": "^14.0.0",
|
|
65
|
+
"stylelint-config-recommended-vue": "^1.5.0",
|
|
63
66
|
"stylelint-config-standard": "^25.0.0",
|
|
64
|
-
"stylelint-order": "^
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"vue-
|
|
67
|
+
"stylelint-order": "^6.0.4",
|
|
68
|
+
"stylelint-prettier": "^5.0.0",
|
|
69
|
+
"typescript": "^5.3.3",
|
|
70
|
+
"vite": "^5.1.4",
|
|
71
|
+
"vue-eslint-parser": "^9.4.2",
|
|
72
|
+
"vue-tsc": "^1.8.27"
|
|
69
73
|
},
|
|
70
74
|
"description": "Gx Design"
|
|
71
75
|
}
|