barsa-tiles 2.3.155 → 2.3.157

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.
@@ -3514,6 +3514,11 @@ class BarsaShellbarComponent extends BaseComponent {
3514
3514
  ngOnInit() {
3515
3515
  super.ngOnInit();
3516
3516
  this._portalService.windowResize();
3517
+ this.shellbar._actionsExceedShellbarWidth = function () {
3518
+ const diff = this._getActionsEnd() - this._getShellbarEnd();
3519
+ const tolerance = 1; // 1px
3520
+ return this._rtl$() ? diff < -tolerance : diff > tolerance;
3521
+ };
3517
3522
  }
3518
3523
  ngOnChanges(changes) {
3519
3524
  super.ngOnChanges(changes);