@resolveio/client-lib-core 21.0.12 → 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
|
@@ -766,7 +766,6 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
|
|
|
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;
|
|
@@ -777,18 +776,14 @@ declare class NavbarMainComponent extends BaseComponent implements OnInit, After
|
|
|
777
776
|
user: UserModel;
|
|
778
777
|
collapseShowing: boolean;
|
|
779
778
|
client: string;
|
|
780
|
-
dropdownLefts: {
|
|
781
|
-
[label: string]: number;
|
|
782
|
-
};
|
|
783
779
|
isResolveIO: boolean;
|
|
784
780
|
standardProgram: boolean;
|
|
785
781
|
tourStarted: boolean;
|
|
786
782
|
private dropdownLeftTimer;
|
|
787
|
-
private dropdownLeftTimeout;
|
|
788
783
|
scrollRightInterval: any;
|
|
789
784
|
scrollLeftInterval: any;
|
|
790
785
|
isDemo: boolean;
|
|
791
|
-
constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService
|
|
786
|
+
constructor(_services: ProviderService, auth: AuthService, _ds: DialogService, _app: CoreService);
|
|
792
787
|
ngOnInit(): void;
|
|
793
788
|
ngAfterViewInit(): void;
|
|
794
789
|
ngOnDestroy(): void;
|
|
@@ -1578,7 +1573,7 @@ interface CanComponentDeactivate {
|
|
|
1578
1573
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
1579
1574
|
}
|
|
1580
1575
|
declare class CanDeactivateGuard {
|
|
1581
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
1576
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
1582
1577
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
1583
1578
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
1584
1579
|
}
|