@@ -22,7 +22,7 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
22
22
formatter ?: ( ( value ?: string | undefined ) => string | undefined ) | undefined ;
23
23
children ?: import ( "react" ) . ReactNode ;
24
24
style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
25
- testID : string ;
25
+ testID ? : string | undefined ;
26
26
removeClippedSubviews ?: boolean | undefined ;
27
27
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
28
28
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -145,8 +145,8 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
145
145
validationMessagePosition ?: import ( "./types" ) . ValidationMessagePosition | undefined ;
146
146
floatingPlaceholder ?: boolean | undefined ;
147
147
floatingPlaceholderColor ?: import ( "./types" ) . ColorType | undefined ;
148
- floatingPlaceholderStyle ?: ( ( 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 >> | null ) & import ( "react-native" ) . TextStyle ) | undefined ;
149
148
floatOnFocus ?: boolean | undefined ;
149
+ floatingPlaceholderStyle ?: ( ( 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 >> | null ) & import ( "react-native" ) . TextStyle ) | undefined ;
150
150
extraOffset ?: number | undefined ;
151
151
enableErrors ?: boolean | undefined ;
152
152
validationMessage ?: string | string [ ] | undefined ;
@@ -423,7 +423,7 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
423
423
formatter ?: ( ( value ?: string | undefined ) => string | undefined ) | undefined ;
424
424
children ?: import ( "react" ) . ReactNode ;
425
425
style ?: import ( "react-native" ) . StyleProp < import ( "react-native" ) . TextStyle > ;
426
- testID : string ;
426
+ testID ? : string | undefined ;
427
427
removeClippedSubviews ?: boolean | undefined ;
428
428
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
429
429
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -546,8 +546,8 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
546
546
validationMessagePosition ?: import ( "./types" ) . ValidationMessagePosition | undefined ;
547
547
floatingPlaceholder ?: boolean | undefined ;
548
548
floatingPlaceholderColor ?: import ( "./types" ) . ColorType | undefined ;
549
- floatingPlaceholderStyle ?: ( ( 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 >> | null ) & import ( "react-native" ) . TextStyle ) | undefined ;
550
549
floatOnFocus ?: boolean | undefined ;
550
+ floatingPlaceholderStyle ?: ( ( 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 >> | null ) & import ( "react-native" ) . TextStyle ) | undefined ;
551
551
extraOffset ?: number | undefined ;
552
552
enableErrors ?: boolean | undefined ;
553
553
validationMessage ?: string | string [ ] | undefined ;
@@ -936,7 +936,7 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
936
936
textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
937
937
includeFontPadding ?: boolean | undefined ;
938
938
} | null ;
939
- testID : string;
939
+ testID ? : string | undefined ;
940
940
removeClippedSubviews ?: boolean | undefined ;
941
941
onLayout ?: ( ( event : import ( "react-native" ) . LayoutChangeEvent ) => void ) | undefined ;
942
942
onContentSizeChange ?: ( ( e : import ( "react-native" ) . NativeSyntheticEvent < import ( "react-native" ) . TextInputContentSizeChangeEventData > ) => void ) | undefined ;
@@ -1067,6 +1067,7 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
1067
1067
error : any ;
1068
1068
disabled : string ;
1069
1069
} ;
1070
+ floatOnFocus ?: boolean | undefined ;
1070
1071
floatingPlaceholderStyle : ( ( 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 >> | null ) & import ( "react-native" ) . TextStyle ) | {
1071
1072
color ?: import ( "react-native" ) . ColorValue | undefined ;
1072
1073
fontFamily ?: string | undefined ;
@@ -1180,7 +1181,6 @@ export default function usePreset({ preset, ...props }: InternalTextFieldProps):
1180
1181
textAlignVertical ?: "auto" | "center" | "top" | "bottom" | undefined ;
1181
1182
includeFontPadding ?: boolean | undefined ;
1182
1183
} ;
1183
- floatOnFocus ?: boolean | undefined ;
1184
1184
extraOffset ?: number | undefined ;
1185
1185
enableErrors : boolean;
1186
1186
validationMessage ?: string | string [ ] | undefined ;
0 commit comments