@luigi-project/core-modular 0.0.9-dev.202606150123 → 0.0.9-dev.202606170120
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/core-api/navigation.d.ts +2 -2
- package/luigi.js +11156 -94
- package/luigi.js.map +1 -1
- package/package.json +1 -1
- package/types/navigation.d.ts +17 -0
package/package.json
CHANGED
package/types/navigation.d.ts
CHANGED
|
@@ -278,6 +278,23 @@ export interface NavigationRequestParams extends NavigationRequestBase {
|
|
|
278
278
|
export interface NavigationRequestEvent {
|
|
279
279
|
detail: NavigationRequestBase;
|
|
280
280
|
}
|
|
281
|
+
export interface NavigationRequestDetail {
|
|
282
|
+
drawer: unknown;
|
|
283
|
+
link: string;
|
|
284
|
+
intent: boolean;
|
|
285
|
+
preserveView: string;
|
|
286
|
+
modal: unknown;
|
|
287
|
+
newTab: boolean;
|
|
288
|
+
withoutSync: boolean;
|
|
289
|
+
preventContextUpdate: boolean;
|
|
290
|
+
preventHistoryEntry: boolean;
|
|
291
|
+
fromVirtualTreeRoot: boolean;
|
|
292
|
+
fromContext: boolean;
|
|
293
|
+
fromClosestContext: boolean;
|
|
294
|
+
fromParent: boolean;
|
|
295
|
+
relative: boolean;
|
|
296
|
+
nodeParams: Record<string, string>;
|
|
297
|
+
}
|
|
281
298
|
/**
|
|
282
299
|
* Configuration for compound web components in Luigi.
|
|
283
300
|
* Compound allows you to layout multiple web components in one micro frontend.
|