@ieeesa-npm/groups 0.5.4 → 0.5.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/assets/constants.json +1 -1
- package/esm2022/lib/components/create-group/create-group.component.mjs +3 -1
- package/esm2022/lib/components/tree-view/tree-view.component.mjs +5 -4
- package/esm2022/lib/components/view-roster/view-roster.component.mjs +29 -9
- package/esm2022/lib/models/group-types.model.mjs +1 -1
- package/esm2022/lib/services/groups.service.mjs +2 -1
- package/fesm2022/ieeesa-npm-groups.mjs +35 -11
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/models/group-types.model.d.ts +1 -0
- package/lib/services/groups.service.d.ts +11 -7
- package/package.json +3 -3
|
@@ -27,6 +27,12 @@ export declare class GroupsService {
|
|
|
27
27
|
"1005": string;
|
|
28
28
|
"1006": string;
|
|
29
29
|
"1007": string;
|
|
30
|
+
/**
|
|
31
|
+
* Sets selected group info.
|
|
32
|
+
* @param {(GroupInfo | undefined)} selectedGroupInfo -selected group info.
|
|
33
|
+
* @param {(GroupInfo | undefined)} [selectedGroupParentInfo] -selected parent group info.
|
|
34
|
+
* @memberof GroupsService
|
|
35
|
+
*/
|
|
30
36
|
"1008": string;
|
|
31
37
|
"1009": string;
|
|
32
38
|
"1010": string;
|
|
@@ -40,7 +46,11 @@ export declare class GroupsService {
|
|
|
40
46
|
"1018": string;
|
|
41
47
|
"1019": string;
|
|
42
48
|
"1020": string;
|
|
43
|
-
"1021": string;
|
|
49
|
+
"1021": string; /**
|
|
50
|
+
* Sets group function type.
|
|
51
|
+
* @param {GroupFunctionType} groupFunctionType -group function type.
|
|
52
|
+
* @memberof GroupsService
|
|
53
|
+
*/
|
|
44
54
|
"1022": string;
|
|
45
55
|
"1023": string;
|
|
46
56
|
"1024": string;
|
|
@@ -51,12 +61,6 @@ export declare class GroupsService {
|
|
|
51
61
|
"1029": string;
|
|
52
62
|
"1030": string;
|
|
53
63
|
"1031": string;
|
|
54
|
-
/**
|
|
55
|
-
* Gets the group users for the given group id.
|
|
56
|
-
* @param {string} groupId
|
|
57
|
-
* @return {Observable<GetGroupUsersResponse>}
|
|
58
|
-
* @memberof GroupsService
|
|
59
|
-
*/
|
|
60
64
|
"1032": string;
|
|
61
65
|
"2001": string;
|
|
62
66
|
"2002": string;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ieeesa-npm/groups",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^16.1.0",
|
|
6
6
|
"@angular/core": "^16.1.0",
|
|
7
|
-
"@ieeesa-npm/presentation": "^0.7.
|
|
7
|
+
"@ieeesa-npm/presentation": "^0.7.1",
|
|
8
8
|
"@ieeesa-npm/shared-styles": "^0.1.7",
|
|
9
|
-
"@ieeesa-npm/utility": "^0.6.
|
|
9
|
+
"@ieeesa-npm/utility": "^0.6.3"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|