@luigi-project/client 2.31.1-dev.20260770059 → 2.31.1-dev.20260780050
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-element.d.ts +8 -0
- package/package.json +1 -1
package/luigi-element.d.ts
CHANGED
|
@@ -543,6 +543,14 @@ export interface LuigiClient {
|
|
|
543
543
|
* @memberof LuigiClient
|
|
544
544
|
*/
|
|
545
545
|
getCoreSearchParams: () => Object;
|
|
546
|
+
/**
|
|
547
|
+
* Sends search query parameters to Luigi Core. If it is allowed on node level it will be added to the URL.
|
|
548
|
+
* @param {Object} searchParams
|
|
549
|
+
* @param {boolean} keepBrowserHistory
|
|
550
|
+
* @param {boolean} preventLuigiConfigUpdate If true, the configChanged function will be triggered (since 2.29.0). By default it is set to `false`.
|
|
551
|
+
* @memberof LuigiClient
|
|
552
|
+
*/
|
|
553
|
+
addCoreSearchParams: (searchParams: Object, keepBrowserHistory: boolean, preventLuigiConfigUpdate?: boolean) => void;
|
|
546
554
|
/**
|
|
547
555
|
* Returns the dynamic path parameters of the active URL.
|
|
548
556
|
* Path parameters are defined by navigation nodes with a dynamic **pathSegment** value starting with **:**, such as **productId**.
|
package/package.json
CHANGED