@asaleh37/ui-base 25.8.9-3 → 25.8.10
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/locales/arabic/adminLocalsAr.json +2 -1
- package/src/locales/english/adminLocalsEn.json +1 -0
- package/src/navigationItems/Administration/adminNavigationItems.tsx +8 -0
package/package.json
CHANGED
|
@@ -46,7 +46,8 @@
|
|
|
46
46
|
"ORGANIZATION_UNIT_TYPE_UNIT_TYPE_CODE": "Unit type code",
|
|
47
47
|
"ORGANIZATION_UNIT_TYPE_UNIT_TYPE_EN_NAME": "Unit type en name",
|
|
48
48
|
"PERSON_SINGULAR": "person",
|
|
49
|
-
"PERSON_PLURAL": "
|
|
49
|
+
"PERSON_PLURAL": "المستخدمين",
|
|
50
|
+
"ROLES": "الصلاحيات",
|
|
50
51
|
"PERSON_EMAIL": "Email",
|
|
51
52
|
"PERSON_EMPLOYEE_AR_NAME": "Employee ar name",
|
|
52
53
|
"PERSON_EMPLOYEE_EN_NAME": "Employee en name",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"ORGANIZATION_RANK_ENABLED": "Enabled",
|
|
27
27
|
"ORGANIZATION_RANK_ORGANIZATION_ID": "Organization id",
|
|
28
28
|
"ORGANIZATION_RANK_RANK_ORDER": "Rank order",
|
|
29
|
+
"ROLES": "System Roles",
|
|
29
30
|
"ORGANIZATION_RANK_RANK_AR_NAME": "Rank ar name",
|
|
30
31
|
"ORGANIZATION_RANK_RANK_CODE": "Rank code",
|
|
31
32
|
"ORGANIZATION_RANK_RANK_EN_NAME": "Rank en name",
|
|
@@ -11,10 +11,18 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
11
11
|
{
|
|
12
12
|
id: "system_admin.Person",
|
|
13
13
|
label: "PERSON_PLURAL",
|
|
14
|
+
authority: "SYSTEM_ADMIN",
|
|
14
15
|
icon: "users",
|
|
15
16
|
action: "NAVIGATION",
|
|
16
17
|
actionPayload: { path: "admin/persons" },
|
|
17
18
|
},
|
|
19
|
+
{
|
|
20
|
+
id: "system_admin.devtools.roles",
|
|
21
|
+
label: "ROLES",
|
|
22
|
+
icon: "tag",
|
|
23
|
+
action: "NAVIGATION",
|
|
24
|
+
actionPayload: { path: "dev/system/roles" },
|
|
25
|
+
},
|
|
18
26
|
{
|
|
19
27
|
id: "development_admin.SystemApplication",
|
|
20
28
|
label: "SYSTEM_APPLICATION_PLURAL",
|