@esfaenza/core 15.2.264 → 15.2.266
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/esm2020/components/error/404/pagenotfound.component.mjs +2 -1
- package/esm2020/components/error/500/servererror.component.mjs +2 -1
- package/esm2020/components/error/Angular/angularerror.component.mjs +2 -1
- package/esm2020/lib/app.component.mjs +2 -2
- package/fesm2015/esfaenza-core-components.mjs +3 -0
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +3 -0
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -158,6 +158,7 @@ class PageNotFoundComponent {
|
|
|
158
158
|
this.emb = emb;
|
|
159
159
|
this.ANONYMOUS_MODE = ANONYMOUS_MODE;
|
|
160
160
|
this.router = router;
|
|
161
|
+
console.log("Modalità anonima: " + this.ANONYMOUS_MODE);
|
|
161
162
|
}
|
|
162
163
|
goPreviousPage() {
|
|
163
164
|
this._location.back();
|
|
@@ -195,6 +196,7 @@ class ServerErrorComponent {
|
|
|
195
196
|
this.previousUrl = this.route.snapshot.params["fromUrl"];
|
|
196
197
|
//Dopo 1 secondo considero la sfilza di errori finita
|
|
197
198
|
setTimeout(() => { this.as.handlingError = false; }, 1000);
|
|
199
|
+
console.log("Modalità anonima: " + this.ANONYMOUS_MODE);
|
|
198
200
|
}
|
|
199
201
|
b64DecodeUnicode(str) {
|
|
200
202
|
// Going backwards: from bytestream, to percent-encoding, to original string.
|
|
@@ -240,6 +242,7 @@ class AngularErrorComponent {
|
|
|
240
242
|
this.identityInfos = "Logged user: " + ((identity === null || identity === void 0 ? void 0 : identity.Idtenant) || '??') + "-" + ((identity === null || identity === void 0 ? void 0 : identity.DsUser) || '???????');
|
|
241
243
|
this.errorMessage = this.b64DecodeUnicode(this.route.snapshot.params["errorMessage"]);
|
|
242
244
|
console.error(this.errorMessage);
|
|
245
|
+
console.log("Modalità anonima: " + this.ANONYMOUS_MODE);
|
|
243
246
|
}
|
|
244
247
|
ngOnInit() {
|
|
245
248
|
var item = localStorage.getItem("Reload");
|