@semcore/utils
Advanced tools
Comparing version 2.4.0 to 2.4.1
@@ -5,4 +5,10 @@ # Changelog | ||
## [2.4.0] - 2019-06-24 | ||
## [2.4.1] 2019-06-25 | ||
### Fixed | ||
- Исправлены prop-types `WithAutoFocus` | ||
## [2.4.0] - 2019-06-24 | ||
### Added | ||
@@ -9,0 +15,0 @@ |
@@ -76,3 +76,3 @@ "use strict"; | ||
_defineProperty(EnhancedWithAutoFocus, "propTypes", { | ||
autoFocus: (0, _propTypes.oneOfType)(_propTypes.bool, _propTypes.string) | ||
autoFocus: (0, _propTypes.oneOfType)([_propTypes.bool, _propTypes.string]) | ||
}); | ||
@@ -79,0 +79,0 @@ |
{ | ||
"name": "@semcore/utils", | ||
"description": "SEMRush Utils Component", | ||
"version": "2.4.0", | ||
"version": "2.4.1", | ||
"main": "lib/index.js", | ||
@@ -6,0 +6,0 @@ "author": "Roman Lysov <r.lysov@semrush.com>", |
@@ -10,3 +10,3 @@ import React, { PureComponent } from 'react'; | ||
static propTypes = { | ||
autoFocus: oneOfType(bool, string), | ||
autoFocus: oneOfType([bool, string]), | ||
}; | ||
@@ -13,0 +13,0 @@ |
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
89622