@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.
@@ -334,6 +334,9 @@ let HScroll = class HScroll extends Component {
334
334
  else {
335
335
  this.scrollEle.scrollLeft -= scrollVal;
336
336
  }
337
+ if (this.enableRtl && this.scrollEle.scrollLeft > 0) {
338
+ this.scrollEle.scrollLeft = 0;
339
+ }
337
340
  }
338
341
  frameScrollRequest(scrollVal, action, isContinuous) {
339
342
  const step = 10;