@eui/tools 6.21.131 → 6.21.134

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.
@@ -1 +1 @@
1
- 6.21.131
1
+ 6.21.134
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 6.21.134 (2026-03-09)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * release MWP-12612 [MWP-12612](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-12612) ([fc3e768d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/fc3e768d1683d16514f1196f2d3d051dc0456961))
7
+ ##### Bug Fixes
8
+
9
+ * **routes-replacement:**
10
+ * typo MWP-12612 [MWP-12612](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-12612) ([7d7db48a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/7d7db48a06317ecb97c168f01edc7dbe74aeb43f))
11
+
12
+ * * *
13
+ * * *
1
14
  ## 6.21.131 (2026-03-06)
2
15
 
3
16
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.131",
3
+ "version": "6.21.134",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -647,10 +647,10 @@ const generateLinks = (project, routes, envTargetFinal) => {
647
647
  menuDef.alwaysDisplayed = link.alwaysDisplayed;
648
648
  }
649
649
  if (link.label) {
650
- routeDef.label = link.label;
650
+ menuDef.label = link.label;
651
651
  }
652
652
  if (link.queryParams) {
653
- routeDef.queryParams = link.queryParams;
653
+ menuDef.queryParams = link.queryParams;
654
654
  }
655
655
  if (parseInt(euiVersion) >= 18) {
656
656
  delete menuDef['iconClass'];