Releases: moroshko/autosuggest-highlight
Releases · moroshko/autosuggest-highlight
V3.3.4
v3.3.3
Fixed package building for IE11
v3.3.2
The library code is split into separate modules for old and modern browsers
v3.3.1
Set minimal supported browser version to IE11
v3.3.0
- Updated dependencies
- Fixed bug with cyrillic 'л' letter
v3.2.1
v3.2.0
v3.1.1
v3.1.0
v3.0.0
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';