@ieeesa-npm/groups 0.12.4 → 0.12.6
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/components/tree-view/tree-view.component.mjs +8 -14
- package/esm2022/lib/groups.component.mjs +22 -13
- package/esm2022/lib/services/groups.service.mjs +6 -3
- package/fesm2022/ieeesa-npm-groups.mjs +32 -26
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/components/tree-view/tree-view.component.d.ts +1 -1
- package/lib/groups.component.d.ts +2 -2
- package/lib/services/groups.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -283,7 +283,7 @@ export declare class TreeViewComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
283
283
|
*/
|
|
284
284
|
trackByFn(index: number, iconButton: IconButton): number;
|
|
285
285
|
/**
|
|
286
|
-
* Sets indentation based on the node level
|
|
286
|
+
* Sets indentation based on the node level.
|
|
287
287
|
* @param {GroupNode} node
|
|
288
288
|
* @return {{ [key: string]: string }}
|
|
289
289
|
* @memberof TreeViewComponent
|
|
@@ -102,12 +102,12 @@ export declare class GroupsComponent implements OnInit, OnDestroy {
|
|
|
102
102
|
* Sets the dialog options for edit user roles and calls openModal method.
|
|
103
103
|
* @memberof GroupsComponent
|
|
104
104
|
*/
|
|
105
|
-
openEditUserRolesModal(): void;
|
|
105
|
+
openEditUserRolesModal(selectedGroupInfo: GroupInfo): void;
|
|
106
106
|
/**
|
|
107
107
|
* Sets the dialog options for add users modal and calls openModal method.
|
|
108
108
|
* @memberof GroupsComponent
|
|
109
109
|
*/
|
|
110
|
-
openAddUserRosterModal(): void;
|
|
110
|
+
openAddUserRosterModal(selectedGroupInfo: GroupInfo): void;
|
|
111
111
|
/**
|
|
112
112
|
* Sets the dialog options for users modal and calls openModal method.
|
|
113
113
|
* @param {GroupInfo} group
|
|
@@ -337,7 +337,7 @@ export declare class GroupsService {
|
|
|
337
337
|
* @return {Observable<GetGroupUsersResponse>}
|
|
338
338
|
* @memberof GroupsService
|
|
339
339
|
*/
|
|
340
|
-
groupsByNameAcronym(searchTerm: string): Observable<GetGroupResponse>;
|
|
340
|
+
groupsByNameAcronym(searchTerm: string, filteredGroupType?: number): Observable<GetGroupResponse>;
|
|
341
341
|
/**
|
|
342
342
|
* Sets the user group permissions
|
|
343
343
|
* @param {GroupPermission[]} userGroupPermissions
|