@@ -19,8 +19,10 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
19
19
hint ?: string | undefined ;
20
20
color ?: import ( "./types" ) . ColorType | undefined ;
21
21
placeholderTextColor ?: import ( "./types" ) . ColorType | undefined ;
22
- style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
22
+ textAlign ?: "left" | "right" | "center" | undefined ;
23
23
testID ?: string | undefined ;
24
+ textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
25
+ style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
24
26
removeClippedSubviews ?: boolean | undefined ;
25
27
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
26
28
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -86,8 +88,6 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
86
88
maxFontSizeMultiplier ?: number | null | undefined ;
87
89
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
88
90
textBreakStrategy ?: "simple" | "highQuality" | "balanced" | undefined ;
89
- textAlign ?: "left" | "right" | "center" | undefined ;
90
- textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
91
91
value ?: string | undefined ;
92
92
autoCapitalize ?: "none" | "characters" | "sentences" | "words" | undefined ;
93
93
autoCorrect ?: boolean | undefined ;
@@ -351,8 +351,10 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
351
351
hint ?: string | undefined ;
352
352
color ?: import ( "./types" ) . ColorType | undefined ;
353
353
placeholderTextColor ?: import ( "./types" ) . ColorType | undefined ;
354
- style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
354
+ textAlign ?: "left" | "right" | "center" | undefined ;
355
355
testID ?: string | undefined ;
356
+ textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
357
+ style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
356
358
removeClippedSubviews ?: boolean | undefined ;
357
359
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
358
360
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -418,8 +420,6 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
418
420
maxFontSizeMultiplier ?: number | null | undefined ;
419
421
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
420
422
textBreakStrategy ?: "simple" | "highQuality" | "balanced" | undefined ;
421
- textAlign ?: "left" | "right" | "center" | undefined ;
422
- textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
423
423
value ?: string | undefined ;
424
424
autoCapitalize ?: "none" | "characters" | "sentences" | "words" | undefined ;
425
425
autoCorrect ?: boolean | undefined ;
@@ -683,6 +683,9 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
683
683
hint ?: string | undefined ;
684
684
color ?: import ( "./types" ) . ColorType | undefined ;
685
685
placeholderTextColor ?: import ( "./types" ) . ColorType | undefined ;
686
+ textAlign ?: "left" | "right" | "center" | undefined ;
687
+ testID ?: string | undefined ;
688
+ textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
686
689
style : false | import ( "react-native" ) . TextStyle | import ( "react-native" ) . RegisteredStyle < import ( "react-native" ) . TextStyle > | import ( "react-native" ) . RecursiveArray < import ( "react-native" ) . TextStyle | import ( "react-native" ) . Falsy | import ( "react-native" ) . RegisteredStyle < import ( "react-native" ) . TextStyle > > | {
687
690
lineHeight : undefined ;
688
691
height : number | undefined ;
@@ -796,7 +799,6 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
796
799
textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
797
800
includeFontPadding ?: boolean | undefined ;
798
801
} | null ;
799
- testID ?: string | undefined ;
800
802
removeClippedSubviews ?: boolean | undefined ;
801
803
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
802
804
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -862,8 +864,6 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
862
864
maxFontSizeMultiplier ?: number | null | undefined ;
863
865
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
864
866
textBreakStrategy ?: "simple" | "highQuality" | "balanced" | undefined ;
865
- textAlign ?: "left" | "right" | "center" | undefined ;
866
- textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
867
867
value ?: string | undefined ;
868
868
autoCapitalize ?: "none" | "characters" | "sentences" | "words" | undefined ;
869
869
autoCorrect ?: boolean | undefined ;
0 commit comments