@ieeesa-npm/tenants 0.2.7 → 0.2.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/esm2022/lib/assets/constants.json +49 -1
- package/esm2022/lib/components/create-modify-role/create-modify-role.component.mjs +108 -69
- package/esm2022/lib/components/create-tenant-application/create-tenant-application.component.mjs +3 -3
- package/esm2022/lib/components/tenant-basic-details/tenant-basic-details.component.mjs +3 -3
- package/esm2022/lib/components/view-tenant-details/view-tenant-details.component.mjs +82 -4
- package/esm2022/lib/components/view-tenant-group-types/view-tenant-group-types.component.mjs +173 -0
- package/esm2022/lib/components/view-tenants-list/view-tenants-list.component.mjs +3 -3
- package/esm2022/lib/models/roles-and-permissions.model.mjs +1 -1
- package/esm2022/lib/models/view-tenant-group-types.model.mjs +9 -0
- package/esm2022/lib/services/tenant-applications.service.mjs +83 -5
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/ieeesa-npm-tenants.mjs +498 -83
- package/fesm2022/ieeesa-npm-tenants.mjs.map +1 -1
- package/lib/components/create-modify-role/create-modify-role.component.d.ts +34 -25
- package/lib/components/tenant-basic-details/tenant-basic-details.component.d.ts +37 -0
- package/lib/components/view-tenant-details/view-tenant-details.component.d.ts +19 -0
- package/lib/components/view-tenant-group-types/view-tenant-group-types.component.d.ts +57 -0
- package/lib/models/roles-and-permissions.model.d.ts +6 -5
- package/lib/models/view-tenant-group-types.model.d.ts +27 -0
- package/lib/services/tenant-applications.service.d.ts +58 -9
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -138,7 +138,8 @@
|
|
|
138
138
|
"success": {
|
|
139
139
|
"submission1": "New",
|
|
140
140
|
"submission2": "has been successfully added to the",
|
|
141
|
-
"submission3": "You can map the permissions for the newly added role."
|
|
141
|
+
"submission3": "You can map the permissions for the newly added role.",
|
|
142
|
+
"modify": "has been successfully edited for the"
|
|
142
143
|
}
|
|
143
144
|
},
|
|
144
145
|
"supportText": {
|
|
@@ -293,6 +294,53 @@
|
|
|
293
294
|
}
|
|
294
295
|
}
|
|
295
296
|
},
|
|
297
|
+
"viewGroupTypes": {
|
|
298
|
+
"actionButtonLabels": {
|
|
299
|
+
"addGroupType": "Add Group Type"
|
|
300
|
+
},
|
|
301
|
+
"actionMenuItems": [
|
|
302
|
+
{
|
|
303
|
+
"id": 1,
|
|
304
|
+
"label": "Edit Group Type",
|
|
305
|
+
"ariaLabel": "Edit Group Type",
|
|
306
|
+
"iconURL": "",
|
|
307
|
+
"toolTip": "",
|
|
308
|
+
"isToolTipNeeded": false,
|
|
309
|
+
"isDisabled": false
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": 2,
|
|
313
|
+
"label": "Delete Group Type",
|
|
314
|
+
"ariaLabel": "Delete Group Type",
|
|
315
|
+
"iconURL": "",
|
|
316
|
+
"toolTip": "",
|
|
317
|
+
"isToolTipNeeded": false,
|
|
318
|
+
"isDisabled": false
|
|
319
|
+
}
|
|
320
|
+
],
|
|
321
|
+
"tableColumns": {
|
|
322
|
+
"heading": {
|
|
323
|
+
"groupType": "Group Type",
|
|
324
|
+
"rosterType": "Roster Type",
|
|
325
|
+
"description": "Description",
|
|
326
|
+
"applicableRoles": "Applicable Roles",
|
|
327
|
+
"settings": "Settings",
|
|
328
|
+
"action": "Action"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"settings": {
|
|
332
|
+
"allowSubGroup": "Allow Sub-Groups",
|
|
333
|
+
"allowRoster": "Enable Rosters",
|
|
334
|
+
"allowAlternateVoting": "Allow Alternate Voting",
|
|
335
|
+
"hasClassification": "Has Classification",
|
|
336
|
+
"allowEdit": "Allow Edit",
|
|
337
|
+
"allowDelete": "Allow Delete"
|
|
338
|
+
},
|
|
339
|
+
"errors": {
|
|
340
|
+
"2050": "Tenant Details not found.",
|
|
341
|
+
"1010": "Group Type(s) not found."
|
|
342
|
+
}
|
|
343
|
+
},
|
|
296
344
|
"routeConfigPath": {
|
|
297
345
|
"viewTenants": "tenants/view-tenants-list",
|
|
298
346
|
"viewTenantDetails": "tenants/view-tenant-details"
|