@syncfusion/ej2-base 20.2.36 → 20.2.38

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.
@@ -8557,6 +8557,10 @@ let Touch = class Touch extends Base {
8557
8557
  diffX = Math.floor(diffX < 0 ? -1 * diffX : diffX);
8558
8558
  diffY = Math.floor(diffY < 0 ? -1 * diffY : diffX);
8559
8559
  this.isTouchMoved = diffX > 1 || diffY > 1;
8560
+ const isFirefox = (/Firefox/).test(Browser.userAgent);
8561
+ if (isFirefox && point.clientX === 0 && point.clientY === 0 && evt.type === 'mouseup') {
8562
+ this.isTouchMoved = false;
8563
+ }
8560
8564
  this.endPoint = point;
8561
8565
  this.calcPoints(evt);
8562
8566
  const swipeArgs = {