Yair Even Or
Yair Even Or
It seems like you forgot to save your jsbin example, as it is the exact same as the default one. I can't start working on a bug without a demo...
Seems to work fine in Chrome. Which browser are you using?
If you've pressed Shift+Enter this wouldn't have happen :) Thanks for reporting
why are you using `defaultValue` and not `value`?
In the Tagify React demo i've shown how to update the list of tags from the parent component https://codesandbox.io/s/tagify-react-wrapper-oempc?file=/src/CrazyTags.js There is no problem with using `value`
Currently when you update the `value` prop of the `` React component, it internally calls [`loadOriginalValues()`](https://github.com/yairEO/tagify/blob/master/src/tagify.js#L377) method, which clean everything up and re-create all tags. it's not intelligent at all,...
ok ok no need to get angry, I understand you want a "controlled" component, let me think how can this be done. But can you at least explain to me...
Tagify was built in javascript and not in React and in vanilla-world, there are no controlled-components, so the wrapper doesn't magically transforms Tagify to be controlled, it a complex thing...
Tagify now [supports *hooks*](https://github.com/yairEO/tagify#hooks), not React hooks, but "hooks" as the term was originally used before React or any other framework existed. Developers used to name certain placed in their...
> I want to display a toast when the user attempts to add a tag that goes beyond the limit or has too many characters. To achieve this, I leave...