react-tag-input-component
react-tag-input-component copied to clipboard
lightweight react component for tag(s) input
Is there a way to connect this to a data source (db, json, api, etc) so you can either lookup and re-use existing tags or enter a new one?
I need change a focus to `input` tag when `div` with `rti--container` class _clicked_. I think that's more better .
When working with styled-components, in order to override styles of a third party component, the third party component needs to accept `className`. [See here](url). Without this, it makes it very...
**Current Condition:** - react-tag-input-component didn't support paste text(string) to tags. **Before Changes:** https://github.com/hc-oss/react-tag-input-component/assets/11205495/d5db55aa-51d6-4609-b748-4fe0c3094693 **After Changes:** https://github.com/hc-oss/react-tag-input-component/assets/11205495/13622cdf-bc9c-4433-9de8-10b23bf4a0b5 **Changes:** - Implement paste text to tags, handle multiple separator - handle duplicate tag...
It would be great if have something like "allowDuplicates" props to stop adding duplicate tags
# Problem In Chrome-based browsers, entering Non-Latin-based language such as Chinese, Japanese and Korean (CJK) triggers Keydown event **2 times**. Hence, the LAST letter is added to the tag list...
# Description This PR strengthens the TypeScript typing in the exposed `onBlur` prop and its internal implementation. Here's a summary of the changes: - Strengthen the type of `onBlur` prop...
### Env node - v16.15.1 npm - v8.11.0 ### Command `npm install` ### Error Result ``` npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR!...
https://github.com/hc-oss/react-tag-input-component/blob/861e4e760d080d418724bd63d84e9288617ff082/src/index.tsx#L47 Here the code seems considered undefined `value` but below code makes the `tags` undefined and make throw error. https://github.com/hc-oss/react-tag-input-component/blob/861e4e760d080d418724bd63d84e9288617ff082/src/index.tsx#L53-L57 IMO current code is not support uncontrolled component, so it...