From b1c8e490e01e2fa3403fa071f8067b6a616538f1 Mon Sep 17 00:00:00 2001 From: Harry Moreno Date: Fri, 2 Oct 2015 04:07:48 -0700 Subject: [PATCH] Add docs for View BorderWidth MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Closes https://github.com/facebook/react-native/pull/3133 Reviewed By: @​svcscm Differential Revision: D2502503 Pulled By: @mkonicek --- Libraries/Components/View/ViewStylePropTypes.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Libraries/Components/View/ViewStylePropTypes.js b/Libraries/Components/View/ViewStylePropTypes.js index 64ace6d7b..e36b143a1 100644 --- a/Libraries/Components/View/ViewStylePropTypes.js +++ b/Libraries/Components/View/ViewStylePropTypes.js @@ -34,6 +34,11 @@ var ViewStylePropTypes = { borderBottomLeftRadius: ReactPropTypes.number, borderBottomRightRadius: ReactPropTypes.number, borderStyle: ReactPropTypes.oneOf(['solid', 'dotted', 'dashed']), + borderWidth: ReactPropTypes.number, + borderTopWidth: ReactPropTypes.number, + borderRightWidth: ReactPropTypes.number, + borderBottomWidth: ReactPropTypes.number, + borderLeftWidth: ReactPropTypes.number, opacity: ReactPropTypes.number, overflow: ReactPropTypes.oneOf(['visible', 'hidden']), shadowColor: ReactPropTypes.string,