ngx-vector-components 0.0.10 → 0.0.13
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/esm2020/lib/components/menu/menu.component.mjs +24 -21
- package/esm2020/lib/services/auth.service.mjs +2 -2
- package/fesm2015/ngx-vector-components.mjs +24 -21
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +24 -21
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/components/menu/menu.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { AppName, MenuItem } from '../../models';
|
|
4
4
|
import { MenuService, ProfileService, StorageService } from '../../services';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class MenuComponent implements OnDestroy {
|
|
6
|
+
export declare class MenuComponent implements OnInit, OnDestroy {
|
|
7
7
|
private menuService;
|
|
8
8
|
private router;
|
|
9
9
|
private profileService;
|
|
@@ -20,7 +20,7 @@ export declare class MenuComponent implements OnDestroy {
|
|
|
20
20
|
appNameLabel: any;
|
|
21
21
|
adminOption: MenuItem | undefined;
|
|
22
22
|
apps: typeof AppName;
|
|
23
|
-
onFinishMenuOptionsConfig: EventEmitter<
|
|
23
|
+
onFinishMenuOptionsConfig: EventEmitter<any>;
|
|
24
24
|
set opened(opened: boolean);
|
|
25
25
|
get opened(): boolean;
|
|
26
26
|
get hasFintechAdminPermission(): boolean;
|
|
@@ -31,6 +31,7 @@ export declare class MenuComponent implements OnDestroy {
|
|
|
31
31
|
private subscription;
|
|
32
32
|
private currentWindowWidth;
|
|
33
33
|
constructor(menuService: MenuService, router: Router, profileService: ProfileService, storageService: StorageService, environment: any, currentApp: string);
|
|
34
|
+
ngOnInit(): void;
|
|
34
35
|
onResize(): void;
|
|
35
36
|
handleKeyboardEvent(): void;
|
|
36
37
|
ngOnDestroy(): void;
|