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 9ec671f commit f76c750Copy full SHA for f76c750
1 file changed
src/pressables/base.tsx
@@ -21,7 +21,25 @@ export type BasePressableProps = {
21
enabled?: boolean;
22
} & Partial<PressableContextType<'timing' | 'spring'>> &
23
Partial<
24
- Pick<AnimatedPressableProps, 'layout' | 'entering' | 'exiting' | 'style'>
+ Pick<
25
+ AnimatedPressableProps,
26
+ | 'layout'
27
+ | 'entering'
28
+ | 'exiting'
29
+ | 'style'
30
+ | 'hitSlop'
31
+ | 'testID'
32
+ | 'userSelect'
33
+ | 'activeCursor'
34
+ | 'shouldCancelWhenOutside'
35
+ | 'cancelsTouchesInView'
36
+ | 'enableContextMenu'
37
+ | 'rippleColor'
38
+ | 'rippleRadius'
39
+ | 'touchSoundDisabled'
40
+ | 'waitFor'
41
+ | 'simultaneousHandlers'
42
+ >
43
> & {
44
onPress?: () => void;
45
onPressIn?: () => void;
0 commit comments