Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement new features #2

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
010e7de
fixed styled components bug, added click callback prop as well as mak…
Jun 14, 2019
02d6dde
Merge pull request #1 from seanhouli/fix_styled_components_bug
seanhouli Jun 14, 2019
73d63ba
make suggestions disappear after clicking one
Jun 14, 2019
07e4695
added ability to scroll and select suggestions with up/down arrow key…
Jun 14, 2019
9016bda
prevent defaults on keys we're interested in
Jun 14, 2019
3b4bd04
get rid of logs
Jun 14, 2019
388f697
refactored a bit, changed dark greys to light greys
Jun 17, 2019
0280174
add selectColor prop
Jun 17, 2019
c7b9df8
suggestions disappear when input not in focus, callback now supplied …
Jun 17, 2019
b526295
add proptypes
Jun 17, 2019
20b6ace
update some deps, get testing to work
Jun 17, 2019
2915274
added tests, fixed some bugs
Jun 18, 2019
2586223
cleanup a bit
Jun 18, 2019
087514f
small bug fix
Jun 18, 2019
c63cad4
added readme, changed country prop to be optional
Jun 19, 2019
7dd0c3e
add gif to readme
Jun 19, 2019
252dcac
change country to optional prop, add searchHint prop
Jun 20, 2019
81b8dbd
update readme
Jun 20, 2019
8738978
refactor Suggestion
Jun 20, 2019
8980a08
disable arrow key navigation when touch display detected
Jun 25, 2019
af62e4f
make package.json and readme changes to reflect new npm module
Jun 25, 2019
9710ccf
fixing babel build
Jun 25, 2019
292c115
add keywords to package.json
Jun 26, 2019
463b654
update readme
Jun 26, 2019
a546865
fix tests
Jun 26, 2019
bfcad0a
release version 1.0.1
Jun 26, 2019
e24ec01
Merge pull request #2 from mikestaub/master
seanhouli Jun 26, 2019
5da0500
update npm dependencies
Jun 26, 2019
cddadad
release v1.0.2
Jun 26, 2019
8225e4b
Merge pull request #3 from mikestaub/master
seanhouli Jun 26, 2019
7377d08
fix package.json dependencies
Jul 2, 2019
9d245eb
release v1.0.3
Jul 2, 2019
eee65d4
Merge pull request #4 from mikestaub/master
seanhouli Jul 2, 2019
2fc0e89
add default query prop
Jul 8, 2019
718c1c7
update version
Jul 8, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .babelrc

This file was deleted.

18 changes: 18 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const plugins = [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
];

if (process.env.NODE_ENV === "test") {
plugins.push("babel-plugin-rewire");
}

module.exports = {
presets: [
"@babel/preset-env",
"@babel/preset-react"
],
plugins
};


Loading