mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Add support for pointerover and pointerout
Summary: Changelog: [Internal] - Add pointerover, pointerout events Reviewed By: vincentriemer Differential Revision: D38559454 fbshipit-source-id: 829b9f2f22e1e41a64dcce80fcc79ab9e6352dcf
This commit is contained in:
committed by
Facebook GitHub Bot
parent
92e4ed6a28
commit
dfcd9faaad
@@ -90,6 +90,18 @@ const bubblingEventTypes = {
|
||||
bubbled: 'onPointerUp',
|
||||
},
|
||||
},
|
||||
topPointerOut: {
|
||||
phasedRegistrationNames: {
|
||||
captured: 'onPointerOutCapture',
|
||||
bubbled: 'onPointerOut',
|
||||
},
|
||||
},
|
||||
topPointerOver: {
|
||||
phasedRegistrationNames: {
|
||||
captured: 'onPointerOverCapture',
|
||||
bubbled: 'onPointerOver',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
const directEventTypes = {
|
||||
|
||||
Reference in New Issue
Block a user