Skip to content

Commit

Permalink
Add typeahead selector
Browse files Browse the repository at this point in the history
  • Loading branch information
BrodrickChilds committed Jun 12, 2019
1 parent b1667c4 commit 25d2321
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-typeahead",
"version": "2.0.0-alpha.7",
"name": "@brodrickchilds/react-typeahead",
"version": "2.0.14",
"description": "React-based typeahead and typeahead-tokenizer",
"keywords": [
"react",
Expand All @@ -9,9 +9,9 @@
"autocomplete",
"react-component"
],
"homepage": "https://github.com/fmoo/react-typeahead",
"homepage": "https://github.com/BrodrickChilds/react-typeahead",
"bugs": {
"url": "https://github.com/fmoo/react-typeahead/issues",
"url": "https://github.com/BrodrickChilds/react-typeahead/issues",
"email": "[email protected]"
},
"license": "ISC",
Expand All @@ -29,7 +29,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/fmoo/react-typeahead.git"
"url": "https://github.com/BrodrickChilds/react-typeahead"
},
"dependencies": {
"classnames": "^1.2.0",
Expand Down
4 changes: 3 additions & 1 deletion src/react-typeahead.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
var Typeahead = require('./typeahead');
var Tokenizer = require('./tokenizer');
var TypeaheadSelector = require('./typeahead/selector')

module.exports = {
Typeahead: Typeahead,
Tokenizer: Tokenizer
Tokenizer: Tokenizer,
TypeaheadSelector: TypeaheadSelector
};

0 comments on commit 25d2321

Please sign in to comment.