@eui/tools 6.11.29 → 6.11.30
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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.11.
|
|
1
|
+
6.11.30
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.11.30 (2023-06-06)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted routes replacements for additional props on routes - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([dad517c6](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/dad517c6dd7c55159a2432db8a924d78dc836fd6))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.11.29 (2023-06-06)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -476,6 +476,12 @@ const processRoutesConfig = (project, envTarget, build, routesFile, routesFileCo
|
|
|
476
476
|
r.menuLinkDefs.forEach((md) => {
|
|
477
477
|
if (md.url === link.url) {
|
|
478
478
|
routeDef = md;
|
|
479
|
+
if (link.id) {
|
|
480
|
+
routeDef.id = link.id;
|
|
481
|
+
}
|
|
482
|
+
if (link.optional) {
|
|
483
|
+
routeDef.optional = link.optional;
|
|
484
|
+
}
|
|
479
485
|
return;
|
|
480
486
|
}
|
|
481
487
|
});
|