@eui/tools 6.15.6 → 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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/17.x/full/common/app/routing.module.ts +0 -5
- package/scripts/csdr/init/remotes/17.x/full/common/main.ts +2 -1
- package/scripts/csdr/init/remotes/17.x/full/options/participant/app/routing.module.ts +0 -5
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.15.
|
|
1
|
+
6.15.8
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
* * *
|
|
10
|
+
## 6.15.7 (2024-01-11)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* improve change-detection by coaliscing events and the usage of zone.run (mapping level) MWP-10441 [MWP-10441](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10441) ([2e921d1e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2e921d1e66a222ad7c60692c3ac18d2ad1458f6f))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.15.6 (2024-01-11)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -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
|
],
|
|
@@ -2,10 +2,11 @@ import { enableProdMode } from '@angular/core';
|
|
|
2
2
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
3
3
|
import { AppModule } from './app/module';
|
|
4
4
|
import { environment } from './environments/environment';
|
|
5
|
+
|
|
5
6
|
if (environment.production) {
|
|
6
7
|
enableProdMode();
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
platformBrowserDynamic()
|
|
10
|
-
.bootstrapModule(AppModule)
|
|
11
|
+
.bootstrapModule(AppModule, { ngZoneEventCoalescing: true, ngZoneRunCoalescing: true })
|
|
11
12
|
.catch(err => console.log(err));
|
|
@@ -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
|
],
|