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 = {
172
172
accessibilityLabel : true ,
173
173
accessibilityHint : true ,
174
174
accessibilityRole : true ,
175
+ accessibilityCollection : true ,
176
+ accessibilityCollectionItem : true ,
175
177
accessibilityState : true ,
176
178
accessibilityActions : true ,
177
179
accessibilityValue : true ,
@@ -182,7 +184,6 @@ const validAttributesForNonEventProps = {
182
184
translateX : true ,
183
185
translateY : true ,
184
186
accessibilityLiveRegion : true ,
185
- needsOffscreenAlphaCompositing : true ,
186
187
187
188
// @ReactProps from LayoutShadowNode
188
189
width : true ,
@@ -273,8 +274,15 @@ const validAttributesForEventProps = {
273
274
274
275
// Pointer events
275
276
onPointerEnter : true ,
277
+ onPointerEnterCapture : true ,
276
278
onPointerLeave : true ,
279
+ onPointerLeaveCapture : true ,
277
280
onPointerMove : true ,
281
+ onPointerMoveCapture : true ,
282
+ onPointerOut : true ,
283
+ onPointerOutCapture : true ,
284
+ onPointerOver : true ,
285
+ onPointerOverCapture : true ,
278
286
} ;
279
287
280
288
/**
You can’t perform that action at this time.
0 commit comments