@eui/tools 6.21.107 → 6.21.108
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.21.
|
|
1
|
+
6.21.108
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.108 (2025-08-12)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* add moduleIdNew for remote on sdlc - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([0116530e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0116530e40c66ccfe05228f0f4cf745c1efddaae))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.107 (2025-08-12)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -377,6 +377,9 @@ const getProjectRoutes = (project, routesDefs) => {
|
|
|
377
377
|
|
|
378
378
|
if (remoteDef) {
|
|
379
379
|
newAppRoute.angularRouteDef.data.moduleId = remoteDef.moduleId;
|
|
380
|
+
if (remoteDef.moduleIdNew) {
|
|
381
|
+
newAppRoute.angularRouteDef.data.moduleIdNew = remoteDef.moduleIdNew;
|
|
382
|
+
}
|
|
380
383
|
newAppRoute.angularRouteDef.data.elementTag = remoteDef.elementTag;
|
|
381
384
|
newAppRoute.angularRouteDef.data.iframe = remoteDef.iframe;
|
|
382
385
|
newAppRoute.remote = true;
|
|
@@ -428,6 +431,9 @@ const generateAngularRoutes = (project, routes) => {
|
|
|
428
431
|
if (route.data.moduleId) {
|
|
429
432
|
routeContent += ` moduleId: '${route.data.moduleId}',\n`;
|
|
430
433
|
}
|
|
434
|
+
if (route.data.moduleIdNew) {
|
|
435
|
+
routeContent += ` moduleIdNew: '${route.data.moduleIdNew}',\n`;
|
|
436
|
+
}
|
|
431
437
|
if (route.data.elementTag) {
|
|
432
438
|
routeContent += ` elementTag: '${route.data.elementTag}',\n`;
|
|
433
439
|
}
|