I've been working on some autocomplete functionality outside of this repo, and wondering how best to integrate this with plexus-form. The extremes, I think, are either to provide just a minimal set of hooks for input fields that a user-defined autocompletion wrapper can work with, or on the other side to integrate a full-fledged autocompleter component that requires nothing more from the user than to provide a function responsible for generating completions.
I will probably develop a better feeling for what might work as I progress with the implementation.
Instead of adding specific support for an autocompleter, a simple extension mechanism was introduced in v0.0.16 that allows the caller to supply it's own input components for selected fields.
I've been working on some autocomplete functionality outside of this repo, and wondering how best to integrate this with
plexus-form
. The extremes, I think, are either to provide just a minimal set of hooks for input fields that a user-defined autocompletion wrapper can work with, or on the other side to integrate a full-fledged autocompleter component that requires nothing more from the user than to provide a function responsible for generating completions.I will probably develop a better feeling for what might work as I progress with the implementation.