@resolveio/client-lib-core 21.0.8 → 21.0.9

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.8",
3
+ "version": "21.0.9",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -766,6 +766,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
766
766
  private auth;
767
767
  private _ds;
768
768
  private _app;
769
+ private _cdRef;
769
770
  dropdowns: QueryList<any>;
770
771
  scrollable: ElementRef;
771
772
  logo: string;
@@ -782,7 +783,7 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
782
783
  scrollRightInterval: any;
783
784
  scrollLeftInterval: any;
784
785
  isDemo: boolean;
785
- constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService);
786
+ constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService, _cdRef: ChangeDetectorRef);
786
787
  ngOnInit(): void;
787
788
  ngAfterViewInit(): void;
788
789
  logout(): Promise<void>;
@@ -1571,7 +1572,7 @@ interface CanComponentDeactivate {
1571
1572
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
1572
1573
  }
1573
1574
  declare class CanDeactivateGuard {
1574
- canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
1575
+ canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
1575
1576
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
1576
1577
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1577
1578
  }