@everymatrix/stage-mm-verification-report 1.0.19 → 1.0.20
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/main.js +4 -2
- package/main.js.map +1 -1
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -57869,8 +57869,10 @@ var AppComponent = class _AppComponent {
|
|
|
57869
57869
|
this.effectRef.destroy();
|
|
57870
57870
|
}, { manualCleanup: true });
|
|
57871
57871
|
window.addEventListener("message", this.reloadListener);
|
|
57872
|
+
console.log("this.ctrl-constructor", this.sessionService.sessionData, this);
|
|
57872
57873
|
}
|
|
57873
57874
|
ngOnInit() {
|
|
57875
|
+
console.log("this.ctrl-OnInit", this.sessionService.sessionData, this);
|
|
57874
57876
|
this.initializeApp();
|
|
57875
57877
|
fromEvent(window, "popstate").pipe(takeUntilDestroyed(this.destroyRef)).subscribe(() => this.handleRouteChange());
|
|
57876
57878
|
this.templateService.templateChangedSubject.pipe(takeUntilDestroyed(this.destroyRef)).subscribe((template) => {
|
|
@@ -57886,7 +57888,7 @@ var AppComponent = class _AppComponent {
|
|
|
57886
57888
|
});
|
|
57887
57889
|
}
|
|
57888
57890
|
ngOnDestroy() {
|
|
57889
|
-
console.log("this.ctrl-onDestroy", this);
|
|
57891
|
+
console.log("this.ctrl-onDestroy", this.sessionService.sessionData, this);
|
|
57890
57892
|
window.removeEventListener("message", this.reloadListener);
|
|
57891
57893
|
}
|
|
57892
57894
|
initializeApp() {
|
|
@@ -58331,7 +58333,7 @@ var AppComponent = class _AppComponent {
|
|
|
58331
58333
|
}
|
|
58332
58334
|
reloadListener = (e) => {
|
|
58333
58335
|
if (e.data?.type === "ReloadReportData") {
|
|
58334
|
-
console.log("this.ctrl.on-reload", this);
|
|
58336
|
+
console.log("this.ctrl.on-reload", this.sessionService.sessionData, this);
|
|
58335
58337
|
}
|
|
58336
58338
|
};
|
|
58337
58339
|
// private setInitState() {
|