File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Libraries/NativeComponent Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,8 @@ const validAttributesForNonEventProps = {
172172 accessibilityLabel : true ,
173173 accessibilityHint : true ,
174174 accessibilityRole : true ,
175+ accessibilityCollection : true ,
176+ accessibilityCollectionItem : true ,
175177 accessibilityState : true ,
176178 accessibilityActions : true ,
177179 accessibilityValue : true ,
@@ -182,7 +184,6 @@ const validAttributesForNonEventProps = {
182184 translateX : true ,
183185 translateY : true ,
184186 accessibilityLiveRegion : true ,
185- needsOffscreenAlphaCompositing : true ,
186187
187188 // @ReactProps from LayoutShadowNode
188189 width : true ,
@@ -273,8 +274,15 @@ const validAttributesForEventProps = {
273274
274275 // Pointer events
275276 onPointerEnter : true ,
277+ onPointerEnterCapture : true ,
276278 onPointerLeave : true ,
279+ onPointerLeaveCapture : true ,
277280 onPointerMove : true ,
281+ onPointerMoveCapture : true ,
282+ onPointerOut : true ,
283+ onPointerOutCapture : true ,
284+ onPointerOver : true ,
285+ onPointerOverCapture : true ,
278286} ;
279287
280288/**
You can’t perform that action at this time.
0 commit comments