@syncfusion/ej2-navigations 20.4.49 → 20.4.51

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.
@@ -353,6 +353,9 @@ var HScroll = /** @__PURE__ @class */ (function (_super) {
353
353
  else {
354
354
  this.scrollEle.scrollLeft -= scrollVal;
355
355
  }
356
+ if (this.enableRtl && this.scrollEle.scrollLeft > 0) {
357
+ this.scrollEle.scrollLeft = 0;
358
+ }
356
359
  };
357
360
  HScroll.prototype.frameScrollRequest = function (scrollVal, action, isContinuous) {
358
361
  var _this = this;