moroshko / react-autosuggest

WAI-ARIA compliant React autosuggest component
http://react-autosuggest.js.org
MIT License
5.96k stars 584 forks source link

Add highlighted data to onKeyDown function #847

Closed ahmetkuslular closed 1 year ago

ahmetkuslular commented 2 years ago

highlighted data from Autowhatever component is passed to onKeyDown function as a prop. Also, highlightedSuggestion has been added to the data.

function onKeyDown  (event, data) {
  const  {   highlightedSectionIndex, highlightedSuggestionIndex, highlightedSuggestion} = data;
  ...
}