@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.
- package/CHANGELOG.md +65 -6
- package/bin/syncfusion-license.js +1 -96
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +4 -0
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +4 -0
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/touch.js +4 -0
- package/styles/definition/_fluent-dark.scss +5 -5
|
@@ -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 = {
|