@@ -290,15 +290,15 @@ export const textAlignmentProperty = new InheritedCssProperty<Style, CoreTypes.T
290
290
textAlignmentProperty . register ( Style ) ;
291
291
292
292
const 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 > ( {
294
294
name : 'textTransform' ,
295
295
cssName : 'text-transform' ,
296
296
defaultValue : 'initial' ,
297
297
valueConverter : textTransformConverter ,
298
298
} ) ;
299
299
textTransformProperty . register ( Style ) ;
300
300
301
- export const textShadowProperty = new CssProperty < Style , string | ShadowCSSValues > ( {
301
+ export const textShadowProperty = new InheritedCssProperty < Style , string | ShadowCSSValues > ( {
302
302
name : 'textShadow' ,
303
303
cssName : 'text-shadow' ,
304
304
affectsLayout : __APPLE__ ,
@@ -308,7 +308,7 @@ export const textShadowProperty = new CssProperty<Style, string | ShadowCSSValue
308
308
} ) ;
309
309
textShadowProperty . register ( Style ) ;
310
310
311
- export const textStrokeProperty = new CssProperty < Style , string | StrokeCSSValues > ( {
311
+ export const textStrokeProperty = new InheritedCssProperty < Style , string | StrokeCSSValues > ( {
312
312
name : 'textStroke' ,
313
313
cssName : 'text-stroke' ,
314
314
affectsLayout : __APPLE__ ,
@@ -319,7 +319,7 @@ export const textStrokeProperty = new CssProperty<Style, string | StrokeCSSValue
319
319
textStrokeProperty . register ( Style ) ;
320
320
321
321
const 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 > ( {
323
323
name : 'whiteSpace' ,
324
324
cssName : 'white-space' ,
325
325
defaultValue : 'initial' ,
0 commit comments