@eui/tools 5.3.55 → 5.3.56

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
- 5.3.55
1
+ 5.3.56
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.56 (2022-09-22)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * mem-leaks improvements MWP-8671 [MWP-8671](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8671) ([12e4df2c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/12e4df2cc9cdfaffc112744e36fcedb5db24ba4d))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.55 (2022-09-22)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.55",
3
+ "version": "5.3.56",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -47,8 +47,6 @@ enum ElementStatus {
47
47
  `],
48
48
  })
49
49
  export class ModuleComponent implements OnInit, OnDestroy {
50
- remoteId: string;
51
-
52
50
  ElementStatus = ElementStatus;
53
51
  moduleStatus: ElementStatus;
54
52
 
@@ -59,8 +57,8 @@ export class ModuleComponent implements OnInit, OnDestroy {
59
57
  }
60
58
 
61
59
  ngOnInit() {
62
- this.remoteId = this.elRef.nativeElement.remoteId;
63
- this.elementLifeCycleService.setup(this.remoteId);
60
+ const elementData = this.elementLifeCycleService.getElementData(this.elRef);
61
+ this.elementLifeCycleService.setup(elementData);
64
62
  this.loadData();
65
63
  }
66
64