@atlaskit/layer-manager
Advanced tools
Comparing version 2.8.1 to 2.8.2
# @atlaskit/layer-manager | ||
## 2.8.2 | ||
- [patch] Fix flow type error and bug not calling preventDefault [aac58a9](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/aac58a9) | ||
## 2.8.1 | ||
@@ -4,0 +7,0 @@ - [patch] Re-releasing due to potentially broken babel release [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba) |
@@ -79,3 +79,4 @@ 'use strict'; | ||
shiftKey = _ref.shiftKey, | ||
target = _ref.target; | ||
target = _ref.target, | ||
preventDefault = _ref.preventDefault; | ||
@@ -89,3 +90,3 @@ if (key !== 'Tab') return; | ||
if (target === last && !shiftKey) { | ||
event.preventDefault(); | ||
preventDefault(); | ||
first.focus(); | ||
@@ -92,0 +93,0 @@ } |
@@ -61,3 +61,4 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; | ||
shiftKey = _ref.shiftKey, | ||
target = _ref.target; | ||
target = _ref.target, | ||
preventDefault = _ref.preventDefault; | ||
@@ -71,3 +72,3 @@ if (key !== 'Tab') return; | ||
if (target === last && !shiftKey) { | ||
event.preventDefault(); | ||
preventDefault(); | ||
first.focus(); | ||
@@ -74,0 +75,0 @@ } |
{ | ||
"name": "@atlaskit/layer-manager", | ||
"version": "2.8.0" | ||
"version": "2.8.1" | ||
} |
{ | ||
"name": "@atlaskit/layer-manager", | ||
"version": "2.8.1", | ||
"version": "2.8.2", | ||
"description": "A React Component for managing layers", | ||
@@ -43,2 +43,2 @@ "license": "Apache-2.0", | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
142655
2065