@datarailsshared/datarailsshared 1.4.110 → 1.4.111

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.
@@ -3044,7 +3044,9 @@
3044
3044
  }
3045
3045
  if (heightMoreWindowBottom && widthMoreWindowRight && !heightMoreWindowTop || this.position === 'top-left') {
3046
3046
  this.position = 'top-left';
3047
- this.renderer.setStyle(this.el.nativeElement, 'transform', 'translate(-100%, calc(-100% + ' + this.drDropdownPosition.height + 'px))');
3047
+ var translateX = "calc(-100% + " + this.drDropdownPosition.width + "px)";
3048
+ var translateY = 'calc(-100% - 8px)';
3049
+ this.renderer.setStyle(this.el.nativeElement, 'transform', "translate(" + translateX + ", " + translateY + ")");
3048
3050
  }
3049
3051
  if (heightMoreWindowTop && heightMoreWindowBottom) {
3050
3052
  this.position = 'left-center';