ngx-histaff-alpha 2.7.2 → 2.7.4

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.
@@ -30,8 +30,10 @@ export declare class NavigatorComponent implements AfterViewInit, OnDestroy {
30
30
  private authService;
31
31
  private alertService;
32
32
  private appConfigService;
33
+ wideMode$: BehaviorSubject<boolean>;
33
34
  mainMenu: ElementRef;
34
35
  listenerFn: () => void;
36
+ lang: string;
35
37
  items: INavigatorItem[];
36
38
  logoTemplate: TemplateRef<any>;
37
39
  rightPartHeadeMenuItem: INavigatorItem;
@@ -47,6 +49,7 @@ export declare class NavigatorComponent implements AfterViewInit, OnDestroy {
47
49
  searchStream$: BehaviorSubject<string>;
48
50
  menuClickedItem: INavigatorItem;
49
51
  checkedLoadingMenu: boolean;
52
+ wideMode: boolean;
50
53
  constructor(navigatorService: NavigatorService, sysMenuService: SysMenuService, recursiveService: RecursiveService, router: Router, menuService: MenuService, organizationService: OrganizationService, layoutService: LayoutService, mls: MultiLanguageService, authService: AuthService, alertService: AlertService, appConfigService: AppConfigService);
51
54
  ngOnInit(): void;
52
55
  ngAfterViewInit(): void;
@@ -58,6 +61,6 @@ export declare class NavigatorComponent implements AfterViewInit, OnDestroy {
58
61
  onItemClick(item: INavigatorItem): void;
59
62
  ngOnDestroy(): void;
60
63
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigatorComponent, never>;
61
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigatorComponent, "corelib-navigator", never, { "logoTemplate": { "alias": "logoTemplate"; "required": false; }; "rightPartHeadeMenuItem": { "alias": "rightPartHeadeMenuItem"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; }, {}, never, never, true, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigatorComponent, "corelib-navigator", never, { "wideMode$": { "alias": "wideMode$"; "required": false; }; "logoTemplate": { "alias": "logoTemplate"; "required": false; }; "rightPartHeadeMenuItem": { "alias": "rightPartHeadeMenuItem"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; }, {}, never, never, true, never>;
62
65
  }
63
66
  export {};
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
1
+ import { AfterViewInit, OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
2
  import { Router, ActivatedRoute } from '@angular/router';
3
3
  import { BehaviorSubject, Subscription } from 'rxjs';
4
4
  import { EnumTranslateKey } from "alpha-global-constants";
@@ -15,6 +15,8 @@ export declare class MenuComponent implements OnInit, AfterViewInit, OnDestroy {
15
15
  private route;
16
16
  private appService;
17
17
  private layoutService;
18
+ isWebapp: TemplateRef<any>;
19
+ isPortal: TemplateRef<any>;
18
20
  title: EnumTranslateKey;
19
21
  editMode: EnumCoreTreeGridEditMode;
20
22
  treeGridHeight: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-histaff-alpha",
3
- "version": "2.7.2",
3
+ "version": "2.7.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"