@befly-addon/admin 1.0.18 → 1.0.19

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.
Files changed (2) hide show
  1. package/menu.json +36 -0
  2. package/package.json +5 -4
package/menu.json ADDED
@@ -0,0 +1,36 @@
1
+ [
2
+ {
3
+ "name": "首页",
4
+ "path": "/",
5
+ "sort": 1
6
+ },
7
+ {
8
+ "name": "人员管理",
9
+ "path": "/_people",
10
+ "sort": 2,
11
+ "children": [
12
+ {
13
+ "name": "管理员管理",
14
+ "path": "/admin",
15
+ "sort": 2
16
+ }
17
+ ]
18
+ },
19
+ {
20
+ "name": "权限设置",
21
+ "path": "/_permission",
22
+ "sort": 3,
23
+ "children": [
24
+ {
25
+ "name": "角色管理",
26
+ "path": "/role",
27
+ "sort": 5
28
+ }
29
+ ]
30
+ },
31
+ {
32
+ "name": "字典管理",
33
+ "path": "/dict",
34
+ "sort": 6
35
+ }
36
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@befly-addon/admin",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Befly - 管理后台功能组件",
5
5
  "type": "module",
6
6
  "private": false,
@@ -21,7 +21,8 @@
21
21
  "addon.config.json",
22
22
  "util.ts",
23
23
  "README.md",
24
- "package.json"
24
+ "package.json",
25
+ "menu.json"
25
26
  ],
26
27
  "keywords": [
27
28
  "befly",
@@ -38,8 +39,8 @@
38
39
  "url": "https://github.com/chenbimo/befly.git",
39
40
  "directory": "packages/addon-admin"
40
41
  },
41
- "gitHead": "6e8ca2ec311fcc99e89adc35c151e9a63e7e8e0e",
42
+ "gitHead": "492e46d692787e6d141659fba27c26e030cd1181",
42
43
  "dependencies": {
43
- "befly": "3.8.9"
44
+ "befly": "3.8.10"
44
45
  }
45
46
  }