From 3f7a4e455f42ff38d88481b9bac9fa9091deef9c Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Thu, 20 Apr 2017 14:50:14 -0700 Subject: [PATCH] [add] support 'outlineColor' style prop Fix #435 --- docs/components/View.md | 1 + src/components/View/ViewStylePropTypes.js | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/components/View.md b/docs/components/View.md index 98c76d41..bddf3f0c 100644 --- a/docs/components/View.md +++ b/docs/components/View.md @@ -213,6 +213,7 @@ Controls whether the View can be the target of touch events. The enhanced + `opacity` + `order` + `outline` ‡ ++ `outlineColor` ‡ + `overflow` + `overflowX` ‡ + `overflowY` ‡ diff --git a/src/components/View/ViewStylePropTypes.js b/src/components/View/ViewStylePropTypes.js index dd5d0fb5..1f4b501f 100644 --- a/src/components/View/ViewStylePropTypes.js +++ b/src/components/View/ViewStylePropTypes.js @@ -31,6 +31,7 @@ module.exports = { boxShadow: string, cursor: string, outline: string, + outlineColor: ColorPropType, perspective: oneOfType([number, string]), perspectiveOrigin: string, transitionDelay: string,