diff --git a/docs/components/View.md b/docs/components/View.md index a395dab5..9e5b0f36 100644 --- a/docs/components/View.md +++ b/docs/components/View.md @@ -158,6 +158,7 @@ Controls whether the View can be the target of touch events. The enhanced + `animationTimingFunction` ‡ + `backfaceVisibility` + `backgroundAttachment` ‡ ++ `backgroundBlendMode` ‡ + `backgroundClip` ‡ + `backgroundColor` + `backgroundImage` ‡ diff --git a/src/components/ScrollView/ScrollViewBase.js b/src/components/ScrollView/ScrollViewBase.js index 671c23a2..208d4f44 100644 --- a/src/components/ScrollView/ScrollViewBase.js +++ b/src/components/ScrollView/ScrollViewBase.js @@ -141,7 +141,7 @@ export default class ScrollViewBase extends Component { } } - _setNodeRef = (element:View) => { + _setNodeRef = (element: View) => { this._node = findNodeHandle(element); }; diff --git a/src/components/View/ViewStylePropTypes.js b/src/components/View/ViewStylePropTypes.js index 162bd690..fd8d069a 100644 --- a/src/components/View/ViewStylePropTypes.js +++ b/src/components/View/ViewStylePropTypes.js @@ -26,6 +26,7 @@ const ViewStylePropTypes = { * @platform web */ backgroundAttachment: string, + backgroundBlendMode: string, backgroundClip: string, backgroundImage: string, backgroundOrigin: oneOf(['border-box', 'content-box', 'padding-box']),