evui 3.4.80 → 3.4.82
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 +5 -3
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +5 -3
- 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.scatter.js +1 -1
- package/src/components/grid/uses.js +3 -1
package/dist/evui.common.js
CHANGED
|
@@ -11217,7 +11217,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
11217
11217
|
/***/ "9224":
|
|
11218
11218
|
/***/ (function(module) {
|
|
11219
11219
|
|
|
11220
|
-
module.exports = JSON.parse("{\"a\":\"3.4.
|
|
11220
|
+
module.exports = JSON.parse("{\"a\":\"3.4.82\"}");
|
|
11221
11221
|
|
|
11222
11222
|
/***/ }),
|
|
11223
11223
|
|
|
@@ -36336,7 +36336,9 @@ var uses_filterEvent = function filterEvent(params) {
|
|
|
36336
36336
|
column.type = column.type || 'string';
|
|
36337
36337
|
|
|
36338
36338
|
if (columnValue !== null) {
|
|
36339
|
-
if (
|
|
36339
|
+
if (columnValue instanceof Array) {
|
|
36340
|
+
columnValue = JSON.stringify(columnValue);
|
|
36341
|
+
} else if (_typeof(columnValue) === 'object') {
|
|
36340
36342
|
columnValue = columnValue[column.field];
|
|
36341
36343
|
}
|
|
36342
36344
|
|
|
@@ -42264,7 +42266,7 @@ var element_scatter_Scatter = /*#__PURE__*/function () {
|
|
|
42264
42266
|
var overflowColor = item.y > minmaxY.graphMax && this.overflowColor;
|
|
42265
42267
|
var color = overflowColor || item.color || this.color;
|
|
42266
42268
|
ctx.strokeStyle = color;
|
|
42267
|
-
var pointFillColor = overflowColor ||
|
|
42269
|
+
var pointFillColor = overflowColor || item.color || this.pointFill || this.color;
|
|
42268
42270
|
ctx.fillStyle = pointFillColor;
|
|
42269
42271
|
helpers_canvas.drawPoint(ctx, pointStyle, pointSize, item.xp, item.yp);
|
|
42270
42272
|
}
|