@luigi-project/core-modular 0.0.1-dev.202601220041 → 0.0.1-dev.202601240039

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.202601220041"
21
+ "version": "0.0.1-dev.202601240039"
22
22
  }
@@ -101,7 +101,7 @@ export interface Node {
101
101
  pathSegment?: string;
102
102
  runTimeErrorHandler?: RunTimeErrorHandler;
103
103
  tabNav?: boolean;
104
- tooltip?: string;
104
+ tooltipText?: string;
105
105
  viewUrl?: string;
106
106
  visibleForFeatureToggles?: string[];
107
107
  }
@@ -116,7 +116,7 @@ export interface RunTimeErrorHandler {
116
116
  }
117
117
  export interface Category {
118
118
  altText?: string;
119
- collabsible?: boolean;
119
+ collapsible?: boolean;
120
120
  icon?: string;
121
121
  id: string;
122
122
  isGroup?: boolean;
@@ -125,9 +125,13 @@ export interface Category {
125
125
  tooltip?: string;
126
126
  }
127
127
  export interface NavItem {
128
- node?: Node;
128
+ altText?: string;
129
129
  category?: Category;
130
+ icon?: string;
131
+ node?: Node;
132
+ label?: string;
130
133
  selected?: boolean;
134
+ tooltip?: string;
131
135
  }
132
136
  export interface TabNavData {
133
137
  selectedNode?: any;