Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 4dbd211

Browse files
author
Stephen Rivas Jr
committed
[release] 1.0.1
1 parent 436af02 commit 4dbd211

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.0.1 - 26 June 2016
2+
--------------------------------------
3+
4+
- Fixed compatibility issues with React 15.x, removed use of previously deprecated APIs
5+
16
v1.0.0 - 17 June 2016
27
--------------------------------------
38

build/lib/Autocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ var Autocomplete = React.createClass({
314314
},
315315

316316
isInputFocused: function isInputFocused() {
317-
var el = React.findDOMNode(this.refs.input);
317+
var el = this.refs.input;
318318
return el.ownerDocument && el === el.ownerDocument.activeElement;
319319
},
320320

dist/react-autocomplete.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-autocomplete",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Accessible, extensible, Autocomplete for React.js",
55
"main": "./build/lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)