@eui/tools 6.21.40 → 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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.41
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
* * *
|
|
1
10
|
## 6.21.40 (2025-01-27)
|
|
2
11
|
|
|
3
12
|
##### 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
|