jgy-public-component 0.0.19 → 0.0.21
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/components/JButton/JButton.d.ts +1 -1
- package/dist/components/JSearchHeader/JSearchHeader.d.ts +2 -2
- package/dist/components/JUploadImg/JUploadImg.d.ts +2 -2
- package/dist/index.js +886 -897
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/router/guards copy.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +73 -73
package/package.json
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "jgy-public-component",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "JGY 公共 Vue 3 组件库",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"vue3",
|
|
7
|
-
"components",
|
|
8
|
-
"ui",
|
|
9
|
-
"jgy"
|
|
10
|
-
],
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "MIT",
|
|
13
|
-
"publishConfig": {
|
|
14
|
-
"access": "public",
|
|
15
|
-
"registry": "https://registry.npmjs.org"
|
|
16
|
-
},
|
|
17
|
-
"type": "module",
|
|
18
|
-
"main": "./dist/index.umd.cjs",
|
|
19
|
-
"module": "./dist/index.js",
|
|
20
|
-
"types": "./dist/index.d.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
".": {
|
|
23
|
-
"import": "./dist/index.js",
|
|
24
|
-
"require": "./dist/index.umd.cjs",
|
|
25
|
-
"types": "./dist/index.d.ts"
|
|
26
|
-
},
|
|
27
|
-
"./dist/style.css": "./dist/style.css"
|
|
28
|
-
},
|
|
29
|
-
"files": [
|
|
30
|
-
"dist"
|
|
31
|
-
],
|
|
32
|
-
"sideEffects": [
|
|
33
|
-
"*.css"
|
|
34
|
-
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"dev": "vite",
|
|
37
|
-
"build": "vue-tsc --noEmit && vite build",
|
|
38
|
-
"build:lib": "vite build",
|
|
39
|
-
"preview": "vite preview",
|
|
40
|
-
"type-check": "vue-tsc --noEmit",
|
|
41
|
-
"lint": "eslint . --ext .vue,.ts,.tsx --fix",
|
|
42
|
-
"prepare": "npm run build:lib"
|
|
43
|
-
},
|
|
44
|
-
"peerDependencies": {
|
|
45
|
-
"@element-plus/icons-vue": "^2.1.0",
|
|
46
|
-
"@iconify/vue": "^5.0.0",
|
|
47
|
-
"element-plus": "^2.4.0",
|
|
48
|
-
"nprogress": "^0.2.0",
|
|
49
|
-
"vue": "^3.3.0",
|
|
50
|
-
"vue-router": "^4.0.0",
|
|
51
|
-
"vuedraggable": "^4.1.0"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
58
|
-
"element-plus": "^2.13.6",
|
|
59
|
-
"nprogress": "^0.2.0",
|
|
60
|
-
"sass": "^1.70.0",
|
|
61
|
-
"typescript": "^5.3.0",
|
|
62
|
-
"vite": "^5.0.0",
|
|
63
|
-
"vite-plugin-dts": "^3.7.0",
|
|
64
|
-
"vue": "^3.4.0",
|
|
65
|
-
"vue-router": "^4.6.3",
|
|
66
|
-
"vue-tsc": "^2.0.0",
|
|
67
|
-
"vuedraggable": "^4.1.0",
|
|
68
|
-
"xlsx": "^0.18.5"
|
|
69
|
-
},
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"xlsx": "^0.18.5"
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "jgy-public-component",
|
|
3
|
+
"version": "0.0.21",
|
|
4
|
+
"description": "JGY 公共 Vue 3 组件库",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue3",
|
|
7
|
+
"components",
|
|
8
|
+
"ui",
|
|
9
|
+
"jgy"
|
|
10
|
+
],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public",
|
|
15
|
+
"registry": "https://registry.npmjs.org"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.umd.cjs",
|
|
19
|
+
"module": "./dist/index.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"import": "./dist/index.js",
|
|
24
|
+
"require": "./dist/index.umd.cjs",
|
|
25
|
+
"types": "./dist/index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./dist/style.css": "./dist/style.css"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": [
|
|
33
|
+
"*.css"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite",
|
|
37
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
38
|
+
"build:lib": "vite build",
|
|
39
|
+
"preview": "vite preview",
|
|
40
|
+
"type-check": "vue-tsc --noEmit",
|
|
41
|
+
"lint": "eslint . --ext .vue,.ts,.tsx --fix",
|
|
42
|
+
"prepare": "npm run build:lib"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@element-plus/icons-vue": "^2.1.0",
|
|
46
|
+
"@iconify/vue": "^5.0.0",
|
|
47
|
+
"element-plus": "^2.4.0",
|
|
48
|
+
"nprogress": "^0.2.0",
|
|
49
|
+
"vue": "^3.3.0",
|
|
50
|
+
"vue-router": "^4.0.0",
|
|
51
|
+
"vuedraggable": "^4.1.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@element-plus/icons-vue": "^2.3.2",
|
|
55
|
+
"@iconify/vue": "^5.0.0",
|
|
56
|
+
"@types/nprogress": "^0.2.3",
|
|
57
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
58
|
+
"element-plus": "^2.13.6",
|
|
59
|
+
"nprogress": "^0.2.0",
|
|
60
|
+
"sass": "^1.70.0",
|
|
61
|
+
"typescript": "^5.3.0",
|
|
62
|
+
"vite": "^5.0.0",
|
|
63
|
+
"vite-plugin-dts": "^3.7.0",
|
|
64
|
+
"vue": "^3.4.0",
|
|
65
|
+
"vue-router": "^4.6.3",
|
|
66
|
+
"vue-tsc": "^2.0.0",
|
|
67
|
+
"vuedraggable": "^4.1.0",
|
|
68
|
+
"xlsx": "^0.18.5"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"xlsx": "^0.18.5"
|
|
72
|
+
}
|
|
73
|
+
}
|