[add] 'View' support for 'backgroundBlendMode' CSS

Fix #476
This commit is contained in:
Nicolas Gallagher
2017-06-13 14:16:46 -07:00
parent 88ddeca0c6
commit 47ba46780c
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -158,6 +158,7 @@ Controls whether the View can be the target of touch events. The enhanced
+ `animationTimingFunction`
+ `backfaceVisibility`
+ `backgroundAttachment`
+ `backgroundBlendMode`
+ `backgroundClip`
+ `backgroundColor`
+ `backgroundImage`
+1 -1
View File
@@ -141,7 +141,7 @@ export default class ScrollViewBase extends Component {
}
}
_setNodeRef = (element:View) => {
_setNodeRef = (element: View) => {
this._node = findNodeHandle(element);
};
@@ -26,6 +26,7 @@ const ViewStylePropTypes = {
* @platform web
*/
backgroundAttachment: string,
backgroundBlendMode: string,
backgroundClip: string,
backgroundImage: string,
backgroundOrigin: oneOf(['border-box', 'content-box', 'padding-box']),