@syncfusion/ej2-heatmap
Advanced tools
Comparing version 18.1.52 to 18.1.54
@@ -9,2 +9,14 @@ # Changelog | ||
- `#270398` -issue with tooltip while using scale has been fixed. | ||
#### Bug Fixes | ||
- `#277945` - Legend label cropping issue has been fixed. | ||
## 18.1.52 (2020-05-13) | ||
### HeatMap | ||
#### Bug Fixes | ||
- `#270398` - Heatmap tooltip alignment issue has been fixed. | ||
@@ -11,0 +23,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.1.52 | ||
* version : 18.1.54 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-heatmap@*", | ||
"_id": "@syncfusion/ej2-heatmap@18.1.45", | ||
"_id": "@syncfusion/ej2-heatmap@18.1.52", | ||
"_inBundle": false, | ||
"_integrity": "sha512-2CpNVsD1XuDL08Fey+SUSLqUYM82kXadZvFyhpAhYurjTMZy2D0NfyQOkmITQZNnegI5e5qRJ2Qkh2s8hCI3Aw==", | ||
"_integrity": "sha512-a61RoVqLPTPvZSB/Xv2/mVVzNVnhKb3aSnDBoFU2UPkEBWdDc7Jx1+zAnicmnc1Q0sjhZtUulmLKL8it+S5wJw==", | ||
"_location": "/@syncfusion/ej2-heatmap", | ||
@@ -28,4 +28,4 @@ "_phantomChildren": { | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-heatmap/-/ej2-heatmap-18.1.45.tgz", | ||
"_shasum": "778c9646265fb09d11871bdfa18b0d9283aa9591", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-heatmap/-/ej2-heatmap-18.1.52.tgz", | ||
"_shasum": "e25b5097666cfc52f469067775609c699c145edb", | ||
"_spec": "@syncfusion/ej2-heatmap@*", | ||
@@ -38,7 +38,7 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~18.1.52", | ||
"@syncfusion/ej2-base": "~18.1.53", | ||
"@syncfusion/ej2-compression": "~18.1.52", | ||
"@syncfusion/ej2-data": "~18.1.52", | ||
"@syncfusion/ej2-file-utils": "~18.1.52", | ||
"@syncfusion/ej2-pdf-export": "~18.1.52", | ||
"@syncfusion/ej2-pdf-export": "~18.1.53", | ||
"@syncfusion/ej2-svg-base": "~18.1.52" | ||
@@ -78,4 +78,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "18.1.52", | ||
"version": "18.1.54", | ||
"sideEffects": false | ||
} |
@@ -292,2 +292,6 @@ /** | ||
*/ | ||
isRectBoundary: boolean; | ||
/** | ||
* @private | ||
*/ | ||
private border; | ||
@@ -471,2 +475,7 @@ /** | ||
/** | ||
* Handles the mouse Move. | ||
* @return {boolean} | ||
*/ | ||
private mouseAction; | ||
/** | ||
* Triggering cell selection | ||
@@ -473,0 +482,0 @@ */ |
@@ -529,3 +529,6 @@ var __extends = (this && this.__extends) || (function () { | ||
if (this.heatMap.cellSettings.enableCellHighlighting) { | ||
var oldElement = document.getElementById(this.heatMap.tempRectHoverClass); | ||
var oldElement = void 0; | ||
if (this.heatMap.tempRectHoverClass) { | ||
oldElement = document.getElementById(this.heatMap.tempRectHoverClass); | ||
} | ||
if (oldElement && !this.heatMap.rectSelected) { | ||
@@ -543,3 +546,6 @@ oldElement.setAttribute('opacity', '1'); | ||
if (this.heatMap.cellSettings.enableCellHighlighting) { | ||
var oldElement = document.getElementById(this.heatMap.tempRectHoverClass); | ||
var oldElement = void 0; | ||
if (this.heatMap.tempRectHoverClass) { | ||
oldElement = document.getElementById(this.heatMap.tempRectHoverClass); | ||
} | ||
if (oldElement && !this.heatMap.rectSelected) { | ||
@@ -546,0 +552,0 @@ oldElement.setAttribute('opacity', '1'); |
@@ -76,3 +76,3 @@ /** | ||
if (ele && ele.style.visibility !== 'hidden') { | ||
if (this.tooltipObject && isFadeout) { | ||
if (this.tooltipObject && isFadeout && this.heatMap.isRectBoundary) { | ||
this.tooltipObject.fadeOut(); | ||
@@ -79,0 +79,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
4353590
29760