vue3-touch-events
Advanced tools
Comparing version 4.1.5 to 4.1.6
@@ -218,3 +218,3 @@ /** | ||
if (distanceY > swipeOutBounded || distanceX > swipeOutBounded) { | ||
if (distanceY > swipeOutBounded) { | ||
if (distanceY > distanceX) { | ||
direction = $this.startY > $this.currentY ? 'top' : 'bottom'; | ||
@@ -417,2 +417,2 @@ } else { | ||
*/ | ||
export default vueTouchEvents | ||
export default vueTouchEvents |
{ | ||
"name": "vue3-touch-events", | ||
"version": "4.1.5", | ||
"version": "4.1.6", | ||
"description": "Simple touch events support for vue.js 3", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
# vue3-touch-events [![](https://img.shields.io/npm/v/vue3-touch-events.svg)](https://www.npmjs.com/package/vue3-touch-events) | ||
# vue3-touch-events [![](https://img.shields.io/npm/v/vue3-touch-events.svg)](https://www.npmjs.com/package/vue3-touch-events) [![](https://img.shields.io/npm/dt/vue3-touch-events)](https://www.npmjs.com/package/vue3-touch-events) | ||
@@ -3,0 +3,0 @@ **Enable tap, swipe, touch, hold, mouse down, mouse up events on any HTML DOM Element in vue.js 3.x.** |
31804
353