File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
packages/react-events/src Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ type FocusProps = {
19
19
onBlur : ( e : FocusEvent ) => void ,
20
20
onFocus : ( e : FocusEvent ) => void ,
21
21
onFocusChange : boolean => void ,
22
- stopPropagation : boolean ,
23
22
} ;
24
23
25
24
type FocusState = {
@@ -105,6 +104,7 @@ const FocusResponder = {
105
104
focusTarget : null ,
106
105
} ;
107
106
} ,
107
+ stopLocalPropagation : true ,
108
108
onEvent (
109
109
event : ReactResponderEvent ,
110
110
context : ReactResponderContext ,
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ type HoverProps = {
27
27
onHoverMove : ( e : HoverEvent ) => void ,
28
28
onHoverStart : ( e : HoverEvent ) => void ,
29
29
preventDefault : boolean ,
30
- stopPropagation : boolean ,
31
30
} ;
32
31
33
32
type HoverState = {
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ type PressProps = {
39
39
left : number ,
40
40
} ,
41
41
preventDefault : boolean ,
42
- stopPropagation : boolean ,
43
42
} ;
44
43
45
44
type PointerType = '' | 'mouse' | 'keyboard' | 'pen' | 'touch' ;
You can’t perform that action at this time.
0 commit comments