10348c0
Add plete-with-fetch-and-abort.js, a convenience for using Plete withfetch
andAbortController
.
Released on 2020-02-11.
e842672
Rename main.js to plete.jscce5321
Rename main.css to plete.css353f21b
Fix missing main.css in dev-modeWhen running in dev mode,
index.html
would load up themain.css
from thedist
folder.The
dist/main.css
file would only exist, if thebuild
script had been run previously.That shouldn't be necessary for development. Also, loading it from
dist/
would mean that it could get out of date.Since the
http-server
part of thestart
script is serving up the entire repository from the root, we can usemain.css
fromlib/
directly.bf0cea4
Remove cruft from CHANGES.md
Released on 2020-01-24.
f557a0d
Fix invalid escaping in filterThe fix applied in 23e0cea57c6484e9d1a148ed58e3644ccbc3ba29 ended up breaking the filtering when
dataSrc
is an array of strings.Given ["Denmark", "Germany", "Spain", "Sweden", "United Kingdom"] it would not return ["Denmark"] for a query of "Den".
The solution is to use a battle hardened escaping function, from:
Released on 2020-01-23.
37015f1
Add support for cancellation
Released on 2020-01-21.
23e0cea
Fix #6: escape input string on local filter
Released on 2020-01-08.
57eca5f
Add keywords to package.jsonThis should help people find it easier
b33c888
Fix typo in README
Released on 2020-01-05.
19baf0a
Add links to documentation siteb18099c
Fix broken test.classList is an object, not a string
Released on 2020-01-05.
- Add WAI-ARIA support
This widget is considered a combobox and should use the rules for the combobox role.
- Initial version