@@ -169,21 +169,21 @@ let AutoCompleteCompBase = (function () {
169
169
} ,
170
170
} }
171
171
>
172
- < AutoComplete
172
+ < AutoComplete
173
173
disabled = { props . disabled }
174
174
value = { searchtext }
175
- options = { items }
176
- style = { { width : "100%" } }
175
+ options = { items }
176
+ style = { { width : "100%" } }
177
177
onChange = { ( value : string , option ) => {
178
178
props . valueInItems . onChange ( false ) ;
179
179
setvalidateState ( textInputValidate ( getTextInputValidate ( ) ) ) ;
180
180
setsearchtext ( value ) ;
181
- props . value . onChange ( value ) ;
182
- props . onEvent ( "change" ) ;
183
- } }
181
+ props . value . onChange ( value ) ;
182
+ props . onEvent ( "change" )
183
+ } }
184
184
onFocus = { ( ) => {
185
- setActivationFlag ( true ) ;
186
- props . onEvent ( "focus" ) ;
185
+ setActivationFlag ( true )
186
+ props . onEvent ( "focus" )
187
187
} }
188
188
onBlur = { ( ) => props . onEvent ( "blur" ) }
189
189
onSelect = { ( data : string , option ) => {
@@ -269,23 +269,23 @@ let AutoCompleteCompBase = (function () {
269
269
return false ;
270
270
} }
271
271
>
272
- < InputStyle
273
- ref = { props . viewRef }
274
- placeholder = { placeholder }
275
- allowClear = { props . allowClear }
276
- $style = { props . inputFieldStyle }
277
- prefix = { hasIcon ( props . prefixIcon ) && props . prefixIcon }
278
- suffix = { hasIcon ( props . suffixIcon ) && props . suffixIcon }
279
- status = { getValidate ( validateState ) }
280
- onPressEnter = { undefined }
281
- />
272
+ < InputStyle
273
+ ref = { props . viewRef }
274
+ placeholder = { placeholder }
275
+ allowClear = { props . allowClear }
276
+ $style = { props . inputFieldStyle }
277
+ prefix = { hasIcon ( props . prefixIcon ) && props . prefixIcon }
278
+ suffix = { hasIcon ( props . suffixIcon ) && props . suffixIcon }
279
+ status = { getValidate ( validateState ) }
280
+ onPressEnter = { undefined }
281
+ />
282
282
</ AutoComplete >
283
283
</ ConfigProvider >
284
284
</ >
285
285
) ,
286
286
style : props . style ,
287
287
labelStyle : props . labelStyle ,
288
- inputFieldStyle : props . inputFieldStyle ,
288
+ inputFieldStyle :props . inputFieldStyle ,
289
289
animationStyle : props . animationStyle ,
290
290
...validateState ,
291
291
} ) ;
0 commit comments