@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.
@@ -8844,6 +8844,10 @@ var Touch = /** @__PURE__ @class */ (function (_super) {
8844
8844
  diffX = Math.floor(diffX < 0 ? -1 * diffX : diffX);
8845
8845
  diffY = Math.floor(diffY < 0 ? -1 * diffY : diffX);
8846
8846
  _this.isTouchMoved = diffX > 1 || diffY > 1;
8847
+ var isFirefox = (/Firefox/).test(Browser.userAgent);
8848
+ if (isFirefox && point.clientX === 0 && point.clientY === 0 && evt.type === 'mouseup') {
8849
+ _this.isTouchMoved = false;
8850
+ }
8847
8851
  _this.endPoint = point;
8848
8852
  _this.calcPoints(evt);
8849
8853
  var swipeArgs = {