@luigi-project/core-modular 0.0.11-dev.20260710115 → 0.0.11-dev.202607130052

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.
@@ -12,7 +12,8 @@ export declare const RoutingModule: {
12
12
  *
13
13
  * @param searchParams - An object containing key-value pairs of search parameters to be added to the URL.
14
14
  * @param keepBrowserHistory - If `true`, the browser history will be preserved when updating the URL.
15
+ * @param preventLuigiConfigUpdate - If `true`, prevents updating the Luigi configuration when adding search parameters.
15
16
  * @param luigi - The Luigi core instance used to interact with the routing API.
16
17
  */
17
- addSearchParamsFromClient(searchParams: Record<string, any>, keepBrowserHistory: boolean, luigi: Luigi): Promise<void>;
18
+ addSearchParamsFromClient(searchParams: Record<string, any>, keepBrowserHistory: boolean, preventLuigiConfigUpdate: boolean, luigi: Luigi): Promise<void>;
18
19
  };
package/package.json CHANGED
@@ -18,5 +18,5 @@
18
18
  "micro-frontends",
19
19
  "microfrontends"
20
20
  ],
21
- "version": "0.0.11-dev.20260710115"
21
+ "version": "0.0.11-dev.202607130052"
22
22
  }
@@ -203,6 +203,10 @@ export interface LuigiConnector {
203
203
  * no-refcount caveat applies.
204
204
  */
205
205
  removeBackdrop(): void;
206
+ /**
207
+ * Set the collapsed state of the left side navigation.
208
+ */
209
+ collapseLeftSideNav(state: boolean): void;
206
210
  /**
207
211
  * Open the user-settings dialog.
208
212
  *