yd-admin 0.1.7 → 0.1.9
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 +379 -327
- package/dist/index.js +3112 -645
- package/dist/style.css +2799 -1122
- package/package.json +81 -81
- package/dist/chunk-pbuEa-1d.js +0 -13
- package/dist/index.d.ts +0 -4588
package/package.json
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "yd-admin",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "基于 Vue 3 的后台管理框架通用组件库 - 轻量、高效、主题可定制",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"admin",
|
|
7
|
-
"component-library",
|
|
8
|
-
"typescript",
|
|
9
|
-
"ui-framework",
|
|
10
|
-
"vue",
|
|
11
|
-
"vue3",
|
|
12
|
-
"后台管理"
|
|
13
|
-
],
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"author": "JYD <1585337481@qq.com>",
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "https://gitee.com/yuandingjyd/yd-admin.git"
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"type": "module",
|
|
24
|
-
"sideEffects": [
|
|
25
|
-
"*.css"
|
|
26
|
-
],
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"exports": {
|
|
29
|
-
".": "./dist/index.js",
|
|
30
|
-
"./package.json": "./package.json",
|
|
31
|
-
"./style.css": "./dist/style.css"
|
|
32
|
-
},
|
|
33
|
-
"publishConfig": {
|
|
34
|
-
"access": "public"
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "vp pack",
|
|
38
|
-
"dev": "vp pack --watch",
|
|
39
|
-
"test": "vp test",
|
|
40
|
-
"check": "vp check",
|
|
41
|
-
"prepublishOnly": "vp run build",
|
|
42
|
-
"prepare": "vp config",
|
|
43
|
-
"
|
|
44
|
-
"build
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"unplugin-vue": "^
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"vue": "^3.5.32",
|
|
69
|
-
"vue-tsc": "^3.2.6"
|
|
70
|
-
},
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"vue": ">=3.4.0",
|
|
73
|
-
"vue-router": ">=4.0.0"
|
|
74
|
-
},
|
|
75
|
-
"packageManager": "pnpm@10.33.0",
|
|
76
|
-
"pnpm": {
|
|
77
|
-
"overrides": {
|
|
78
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
|
|
79
|
-
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "yd-admin",
|
|
3
|
+
"version": "0.1.9",
|
|
4
|
+
"description": "基于 Vue 3 的后台管理框架通用组件库 - 轻量、高效、主题可定制",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"admin",
|
|
7
|
+
"component-library",
|
|
8
|
+
"typescript",
|
|
9
|
+
"ui-framework",
|
|
10
|
+
"vue",
|
|
11
|
+
"vue3",
|
|
12
|
+
"后台管理"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "JYD <1585337481@qq.com>",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://gitee.com/yuandingjyd/yd-admin.git"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"*.css"
|
|
26
|
+
],
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": "./dist/index.js",
|
|
30
|
+
"./package.json": "./package.json",
|
|
31
|
+
"./style.css": "./dist/style.css"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "vp pack",
|
|
38
|
+
"dev": "vp pack --watch",
|
|
39
|
+
"test": "vp test",
|
|
40
|
+
"check": "vp check",
|
|
41
|
+
"prepublishOnly": "vp run build",
|
|
42
|
+
"prepare": "vp config",
|
|
43
|
+
"docs:dev": "vitepress dev docs",
|
|
44
|
+
"docs:build": "vitepress build docs",
|
|
45
|
+
"docs:preview": "vitepress preview docs"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@vitepress-code-preview/container": "^1.0.8",
|
|
49
|
+
"@vitepress-code-preview/plugin": "^1.0.6",
|
|
50
|
+
"async-validator": "^4.2.5",
|
|
51
|
+
"pinia": "^3.0.0",
|
|
52
|
+
"vitepress-plugin-component": "^1.1.1",
|
|
53
|
+
"vue-i18n": "^11.1.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@tsdown/css": "^0.21.7",
|
|
57
|
+
"@types/node": "^25.5.0",
|
|
58
|
+
"@typescript/native-preview": "7.0.0-dev.20260328.1",
|
|
59
|
+
"@vitejs/plugin-vue": "^6.0.5",
|
|
60
|
+
"bumpp": "^11.0.1",
|
|
61
|
+
"happy-dom": "^20.9.0",
|
|
62
|
+
"oxc-minify": "^0.127.0",
|
|
63
|
+
"typescript": "^6.0.2",
|
|
64
|
+
"unplugin-vue": "^7.1.1",
|
|
65
|
+
"unplugin-vue-components": "^32.0.0",
|
|
66
|
+
"vite-plus": "0.1.17",
|
|
67
|
+
"vitepress": "2.0.0-alpha.17",
|
|
68
|
+
"vue": "^3.5.32",
|
|
69
|
+
"vue-tsc": "^3.2.6"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"vue": ">=3.4.0",
|
|
73
|
+
"vue-router": ">=4.0.0"
|
|
74
|
+
},
|
|
75
|
+
"packageManager": "pnpm@10.33.0",
|
|
76
|
+
"pnpm": {
|
|
77
|
+
"overrides": {
|
|
78
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
|
|
79
|
+
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
82
|
}
|
package/dist/chunk-pbuEa-1d.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
//#region \0rolldown/runtime.js
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __exportAll = (all, no_symbols) => {
|
|
4
|
-
let target = {};
|
|
5
|
-
for (var name in all) __defProp(target, name, {
|
|
6
|
-
get: all[name],
|
|
7
|
-
enumerable: true
|
|
8
|
-
});
|
|
9
|
-
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
10
|
-
return target;
|
|
11
|
-
};
|
|
12
|
-
//#endregion
|
|
13
|
-
export { __exportAll as t };
|