-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add duplicate support for multi select
- Loading branch information
Kim Yu Ng
committed
Sep 30, 2019
1 parent
677dd4f
commit c92893e
Showing
8 changed files
with
190 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8.4.0 | ||
8.16.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
{ | ||
"name": "react-select", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"description": "A Select control built with and for ReactJS", | ||
"main": "lib/index.js", | ||
"jsnext:main": "dist/react-select.es.js", | ||
"module": "dist/react-select.es.js", | ||
"style": "dist/react-select.min.css", | ||
"author": "Jed Watson", | ||
"contributors": [ | ||
{ | ||
"name": "Kim Yu Ng", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -58,7 +64,7 @@ | |
"react-highlight-words": "^0.8.1", | ||
"react-test-renderer": "^15.6.1", | ||
"react-virtualized": "^9.9.0", | ||
"react-virtualized-select": "^3.1.0", | ||
"react-virtualized-select": "^3.1.3", | ||
"rollup": "^0.49.2", | ||
"rollup-plugin-babel": "^3.0.2", | ||
"rollup-plugin-commonjs": "^8.2.0", | ||
|
@@ -88,7 +94,12 @@ | |
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register", | ||
"precommit": "lint-staged && yarn run test" | ||
}, | ||
"files": ["dist", "less", "lib", "scss"], | ||
"files": [ | ||
"dist", | ||
"less", | ||
"lib", | ||
"scss" | ||
], | ||
"keywords": [ | ||
"combobox", | ||
"form", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters