@@ -290,15 +290,15 @@ export const textAlignmentProperty = new InheritedCssProperty<Style, CoreTypes.T
290290textAlignmentProperty . register ( Style ) ;
291291
292292const textTransformConverter = makeParser < CoreTypes . TextTransformType > ( makeValidator < CoreTypes . TextTransformType > ( 'initial' , 'none' , 'capitalize' , 'uppercase' , 'lowercase' ) ) ;
293- export const textTransformProperty = new CssProperty < Style , CoreTypes . TextTransformType > ( {
293+ export const textTransformProperty = new InheritedCssProperty < Style , CoreTypes . TextTransformType > ( {
294294 name : 'textTransform' ,
295295 cssName : 'text-transform' ,
296296 defaultValue : 'initial' ,
297297 valueConverter : textTransformConverter ,
298298} ) ;
299299textTransformProperty . register ( Style ) ;
300300
301- export const textShadowProperty = new CssProperty < Style , string | ShadowCSSValues > ( {
301+ export const textShadowProperty = new InheritedCssProperty < Style , string | ShadowCSSValues > ( {
302302 name : 'textShadow' ,
303303 cssName : 'text-shadow' ,
304304 affectsLayout : __APPLE__ ,
@@ -308,7 +308,7 @@ export const textShadowProperty = new CssProperty<Style, string | ShadowCSSValue
308308} ) ;
309309textShadowProperty . register ( Style ) ;
310310
311- export const textStrokeProperty = new CssProperty < Style , string | StrokeCSSValues > ( {
311+ export const textStrokeProperty = new InheritedCssProperty < Style , string | StrokeCSSValues > ( {
312312 name : 'textStroke' ,
313313 cssName : 'text-stroke' ,
314314 affectsLayout : __APPLE__ ,
@@ -319,7 +319,7 @@ export const textStrokeProperty = new CssProperty<Style, string | StrokeCSSValue
319319textStrokeProperty . register ( Style ) ;
320320
321321const whiteSpaceConverter = makeParser < CoreTypes . WhiteSpaceType > ( makeValidator < CoreTypes . WhiteSpaceType > ( 'initial' , 'normal' , 'nowrap' ) ) ;
322- export const whiteSpaceProperty = new CssProperty < Style , CoreTypes . WhiteSpaceType > ( {
322+ export const whiteSpaceProperty = new InheritedCssProperty < Style , CoreTypes . WhiteSpaceType > ( {
323323 name : 'whiteSpace' ,
324324 cssName : 'white-space' ,
325325 defaultValue : 'initial' ,
0 commit comments