@luigi-project/core-modular 0.0.1-dev.202601120832 → 0.0.1-dev.202601130035
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/luigi.js +1 -1
- package/luigi.js.map +1 -1
- package/package.json +1 -1
- package/services/navigation.service.d.ts +4 -2
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ export interface PathData {
|
|
|
74
74
|
pathParams: Record<string, any>;
|
|
75
75
|
}
|
|
76
76
|
export interface Node {
|
|
77
|
-
|
|
77
|
+
altText?: string;
|
|
78
78
|
anonymousAccess?: any;
|
|
79
79
|
category?: any;
|
|
80
80
|
children?: Node[];
|
|
@@ -88,6 +88,7 @@ export interface Node {
|
|
|
88
88
|
hideFromNav?: boolean;
|
|
89
89
|
hideSideNav?: boolean;
|
|
90
90
|
icon?: string;
|
|
91
|
+
isRootNode?: boolean;
|
|
91
92
|
keepSelectedForChildren?: boolean;
|
|
92
93
|
label?: string;
|
|
93
94
|
onNodeActivation?: (node: Node) => boolean | void;
|
|
@@ -97,7 +98,7 @@ export interface Node {
|
|
|
97
98
|
tabNav?: boolean;
|
|
98
99
|
tooltip?: string;
|
|
99
100
|
viewUrl?: string;
|
|
100
|
-
|
|
101
|
+
visibleForFeatureToggles?: string[];
|
|
101
102
|
}
|
|
102
103
|
export interface PageErrorHandler {
|
|
103
104
|
timeout: number;
|
|
@@ -106,6 +107,7 @@ export interface PageErrorHandler {
|
|
|
106
107
|
errorFn?: (node?: Node) => void;
|
|
107
108
|
}
|
|
108
109
|
export interface Category {
|
|
110
|
+
altText?: string;
|
|
109
111
|
collabsible?: boolean;
|
|
110
112
|
icon?: string;
|
|
111
113
|
id: string;
|