├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── categorized-tag-input.css ├── categorized-tag-input.js ├── categorized-tag-input.js.map ├── index.html ├── index.js ├── package.json ├── server.js ├── src ├── CategorizedTagInput.jsx ├── Category.jsx ├── Input.jsx ├── Panel.jsx ├── Tag.jsx ├── index.js └── keyboard.js ├── test ├── CategorizedTagInput_spec.js ├── Category_spec.js ├── Input_spec.js ├── Panel_spec.js ├── Tag_spec.js └── jsdomReact.js ├── webpack.config.js └── webpack.test.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/README.md -------------------------------------------------------------------------------- /categorized-tag-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/categorized-tag-input.css -------------------------------------------------------------------------------- /categorized-tag-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/categorized-tag-input.js -------------------------------------------------------------------------------- /categorized-tag-input.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/categorized-tag-input.js.map -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/server.js -------------------------------------------------------------------------------- /src/CategorizedTagInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/CategorizedTagInput.jsx -------------------------------------------------------------------------------- /src/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/Category.jsx -------------------------------------------------------------------------------- /src/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/Input.jsx -------------------------------------------------------------------------------- /src/Panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/Panel.jsx -------------------------------------------------------------------------------- /src/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/Tag.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/index.js -------------------------------------------------------------------------------- /src/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/src/keyboard.js -------------------------------------------------------------------------------- /test/CategorizedTagInput_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/CategorizedTagInput_spec.js -------------------------------------------------------------------------------- /test/Category_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/Category_spec.js -------------------------------------------------------------------------------- /test/Input_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/Input_spec.js -------------------------------------------------------------------------------- /test/Panel_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/Panel_spec.js -------------------------------------------------------------------------------- /test/Tag_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/Tag_spec.js -------------------------------------------------------------------------------- /test/jsdomReact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/test/jsdomReact.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erizocosmico/react-categorized-tag-input/HEAD/webpack.test.config.js --------------------------------------------------------------------------------