@plaidev/karte-action-sdk 1.1.172-28031578.d24b20c2 → 1.1.172-28031620.3251f0ae
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/dist/hydrate/index.es.js +4 -3
- package/dist/index.es.js +4 -3
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -8011,18 +8011,19 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
8011
8011
|
}
|
8012
8012
|
|
8013
8013
|
function handleTouchStart(event) {
|
8014
|
-
event.preventDefault();
|
8014
|
+
// event.preventDefault();
|
8015
8015
|
handleMoveStart();
|
8016
8016
|
}
|
8017
8017
|
|
8018
8018
|
function handleTouchEnd(event) {
|
8019
|
-
event.preventDefault();
|
8019
|
+
// event.preventDefault();
|
8020
8020
|
handleMoveEnd();
|
8021
8021
|
}
|
8022
8022
|
|
8023
8023
|
function handleTouchMove(event) {
|
8024
|
-
event.preventDefault();
|
8024
|
+
// event.preventDefault();
|
8025
8025
|
const clientX = event.touches[0].clientX;
|
8026
|
+
|
8026
8027
|
const timeStamp = event.timeStamp;
|
8027
8028
|
handleMoving(clientX, timeStamp);
|
8028
8029
|
}
|
package/dist/index.es.js
CHANGED
@@ -7524,18 +7524,19 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
7524
7524
|
}
|
7525
7525
|
|
7526
7526
|
function handleTouchStart(event) {
|
7527
|
-
event.preventDefault();
|
7527
|
+
// event.preventDefault();
|
7528
7528
|
handleMoveStart();
|
7529
7529
|
}
|
7530
7530
|
|
7531
7531
|
function handleTouchEnd(event) {
|
7532
|
-
event.preventDefault();
|
7532
|
+
// event.preventDefault();
|
7533
7533
|
handleMoveEnd();
|
7534
7534
|
}
|
7535
7535
|
|
7536
7536
|
function handleTouchMove(event) {
|
7537
|
-
event.preventDefault();
|
7537
|
+
// event.preventDefault();
|
7538
7538
|
const clientX = event.touches[0].clientX;
|
7539
|
+
|
7539
7540
|
const timeStamp = event.timeStamp;
|
7540
7541
|
handleMoving(clientX, timeStamp);
|
7541
7542
|
}
|