react-select-plus
Advanced tools
Comparing version 1.0.0-rc.3.patch7 to 1.0.0-rc.3.patch9
@@ -53,2 +53,6 @@ /*! | ||
var _utilsStripDiacritics = require('./utils/stripDiacritics'); | ||
var _utilsStripDiacritics2 = _interopRequireDefault(_utilsStripDiacritics); | ||
var _Async = require('./Async'); | ||
@@ -249,3 +253,3 @@ | ||
isFocused: false, | ||
isOpen: false, | ||
isOpen: this.props.isOpen != null ? this.props.isOpen : false, | ||
isPseudoFocused: false, | ||
@@ -1362,3 +1366,5 @@ required: false | ||
Select.stripDiacritics = _utilsStripDiacritics2['default']; | ||
exports['default'] = Select; | ||
module.exports = exports['default']; |
{ | ||
"name": "react-select-plus", | ||
"version": "1.0.0-rc.3.patch7", | ||
"version": "1.0.0-rc.3.patch9", | ||
"description": "A fork of react-select with support for option groups", | ||
@@ -5,0 +5,0 @@ "main": "lib/Select.js", |
@@ -16,2 +16,3 @@ /*! | ||
import defaultClearRenderer from './utils/defaultClearRenderer'; | ||
import stripDiacritics from './utils/stripDiacritics'; | ||
@@ -196,3 +197,3 @@ import Async from './Async'; | ||
isFocused: false, | ||
isOpen: false, | ||
isOpen: this.props.isOpen != null ? this.props.isOpen : false, | ||
isPseudoFocused: false, | ||
@@ -1252,2 +1253,4 @@ required: false, | ||
Select.stripDiacritics = stripDiacritics; | ||
export default Select; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
839693
90
12953