@eui/tools 6.15.7 → 6.15.8

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.15.7
1
+ 6.15.8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.15.8 (2024-01-17)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * removal of useless code MWP-10441 [MWP-10441](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10441) ([ed31c546](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ed31c546e19d2c40970a4c0f3d69a5a2eb3a309f))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.15.7 (2024-01-11)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.15.7",
3
+ "version": "6.15.8",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -1,8 +1,6 @@
1
1
  import { NgModule } from '@angular/core';
2
2
  import { RouterModule, Routes } from '@angular/router';
3
3
 
4
- import { ELEMENT_ROUTES_TOKEN } from '@csdr/integration/element';
5
-
6
4
  import { routes } from '@root.npm.pkg@';
7
5
  // DON'T PAY ATTENTION TO IMPORT ERRORS HERE, those files are injected at serve/build time
8
6
  import { appConfig } from '../config/index';
@@ -23,9 +21,6 @@ const elementRoutes: Routes = [
23
21
  imports: [
24
22
  RouterModule.forRoot(elementRoutes),
25
23
  ],
26
- providers: [
27
- { provide: ELEMENT_ROUTES_TOKEN, useValue: elementRoutes },
28
- ],
29
24
  exports: [
30
25
  RouterModule,
31
26
  ],
@@ -1,8 +1,6 @@
1
1
  import { NgModule } from '@angular/core';
2
2
  import { RouterModule, Routes } from '@angular/router';
3
3
 
4
- import { ELEMENT_ROUTES_TOKEN } from '@csdr/integration/element';
5
-
6
4
  import { appConfig } from '../config/index'; // tslint:disable-line
7
5
  import { FallbackComponent } from './fallback.component'; // tslint:disable-line
8
6
  import { ModuleComponent } from './module.component';
@@ -15,9 +13,6 @@ const elementRoutes: Routes = [
15
13
  imports: [
16
14
  RouterModule.forRoot(elementRoutes),
17
15
  ],
18
- providers: [
19
- { provide: ELEMENT_ROUTES_TOKEN, useValue: elementRoutes },
20
- ],
21
16
  exports: [
22
17
  RouterModule,
23
18
  ],