@fy-/fws-vue 2.1.1 → 2.1.2

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.
@@ -111,12 +111,12 @@ const modelValueSrc = computed(() => {
111
111
  const start = reactive({ x: 0, y: 0 });
112
112
 
113
113
  const touchStart = (event: TouchEvent) => {
114
- event.preventDefault();
114
+ // Remove event.preventDefault() to prevent blocking touch events on buttons
115
+ // event.preventDefault();
115
116
  const touch = event.touches[0];
116
117
  start.x = touch.screenX;
117
118
  start.y = touch.screenY;
118
119
  };
119
-
120
120
  const touchEnd = (event: TouchEvent) => {
121
121
  const touch = event.changedTouches[0];
122
122
  const end = { x: touch.screenX, y: touch.screenY };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.1.01",
3
+ "version": "2.1.02",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {