@atlaskit/tooltip
Advanced tools
Comparing version 8.4.1 to 8.4.2
# @atlaskit/tooltip | ||
## 8.4.2 | ||
- [patch] Makes packages Flow types compatible with version 0.67 [25daac0](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/25daac0) | ||
## 8.4.1 | ||
@@ -4,0 +7,0 @@ - [patch] Re-releasing due to potentially broken babel release [9ed0bba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9ed0bba) |
@@ -97,3 +97,5 @@ 'use strict'; | ||
value: function clearShowTimeout() { | ||
clearTimeout(this.showTimeout); | ||
if (this.showTimeout) { | ||
clearTimeout(this.showTimeout); | ||
} | ||
this.showTimeout = null; | ||
@@ -189,3 +191,5 @@ } | ||
value: function clearHideTimeout() { | ||
clearTimeout(this.hideTimeout); | ||
if (this.hideTimeout) { | ||
clearTimeout(this.hideTimeout); | ||
} | ||
this.queuedForHide = null; | ||
@@ -192,0 +196,0 @@ } |
@@ -86,3 +86,5 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; | ||
value: function clearShowTimeout() { | ||
clearTimeout(this.showTimeout); | ||
if (this.showTimeout) { | ||
clearTimeout(this.showTimeout); | ||
} | ||
this.showTimeout = null; | ||
@@ -178,3 +180,5 @@ } | ||
value: function clearHideTimeout() { | ||
clearTimeout(this.hideTimeout); | ||
if (this.hideTimeout) { | ||
clearTimeout(this.hideTimeout); | ||
} | ||
this.queuedForHide = null; | ||
@@ -181,0 +185,0 @@ } |
{ | ||
"name": "@atlaskit/tooltip", | ||
"version": "8.4.0" | ||
"version": "8.4.1" | ||
} |
{ | ||
"name": "@atlaskit/tooltip", | ||
"version": "8.4.1", | ||
"version": "8.4.2", | ||
"description": "A React Component for displaying Tooltips", | ||
@@ -9,2 +9,3 @@ "license": "Apache-2.0", | ||
"atlaskit:src": "src/index.js", | ||
"atlaskit:designLink": "https://atlassian.design/guidelines/product/components/tooltips", | ||
"files": [ | ||
@@ -40,2 +41,2 @@ "dist" | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
108555
1436