diff --git a/src/apis/StyleSheet/StyleSheetValidation.js b/src/apis/StyleSheet/StyleSheetValidation.js index 80db43f0..9f194a4f 100644 --- a/src/apis/StyleSheet/StyleSheetValidation.js +++ b/src/apis/StyleSheet/StyleSheetValidation.js @@ -91,6 +91,7 @@ StyleSheetValidation.addValidStylePropTypes({ borderSpacing: oneOf([number, string]), clear: string, cursor: string, + fill: string, float: oneOf(['left', 'none', 'right']), font: string /* @private */, listStyle: string, diff --git a/src/components/Text/TextStylePropTypes.js b/src/components/Text/TextStylePropTypes.js index 057c6dbe..db122180 100644 --- a/src/components/Text/TextStylePropTypes.js +++ b/src/components/Text/TextStylePropTypes.js @@ -30,7 +30,7 @@ const TextStylePropTypes = { letterSpacing: numberOrString, lineHeight: numberOrString, textAlign: TextAlignPropType, - textAlignVertical: oneOf(['auto', 'bottom', 'center', 'top']), + textAlignVertical: string, textDecorationColor: ColorPropType, textDecorationLine: string, textDecorationStyle: string,