A super tiny Javascript autocomplete / autosuggestion library for rendering floating suggestion widgets in textareas. Zero dependencies and ~1200 bytes minified + gzipped.
npm install @knadh/floatypeimport { floatype } from @knadh/floatype;
floatype(document.querySelector("textarea"), {
	onQuery: async (val) => {
		// fetch() or whatever that fetches/generates results.
		return ["results", "here"];
	}
});Check the demo source to see advanced usage and basic CSS styles.
Check the demo source to use the lib in <script> directly on an HTML page.
For dropdown suggestions on input boxes, see autocomp.js
Licensed under the MIT License.
