@ieeesa-npm/groups 0.1.6 → 0.1.8
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/esm2022/lib/assets/constants.json +11 -0
- package/esm2022/lib/components/create-group/create-group.component.mjs +245 -143
- package/esm2022/lib/components/tree-view/tree-view.component.mjs +49 -40
- package/esm2022/lib/groups.component.mjs +97 -83
- package/esm2022/lib/models/edit-group.model.mjs +2 -0
- package/esm2022/lib/models/form-status.model.mjs +7 -0
- package/esm2022/lib/models/group-info.model.mjs +1 -1
- package/esm2022/lib/services/groups.service.mjs +53 -12
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/ieeesa-npm-groups.mjs +454 -270
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/components/create-group/create-group.component.d.ts +51 -13
- package/lib/components/tree-view/tree-view.component.d.ts +4 -3
- package/lib/groups.component.d.ts +32 -61
- package/lib/models/edit-group.model.d.ts +14 -0
- package/lib/models/form-status.model.d.ts +4 -0
- package/lib/models/group-info.model.d.ts +2 -0
- package/lib/services/groups.service.d.ts +41 -18
- package/package.json +4 -4
- package/public-api.d.ts +3 -0
|
@@ -54,6 +54,16 @@
|
|
|
54
54
|
"groupScope": "Enter the scope of the group."
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
+
"editGroup": {
|
|
58
|
+
"ariaLabel": {
|
|
59
|
+
"groupType": "Group type"
|
|
60
|
+
},
|
|
61
|
+
"message": {
|
|
62
|
+
"success": {
|
|
63
|
+
"submission": "Changes saved successfully."
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
57
67
|
"viewGroups": {
|
|
58
68
|
"legend": "Legends:",
|
|
59
69
|
"addGroup": "Add Group",
|
|
@@ -131,6 +141,7 @@
|
|
|
131
141
|
}
|
|
132
142
|
},
|
|
133
143
|
"errors": {
|
|
144
|
+
"ER1000": "Allowed group types are not found for the selected group!",
|
|
134
145
|
"1001": "Group Name already in use.",
|
|
135
146
|
"1002": "Group Short Name already in use.",
|
|
136
147
|
"1003": "Parent Group is inactive for the provided subgroup.",
|