@luigi-project/client 2.3.0-rc2 → 2.3.0-rc3
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-client.d.ts +10 -0
- package/package.json +1 -1
package/luigi-client.d.ts
CHANGED
|
@@ -737,6 +737,16 @@ export type getAnchor = () => String;
|
|
|
737
737
|
export function setAnchor(anchor: String): void;
|
|
738
738
|
export type setAnchor = (anchor: String) => void;
|
|
739
739
|
|
|
740
|
+
/**
|
|
741
|
+
* Allows you to change node labels within the same {@link navigation-advanced.md#view-groups view group}, e.g. in your node config: `label: 'my Node {viewGroupData.vg1}'`.
|
|
742
|
+
* @param {Object} value a data object containing the view group name and desired label
|
|
743
|
+
* @memberof Lifecycle
|
|
744
|
+
* @example
|
|
745
|
+
* LuigiClient.setViewGroupData({'vg1':' Luigi rocks!'})
|
|
746
|
+
*/
|
|
747
|
+
export function setViewGroupData(value: Object): void;
|
|
748
|
+
export type setViewGroupData = (value: Object) => void;
|
|
749
|
+
|
|
740
750
|
/**
|
|
741
751
|
* Read search query parameters which are sent from Luigi core
|
|
742
752
|
* @memberof Lifecycle
|
package/package.json
CHANGED