evui 3.3.60 → 3.3.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/evui.common.js +1 -14
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +1 -14
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/chart/element/element.heatmap.js +4 -16
package/dist/evui.common.js
CHANGED
|
@@ -8008,7 +8008,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
8008
8008
|
/***/ "9224":
|
|
8009
8009
|
/***/ (function(module) {
|
|
8010
8010
|
|
|
8011
|
-
module.exports = JSON.parse("{\"a\":\"3.3.
|
|
8011
|
+
module.exports = JSON.parse("{\"a\":\"3.3.61\"}");
|
|
8012
8012
|
|
|
8013
8013
|
/***/ }),
|
|
8014
8014
|
|
|
@@ -37921,19 +37921,6 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
|
|
|
37921
37921
|
ctx.shadowColor = helpers_util.colorStringToRgba('#959494');
|
|
37922
37922
|
ctx.strokeStyle = color;
|
|
37923
37923
|
ctx.fillStyle = color;
|
|
37924
|
-
|
|
37925
|
-
if (this.stroke.show) {
|
|
37926
|
-
var lineWidth = this.stroke.lineWidth;
|
|
37927
|
-
|
|
37928
|
-
if (lineWidth < w && lineWidth < h) {
|
|
37929
|
-
ctx.lineWidth = lineWidth;
|
|
37930
|
-
x += lineWidth * 0.5;
|
|
37931
|
-
y += lineWidth * 0.5;
|
|
37932
|
-
w -= lineWidth;
|
|
37933
|
-
h -= lineWidth;
|
|
37934
|
-
}
|
|
37935
|
-
}
|
|
37936
|
-
|
|
37937
37924
|
this.drawItem(ctx, x - 0.5, y - 0.5, w + 1, h + 1, this.stroke);
|
|
37938
37925
|
ctx.restore();
|
|
37939
37926
|
|