@eui/tools 5.3.45 → 5.3.46
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
|
-
5.3.
|
|
1
|
+
5.3.46
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.46 (2022-09-15)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* memory leaks MWP-8671 [MWP-8671](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8671) ([0fdd6154](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0fdd6154924fc73ad31ac3e66414b1b8ce927c38))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.45 (2022-09-14)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgModule, Injector } from '@angular/core';
|
|
1
|
+
import { NgModule, Injector, DoBootstrap, ApplicationRef } from '@angular/core';
|
|
2
2
|
import { BrowserModule } from '@angular/platform-browser';
|
|
3
3
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
4
4
|
import { HttpClientModule } from '@angular/common/http';
|
|
@@ -79,12 +79,12 @@ import { ModuleComponent } from './module.component';
|
|
|
79
79
|
...DEFAULT_MAPPED_PROVIDERS,
|
|
80
80
|
],
|
|
81
81
|
})
|
|
82
|
-
export class AppModule {
|
|
82
|
+
export class AppModule implements DoBootstrap {
|
|
83
83
|
|
|
84
84
|
constructor(private injector: Injector) {
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
ngDoBootstrap() {
|
|
87
|
+
ngDoBootstrap(appRef: ApplicationRef): void {
|
|
88
88
|
const elementSampleEui = createCustomElement(ModuleComponent, { injector: this.injector });
|
|
89
89
|
try {
|
|
90
90
|
customElements.define(appConfig.global.elementName, elementSampleEui);
|