@ieeesa-npm/groups 0.4.9 → 0.5.1
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/view-roster/view-roster.component.mjs +2 -2
- package/esm2022/lib/groups.component.mjs +2 -5
- package/fesm2022/ieeesa-npm-groups.mjs +2 -5
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/components/view-roster/view-roster.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { SortDirection } from '@angular/material/sort';
|
|
4
4
|
import { TableColumnSchema, TableActions, CheckboxOption, ChipOption } from '@ieeesa-npm/presentation';
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* @class ViewRosterComponent
|
|
13
13
|
* @implements {OnDestroy}
|
|
14
14
|
*/
|
|
15
|
-
export declare class ViewRosterComponent implements
|
|
15
|
+
export declare class ViewRosterComponent implements AfterViewInit, OnDestroy {
|
|
16
16
|
private groupService;
|
|
17
17
|
private alertService;
|
|
18
18
|
private cdr;
|
|
@@ -34,7 +34,7 @@ export declare class ViewRosterComponent implements OnInit, OnDestroy {
|
|
|
34
34
|
* Show add new user success message when canShowMessage is set true
|
|
35
35
|
* @memberof ViewRosterComponent
|
|
36
36
|
*/
|
|
37
|
-
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
38
|
/**
|
|
39
39
|
* Gets the group users by calling getGroupUsers() from groupService and sets tableData to display the users in a grid.
|
|
40
40
|
* @memberof ViewRosterComponent
|