@@ -19,10 +19,8 @@ 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
- textAlign ?: "left" | "right" | "center" | undefined ;
23
- testID ?: string | undefined ;
24
- textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
25
22
style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
23
+ testID ?: string | undefined ;
26
24
removeClippedSubviews ?: boolean | undefined ;
27
25
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
28
26
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -88,6 +86,8 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
88
86
maxFontSizeMultiplier ?: number | null | undefined ;
89
87
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
90
88
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,10 +351,8 @@ 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
- textAlign ?: "left" | "right" | "center" | undefined ;
355
- testID ?: string | undefined ;
356
- textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
357
354
style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
355
+ testID ?: string | undefined ;
358
356
removeClippedSubviews ?: boolean | undefined ;
359
357
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
360
358
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -420,6 +418,8 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
420
418
maxFontSizeMultiplier ?: number | null | undefined ;
421
419
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
422
420
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,9 +683,6 @@ 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 ;
689
686
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 > > | {
690
687
lineHeight : undefined ;
691
688
height : number | undefined ;
@@ -799,6 +796,7 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
799
796
textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
800
797
includeFontPadding ?: boolean | undefined ;
801
798
} | null ;
799
+ testID ?: string | undefined ;
802
800
removeClippedSubviews ?: boolean | undefined ;
803
801
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
804
802
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -864,6 +862,8 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
864
862
maxFontSizeMultiplier ?: number | null | undefined ;
865
863
selectionColor ?: import ( "react-native" ) . ColorValue | undefined ;
866
864
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