[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` + `animationTimingFunction`
+ `backfaceVisibility` + `backfaceVisibility`
+ `backgroundAttachment` + `backgroundAttachment`
+ `backgroundBlendMode`
+ `backgroundClip` + `backgroundClip`
+ `backgroundColor` + `backgroundColor`
+ `backgroundImage` + `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); this._node = findNodeHandle(element);
}; };
@@ -26,6 +26,7 @@ const ViewStylePropTypes = {
* @platform web * @platform web
*/ */
backgroundAttachment: string, backgroundAttachment: string,
backgroundBlendMode: string,
backgroundClip: string, backgroundClip: string,
backgroundImage: string, backgroundImage: string,
backgroundOrigin: oneOf(['border-box', 'content-box', 'padding-box']), backgroundOrigin: oneOf(['border-box', 'content-box', 'padding-box']),