@resolveio/client-lib-core 21.0.11 → 21.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.0.11",
3
+ "version": "21.0.13",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -761,12 +761,11 @@ 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;
768
768
  private _app;
769
- private _cdRef;
770
769
  dropdowns: QueryList<any>;
771
770
  scrollable: ElementRef;
772
771
  logo: string;
@@ -780,12 +779,14 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
780
779
  isResolveIO: boolean;
781
780
  standardProgram: boolean;
782
781
  tourStarted: boolean;
782
+ private dropdownLeftTimer;
783
783
  scrollRightInterval: any;
784
784
  scrollLeftInterval: any;
785
785
  isDemo: boolean;
786
- constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService, _cdRef: ChangeDetectorRef);
786
+ constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService);
787
787
  ngOnInit(): void;
788
788
  ngAfterViewInit(): void;
789
+ ngOnDestroy(): void;
789
790
  logout(): Promise<void>;
790
791
  login(): void;
791
792
  hasScrolled(): boolean;
@@ -1572,7 +1573,7 @@ interface CanComponentDeactivate {
1572
1573
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
1573
1574
  }
1574
1575
  declare class CanDeactivateGuard {
1575
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
1576
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
1576
1577
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
1577
1578
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1578
1579
  }