@@ -2,111 +2,111 @@ import type {
22 FlingGestureStateChangeEvent ,
33 FlingGestureUpdateEvent ,
44 FlingGesture ,
5- } from './fling/useFling ' ;
5+ } from './fling/useFlingGesture ' ;
66import type {
77 HoverGestureStateChangeEvent ,
88 HoverGestureUpdateEvent ,
99 HoverGesture ,
10- } from './hover/useHover ' ;
10+ } from './hover/useHoverGesture ' ;
1111import type {
1212 LongPressGestureStateChangeEvent ,
1313 LongPressGestureUpdateEvent ,
1414 LongPressGesture ,
15- } from './longPress/useLongPress ' ;
15+ } from './longPress/useLongPressGesture ' ;
1616import type {
1717 ManualGestureStateChangeEvent ,
1818 ManualGestureUpdateEvent ,
1919 ManualGesture ,
20- } from './manual/useManual ' ;
20+ } from './manual/useManualGesture ' ;
2121import type {
2222 NativeGestureStateChangeEvent ,
2323 NativeGestureUpdateEvent ,
2424 NativeGesture ,
25- } from './native/useNative ' ;
25+ } from './native/useNativeGesture ' ;
2626import type {
2727 PanGestureStateChangeEvent ,
2828 PanGestureUpdateEvent ,
2929 PanGesture ,
30- } from './pan/usePan ' ;
30+ } from './pan/usePanGesture ' ;
3131import type {
3232 PinchGestureStateChangeEvent ,
3333 PinchGestureUpdateEvent ,
3434 PinchGesture ,
35- } from './pinch/usePinch ' ;
35+ } from './pinch/usePinchGesture ' ;
3636import type {
3737 RotationGestureStateChangeEvent ,
3838 RotationGestureUpdateEvent ,
3939 RotationGesture ,
40- } from './rotation/useRotation ' ;
40+ } from './rotation/useRotationGesture ' ;
4141import type {
4242 TapGestureStateChangeEvent ,
4343 TapGestureUpdateEvent ,
4444 TapGesture ,
45- } from './tap/useTap ' ;
45+ } from './tap/useTapGesture ' ;
4646
47- export type { TapGestureConfig } from './tap/useTap ' ;
47+ export type { TapGestureConfig } from './tap/useTapGesture ' ;
4848export type { TapGesture , TapGestureStateChangeEvent , TapGestureUpdateEvent } ;
49- export { useTap } from './tap/useTap ' ;
49+ export { useTapGesture } from './tap/useTapGesture ' ;
5050
51- export type { FlingGestureConfig } from './fling/useFling ' ;
51+ export type { FlingGestureConfig } from './fling/useFlingGesture ' ;
5252export type {
5353 FlingGesture ,
5454 FlingGestureStateChangeEvent ,
5555 FlingGestureUpdateEvent ,
5656} ;
57- export { useFling } from './fling/useFling ' ;
57+ export { useFlingGesture } from './fling/useFlingGesture ' ;
5858
59- export type { LongPressGestureConfig } from './longPress/useLongPress ' ;
59+ export type { LongPressGestureConfig } from './longPress/useLongPressGesture ' ;
6060export type {
6161 LongPressGesture ,
6262 LongPressGestureStateChangeEvent ,
6363 LongPressGestureUpdateEvent ,
6464} ;
65- export { useLongPress } from './longPress/useLongPress ' ;
65+ export { useLongPressGesture } from './longPress/useLongPressGesture ' ;
6666
67- export type { PinchGestureConfig } from './pinch/usePinch ' ;
67+ export type { PinchGestureConfig } from './pinch/usePinchGesture ' ;
6868export type {
6969 PinchGesture ,
7070 PinchGestureStateChangeEvent ,
7171 PinchGestureUpdateEvent ,
7272} ;
73- export { usePinch } from './pinch/usePinch ' ;
73+ export { usePinchGesture } from './pinch/usePinchGesture ' ;
7474
75- export type { RotationGestureConfig } from './rotation/useRotation ' ;
75+ export type { RotationGestureConfig } from './rotation/useRotationGesture ' ;
7676export type {
7777 RotationGesture ,
7878 RotationGestureStateChangeEvent ,
7979 RotationGestureUpdateEvent ,
8080} ;
81- export { useRotation } from './rotation/useRotation ' ;
81+ export { useRotationGesture } from './rotation/useRotationGesture ' ;
8282
83- export type { HoverGestureConfig } from './hover/useHover ' ;
83+ export type { HoverGestureConfig } from './hover/useHoverGesture ' ;
8484export type {
8585 HoverGesture ,
8686 HoverGestureStateChangeEvent ,
8787 HoverGestureUpdateEvent ,
8888} ;
89- export { useHover } from './hover/useHover ' ;
89+ export { useHoverGesture } from './hover/useHoverGesture ' ;
9090
91- export type { ManualGestureConfig } from './manual/useManual ' ;
91+ export type { ManualGestureConfig } from './manual/useManualGesture ' ;
9292export type {
9393 ManualGesture ,
9494 ManualGestureStateChangeEvent ,
9595 ManualGestureUpdateEvent ,
9696} ;
97- export { useManual } from './manual/useManual ' ;
97+ export { useManualGesture } from './manual/useManualGesture ' ;
9898
99- export type { NativeViewGestureConfig } from './native/useNative ' ;
99+ export type { NativeViewGestureConfig } from './native/useNativeGesture ' ;
100100export type {
101101 NativeGesture ,
102102 NativeGestureStateChangeEvent ,
103103 NativeGestureUpdateEvent ,
104104} ;
105- export { useNative } from './native/useNative ' ;
105+ export { useNativeGesture } from './native/useNativeGesture ' ;
106106
107- export type { PanGestureConfig } from './pan/usePan ' ;
107+ export type { PanGestureConfig } from './pan/usePanGesture ' ;
108108export type { PanGesture , PanGestureStateChangeEvent , PanGestureUpdateEvent } ;
109- export { usePan } from './pan/usePan ' ;
109+ export { usePanGesture } from './pan/usePanGesture ' ;
110110
111111export type SingleGesture =
112112 | TapGesture
0 commit comments