Autosuggest Highlight Versions Save

Utilities for highlighting text in autosuggest and autocomplete components

v3.3.4

1 year ago

v3.3.3

1 year ago

Fixed package building for IE11

v3.3.2

1 year ago

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

v3.3.1

1 year ago

Set minimal supported browser version to IE11

v3.3.0

1 year ago
  • Updated dependencies
  • Fixed bug with cyrillic 'л' letter

v3.2.1

2 years ago
  • Fix for issue #18 - Special chars have unexpected behavior (#20) db91bb6
  • Update README.md a93b1d3

https://github.com/moroshko/autosuggest-highlight/compare/v3.2.0...v3.2.1

v3.2.0

2 years ago
  • Update dependencies 712f60a
  • feat: Added match options parameter (#12) 087c1c3
  • Option for highlighting anywhere in the text #5 (#6) f0a8e3b
  • Update README.md e149afb

https://github.com/moroshko/autosuggest-highlight/compare/v3.1.1...v3.2.0

v3.1.1

6 years ago

Fixed #7

v3.1.0

7 years ago

Added UMD version

v3.0.0

7 years ago
  • 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';