From 91032d8565c670a43a714503de402d37ec157316 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Sat, 7 Jan 2017 18:15:13 -0800 Subject: [PATCH] [change] allow 'display' in ViewStylePropTypes Fix #296 --- src/components/View/ViewStylePropTypes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/View/ViewStylePropTypes.js b/src/components/View/ViewStylePropTypes.js index da580e70..533888c8 100644 --- a/src/components/View/ViewStylePropTypes.js +++ b/src/components/View/ViewStylePropTypes.js @@ -27,12 +27,13 @@ module.exports = process.env.NODE_ENV !== 'production' ? { backgroundAttachment: string, backgroundClip: string, backgroundImage: string, - backgroundPosition: string, backgroundOrigin: oneOf([ 'border-box', 'content-box', 'padding-box' ]), + backgroundPosition: string, backgroundRepeat: string, backgroundSize: string, boxShadow: string, cursor: string, + display: string, outline: string, overflowX: autoOrHiddenOrVisible, overflowY: autoOrHiddenOrVisible,