@gloww/gloww 20.0.0-beta.46 → 20.0.0-beta.47
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/fesm2022/gloww-gloww.mjs +12 -7
- package/fesm2022/gloww-gloww.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -600,8 +600,11 @@ declare class UserMenuComponent implements OnInit {
|
|
|
600
600
|
showMenuUser: boolean;
|
|
601
601
|
connected: boolean;
|
|
602
602
|
oAuthProviders: string[];
|
|
603
|
+
private currentUserSubscription;
|
|
603
604
|
constructor(authenticationService: AuthenticationService, dialog: MatDialog, router: Router);
|
|
604
605
|
ngOnInit(): void;
|
|
606
|
+
ngOnDestroy(): void;
|
|
607
|
+
private setCurrentUser;
|
|
605
608
|
Logout(): void;
|
|
606
609
|
ChangePassword(): void;
|
|
607
610
|
toggleMenuUser(): void;
|