@resolveio/client-lib-core 21.0.19 → 21.0.21

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.19",
3
+ "version": "21.0.21",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -822,12 +822,17 @@ declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnD
822
822
  currentRoute: String;
823
823
  routerEvents$: Subscription[];
824
824
  tourStarted: boolean;
825
+ drawerOpen: boolean;
826
+ isDeviceWidth: boolean;
825
827
  constructor(_cdRef: ChangeDetectorRef, _services: ProviderService);
826
828
  ngOnInit(): void;
829
+ onResize(): void;
827
830
  ngOnDestroy(): void;
828
831
  selectTabFromRouter(): void;
829
- tabClass(tab: NavbarTabModel): "active" | "";
832
+ tabClass(tab: NavbarTabModel): "" | "active";
830
833
  handleNavLinkClick(event: MouseEvent): void;
834
+ onNavLinkClick(event: MouseEvent): void;
835
+ toggleDrawer(): void;
831
836
  navigateTo(tab: NavbarTabModel): void;
832
837
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarModuleComponent, never>;
833
838
  static ɵcmp: i0.ɵɵComponentDeclaration<NavbarModuleComponent, "navbar-module", never, { "sideNavHeight": { "alias": "sideNavHeight"; "required": false; }; "sideNavWidth": { "alias": "sideNavWidth"; "required": false; }; }, {}, never, never, false, never>;
@@ -1683,7 +1688,7 @@ interface CanComponentDeactivate {
1683
1688
  canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
1684
1689
  }
1685
1690
  declare class CanDeactivateGuard {
1686
- canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
1691
+ canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
1687
1692
  static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
1688
1693
  static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
1689
1694
  }