react-categorized-tag-input icon indicating copy to clipboard operation
react-categorized-tag-input copied to clipboard

React.js component for making tag autocompletion inputs with categorized results.

Results 6 react-categorized-tag-input issues
Sort by recently updated
recently updated
newest added

Steps to reproduce: 1. npm install react-caetgorized-tag-input 2. import TagInput from 'react-categorized-tag-input'; That's it. I get the error: ERROR TypeError: undefined is not an object (evaluating 'i.bool') grepping 'i.bool' in...

React with version >= 15.5 no longer support React.PropTypes and React.createClass. This pull request use the new packages and rebuild the dist file to support React with version >= 15.5.

Source: ```js import React from "react"; import ReactDOM from "react-dom"; import TagInput from 'react-categorized-tag-input'; import "./styles.css"; function App() { return ( ); } const rootElement = document.getElementById("root"); ReactDOM.render(, rootElement); ```...

Tag object { title: 'String to used to identify the tag', category: 'id of the category for the tag' } how to add new fields in tag object.for example i...

Hi, When I add an "tag" item from the autocomplete, it does not get removed from the autocomplete list. This means it allows duplicates of the same tag to be...

- added ignore for .**idea**; - **fixed css missing spaces tag title**; (when a tag had spaces "no mine", and if the search term was "no" or "mi" the space...