Skip to content

Releases: moroshko/autosuggest-highlight

V3.3.4

24 Jul 17:30
Compare
Choose a tag to compare
v3.3.4

3.3.4

v3.3.3

22 Jul 15:00
Compare
Choose a tag to compare

Fixed package building for IE11

v3.3.2

15 Jul 07:54
Compare
Choose a tag to compare

The library code is split into separate modules for old and modern browsers

v3.3.1

13 Jul 13:53
Compare
Choose a tag to compare

Set minimal supported browser version to IE11

v3.3.0

01 Jul 11:52
Compare
Choose a tag to compare
  • Updated dependencies
  • Fixed bug with cyrillic 'л' letter

v3.2.1

18 Feb 12:34
d39221b
Compare
Choose a tag to compare

v3.2.0...v3.2.1

v3.2.0

21 Oct 19:44
98315c2
Compare
Choose a tag to compare

v3.1.1...v3.2.0

v3.1.1

22 Oct 04:19
Compare
Choose a tag to compare

Fixed #7

v3.1.0

19 Oct 05:37
Compare
Choose a tag to compare

Added UMD version

v3.0.0

02 Oct 04:44
Compare
Choose a tag to compare
  • 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';