@netgrif/components-core 6.4.0-beta.3 → 6.4.0-beta.4
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/esm2020/lib/navigation/navigation-double-drawer/abstract-navigation-double-drawer.mjs +45 -1
- package/fesm2015/netgrif-components-core.mjs +460 -422
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +462 -419
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/navigation/navigation-double-drawer/abstract-navigation-double-drawer.d.ts +12 -0
- package/package.json +1 -1
|
@@ -78,6 +78,10 @@ export declare abstract class AbstractNavigationDoubleDrawerComponent implements
|
|
|
78
78
|
* List of hidden items
|
|
79
79
|
* */
|
|
80
80
|
moreItems: Array<NavigationItem>;
|
|
81
|
+
/**
|
|
82
|
+
* List of custom items in more menu
|
|
83
|
+
* */
|
|
84
|
+
hiddenCustomItems: Array<NavigationItem>;
|
|
81
85
|
itemsOrder: MenuOrder;
|
|
82
86
|
protected _breakpointSubscription: Subscription;
|
|
83
87
|
protected _currentNodeSubscription: Subscription;
|
|
@@ -91,6 +95,11 @@ export declare abstract class AbstractNavigationDoubleDrawerComponent implements
|
|
|
91
95
|
nodeLoading$: LoadingEmitter;
|
|
92
96
|
protected _configLeftMenu: ConfigDoubleMenu;
|
|
93
97
|
protected _configRightMenu: ConfigDoubleMenu;
|
|
98
|
+
protected _childCustomViews: {
|
|
99
|
+
[uri: string]: {
|
|
100
|
+
[key: string]: NavigationItem;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
94
103
|
protected constructor(_router: Router, _activatedRoute: ActivatedRoute, _breakpoint: BreakpointObserver, _languageService: LanguageService, _translateService: TranslateService, _userService: UserService, _accessService: AccessService, _log: LoggerService, _config: ConfigurationService, _uriService: UriService, _impersonationUserSelect: ImpersonationUserSelectService, _impersonation: ImpersonationService, _dynamicRoutingService: DynamicNavigationRouteProviderService);
|
|
95
104
|
ngOnInit(): void;
|
|
96
105
|
get currentNode(): UriNodeResource;
|
|
@@ -128,6 +137,7 @@ export declare abstract class AbstractNavigationDoubleDrawerComponent implements
|
|
|
128
137
|
loadMoreItems(): void;
|
|
129
138
|
isAscending(): boolean;
|
|
130
139
|
switchOrder(): void;
|
|
140
|
+
protected resolveCustomViewsInRightSide(): void;
|
|
131
141
|
protected resolveItemCaseToNavigationItem(itemCase: Case): NavigationItem | undefined;
|
|
132
142
|
private getTranslation;
|
|
133
143
|
protected resolveAccessRoles(filter: Case, roleType: string): Array<RoleAccess> | undefined;
|
|
@@ -142,6 +152,8 @@ export declare abstract class AbstractNavigationDoubleDrawerComponent implements
|
|
|
142
152
|
uriNodeTrackBy(index: number, node: UriNodeResource): string;
|
|
143
153
|
itemsTrackBy(index: number, item: NavigationItem): string;
|
|
144
154
|
onResizeEvent(event: ResizeEvent): void;
|
|
155
|
+
protected resolveUriForChildViews(configPath: string, childView: View): void;
|
|
156
|
+
protected resolveHiddenMenuItemFromChildViews(configPath: string, childView: View): void;
|
|
145
157
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractNavigationDoubleDrawerComponent, never>;
|
|
146
158
|
static ɵcmp: i0.ɵɵComponentDeclaration<AbstractNavigationDoubleDrawerComponent, "ncc-abstract-navigation-double-drawer", never, { "portalLeftMenu": "portalLeftMenu"; "portalRightMenu": "portalRightMenu"; "imageRouterLink": "imageRouterLink"; "imageAlt": "imageAlt"; "image": "image"; "profileRouterLink": "profileRouterLink"; "includeUser": "includeUser"; "includeLanguage": "includeLanguage"; "includeMoreMenu": "includeMoreMenu"; "includeImpersonation": "includeImpersonation"; "allClosable": "allClosable"; "folderIcon": "folderIcon"; "openedFolderIcon": "openedFolderIcon"; "filterIcon": "filterIcon"; "foldersCategoryName": "foldersCategoryName"; "viewsCategoryName": "viewsCategoryName"; }, {}, never, never>;
|
|
147
159
|
}
|
package/package.json
CHANGED