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.
2 parents a8788a1 + e62525e commit e32ab0cCopy full SHA for e32ab0c
2 files changed
packages/react-native-gesture-handler/src/v3/hooks/utils/propsWhiteList.ts
@@ -23,6 +23,7 @@ const CommonConfig = new Set<keyof CommonGestureConfig>([
23
'mouseButton',
24
'testID',
25
'cancelsTouchesInView',
26
+ 'manualActivation',
27
]);
28
29
const ExternalRelationsConfig = new Set<keyof ExternalRelations>([
packages/react-native-gesture-handler/src/v3/types/ConfigTypes.ts
@@ -66,6 +66,7 @@ export type CommonGestureConfig = {
66
activeCursor?: ActiveCursor;
67
mouseButton?: MouseButton;
68
cancelsTouchesInView?: boolean;
69
+ manualActivation?: boolean;
70
},
71
HitSlop | ActiveCursor | MouseButton
72
>;
0 commit comments