@resolveio/client-lib-core 21.0.10 → 21.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.0.10",
3
+ "version": "21.0.12",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -761,7 +761,7 @@ interface NavbarMainTabLinkModel {
761
761
  role: string;
762
762
  }
763
763
 
764
- declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit {
764
+ declare class NavbarMainComponent extends BaseComponent implements OnInit, AfterViewInit, OnDestroy {
765
765
  private _services;
766
766
  private auth;
767
767
  private _ds;
@@ -777,15 +777,21 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
777
777
  user: UserModel;
778
778
  collapseShowing: boolean;
779
779
  client: string;
780
+ dropdownLefts: {
781
+ [label: string]: number;
782
+ };
780
783
  isResolveIO: boolean;
781
784
  standardProgram: boolean;
782
785
  tourStarted: boolean;
786
+ private dropdownLeftTimer;
787
+ private dropdownLeftTimeout;
783
788
  scrollRightInterval: any;
784
789
  scrollLeftInterval: any;
785
790
  isDemo: boolean;
786
791
  constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService, _cdRef: ChangeDetectorRef);
787
792
  ngOnInit(): void;
788
793
  ngAfterViewInit(): void;
794
+ ngOnDestroy(): void;
789
795
  logout(): Promise<void>;
790
796
  login(): void;
791
797
  hasScrolled(): boolean;