ichec-angular-core 0.2.5 → 0.2.6
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
|
@@ -433,13 +433,12 @@ interface NavGroup {
|
|
|
433
433
|
options: NavOption[];
|
|
434
434
|
}
|
|
435
435
|
declare class LeftNavService {
|
|
436
|
-
activeOptions: Set<NavOption
|
|
436
|
+
activeOptions: _angular_core.WritableSignal<Set<NavOption>>;
|
|
437
437
|
private _groups;
|
|
438
438
|
private _defaultOptions;
|
|
439
439
|
private _groupService;
|
|
440
440
|
constructor();
|
|
441
441
|
onGroupsUpdated(groups: IGroupList[]): void;
|
|
442
|
-
addNavGroup(group: NavGroup): void;
|
|
443
442
|
setDefaultOptions(options: NavOption[]): void;
|
|
444
443
|
setGroups(groups: NavGroup[]): void;
|
|
445
444
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LeftNavService, never>;
|
|
@@ -464,9 +463,9 @@ declare class TopBarComponent {
|
|
|
464
463
|
}
|
|
465
464
|
|
|
466
465
|
declare class LeftNavComponent {
|
|
467
|
-
|
|
466
|
+
protected _leftNavService: LeftNavService;
|
|
468
467
|
sideNavContent: _angular_core.Signal<MatSidenavContent | undefined>;
|
|
469
|
-
getOptions(): Set<ichec_angular_core.NavOption
|
|
468
|
+
getOptions(): _angular_core.WritableSignal<Set<ichec_angular_core.NavOption>>;
|
|
470
469
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LeftNavComponent, never>;
|
|
471
470
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LeftNavComponent, "lib-left-nav", never, {}, {}, never, never, true, never>;
|
|
472
471
|
}
|