@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.
@@ -1 +1 @@
1
- 6.21.107
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.107",
3
+ "version": "6.21.108",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -83,6 +83,9 @@ Promise.resolve()
83
83
  elementTag: route.data.elementTag,
84
84
  iframe: route.data.iframe,
85
85
  }
86
+ if (route.data.moduleIdNew) {
87
+ remote.moduleIdNew = route.data.moduleIdNew;
88
+ }
86
89
  }
87
90
  }
88
91
 
@@ -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
  }