@syncfusion/ej2-pivotview 19.4.40 → 19.4.41

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.
@@ -12832,6 +12832,7 @@ class VirtualScroll$1 {
12832
12832
  this.previousValues = { top: 0, left: 0 };
12833
12833
  this.frozenPreviousValues = { top: 0, left: 0 };
12834
12834
  this.eventType = '';
12835
+ this.isFireFox = Browser.userAgent.toLowerCase().indexOf('firefox') > -1;
12835
12836
  this.parent = parent;
12836
12837
  this.engineModule = this.parent.dataType === 'pivot' ? this.parent.engineModule : this.parent.olapEngineModule;
12837
12838
  this.addInternalEvents();
@@ -12855,6 +12856,9 @@ class VirtualScroll$1 {
12855
12856
  let mScrollBar = mCont.parentElement.parentElement.querySelector('.' + MOVABLESCROLL_DIV);
12856
12857
  EventHandler.clearEvents(mCont);
12857
12858
  EventHandler.clearEvents(fCont);
12859
+ if (this.isFireFox) {
12860
+ EventHandler.clearEvents(mHdr);
12861
+ }
12858
12862
  if (this.engineModule) {
12859
12863
  let ele = this.parent.isAdaptive ? mCont : mCont.parentElement.parentElement.querySelector('.' + MOVABLESCROLL_DIV);
12860
12864
  EventHandler.add(ele, 'scroll touchmove pointermove', this.onHorizondalScroll(mHdr, mCont, fCont), this);
@@ -12914,7 +12918,7 @@ class VirtualScroll$1 {
12914
12918
  }
12915
12919
  let target = e.target;
12916
12920
  let left = target.scrollLeft;
12917
- if (this.previousValues.left === left) {
12921
+ if (this.previousValues.left === left || (this.isFireFox && target.classList.contains(MOVABLEHEADER_DIV))) {
12918
12922
  return;
12919
12923
  }
12920
12924
  content.scrollLeft = left;