@eui/tools 6.21.39 → 6.21.41
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 +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/18.x/full/common/app/routing.module.ts +6 -1
- package/scripts/csdr/init/remotes/19.x/full/common/app/routing.module.ts +12 -7
- package/scripts/utils/pre-build/routes-replacement/routes-replacement.js +1 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.41
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.41 (2025-02-05)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **result:**
|
|
6
|
+
* add extra-urls-routes MWP-11572 [MWP-11572](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11572) ([e31569b9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e31569b9c369100dcfdfafddbe7ecf905361af05))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.40 (2025-01-27)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* activate shell reset sidebar feature flag - MWP-11316 [MWP-11316](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11316) ([979af4e4](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/979af4e4e65d4e36d73f101ce2be3b6168b7647d))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.39 (2025-01-17)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { RouterModule, Routes } from '@angular/router';
|
|
3
3
|
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
routes,
|
|
6
|
+
// EXTRA_URLS_IMPORTS_PLACEHOLDER
|
|
7
|
+
} from '@root.npm.pkg@';
|
|
8
|
+
|
|
5
9
|
// DON'T PAY ATTENTION TO IMPORT ERRORS HERE, those files are injected at serve/build time
|
|
6
10
|
import { appConfig } from '../config/index';
|
|
7
11
|
import { FallbackComponent } from './fallback.component';
|
|
@@ -13,6 +17,7 @@ const elementRoutes: Routes = [
|
|
|
13
17
|
path: `${appConfig.global.baseUrl}@sub.route.url@`,
|
|
14
18
|
children: routes,
|
|
15
19
|
},
|
|
20
|
+
// EXTRA_URLS_ROUTES_PLACEHOLDER
|
|
16
21
|
{ path: '**', component: FallbackComponent },
|
|
17
22
|
];
|
|
18
23
|
|
|
@@ -1,19 +1,24 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { RouterModule, Routes } from '@angular/router';
|
|
3
3
|
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
routes,
|
|
6
|
+
// EXTRA_URLS_IMPORTS_PLACEHOLDER
|
|
7
|
+
} from '@root.npm.pkg@';
|
|
8
|
+
|
|
5
9
|
// DON'T PAY ATTENTION TO IMPORT ERRORS HERE, those files are injected at serve/build time
|
|
6
10
|
import { appConfig } from '../config/index';
|
|
7
11
|
import { FallbackComponent } from './fallback.component';
|
|
8
12
|
import { ModuleComponent } from './module.component';
|
|
9
13
|
|
|
10
14
|
const elementRoutes: Routes = [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
{ path: '', component: ModuleComponent },
|
|
16
|
+
{
|
|
17
|
+
path: `${appConfig.global.baseUrl}@sub.route.url@`,
|
|
18
|
+
children: routes,
|
|
19
|
+
},
|
|
20
|
+
// EXTRA_URLS_ROUTES_PLACEHOLDER
|
|
21
|
+
{ path: '**', component: FallbackComponent },
|
|
17
22
|
];
|
|
18
23
|
|
|
19
24
|
// @dynamic
|
|
@@ -526,6 +526,7 @@ const generateLinks = (project, routes, envTargetFinal) => {
|
|
|
526
526
|
envTargetFinal === 'dev' ||
|
|
527
527
|
envTargetFinal === 'test' ||
|
|
528
528
|
envTargetFinal === 'int' ||
|
|
529
|
+
envTargetFinal === 'acc' ||
|
|
529
530
|
envTargetFinal.indexOf('local') > -1
|
|
530
531
|
) {
|
|
531
532
|
if (envTargetFinal.indexOf('dev-local') > -1) {
|