@resolveio/client-lib-core 21.0.18 → 21.0.19
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
|
@@ -278,8 +278,8 @@ declare class OfflineManagerService {
|
|
|
278
278
|
find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
|
|
279
279
|
findOne(collectionName: string, query: Object): any;
|
|
280
280
|
insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
|
|
281
|
-
updateDocument(collectionName: string, data: Object):
|
|
282
|
-
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number):
|
|
281
|
+
updateDocument(collectionName: string, data: Object): 0 | 1;
|
|
282
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
|
|
283
283
|
removeDocument(collectionName: string, id: string): void;
|
|
284
284
|
dropCollection(collectionName: any): void;
|
|
285
285
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
@@ -826,7 +826,8 @@ declare class NavbarModuleComponent extends BaseComponent implements OnInit, OnD
|
|
|
826
826
|
ngOnInit(): void;
|
|
827
827
|
ngOnDestroy(): void;
|
|
828
828
|
selectTabFromRouter(): void;
|
|
829
|
-
tabClass(tab: NavbarTabModel): "" | "
|
|
829
|
+
tabClass(tab: NavbarTabModel): "active" | "";
|
|
830
|
+
handleNavLinkClick(event: MouseEvent): void;
|
|
830
831
|
navigateTo(tab: NavbarTabModel): void;
|
|
831
832
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarModuleComponent, never>;
|
|
832
833
|
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarModuleComponent, "navbar-module", never, { "sideNavHeight": { "alias": "sideNavHeight"; "required": false; }; "sideNavWidth": { "alias": "sideNavWidth"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1682,7 +1683,7 @@ interface CanComponentDeactivate {
|
|
|
1682
1683
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
1683
1684
|
}
|
|
1684
1685
|
declare class CanDeactivateGuard {
|
|
1685
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
1686
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
1686
1687
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
1687
1688
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
1688
1689
|
}
|