Skip to content

v3.0.0

Choose a tag to compare

@moroshko moroshko released this 02 Oct 04:44
· 37 commits to master since this release
  • match() supports diacritics now (e.g. a will match à, e will match é, etc)
  • parseHTML() was removed as it didn't feel like a natural match for this library (here it is if you need it)
  • Now you have to import the functions a little bit differently:
- import { match, parse } from 'autosuggest-highlight';
+ import match  from 'autosuggest-highlight/match';
+ import parse  from 'autosuggest-highlight/parse';