@robot-admin/layout 2.0.2 → 2.2.0
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 +344 -604
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +590 -0
- package/dist/index.js +2198 -431
- package/dist/index.js.map +1 -1
- package/package.json +76 -72
- package/src/styles/layouts.scss +706 -0
- package/src/styles/settings.scss +385 -385
package/package.json
CHANGED
|
@@ -1,72 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@robot-admin/layout",
|
|
3
|
-
"version": "2.0
|
|
4
|
-
"description": "Layout and settings management system for Robot Admin - v2.0 with decoupled architecture",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"vue",
|
|
8
|
-
"layout",
|
|
9
|
-
"settings",
|
|
10
|
-
"pinia",
|
|
11
|
-
"admin"
|
|
12
|
-
],
|
|
13
|
-
"author": "ChenYu <ycyplus@gmail.com>",
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://github.com/ChenyCHENYU/robot-admin-packages",
|
|
18
|
-
"directory": "packages/layout"
|
|
19
|
-
},
|
|
20
|
-
"main": "./dist/index.cjs",
|
|
21
|
-
"module": "./dist/index.js",
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"*.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"./
|
|
35
|
-
"./
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"@robot-admin/theme": "
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@robot-admin/layout",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "Layout and settings management system for Robot Admin - v2.0 with decoupled architecture",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"vue",
|
|
8
|
+
"layout",
|
|
9
|
+
"settings",
|
|
10
|
+
"pinia",
|
|
11
|
+
"admin"
|
|
12
|
+
],
|
|
13
|
+
"author": "ChenYu <ycyplus@gmail.com>",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/ChenyCHENYU/robot-admin-packages",
|
|
18
|
+
"directory": "packages/layout"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.cjs",
|
|
21
|
+
"module": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"style": "./dist/index.css",
|
|
24
|
+
"sideEffects": [
|
|
25
|
+
"*.css",
|
|
26
|
+
"*.scss"
|
|
27
|
+
],
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/index.js",
|
|
32
|
+
"require": "./dist/index.cjs"
|
|
33
|
+
},
|
|
34
|
+
"./style": "./dist/index.css",
|
|
35
|
+
"./css": "./dist/index.css",
|
|
36
|
+
"./style.scss": "./src/styles/settings.scss",
|
|
37
|
+
"./layouts.scss": "./src/styles/layouts.scss"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"src/styles",
|
|
42
|
+
"README.md"
|
|
43
|
+
],
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"dev": "vite build --watch",
|
|
50
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
51
|
+
"clean": "rm -rf dist",
|
|
52
|
+
"type-check": "vue-tsc --noEmit",
|
|
53
|
+
"prepublishOnly": "bun run build"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"vue": "^3.4.0",
|
|
57
|
+
"vue-router": "^4.0.0",
|
|
58
|
+
"pinia": "^2.0.0 || ^3.0.0",
|
|
59
|
+
"naive-ui": "^2.38.0",
|
|
60
|
+
"@robot-admin/theme": "^0.1.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@robot-admin/theme": "workspace:*",
|
|
64
|
+
"@types/node": "^22.13.9",
|
|
65
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
66
|
+
"naive-ui": "^2.41.0",
|
|
67
|
+
"pinia": "^3.0.1",
|
|
68
|
+
"sass": "^1.83.4",
|
|
69
|
+
"typescript": "~5.8.0",
|
|
70
|
+
"vite": "^7.0.0",
|
|
71
|
+
"vite-plugin-dts": "^4.3.0",
|
|
72
|
+
"vue": "^3.5.13",
|
|
73
|
+
"vue-router": "^4.5.0",
|
|
74
|
+
"vue-tsc": "^2.1.6"
|
|
75
|
+
}
|
|
76
|
+
}
|