barsa-tiles 1.0.422 → 1.0.424
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/lib/barsa-shellbar/barsa-shellbar.component.mjs +2 -1
- package/esm2020/lib/shellbar/shellbar.component.mjs +1 -3
- package/fesm2015/barsa-tiles.mjs +1 -2
- package/fesm2015/barsa-tiles.mjs.map +1 -1
- package/fesm2020/barsa-tiles.mjs +1 -2
- package/fesm2020/barsa-tiles.mjs.map +1 -1
- package/lib/shellbar/shellbar.component.d.ts +0 -1
- package/package.json +1 -1
package/fesm2020/barsa-tiles.mjs
CHANGED
|
@@ -2407,6 +2407,7 @@ class BarsaShellbarComponent extends BaseComponent {
|
|
|
2407
2407
|
this._changeCulture(culture);
|
|
2408
2408
|
};
|
|
2409
2409
|
this.showVersion = !BarsaApi.LoginFormData.IsServiceDesk;
|
|
2410
|
+
this.showVersion = false;
|
|
2410
2411
|
}
|
|
2411
2412
|
ngOnInit() {
|
|
2412
2413
|
super.ngOnInit();
|
|
@@ -2527,7 +2528,6 @@ class ShellbarComponent extends BaseComponent {
|
|
|
2527
2528
|
colorAccent: 1
|
|
2528
2529
|
};
|
|
2529
2530
|
this.allowAnonymous = true;
|
|
2530
|
-
this.showVersion = false;
|
|
2531
2531
|
this.notifcationLoaded = false;
|
|
2532
2532
|
this._viewedNotifications$ = new Subject();
|
|
2533
2533
|
this._viewedNotifications = [];
|
|
@@ -2540,7 +2540,6 @@ class ShellbarComponent extends BaseComponent {
|
|
|
2540
2540
|
this._changeCulture(culture);
|
|
2541
2541
|
};
|
|
2542
2542
|
this.userLoggedIn$ = this._portalService.userLoggedIn$;
|
|
2543
|
-
this.showVersion = !BarsaApi.LoginFormData.IsServiceDesk;
|
|
2544
2543
|
this.notifiationCountLoaded$ = this._notificationService.notificationCountLoaded$;
|
|
2545
2544
|
this._viewedNotifications$
|
|
2546
2545
|
.pipe(takeUntil(this._onDestroy$), tap((item) => this._viewedNotifications.push(item)), map((item) => this._viewedNotifications), debounceTime(2000), map((items) => items.map((item) => item.Tag)))
|