@msobiecki/react-marauders-path 1.20.0 → 1.21.0
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/README.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -196,6 +196,7 @@ Hook for handling touch swipe gestures with configurable distance and velocity t
|
|
|
196
196
|
|
|
197
197
|
```typescript
|
|
198
198
|
interface UseSwipeOptions {
|
|
199
|
+
eventPointerTypes?: Array<"touch" | "mouse" | "pen">; // Default: ["touch", "mouse", "pen"]
|
|
199
200
|
eventCapture?: boolean; // Default: false
|
|
200
201
|
eventOnce?: boolean; // Default: false
|
|
201
202
|
eventStopImmediatePropagation?: boolean; // Default: false
|