@luigi-project/core-modular 0.0.1-dev.202601120948 → 0.0.1-dev.202601140042

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
@@ -18,5 +18,5 @@
18
18
  "micro-frontends",
19
19
  "microfrontends"
20
20
  ],
21
- "version": "0.0.1-dev.202601120948"
21
+ "version": "0.0.1-dev.202601140042"
22
22
  }
@@ -74,7 +74,7 @@ export interface PathData {
74
74
  pathParams: Record<string, any>;
75
75
  }
76
76
  export interface Node {
77
- visibleForFeatureToggles?: string[];
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
- isRootNode?: boolean;
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;