@@ -132,6 +132,7 @@ Change valueExtractor and pass the data to Autocomplete without fetchDataUrl
132132:----------------- |:--------------------------------------------- | --------:|:------------------
133133 autoCorrect | Disable auto-correct | Boolean | true
134134 highlightText | Highlight search results | Boolean | true
135+ highLightColor | Highlight text color | String | #129a8d
135136 rightContent | Render additional text to the right of the item | Boolean | false
136137 resetOnSelect | Reset the input after choosing an item | Boolean | false
137138 minimumCharactersCount | Perform API request after certain number of characters entered | Number | 2
@@ -155,15 +156,17 @@ Change valueExtractor and pass the data to Autocomplete without fetchDataUrl
155156 listHeaderTextStyle | Styles for list header text | Object | -
156157 overlayStyle | Styles for overlay view | Object | -
157158 pickerStyle | Styles for item picker view | Object | -
158- containerStyle | Styles for dropdown container view | Object | -
159+ containerStyle | Styles for dropdown container view | Object | -
160+ scrollStyle | Styles for dropdown flatlist | Object | -
159161 scrollToInput | Focus on selected field | Function | -
160- handleSelectItem | Selection callback (agrs : item, index) | Function | -
162+ handleSelectItem | Selection callback (args : item, index) | Function | -
161163 onDropdownShow | Show keyboard | Function | -
162- onDropdownClose | Hide keyboard | Function | -
164+ onDropdownClose | Hide keyboard | Function | -
165+ onChangeText | Autocomplete input text changes | Function | -
163166 renderIcon | Render icon near input | Function | -
164167 valueExtractor | Extract value from item (args: item, index) | Function | ({ value }) => value
165168 rightTextExtractor | Extract value from item (args: item, index) | Function | ({ value }) => value
166- fetchData | Fetch data for autocomplete | Function | (searchInput) => Promise
169+ fetchData | Fetch data for autocomplete | Function | -
167170
168171### Authors:
169172
0 commit comments