We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 573bfb0 commit 620a949Copy full SHA for 620a949
packages/core/useSwipe/index.ts
@@ -36,12 +36,6 @@ export interface UseSwipeOptions extends ConfigurableWindow {
36
}
37
38
export interface UseSwipeReturn {
39
- /**
40
- * @deprecated No longer need this Vue 3's browser targets all supporting passive event listeners.
41
- *
42
- * This flag will always return `true` and be removed in the next major version.
43
- */
44
- isPassiveEventSupported: boolean
45
isSwiping: ShallowRef<boolean>
46
direction: ComputedRef<UseSwipeDirection>
47
coordsStart: Readonly<Position>
@@ -154,8 +148,5 @@ export function useSwipe(
154
148
lengthX: diffX,
155
149
lengthY: diffY,
156
150
stop,
157
-
158
- // TODO: Remove in the next major version
159
- isPassiveEventSupported: true,
160
151
161
152
0 commit comments