We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b66e5f6 commit 9572ae1Copy full SHA for 9572ae1
package.json
@@ -34,6 +34,7 @@
34
"umd": "3.0.1"
35
},
36
"peerDependenies": {
37
- "react": "^0.14.0 || ^15.0"
+ "react": ">=0.14",
38
+ "prop-types": "~0.15"
39
}
40
src/InputHints.js
@@ -1,5 +1,6 @@
1
const React = require('react')
2
-const {Component, PropTypes} = React
+const {Component} = React
3
+const PropTypes = require('prop-types')
4
5
const TICK_INIT = 'TICK_INIT'
6
const TICK_WRITE = 'TICK_WRITE'
0 commit comments