react-tag-input-component
react-tag-input-component copied to clipboard
lightweight react component for tag(s) input
Added onFocus event to handle various use cases such as opening dropdown when input is focused etc.
Would it be possible to add a required prop? I want to be able to require that a user fill in the input with something.
The component doesn't allow any way to create tags using a mobile browser. I tried adding different separators as well, still doesn't work. Tested on Chrome.
I'm wanting to set a max number of tags. Anyone know how to do this?
Add the maxLength attribute.
How do I remove the focus ring? I tried to add styles to rti--container:focus { outline: none } and rti--input:focus { outline: none }, but it's not working
Hi, It would be a great addition to have a `Ctrl+V` (paste) event handler for the TagsInput component. Specifically, when a user pastes a comma-separated list of IP addresses, like...
When input multibytes language, some browser, Chrome, treat composition end event as Enter key pressed. Fix the problem by adding new option to set separators by keyCode.
## Motivation I'm developing a feature where I wish to get the current value of the internal `input.rti--input` element. Suppose the user starts typing the first tag in an empty...