evui 3.3.12 → 3.3.15

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.
Files changed (29) hide show
  1. package/dist/evui.common.js +1489 -716
  2. package/dist/evui.common.js.map +1 -1
  3. package/dist/evui.umd.js +1489 -716
  4. package/dist/evui.umd.js.map +1 -1
  5. package/dist/evui.umd.min.js +1 -1
  6. package/dist/evui.umd.min.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/components/chart/Chart.vue +23 -3
  9. package/src/components/chart/chart.core.js +12 -9
  10. package/src/components/chart/element/element.heatmap.js +293 -51
  11. package/src/components/chart/element/element.line.js +39 -42
  12. package/src/components/chart/element/element.pie.js +17 -17
  13. package/src/components/chart/element/element.tip.js +1 -1
  14. package/src/components/chart/helpers/helpers.constant.js +13 -11
  15. package/src/components/chart/model/model.series.js +1 -1
  16. package/src/components/chart/model/model.store.js +121 -73
  17. package/src/components/chart/plugins/plugins.interaction.js +111 -25
  18. package/src/components/chart/plugins/plugins.legend.js +28 -7
  19. package/src/components/chart/plugins/plugins.pie.js +17 -0
  20. package/src/components/chart/plugins/plugins.tooltip.js +28 -14
  21. package/src/components/chart/scale/scale.js +13 -3
  22. package/src/components/chart/scale/scale.step.js +52 -10
  23. package/src/components/chart/scale/scale.time.category.js +27 -3
  24. package/src/components/chart/uses.js +23 -1
  25. package/src/components/grid/Grid.vue +26 -11
  26. package/src/components/grid/grid.summary.vue +36 -6
  27. package/src/components/grid/uses.js +4 -1
  28. package/src/components/treeGrid/TreeGrid.vue +29 -11
  29. package/src/components/treeGrid/uses.js +4 -1
@@ -164,6 +164,21 @@ module.exports = function (fn, that, length) {
164
164
  /* unused harmony reexport * */
165
165
 
166
166
 
167
+ /***/ }),
168
+
169
+ /***/ "044f":
170
+ /***/ (function(module, exports, __webpack_require__) {
171
+
172
+ // style-loader: Adds some css to the DOM by adding a <style> tag
173
+
174
+ // load the styles
175
+ var content = __webpack_require__("4890");
176
+ if(typeof content === 'string') content = [[module.i, content, '']];
177
+ if(content.locals) module.exports = content.locals;
178
+ // add the styles to the DOM
179
+ var add = __webpack_require__("499e").default
180
+ var update = add("1fe9e43e", content, true, {"sourceMap":false,"shadowMode":false});
181
+
167
182
  /***/ }),
168
183
 
169
184
  /***/ "0538":
@@ -4220,17 +4235,6 @@ module.exports = function (it) {
4220
4235
  };
4221
4236
 
4222
4237
 
4223
- /***/ }),
4224
-
4225
- /***/ "1db4":
4226
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
4227
-
4228
- "use strict";
4229
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_2eaec3d6_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e17d");
4230
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_2eaec3d6_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_2eaec3d6_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
4231
- /* unused harmony reexport * */
4232
-
4233
-
4234
4238
  /***/ }),
4235
4239
 
4236
4240
  /***/ "1dde":
@@ -4880,6 +4884,28 @@ function stubFalse() {
4880
4884
  /* harmony default export */ __webpack_exports__["a"] = (stubFalse);
4881
4885
 
4882
4886
 
4887
+ /***/ }),
4888
+
4889
+ /***/ "2f87":
4890
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
4891
+
4892
+ "use strict";
4893
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_fd0ffe52_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("87e7");
4894
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_fd0ffe52_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_grid_summary_vue_vue_type_style_index_0_id_fd0ffe52_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
4895
+ /* unused harmony reexport * */
4896
+
4897
+
4898
+ /***/ }),
4899
+
4900
+ /***/ "2fe8":
4901
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
4902
+
4903
+ "use strict";
4904
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_df219c50_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("3d53");
4905
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_df219c50_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_df219c50_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
4906
+ /* unused harmony reexport * */
4907
+
4908
+
4883
4909
  /***/ }),
4884
4910
 
4885
4911
  /***/ "339f":
@@ -5009,29 +5035,6 @@ module.exports = function (it) {
5009
5035
  };
5010
5036
 
5011
5037
 
5012
- /***/ }),
5013
-
5014
- /***/ "3c39":
5015
- /***/ (function(module, exports, __webpack_require__) {
5016
-
5017
- // Imports
5018
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
5019
- var ___CSS_LOADER_GET_URL_IMPORT___ = __webpack_require__("1de5");
5020
- var ___CSS_LOADER_URL_IMPORT_0___ = __webpack_require__("f051");
5021
- var ___CSS_LOADER_URL_IMPORT_1___ = __webpack_require__("0924");
5022
- var ___CSS_LOADER_URL_IMPORT_2___ = __webpack_require__("eb91");
5023
- var ___CSS_LOADER_URL_IMPORT_3___ = __webpack_require__("a884");
5024
- exports = ___CSS_LOADER_API_IMPORT___(false);
5025
- var ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);
5026
- var ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);
5027
- var ___CSS_LOADER_URL_REPLACEMENT_2___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_2___);
5028
- var ___CSS_LOADER_URL_REPLACEMENT_3___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_3___);
5029
- // Module
5030
- exports.push([module.i, ".table[data-v-6493e3f4]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-6493e3f4]{padding-top:0}.table .table-header[data-v-6493e3f4]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-6493e3f4]{border-top:2px solid;border-bottom:1px solid}.table .table-header.non-border[data-v-6493e3f4]{border-bottom:2px solid #7f7f7f!important}.column-list[data-v-6493e3f4]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-6493e3f4],.column-list[data-v-6493e3f4]{position:relative;height:100%}.column[data-v-6493e3f4]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-6493e3f4]{border-right:1px solid}.column[data-v-6493e3f4]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-6493e3f4]{cursor:default!important}.column .sort-icon[data-v-6493e3f4]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-6493e3f4]{font-size:13px;color:#005cc8}.column-name[data-v-6493e3f4]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-6493e3f4]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-6493e3f4]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-6493e3f4]{display:block;cursor:pointer}.column-filter-status[data-v-6493e3f4]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-6493e3f4]{font-size:10px;vertical-align:top}.column-resize[data-v-6493e3f4]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-6493e3f4]:hover{cursor:col-resize}.table-body[data-v-6493e3f4]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-6493e3f4]{clear:both;border-spacing:0;border-collapse:collapse;width:inherit}.table-body.stripe tr[data-v-6493e3f4]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-6493e3f4]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-6493e3f4]{border-bottom:1px solid}.table-body .row[data-v-6493e3f4]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-6493e3f4]{border-bottom:1px solid}.table-body .row.selected[data-v-6493e3f4]{background:rgba(219,240,249,.6)!important;color:inherit!important;font-size:inherit!important}.dark .table-body .row.selected[data-v-6493e3f4]{background:!important;color:inherit!important;font-size:inherit!important}.table-body .row.highlight[data-v-6493e3f4]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-6493e3f4]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-6493e3f4]{border-right:1px solid}.table-body .cell div[data-v-6493e3f4]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-6493e3f4]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-6493e3f4]{overflow:initial}.table-body .cell.float[data-v-6493e3f4],.table-body .cell.number[data-v-6493e3f4]{text-align:right}.table-body .cell.string[data-v-6493e3f4],.table-body .cell.stringNumber[data-v-6493e3f4]{text-align:left}.table-body .cell.center[data-v-6493e3f4]{text-align:center}.table-body .cell.left[data-v-6493e3f4]{text-align:left}.table-body .cell.left .wrap[data-v-6493e3f4]{justify-content:flex-start}.table-body .cell.right[data-v-6493e3f4]{text-align:right}.table-body .cell.right .wrap[data-v-6493e3f4]{justify-content:flex-end}.table-body .cell[data-v-6493e3f4]:last-child{border-right:0}.table-resize-line[data-v-6493e3f4]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-6493e3f4]{border-right:1px solid}.vscroll-spacer[data-v-6493e3f4]{opacity:0;clear:both}[v-cloak][data-v-6493e3f4]{display:none}.ev-checkbox[data-v-6493e3f4]{margin:0}.non-border[data-v-6493e3f4]{border:none!important}.is-empty[data-v-6493e3f4]{height:30px;text-align:center}.postgresql[data-v-6493e3f4]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") no-repeat 50%}.oracle[data-v-6493e3f4]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_1___ + ") no-repeat 50%}.mongodb[data-v-6493e3f4]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_2___ + ") no-repeat 50%}.mysql[data-v-6493e3f4]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_3___ + ") no-repeat 50%}", ""]);
5031
- // Exports
5032
- module.exports = exports;
5033
-
5034
-
5035
5038
  /***/ }),
5036
5039
 
5037
5040
  /***/ "3c48":
@@ -5084,6 +5087,21 @@ defineIterator(String, 'String', function (iterated) {
5084
5087
  });
5085
5088
 
5086
5089
 
5090
+ /***/ }),
5091
+
5092
+ /***/ "3d53":
5093
+ /***/ (function(module, exports, __webpack_require__) {
5094
+
5095
+ // style-loader: Adds some css to the DOM by adding a <style> tag
5096
+
5097
+ // load the styles
5098
+ var content = __webpack_require__("69fc");
5099
+ if(typeof content === 'string') content = [[module.i, content, '']];
5100
+ if(content.locals) module.exports = content.locals;
5101
+ // add the styles to the DOM
5102
+ var add = __webpack_require__("499e").default
5103
+ var update = add("6a7aacee", content, true, {"sourceMap":false,"shadowMode":false});
5104
+
5087
5105
  /***/ }),
5088
5106
 
5089
5107
  /***/ "3f8c":
@@ -5164,21 +5182,6 @@ var global = __webpack_require__("da84");
5164
5182
  module.exports = global;
5165
5183
 
5166
5184
 
5167
- /***/ }),
5168
-
5169
- /***/ "446d":
5170
- /***/ (function(module, exports, __webpack_require__) {
5171
-
5172
- // style-loader: Adds some css to the DOM by adding a <style> tag
5173
-
5174
- // load the styles
5175
- var content = __webpack_require__("6bb5");
5176
- if(typeof content === 'string') content = [[module.i, content, '']];
5177
- if(content.locals) module.exports = content.locals;
5178
- // add the styles to the DOM
5179
- var add = __webpack_require__("499e").default
5180
- var update = add("0f9b2d07", content, true, {"sourceMap":false,"shadowMode":false});
5181
-
5182
5185
  /***/ }),
5183
5186
 
5184
5187
  /***/ "44ad":
@@ -5332,6 +5335,20 @@ module.exports = function (O, defaultConstructor) {
5332
5335
  };
5333
5336
 
5334
5337
 
5338
+ /***/ }),
5339
+
5340
+ /***/ "4890":
5341
+ /***/ (function(module, exports, __webpack_require__) {
5342
+
5343
+ // Imports
5344
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
5345
+ exports = ___CSS_LOADER_API_IMPORT___(false);
5346
+ // Module
5347
+ exports.push([module.i, ".table[data-v-1aab6f12]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-1aab6f12]{padding-top:0}.table .table-header[data-v-1aab6f12]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-1aab6f12]{border-top:2px solid;border-bottom:1px solid}.column-list[data-v-1aab6f12]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-1aab6f12],.column-list[data-v-1aab6f12]{position:relative;height:100%}.column[data-v-1aab6f12]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-1aab6f12]{border-right:1px solid}.column[data-v-1aab6f12]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-1aab6f12]{cursor:default!important}.column .sort-icon[data-v-1aab6f12]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-1aab6f12]{font-size:13px;color:#005cc8}.column-name[data-v-1aab6f12]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-1aab6f12]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-1aab6f12]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-1aab6f12]{display:block;cursor:pointer}.column-filter-status[data-v-1aab6f12]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-1aab6f12]{font-size:10px;vertical-align:top}.column-resize[data-v-1aab6f12]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-1aab6f12]:hover{cursor:col-resize}.table-body[data-v-1aab6f12]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-1aab6f12]{clear:both;width:inherit;border-spacing:0;border-collapse:collapse}.table-body.stripe tr[data-v-1aab6f12]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-1aab6f12]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-1aab6f12]{border-bottom:1px solid}.table-body .row[data-v-1aab6f12]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-1aab6f12]{border-bottom:1px solid}.table-body .row.selected[data-v-1aab6f12]{background:rgba(219,240,249,.6)!important;color:inherit!important}.dark .table-body .row.selected[data-v-1aab6f12]{background:!important;color:inherit!important}.table-body .row.highlight[data-v-1aab6f12]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-1aab6f12]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-1aab6f12]{border-right:1px solid}.table-body .cell div[data-v-1aab6f12]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-1aab6f12]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-1aab6f12]{overflow:initial}.table-body .cell.float[data-v-1aab6f12],.table-body .cell.number[data-v-1aab6f12]{text-align:right}.table-body .cell.string[data-v-1aab6f12],.table-body .cell.stringNumber[data-v-1aab6f12]{text-align:left}.table-body .cell.center[data-v-1aab6f12]{text-align:center}.table-body .cell.left[data-v-1aab6f12]{text-align:left}.table-body .cell.left .wrap[data-v-1aab6f12]{justify-content:flex-start}.table-body .cell.right[data-v-1aab6f12]{text-align:right}.table-body .cell.right .wrap[data-v-1aab6f12]{justify-content:flex-end}.table-body .cell[data-v-1aab6f12]:last-child{border-right:0}.table-body .cell.tree-td[data-v-1aab6f12]{text-align:left!important}.table-resize-line[data-v-1aab6f12]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-1aab6f12]{border-right:1px solid}.vscroll-spacer[data-v-1aab6f12]{opacity:0;clear:both}[v-cloak][data-v-1aab6f12]{display:none}.ev-checkbox[data-v-1aab6f12]{margin:0}.non-border[data-v-1aab6f12]{border:none!important}.is-empty[data-v-1aab6f12]{height:30px;text-align:center}", ""]);
5348
+ // Exports
5349
+ module.exports = exports;
5350
+
5351
+
5335
5352
  /***/ }),
5336
5353
 
5337
5354
  /***/ "4930":
@@ -6510,21 +6527,6 @@ var update = add("e9f0be08", content, true, {"sourceMap":false,"shadowMode":fals
6510
6527
 
6511
6528
  /***/ }),
6512
6529
 
6513
- /***/ "6301":
6514
- /***/ (function(module, exports, __webpack_require__) {
6515
-
6516
- // style-loader: Adds some css to the DOM by adding a <style> tag
6517
-
6518
- // load the styles
6519
- var content = __webpack_require__("3c39");
6520
- if(typeof content === 'string') content = [[module.i, content, '']];
6521
- if(content.locals) module.exports = content.locals;
6522
- // add the styles to the DOM
6523
- var add = __webpack_require__("499e").default
6524
- var update = add("215a702e", content, true, {"sourceMap":false,"shadowMode":false});
6525
-
6526
- /***/ }),
6527
-
6528
6530
  /***/ "6360":
6529
6531
  /***/ (function(module, exports, __webpack_require__) {
6530
6532
 
@@ -6804,17 +6806,6 @@ module.exports = function (originalArray, length) {
6804
6806
  };
6805
6807
 
6806
6808
 
6807
- /***/ }),
6808
-
6809
- /***/ "67bd":
6810
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
6811
-
6812
- "use strict";
6813
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_6493e3f4_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("6301");
6814
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_6493e3f4_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_6493e3f4_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
6815
- /* unused harmony reexport * */
6816
-
6817
-
6818
6809
  /***/ }),
6819
6810
 
6820
6811
  /***/ "67cc":
@@ -6916,14 +6907,14 @@ module.exports = {
6916
6907
 
6917
6908
  /***/ }),
6918
6909
 
6919
- /***/ "6bb5":
6910
+ /***/ "69fc":
6920
6911
  /***/ (function(module, exports, __webpack_require__) {
6921
6912
 
6922
6913
  // Imports
6923
6914
  var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
6924
6915
  exports = ___CSS_LOADER_API_IMPORT___(false);
6925
6916
  // Module
6926
- exports.push([module.i, ".table[data-v-557cf5ec]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-557cf5ec]{padding-top:0}.table .table-header[data-v-557cf5ec]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-557cf5ec]{border-top:2px solid;border-bottom:1px solid}.column-list[data-v-557cf5ec]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-557cf5ec],.column-list[data-v-557cf5ec]{position:relative;height:100%}.column[data-v-557cf5ec]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-557cf5ec]{border-right:1px solid}.column[data-v-557cf5ec]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-557cf5ec]{cursor:default!important}.column .sort-icon[data-v-557cf5ec]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-557cf5ec]{font-size:13px;color:#005cc8}.column-name[data-v-557cf5ec]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-557cf5ec]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-557cf5ec]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-557cf5ec]{display:block;cursor:pointer}.column-filter-status[data-v-557cf5ec]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-557cf5ec]{font-size:10px;vertical-align:top}.column-resize[data-v-557cf5ec]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-557cf5ec]:hover{cursor:col-resize}.table-body[data-v-557cf5ec]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-557cf5ec]{clear:both;width:inherit;border-spacing:0;border-collapse:collapse}.table-body.stripe tr[data-v-557cf5ec]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-557cf5ec]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-557cf5ec]{border-bottom:1px solid}.table-body .row[data-v-557cf5ec]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-557cf5ec]{border-bottom:1px solid}.table-body .row.selected[data-v-557cf5ec]{background:rgba(219,240,249,.6)!important;color:inherit!important}.dark .table-body .row.selected[data-v-557cf5ec]{background:!important;color:inherit!important}.table-body .row.highlight[data-v-557cf5ec]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-557cf5ec]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-557cf5ec]{border-right:1px solid}.table-body .cell div[data-v-557cf5ec]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-557cf5ec]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-557cf5ec]{overflow:initial}.table-body .cell.float[data-v-557cf5ec],.table-body .cell.number[data-v-557cf5ec]{text-align:right}.table-body .cell.string[data-v-557cf5ec],.table-body .cell.stringNumber[data-v-557cf5ec]{text-align:left}.table-body .cell.center[data-v-557cf5ec]{text-align:center}.table-body .cell.left[data-v-557cf5ec]{text-align:left}.table-body .cell.left .wrap[data-v-557cf5ec]{justify-content:flex-start}.table-body .cell.right[data-v-557cf5ec]{text-align:right}.table-body .cell.right .wrap[data-v-557cf5ec]{justify-content:flex-end}.table-body .cell[data-v-557cf5ec]:last-child{border-right:0}.table-body .cell.tree-td[data-v-557cf5ec]{text-align:left!important}.table-resize-line[data-v-557cf5ec]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-557cf5ec]{border-right:1px solid}.vscroll-spacer[data-v-557cf5ec]{opacity:0;clear:both}[v-cloak][data-v-557cf5ec]{display:none}.ev-checkbox[data-v-557cf5ec]{margin:0}.non-border[data-v-557cf5ec]{border:none!important}.is-empty[data-v-557cf5ec]{height:30px;text-align:center}", ""]);
6917
+ exports.push([module.i, ".ev-chart-wrapper{display:block}.ev-chart-container,.ev-chart-wrapper{position:relative;width:100%;height:100%}.ev-chart-container{overflow:hidden}.ev-chart-title{top:0;left:0;width:100%;padding-left:10px;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ev-chart-legend,.ev-chart-title{position:absolute;overflow:hidden}.ev-chart-legend-box{overflow-x:hidden;overflow-y:auto}.ev-chart-legend-container{position:relative;overflow:hidden}.ev-chart-legend-color,.ev-chart-legend-color--point-line{position:absolute;top:50%;left:0;transform:translateY(-50%);width:18px;height:4px}.ev-chart-legend-color--point-line:after{display:inline-block;position:absolute;top:-2px;left:5px;width:8px;height:8px;content:\" \";border-radius:50%;background-color:inherit}.ev-chart-legend-name{position:absolute;top:50%;left:0;width:100%;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:12px;margin-left:24px;padding-right:16px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:400;transform:translateY(-50%)}.ev-chart-legend-name:hover{font-weight:700}.ev-chart-legend-value{float:right;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ev-chart-resize-bar{position:absolute;background:transparent;opacity:.5;z-index:10}.ev-chart-resize-bar:hover,.ev-chart-resize-ghost{background-color:#e2e2e2}.ev-chart-resize-ghost{position:absolute;width:4px;height:100%;cursor:col-resize;opacity:.5}.ev-chart-resize-ghost.horizontal{width:100%;height:4px;cursor:row-resize}.ev-chart-tooltip{position:absolute;z-index:850;top:0;left:0;overflow-y:hidden;overflow-x:hidden;border-radius:8px}.ev-chart-tooltip .ev-chart-tooltip-header{padding:8px 16px 0 16px;font-family:Roboto,serif;overflow:hidden;font-size:16px}.ev-chart-tooltip .ev-chart-tooltip-header--wrap{word-wrap:break-word}.ev-chart-tooltip .ev-chart-tooltip-header--ellipsis{text-overflow:ellipsis;white-space:nowrap}.ev-chart-tooltip .ev-chart-tooltip-body{overflow-x:hidden;overflow-y:hidden}", ""]);
6927
6918
  // Exports
6928
6919
  module.exports = exports;
6929
6920
 
@@ -7265,6 +7256,29 @@ module.exports = [
7265
7256
  /* unused harmony reexport * */
7266
7257
 
7267
7258
 
7259
+ /***/ }),
7260
+
7261
+ /***/ "79ef":
7262
+ /***/ (function(module, exports, __webpack_require__) {
7263
+
7264
+ // Imports
7265
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
7266
+ var ___CSS_LOADER_GET_URL_IMPORT___ = __webpack_require__("1de5");
7267
+ var ___CSS_LOADER_URL_IMPORT_0___ = __webpack_require__("f051");
7268
+ var ___CSS_LOADER_URL_IMPORT_1___ = __webpack_require__("0924");
7269
+ var ___CSS_LOADER_URL_IMPORT_2___ = __webpack_require__("eb91");
7270
+ var ___CSS_LOADER_URL_IMPORT_3___ = __webpack_require__("a884");
7271
+ exports = ___CSS_LOADER_API_IMPORT___(false);
7272
+ var ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);
7273
+ var ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);
7274
+ var ___CSS_LOADER_URL_REPLACEMENT_2___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_2___);
7275
+ var ___CSS_LOADER_URL_REPLACEMENT_3___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_3___);
7276
+ // Module
7277
+ exports.push([module.i, ".table[data-v-9801c414]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-9801c414]{padding-top:0}.table .table-header[data-v-9801c414]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-9801c414]{border-top:2px solid;border-bottom:1px solid}.table .table-header.non-border[data-v-9801c414]{border-bottom:2px solid #7f7f7f!important}.column-list[data-v-9801c414]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-9801c414],.column-list[data-v-9801c414]{position:relative;height:100%}.column[data-v-9801c414]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-9801c414]{border-right:1px solid}.column[data-v-9801c414]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-9801c414]{cursor:default!important}.column .sort-icon[data-v-9801c414]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-9801c414]{font-size:13px;color:#005cc8}.column-name[data-v-9801c414]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-9801c414]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-9801c414]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-9801c414]{display:block;cursor:pointer}.column-filter-status[data-v-9801c414]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-9801c414]{font-size:10px;vertical-align:top}.column-resize[data-v-9801c414]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-9801c414]:hover{cursor:col-resize}.table-body[data-v-9801c414]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-9801c414]{clear:both;border-spacing:0;border-collapse:collapse;width:inherit}.table-body.stripe tr[data-v-9801c414]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-9801c414]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-9801c414]{border-bottom:1px solid}.table-body .row[data-v-9801c414]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-9801c414]{border-bottom:1px solid}.table-body .row.selected[data-v-9801c414]{background:rgba(219,240,249,.6)!important;color:inherit!important;font-size:inherit!important}.dark .table-body .row.selected[data-v-9801c414]{background:!important;color:inherit!important;font-size:inherit!important}.table-body .row.highlight[data-v-9801c414]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-9801c414]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-9801c414]{border-right:1px solid}.table-body .cell div[data-v-9801c414]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-9801c414]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-9801c414]{overflow:initial}.table-body .cell.float[data-v-9801c414],.table-body .cell.number[data-v-9801c414]{text-align:right}.table-body .cell.string[data-v-9801c414],.table-body .cell.stringNumber[data-v-9801c414]{text-align:left}.table-body .cell.center[data-v-9801c414]{text-align:center}.table-body .cell.left[data-v-9801c414]{text-align:left}.table-body .cell.left .wrap[data-v-9801c414]{justify-content:flex-start}.table-body .cell.right[data-v-9801c414]{text-align:right}.table-body .cell.right .wrap[data-v-9801c414]{justify-content:flex-end}.table-body .cell[data-v-9801c414]:last-child{border-right:0}.table-resize-line[data-v-9801c414]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-9801c414]{border-right:1px solid}.vscroll-spacer[data-v-9801c414]{opacity:0;clear:both}[v-cloak][data-v-9801c414]{display:none}.ev-checkbox[data-v-9801c414]{margin:0}.non-border[data-v-9801c414]{border:none!important}.is-empty[data-v-9801c414]{height:30px;text-align:center}.postgresql[data-v-9801c414]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_0___ + ") no-repeat 50%}.oracle[data-v-9801c414]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_1___ + ") no-repeat 50%}.mongodb[data-v-9801c414]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_2___ + ") no-repeat 50%}.mysql[data-v-9801c414]{background:url(" + ___CSS_LOADER_URL_REPLACEMENT_3___ + ") no-repeat 50%}", ""]);
7278
+ // Exports
7279
+ module.exports = exports;
7280
+
7281
+
7268
7282
  /***/ }),
7269
7283
 
7270
7284
  /***/ "7b0b":
@@ -7665,6 +7679,21 @@ module.exports = function (it) {
7665
7679
  };
7666
7680
 
7667
7681
 
7682
+ /***/ }),
7683
+
7684
+ /***/ "87e7":
7685
+ /***/ (function(module, exports, __webpack_require__) {
7686
+
7687
+ // style-loader: Adds some css to the DOM by adding a <style> tag
7688
+
7689
+ // load the styles
7690
+ var content = __webpack_require__("b7e0");
7691
+ if(typeof content === 'string') content = [[module.i, content, '']];
7692
+ if(content.locals) module.exports = content.locals;
7693
+ // add the styles to the DOM
7694
+ var add = __webpack_require__("499e").default
7695
+ var update = add("54454ea2", content, true, {"sourceMap":false,"shadowMode":false});
7696
+
7668
7697
  /***/ }),
7669
7698
 
7670
7699
  /***/ "8875":
@@ -7943,7 +7972,7 @@ $({ target: 'Number', stat: true }, {
7943
7972
  /***/ "9224":
7944
7973
  /***/ (function(module) {
7945
7974
 
7946
- module.exports = JSON.parse("{\"a\":\"3.3.12\"}");
7975
+ module.exports = JSON.parse("{\"a\":\"3.3.15\"}");
7947
7976
 
7948
7977
  /***/ }),
7949
7978
 
@@ -8837,17 +8866,6 @@ try {
8837
8866
  }
8838
8867
 
8839
8868
 
8840
- /***/ }),
8841
-
8842
- /***/ "96f9":
8843
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
8844
-
8845
- "use strict";
8846
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_53face60_lang_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("f648");
8847
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_53face60_lang_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Chart_vue_vue_type_style_index_0_id_53face60_lang_scss__WEBPACK_IMPORTED_MODULE_0__);
8848
- /* unused harmony reexport * */
8849
-
8850
-
8851
8869
  /***/ }),
8852
8870
 
8853
8871
  /***/ "971c":
@@ -9807,6 +9825,17 @@ module.exports = {
9807
9825
  };
9808
9826
 
9809
9827
 
9828
+ /***/ }),
9829
+
9830
+ /***/ "af65":
9831
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
9832
+
9833
+ "use strict";
9834
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_1aab6f12_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("044f");
9835
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_1aab6f12_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_1aab6f12_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
9836
+ /* unused harmony reexport * */
9837
+
9838
+
9810
9839
  /***/ }),
9811
9840
 
9812
9841
  /***/ "afaf":
@@ -10224,18 +10253,33 @@ module.exports = {
10224
10253
 
10225
10254
  /***/ }),
10226
10255
 
10227
- /***/ "b7b9":
10256
+ /***/ "b7e0":
10228
10257
  /***/ (function(module, exports, __webpack_require__) {
10229
10258
 
10230
10259
  // Imports
10231
10260
  var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
10232
10261
  exports = ___CSS_LOADER_API_IMPORT___(false);
10233
10262
  // Module
10234
- exports.push([module.i, ".ev-chart-wrapper{display:block}.ev-chart-container,.ev-chart-wrapper{position:relative;width:100%;height:100%}.ev-chart-container{overflow:hidden}.ev-chart-title{top:0;left:0;width:100%;padding-left:10px;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ev-chart-legend,.ev-chart-title{position:absolute;overflow:hidden}.ev-chart-legend-box{overflow-x:hidden;overflow-y:auto}.ev-chart-legend-container{position:relative;overflow:hidden}.ev-chart-legend-color,.ev-chart-legend-color--point-line{position:absolute;top:50%;left:0;transform:translateY(-50%);width:18px;height:4px}.ev-chart-legend-color--point-line:after{display:inline-block;position:absolute;top:-2px;left:5px;width:8px;height:8px;content:\" \";border-radius:50%;background-color:inherit}.ev-chart-legend-name{position:absolute;top:50%;left:0;width:100%;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:12px;margin-left:24px;padding-right:16px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:400;transform:translateY(-50%)}.ev-chart-legend-name:hover{font-weight:700}.ev-chart-legend-value{float:right;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.ev-chart-resize-bar{position:absolute;background:transparent;opacity:.5;z-index:10}.ev-chart-resize-bar:hover,.ev-chart-resize-ghost{background-color:#e2e2e2}.ev-chart-resize-ghost{position:absolute;width:4px;height:100%;cursor:col-resize;opacity:.5}.ev-chart-resize-ghost.horizontal{width:100%;height:4px;cursor:row-resize}.ev-chart-tooltip{position:absolute;z-index:850;top:0;left:0;overflow-y:hidden;overflow-x:hidden;border-radius:8px}.ev-chart-tooltip .ev-chart-tooltip-header{padding:8px 16px 0 16px;font-family:Roboto,serif;overflow:hidden;font-size:16px}.ev-chart-tooltip .ev-chart-tooltip-header--wrap{word-wrap:break-word}.ev-chart-tooltip .ev-chart-tooltip-header--ellipsis{text-overflow:ellipsis;white-space:nowrap}.ev-chart-tooltip .ev-chart-tooltip-body{overflow-x:hidden;overflow-y:hidden}", ""]);
10263
+ exports.push([module.i, ".table[data-v-fd0ffe52]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-fd0ffe52]{padding-top:0}.table .table-header[data-v-fd0ffe52]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-fd0ffe52]{border-top:2px solid;border-bottom:1px solid}.table .table-header.non-border[data-v-fd0ffe52]{border-bottom:2px solid #7f7f7f!important}.column-list[data-v-fd0ffe52]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-fd0ffe52],.column-list[data-v-fd0ffe52]{position:relative;height:100%}.column[data-v-fd0ffe52]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-fd0ffe52]{border-right:1px solid}.column[data-v-fd0ffe52]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-fd0ffe52]{cursor:default!important}.column .sort-icon[data-v-fd0ffe52]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-fd0ffe52]{font-size:13px;color:#005cc8}.column-name[data-v-fd0ffe52]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-fd0ffe52]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-fd0ffe52]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-fd0ffe52]{display:block;cursor:pointer}.column-filter-status[data-v-fd0ffe52]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-fd0ffe52]{font-size:10px;vertical-align:top}.column-resize[data-v-fd0ffe52]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-fd0ffe52]:hover{cursor:col-resize}.table-body[data-v-fd0ffe52]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-fd0ffe52]{clear:both;border-spacing:0;border-collapse:collapse;width:inherit}.table-body.stripe tr[data-v-fd0ffe52]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-fd0ffe52]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-fd0ffe52]{border-bottom:1px solid}.table-body .row[data-v-fd0ffe52]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-fd0ffe52]{border-bottom:1px solid}.table-body .row.selected[data-v-fd0ffe52]{background:rgba(219,240,249,.6)!important;color:inherit!important;font-size:inherit!important}.dark .table-body .row.selected[data-v-fd0ffe52]{background:!important;color:inherit!important;font-size:inherit!important}.table-body .row.highlight[data-v-fd0ffe52]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-fd0ffe52]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-fd0ffe52]{border-right:1px solid}.table-body .cell div[data-v-fd0ffe52]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-fd0ffe52]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-fd0ffe52]{overflow:initial}.table-body .cell.float[data-v-fd0ffe52],.table-body .cell.number[data-v-fd0ffe52]{text-align:right}.table-body .cell.string[data-v-fd0ffe52],.table-body .cell.stringNumber[data-v-fd0ffe52]{text-align:left}.table-body .cell.center[data-v-fd0ffe52]{text-align:center}.table-body .cell.left[data-v-fd0ffe52]{text-align:left}.table-body .cell.left .wrap[data-v-fd0ffe52]{justify-content:flex-start}.table-body .cell.right[data-v-fd0ffe52]{text-align:right}.table-body .cell.right .wrap[data-v-fd0ffe52]{justify-content:flex-end}.table-body .cell[data-v-fd0ffe52]:last-child{border-right:0}.table-resize-line[data-v-fd0ffe52]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-fd0ffe52]{border-right:1px solid}.vscroll-spacer[data-v-fd0ffe52]{opacity:0;clear:both}[v-cloak][data-v-fd0ffe52]{display:none}.ev-checkbox[data-v-fd0ffe52]{margin:0}.non-border[data-v-fd0ffe52]{border:none!important}.is-empty[data-v-fd0ffe52]{height:30px;text-align:center}.grid-summary[data-v-fd0ffe52]{width:100%;overflow:hidden;border-bottom:1px solid #b2b2b2;background-color:hsla(0,0%,69.8%,.1)}.dark .grid-summary[data-v-fd0ffe52]{border-bottom:1px solid #555;background-color:hsla(0,0%,40%,.3)}.grid-summary .non-border[data-v-fd0ffe52]{border-bottom:none!important}.grid-summary span[data-v-fd0ffe52]{display:inline-block;overflow:hidden;text-overflow:ellipsis;font-size:14px}.grid-summary span>div[data-v-fd0ffe52]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.grid-summary .column.float[data-v-fd0ffe52],.grid-summary .column.number[data-v-fd0ffe52]{text-align:right}.grid-summary .column.string[data-v-fd0ffe52],.grid-summary .column.stringNumber[data-v-fd0ffe52]{text-align:left}.grid-summary .column.center[data-v-fd0ffe52]{text-align:center}.grid-summary .column.left[data-v-fd0ffe52]{text-align:left}.grid-summary .column.left .wrap[data-v-fd0ffe52]{justify-content:flex-start}.grid-summary .column.right[data-v-fd0ffe52]{text-align:right}.grid-summary .column.right .wrap[data-v-fd0ffe52]{justify-content:flex-end}", ""]);
10235
10264
  // Exports
10236
10265
  module.exports = exports;
10237
10266
 
10238
10267
 
10268
+ /***/ }),
10269
+
10270
+ /***/ "b9ad":
10271
+ /***/ (function(module, exports, __webpack_require__) {
10272
+
10273
+ // style-loader: Adds some css to the DOM by adding a <style> tag
10274
+
10275
+ // load the styles
10276
+ var content = __webpack_require__("79ef");
10277
+ if(typeof content === 'string') content = [[module.i, content, '']];
10278
+ if(content.locals) module.exports = content.locals;
10279
+ // add the styles to the DOM
10280
+ var add = __webpack_require__("499e").default
10281
+ var update = add("6709888e", content, true, {"sourceMap":false,"shadowMode":false});
10282
+
10239
10283
  /***/ }),
10240
10284
 
10241
10285
  /***/ "bac3":
@@ -10283,17 +10327,6 @@ module.exports = function (input, PREFERRED_STRING) {
10283
10327
  };
10284
10328
 
10285
10329
 
10286
- /***/ }),
10287
-
10288
- /***/ "c122":
10289
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
10290
-
10291
- "use strict";
10292
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_557cf5ec_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("446d");
10293
- /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_557cf5ec_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_TreeGrid_vue_vue_type_style_index_0_id_557cf5ec_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
10294
- /* unused harmony reexport * */
10295
-
10296
-
10297
10330
  /***/ }),
10298
10331
 
10299
10332
  /***/ "c17c":
@@ -10737,6 +10770,17 @@ module.exports = function (namespace, method) {
10737
10770
  };
10738
10771
 
10739
10772
 
10773
+ /***/ }),
10774
+
10775
+ /***/ "d11a":
10776
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
10777
+
10778
+ "use strict";
10779
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_9801c414_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("b9ad");
10780
+ /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_9801c414_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_v16_dist_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_3_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_4_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_v16_dist_index_js_ref_0_1_Grid_vue_vue_type_style_index_0_id_9801c414_lang_scss_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
10781
+ /* unused harmony reexport * */
10782
+
10783
+
10740
10784
  /***/ }),
10741
10785
 
10742
10786
  /***/ "d1e7":
@@ -10853,20 +10897,6 @@ module.exports = function (it, TAG, STATIC) {
10853
10897
  };
10854
10898
 
10855
10899
 
10856
- /***/ }),
10857
-
10858
- /***/ "d558":
10859
- /***/ (function(module, exports, __webpack_require__) {
10860
-
10861
- // Imports
10862
- var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
10863
- exports = ___CSS_LOADER_API_IMPORT___(false);
10864
- // Module
10865
- exports.push([module.i, ".table[data-v-2eaec3d6]{position:relative;width:100%;height:100%;padding-top:33px}.table.non-header[data-v-2eaec3d6]{padding-top:0}.table .table-header[data-v-2eaec3d6]{overflow:hidden;position:absolute;top:0;width:100%;height:33px;border-top:2px solid #7f7f7f;border-bottom:1px solid #cfcfcf}.dark .table .table-header[data-v-2eaec3d6]{border-top:2px solid;border-bottom:1px solid}.table .table-header.non-border[data-v-2eaec3d6]{border-bottom:2px solid #7f7f7f!important}.column-list[data-v-2eaec3d6]{width:100%;white-space:nowrap;list-style-type:none}.column[data-v-2eaec3d6],.column-list[data-v-2eaec3d6]{position:relative;height:100%}.column[data-v-2eaec3d6]{display:inline-flex;padding:0 10px;line-height:30px;justify-content:center;align-items:center;text-align:center;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-right:1px solid #cfcfcf}.dark .column[data-v-2eaec3d6]{border-right:1px solid}.column[data-v-2eaec3d6]:last-child{border-right:0;margin-right:20px}.column:last-child .column-resize[data-v-2eaec3d6]{cursor:default!important}.column .sort-icon[data-v-2eaec3d6]{display:inline-block;float:right;font-size:14px;line-height:30px}.column .ev-icon-filter[data-v-2eaec3d6]{font-size:13px;color:#005cc8}.column-name[data-v-2eaec3d6]{display:inline-block;float:left;overflow:hidden;text-overflow:ellipsis;font-weight:700;font-size:14px}.column-filter[data-v-2eaec3d6]{display:none;position:absolute;right:0;background-color:transparent}.column-filter i[data-v-2eaec3d6]{margin-right:2px;font-size:14px;vertical-align:middle}.column:hover .column-filter[data-v-2eaec3d6]{display:block;cursor:pointer}.column-filter-status[data-v-2eaec3d6]{position:absolute;left:0;background-color:transparent}.column-filter-status .ei[data-v-2eaec3d6]{font-size:10px;vertical-align:top}.column-resize[data-v-2eaec3d6]{position:absolute;bottom:0;right:-5px;width:10px;height:100%}.column-resize[data-v-2eaec3d6]:hover{cursor:col-resize}.table-body[data-v-2eaec3d6]{position:relative;width:100%;height:100%;overflow:auto;overflow-anchor:none}.table-body table[data-v-2eaec3d6]{clear:both;border-spacing:0;border-collapse:collapse;width:inherit}.table-body.stripe tr[data-v-2eaec3d6]:nth-child(2n){background:hsla(0,0%,89.8%,.6)}.table-body.bottom-border[data-v-2eaec3d6]{border-bottom:1px solid #cfcfcf}.dark .table-body.bottom-border[data-v-2eaec3d6]{border-bottom:1px solid}.table-body .row[data-v-2eaec3d6]{white-space:nowrap;border-bottom:1px solid #cfcfcf}.dark .table-body .row[data-v-2eaec3d6]{border-bottom:1px solid}.table-body .row.selected[data-v-2eaec3d6]{background:rgba(219,240,249,.6)!important;color:inherit!important;font-size:inherit!important}.dark .table-body .row.selected[data-v-2eaec3d6]{background:!important;color:inherit!important;font-size:inherit!important}.table-body .row.highlight[data-v-2eaec3d6]{background:#5ab7ff;color:#fff}.table-body .cell[data-v-2eaec3d6]{display:inline-block;padding:0 10px;text-align:center;max-width:100%;white-space:nowrap;text-overflow:ellipsis;border-right:1px solid #cfcfcf}.dark .table-body .cell[data-v-2eaec3d6]{border-right:1px solid}.table-body .cell div[data-v-2eaec3d6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.table-body .cell.row-checkbox[data-v-2eaec3d6]{display:inline-flex;justify-content:center;align-items:center}.table-body .cell.render[data-v-2eaec3d6]{overflow:initial}.table-body .cell.float[data-v-2eaec3d6],.table-body .cell.number[data-v-2eaec3d6]{text-align:right}.table-body .cell.string[data-v-2eaec3d6],.table-body .cell.stringNumber[data-v-2eaec3d6]{text-align:left}.table-body .cell.center[data-v-2eaec3d6]{text-align:center}.table-body .cell.left[data-v-2eaec3d6]{text-align:left}.table-body .cell.left .wrap[data-v-2eaec3d6]{justify-content:flex-start}.table-body .cell.right[data-v-2eaec3d6]{text-align:right}.table-body .cell.right .wrap[data-v-2eaec3d6]{justify-content:flex-end}.table-body .cell[data-v-2eaec3d6]:last-child{border-right:0}.table-resize-line[data-v-2eaec3d6]{position:absolute;top:0;bottom:0;width:1px;border-right:1px solid #cfcfcf}.dark .table-resize-line[data-v-2eaec3d6]{border-right:1px solid}.vscroll-spacer[data-v-2eaec3d6]{opacity:0;clear:both}[v-cloak][data-v-2eaec3d6]{display:none}.ev-checkbox[data-v-2eaec3d6]{margin:0}.non-border[data-v-2eaec3d6]{border:none!important}.is-empty[data-v-2eaec3d6]{height:30px;text-align:center}.grid-summary[data-v-2eaec3d6]{border-bottom:1px solid #b2b2b2;background-color:hsla(0,0%,69.8%,.1)}.dark .grid-summary[data-v-2eaec3d6]{border-bottom:1px solid #555;background-color:hsla(0,0%,40%,.3)}.grid-summary .non-border[data-v-2eaec3d6]{border-bottom:none!important}.grid-summary span[data-v-2eaec3d6]{display:inline-block;overflow:hidden;text-overflow:ellipsis;font-size:14px}.grid-summary .column.float[data-v-2eaec3d6],.grid-summary .column.number[data-v-2eaec3d6]{text-align:right}.grid-summary .column.string[data-v-2eaec3d6],.grid-summary .column.stringNumber[data-v-2eaec3d6]{text-align:left}.grid-summary .column.center[data-v-2eaec3d6]{text-align:center}.grid-summary .column.left[data-v-2eaec3d6]{text-align:left}.grid-summary .column.left .wrap[data-v-2eaec3d6]{justify-content:flex-start}.grid-summary .column.right[data-v-2eaec3d6]{text-align:right}.grid-summary .column.right .wrap[data-v-2eaec3d6]{justify-content:flex-end}", ""]);
10866
- // Exports
10867
- module.exports = exports;
10868
-
10869
-
10870
10900
  /***/ }),
10871
10901
 
10872
10902
  /***/ "d58f":
@@ -11461,21 +11491,6 @@ module.exports = !fails(function () {
11461
11491
  });
11462
11492
 
11463
11493
 
11464
- /***/ }),
11465
-
11466
- /***/ "e17d":
11467
- /***/ (function(module, exports, __webpack_require__) {
11468
-
11469
- // style-loader: Adds some css to the DOM by adding a <style> tag
11470
-
11471
- // load the styles
11472
- var content = __webpack_require__("d558");
11473
- if(typeof content === 'string') content = [[module.i, content, '']];
11474
- if(content.locals) module.exports = content.locals;
11475
- // add the styles to the DOM
11476
- var add = __webpack_require__("499e").default
11477
- var update = add("4a75e5f9", content, true, {"sourceMap":false,"shadowMode":false});
11478
-
11479
11494
  /***/ }),
11480
11495
 
11481
11496
  /***/ "e260":
@@ -12485,21 +12500,6 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
12485
12500
  };
12486
12501
 
12487
12502
 
12488
- /***/ }),
12489
-
12490
- /***/ "f648":
12491
- /***/ (function(module, exports, __webpack_require__) {
12492
-
12493
- // style-loader: Adds some css to the DOM by adding a <style> tag
12494
-
12495
- // load the styles
12496
- var content = __webpack_require__("b7b9");
12497
- if(typeof content === 'string') content = [[module.i, content, '']];
12498
- if(content.locals) module.exports = content.locals;
12499
- // add the styles to the DOM
12500
- var add = __webpack_require__("499e").default
12501
- var update = add("410590da", content, true, {"sourceMap":false,"shadowMode":false});
12502
-
12503
12503
  /***/ }),
12504
12504
 
12505
12505
  /***/ "f772":
@@ -22423,13 +22423,13 @@ var notification_componentObj = Object(external_commonjs_vue_commonjs2_vue_root_
22423
22423
  var notification_rootId = 'ev-notification-modal';
22424
22424
  var notification_root = document.createElement('div');
22425
22425
  notification_root.id = notification_rootId;
22426
- var positionList = ['top-left', 'top-right', 'bottom-left', 'bottom-right'];
22426
+ var notification_positionList = ['top-left', 'top-right', 'bottom-left', 'bottom-right'];
22427
22427
 
22428
22428
  var notification_notification = function notification() {
22429
22429
  var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
22430
22430
  var position = options.position || 'top-right';
22431
22431
 
22432
- if (!positionList.includes(position)) {
22432
+ if (!notification_positionList.includes(position)) {
22433
22433
  console.warn('[EVUI][Notification] The position value is incorrectly entered.');
22434
22434
  return;
22435
22435
  }
@@ -26291,39 +26291,42 @@ var dist_default = /*#__PURE__*/__webpack_require__.n(dist);
26291
26291
  var vue3_observe_visibility_common = __webpack_require__("196e");
26292
26292
  var vue3_observe_visibility_common_default = /*#__PURE__*/__webpack_require__.n(vue3_observe_visibility_common);
26293
26293
 
26294
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/Grid.vue?vue&type=template&id=6493e3f4&scoped=true
26294
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/Grid.vue?vue&type=template&id=9801c414&scoped=true
26295
26295
 
26296
26296
 
26297
26297
 
26298
26298
 
26299
26299
 
26300
- var _withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-6493e3f4");
26300
+ var _withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-9801c414");
26301
26301
 
26302
- Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-6493e3f4");
26302
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-9801c414");
26303
26303
 
26304
- var Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_1 = {
26304
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_1 = {
26305
26305
  class: "column-list"
26306
26306
  };
26307
- var Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_2 = {
26307
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_2 = {
26308
26308
  key: 0,
26309
26309
  class: "column-filter-status"
26310
26310
  };
26311
- var Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_3 = {
26311
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_3 = {
26312
+ key: 0
26313
+ };
26314
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_4 = {
26312
26315
  key: 0
26313
26316
  };
26314
26317
 
26315
- var Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_4 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("td", {
26318
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_5 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("td", {
26316
26319
  class: "is-empty"
26317
26320
  }, "No records", -1);
26318
26321
 
26319
- var Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_5 = {
26322
+ var Gridvue_type_template_id_9801c414_scoped_true_hoisted_6 = {
26320
26323
  ref: "resizeLine",
26321
26324
  class: "table-resize-line"
26322
26325
  };
26323
26326
 
26324
26327
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["popScopeId"])();
26325
26328
 
26326
- var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
26329
+ var Gridvue_type_template_id_9801c414_scoped_true_render = /*#__PURE__*/_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
26327
26330
  var _component_toolbar = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["resolveComponent"])("toolbar");
26328
26331
 
26329
26332
  var _component_ev_checkbox = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["resolveComponent"])("ev-checkbox");
@@ -26374,7 +26377,7 @@ var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(
26374
26377
  'table-header': true,
26375
26378
  'non-border': !!$setup.borderStyle
26376
26379
  }
26377
- }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_1, [_ctx.useCheckbox.use ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
26380
+ }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", Gridvue_type_template_id_9801c414_scoped_true_hoisted_1, [_ctx.useCheckbox.use ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
26378
26381
  key: 0,
26379
26382
  class: {
26380
26383
  'column': true,
@@ -26407,7 +26410,7 @@ var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(
26407
26410
  }
26408
26411
  }, [_ctx.isFiltering && (_ctx$filterList$colum = _ctx.filterList[column.field]) !== null && _ctx$filterList$colum !== void 0 && _ctx$filterList$colum.find(function (item) {
26409
26412
  return item.use;
26410
- }) ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("span", Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_2, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_ev_icon, {
26413
+ }) ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("span", Gridvue_type_template_id_9801c414_scoped_true_hoisted_2, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_ev_icon, {
26411
26414
  icon: "ev-icon-filter"
26412
26415
  })])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("span", {
26413
26416
  title: column.caption,
@@ -26509,24 +26512,23 @@ var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(
26509
26512
  'line-height': "".concat(_ctx.rowHeight, "px"),
26510
26513
  'min-width': "".concat($setup.isRenderer(column) ? _ctx.rendererMinWidth : _ctx.minWidth, "px")
26511
26514
  }
26512
- }, [!!_ctx.$slots[column.field] ? Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, column.field, {
26513
- key: 0,
26515
+ }, [!!_ctx.$slots[column.field] ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", Gridvue_type_template_id_9801c414_scoped_true_hoisted_3, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, column.field, {
26514
26516
  item: {
26515
26517
  row: row,
26516
26518
  column: column
26517
26519
  }
26518
- }) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
26520
+ })])) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
26519
26521
  key: 1,
26520
26522
  title: $setup.getConvertValue(column, row[2][column.index])
26521
26523
  }, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($setup.getConvertValue(column, row[2][column.index])), 9, ["title"]))], 14, ["data-name", "data-index"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)], 64);
26522
26524
  }), 128))], 42, ["data-index", "onClick", "onDblclick"]);
26523
- }), 128)), !_ctx.viewStore.length ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("tr", Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_3, [Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_4])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)])]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", {
26525
+ }), 128)), !_ctx.viewStore.length ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("tr", Gridvue_type_template_id_9801c414_scoped_true_hoisted_4, [Gridvue_type_template_id_9801c414_scoped_true_hoisted_5])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)])]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", {
26524
26526
  style: "height: ".concat(_ctx.vScrollBottomHeight, "px;"),
26525
26527
  class: "vscroll-spacer"
26526
26528
  }, null, 4), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_ev_context_menu, {
26527
26529
  ref: "menu",
26528
26530
  items: _ctx.contextMenuItems
26529
- }, null, 8, ["items"])], 34), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", Gridvue_type_template_id_6493e3f4_scoped_true_hoisted_5, null, 512), [[external_commonjs_vue_commonjs2_vue_root_Vue_["vShow"], _ctx.showResizeLine]]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_filter_window, {
26531
+ }, null, 8, ["items"])], 34), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", Gridvue_type_template_id_9801c414_scoped_true_hoisted_6, null, 512), [[external_commonjs_vue_commonjs2_vue_root_Vue_["vShow"], _ctx.showResizeLine]]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_filter_window, {
26530
26532
  "is-show": _ctx.showFilterWindow,
26531
26533
  "target-column": _ctx.currentFilter.column,
26532
26534
  "filter-items": _ctx.currentFilter.items,
@@ -26544,8 +26546,9 @@ var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(
26544
26546
  borderStyle: $setup.borderStyle,
26545
26547
  minWidth: _ctx.minWidth,
26546
26548
  rowHeight: _ctx.rowHeight
26547
- }
26548
- }, null, 8, ["ordered-columns", "stores", "use-checkbox", "style-option"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true), _ctx.usePage && !_ctx.isInfinite ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(_component_grid_pagination, {
26549
+ },
26550
+ "scroll-left": $setup.summaryScroll
26551
+ }, null, 8, ["ordered-columns", "stores", "use-checkbox", "style-option", "scroll-left"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true), _ctx.usePage && !_ctx.isInfinite ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(_component_grid_pagination, {
26549
26552
  key: 2,
26550
26553
  modelValue: _ctx.currentPage,
26551
26554
  "onUpdate:modelValue": _cache[5] || (_cache[5] = function ($event) {
@@ -26558,7 +26561,7 @@ var Gridvue_type_template_id_6493e3f4_scoped_true_render = /*#__PURE__*/_withId(
26558
26561
  order: _ctx.order
26559
26562
  }, null, 8, ["modelValue", "total", "per-page", "visible-page", "show-page-info", "order"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)], 64);
26560
26563
  });
26561
- // CONCATENATED MODULE: ./src/components/grid/Grid.vue?vue&type=template&id=6493e3f4&scoped=true
26564
+ // CONCATENATED MODULE: ./src/components/grid/Grid.vue?vue&type=template&id=9801c414&scoped=true
26562
26565
 
26563
26566
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/grid.toolbar.vue?vue&type=template&id=3c245986
26564
26567
 
@@ -27214,27 +27217,28 @@ grid_paginationvue_type_script_lang_js.render = grid_paginationvue_type_template
27214
27217
  grid_paginationvue_type_script_lang_js.__scopeId = "data-v-210f4f6a"
27215
27218
 
27216
27219
  /* harmony default export */ var grid_pagination = (grid_paginationvue_type_script_lang_js);
27217
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/grid.summary.vue?vue&type=template&id=2eaec3d6&scoped=true
27220
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/grid.summary.vue?vue&type=template&id=fd0ffe52&scoped=true
27218
27221
 
27219
27222
 
27220
27223
 
27221
- var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-2eaec3d6");
27224
+ var grid_summaryvue_type_template_id_fd0ffe52_scoped_true_withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-fd0ffe52");
27222
27225
 
27223
- Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-2eaec3d6");
27226
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-fd0ffe52");
27224
27227
 
27225
- var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_hoisted_1 = {
27228
+ var grid_summaryvue_type_template_id_fd0ffe52_scoped_true_hoisted_1 = {
27226
27229
  class: "column-list"
27227
27230
  };
27228
27231
 
27229
27232
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["popScopeId"])();
27230
27233
 
27231
- var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/grid_summaryvue_type_template_id_2eaec3d6_scoped_true_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
27234
+ var grid_summaryvue_type_template_id_fd0ffe52_scoped_true_render = /*#__PURE__*/grid_summaryvue_type_template_id_fd0ffe52_scoped_true_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
27232
27235
  return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
27236
+ ref: "summaryRef",
27233
27237
  class: {
27234
27238
  'grid-summary': true,
27235
27239
  'non-border': $setup.styleInfo.borderStyle === 'none'
27236
27240
  }
27237
- }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", grid_summaryvue_type_template_id_2eaec3d6_scoped_true_hoisted_1, [$setup.showCheckbox ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
27241
+ }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", grid_summaryvue_type_template_id_fd0ffe52_scoped_true_hoisted_1, [$setup.showCheckbox ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
27238
27242
  key: 0,
27239
27243
  class: {
27240
27244
  'column': true,
@@ -27270,11 +27274,13 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27270
27274
  width: '100%',
27271
27275
  height: "".concat($setup.styleInfo.rowHeight, "px")
27272
27276
  }
27273
- }, [column.summaryRenderer ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(external_commonjs_vue_commonjs2_vue_root_Vue_["Fragment"], {
27274
- key: 0
27275
- }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createTextVNode"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($setup.getSummaryRenderer(column)), 1)], 64)) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(external_commonjs_vue_commonjs2_vue_root_Vue_["Fragment"], {
27276
- key: 1
27277
- }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createTextVNode"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($setup.getSummaryValue(column, column.summaryType)), 1)], 64))], 4)) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("span", {
27277
+ }, [column.summaryRenderer ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
27278
+ key: 0,
27279
+ title: $setup.getSummaryRenderer(column)
27280
+ }, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($setup.getSummaryRenderer(column)), 9, ["title"])) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
27281
+ key: 1,
27282
+ title: $setup.getSummaryValue(column, column.summaryType)
27283
+ }, Object(external_commonjs_vue_commonjs2_vue_root_Vue_["toDisplayString"])($setup.getSummaryValue(column, column.summaryType)), 9, ["title"]))], 4)) : (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("span", {
27278
27284
  key: 1,
27279
27285
  style: {
27280
27286
  'height': "".concat($setup.styleInfo.rowHeight, "px")
@@ -27282,7 +27288,7 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27282
27288
  }, null, 4))], 6)) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)], 64);
27283
27289
  }), 128))])], 2);
27284
27290
  });
27285
- // CONCATENATED MODULE: ./src/components/grid/grid.summary.vue?vue&type=template&id=2eaec3d6&scoped=true
27291
+ // CONCATENATED MODULE: ./src/components/grid/grid.summary.vue?vue&type=template&id=fd0ffe52&scoped=true
27286
27292
 
27287
27293
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/grid/grid.summary.vue?vue&type=script&lang=js
27288
27294
 
@@ -27327,9 +27333,14 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27327
27333
  isTree: {
27328
27334
  type: Boolean,
27329
27335
  default: false
27336
+ },
27337
+ scrollLeft: {
27338
+ type: Number,
27339
+ default: 0
27330
27340
  }
27331
27341
  },
27332
27342
  setup: function setup(props) {
27343
+ var summaryRef = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["ref"])();
27333
27344
  var ROW_DATA_INDEX = 2;
27334
27345
  var stores = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["computed"])(function () {
27335
27346
  return props.stores;
@@ -27353,7 +27364,8 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27353
27364
  } else if (column.type === 'float') {
27354
27365
  var _column$decimal;
27355
27366
 
27356
- convertValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
27367
+ var floatValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
27368
+ convertValue = floatValue.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
27357
27369
  }
27358
27370
 
27359
27371
  return convertValue;
@@ -27454,10 +27466,18 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27454
27466
  return result;
27455
27467
  };
27456
27468
 
27469
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
27470
+ return props.scrollLeft;
27471
+ }, function (val) {
27472
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["nextTick"])(function () {
27473
+ summaryRef.value.scrollLeft = val;
27474
+ });
27475
+ });
27457
27476
  return {
27458
27477
  columns: columns,
27459
27478
  styleInfo: styleInfo,
27460
27479
  showCheckbox: showCheckbox,
27480
+ summaryRef: summaryRef,
27461
27481
  getSummaryValue: getSummaryValue,
27462
27482
  getSummaryRenderer: getSummaryRenderer
27463
27483
  };
@@ -27465,8 +27485,8 @@ var grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render = /*#__PURE__*/
27465
27485
  });
27466
27486
  // CONCATENATED MODULE: ./src/components/grid/grid.summary.vue?vue&type=script&lang=js
27467
27487
 
27468
- // EXTERNAL MODULE: ./src/components/grid/grid.summary.vue?vue&type=style&index=0&id=2eaec3d6&lang=scss&scoped=true
27469
- var grid_summaryvue_type_style_index_0_id_2eaec3d6_lang_scss_scoped_true = __webpack_require__("1db4");
27488
+ // EXTERNAL MODULE: ./src/components/grid/grid.summary.vue?vue&type=style&index=0&id=fd0ffe52&lang=scss&scoped=true
27489
+ var grid_summaryvue_type_style_index_0_id_fd0ffe52_lang_scss_scoped_true = __webpack_require__("2f87");
27470
27490
 
27471
27491
  // CONCATENATED MODULE: ./src/components/grid/grid.summary.vue
27472
27492
 
@@ -27474,8 +27494,8 @@ var grid_summaryvue_type_style_index_0_id_2eaec3d6_lang_scss_scoped_true = __web
27474
27494
 
27475
27495
 
27476
27496
 
27477
- grid_summaryvue_type_script_lang_js.render = grid_summaryvue_type_template_id_2eaec3d6_scoped_true_render
27478
- grid_summaryvue_type_script_lang_js.__scopeId = "data-v-2eaec3d6"
27497
+ grid_summaryvue_type_script_lang_js.render = grid_summaryvue_type_template_id_fd0ffe52_scoped_true_render
27498
+ grid_summaryvue_type_script_lang_js.__scopeId = "data-v-fd0ffe52"
27479
27499
 
27480
27500
  /* harmony default export */ var grid_summary = (grid_summaryvue_type_script_lang_js);
27481
27501
  // CONCATENATED MODULE: ./node_modules/lodash-es/_baseIsMatch.js
@@ -28615,7 +28635,8 @@ var uses_commonFunctions = function commonFunctions() {
28615
28635
  } else if (column.type === 'float') {
28616
28636
  var _column$decimal;
28617
28637
 
28618
- convertValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
28638
+ var floatValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
28639
+ convertValue = floatValue.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
28619
28640
  }
28620
28641
 
28621
28642
  return convertValue;
@@ -28660,6 +28681,7 @@ var scrollEvent = function scrollEvent(params) {
28660
28681
  elementInfo = params.elementInfo,
28661
28682
  resizeInfo = params.resizeInfo,
28662
28683
  pageInfo = params.pageInfo,
28684
+ summaryScroll = params.summaryScroll,
28663
28685
  getPagingData = params.getPagingData,
28664
28686
  updatePagingInfo = params.updatePagingInfo;
28665
28687
  /**
@@ -28712,6 +28734,7 @@ var scrollEvent = function scrollEvent(params) {
28712
28734
  var headerEl = elementInfo.header;
28713
28735
  var bodyEl = elementInfo.body;
28714
28736
  headerEl.scrollLeft = bodyEl.scrollLeft;
28737
+ summaryScroll.value = bodyEl.scrollLeft;
28715
28738
  };
28716
28739
  /**
28717
28740
  * scroll 이벤트를 처리한다.
@@ -30076,12 +30099,15 @@ var uses_pagingEvent = function pagingEvent(params) {
30076
30099
  updatePagingInfo = _pagingEvent.updatePagingInfo,
30077
30100
  changePage = _pagingEvent.changePage;
30078
30101
 
30102
+ var summaryScroll = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["ref"])(0);
30103
+
30079
30104
  var _scrollEvent = scrollEvent({
30080
30105
  scrollInfo: scrollInfo,
30081
30106
  stores: stores,
30082
30107
  elementInfo: elementInfo,
30083
30108
  resizeInfo: resizeInfo,
30084
30109
  pageInfo: pageInfo,
30110
+ summaryScroll: summaryScroll,
30085
30111
  getPagingData: getPagingData,
30086
30112
  updatePagingInfo: updatePagingInfo
30087
30113
  }),
@@ -30219,8 +30245,12 @@ var uses_pagingEvent = function pagingEvent(params) {
30219
30245
  });
30220
30246
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
30221
30247
  return props.checked;
30222
- }, function (checkedList) {
30223
- checkInfo.checkedRows = checkedList;
30248
+ }, function (value) {
30249
+ checkInfo.checkedRows = value;
30250
+ });
30251
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
30252
+ return checkInfo.checkedRows;
30253
+ }, function (value) {
30224
30254
  checkInfo.isHeaderChecked = false;
30225
30255
  var store = stores.store;
30226
30256
 
@@ -30230,20 +30260,26 @@ var uses_pagingEvent = function pagingEvent(params) {
30230
30260
 
30231
30261
  if (store.length) {
30232
30262
  store.forEach(function (row) {
30233
- row[ROW_CHECK_INDEX] = checkedList.includes(row[ROW_DATA_INDEX]);
30263
+ row[ROW_CHECK_INDEX] = value.includes(row[ROW_DATA_INDEX]);
30234
30264
  });
30235
- checkInfo.isHeaderChecked = checkedList.length === store.length;
30265
+ checkInfo.isHeaderChecked = value.length === store.length;
30236
30266
  }
30237
30267
 
30238
30268
  updateVScroll();
30239
30269
  });
30240
30270
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
30241
30271
  return props.selected;
30242
- }, function (selectedList) {
30272
+ }, function (value) {
30273
+ if (selectInfo.useSelect) {
30274
+ selectInfo.selectedRow = value;
30275
+ }
30276
+ });
30277
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
30278
+ return selectInfo.selectedRow;
30279
+ }, function (value) {
30243
30280
  if (selectInfo.useSelect) {
30244
- selectInfo.selectedRow = selectedList;
30245
30281
  stores.store.forEach(function (row) {
30246
- row[ROW_SELECT_INDEX] = selectInfo.selectedRow.includes(row[ROW_DATA_INDEX]);
30282
+ row[ROW_SELECT_INDEX] = value.includes(row[ROW_DATA_INDEX]);
30247
30283
  });
30248
30284
  updateVScroll();
30249
30285
  }
@@ -30390,6 +30426,7 @@ var uses_pagingEvent = function pagingEvent(params) {
30390
30426
  });
30391
30427
  });
30392
30428
  return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
30429
+ summaryScroll: summaryScroll,
30393
30430
  showHeader: showHeader,
30394
30431
  stripeStyle: stripeStyle,
30395
30432
  borderStyle: borderStyle,
@@ -30428,8 +30465,8 @@ var uses_pagingEvent = function pagingEvent(params) {
30428
30465
  });
30429
30466
  // CONCATENATED MODULE: ./src/components/grid/Grid.vue?vue&type=script&lang=js
30430
30467
 
30431
- // EXTERNAL MODULE: ./src/components/grid/Grid.vue?vue&type=style&index=0&id=6493e3f4&lang=scss&scoped=true
30432
- var Gridvue_type_style_index_0_id_6493e3f4_lang_scss_scoped_true = __webpack_require__("67bd");
30468
+ // EXTERNAL MODULE: ./src/components/grid/Grid.vue?vue&type=style&index=0&id=9801c414&lang=scss&scoped=true
30469
+ var Gridvue_type_style_index_0_id_9801c414_lang_scss_scoped_true = __webpack_require__("d11a");
30433
30470
 
30434
30471
  // CONCATENATED MODULE: ./src/components/grid/Grid.vue
30435
30472
 
@@ -30437,8 +30474,8 @@ var Gridvue_type_style_index_0_id_6493e3f4_lang_scss_scoped_true = __webpack_req
30437
30474
 
30438
30475
 
30439
30476
 
30440
- Gridvue_type_script_lang_js.render = Gridvue_type_template_id_6493e3f4_scoped_true_render
30441
- Gridvue_type_script_lang_js.__scopeId = "data-v-6493e3f4"
30477
+ Gridvue_type_script_lang_js.render = Gridvue_type_template_id_9801c414_scoped_true_render
30478
+ Gridvue_type_script_lang_js.__scopeId = "data-v-9801c414"
30442
30479
 
30443
30480
  /* harmony default export */ var Grid = (Gridvue_type_script_lang_js);
30444
30481
  // CONCATENATED MODULE: ./src/components/grid/index.js
@@ -30454,9 +30491,9 @@ Grid.install = function (app) {
30454
30491
  };
30455
30492
 
30456
30493
  /* harmony default export */ var grid = (Grid);
30457
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/chart/Chart.vue?vue&type=template&id=53face60
30494
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/chart/Chart.vue?vue&type=template&id=df219c50
30458
30495
 
30459
- function Chartvue_type_template_id_53face60_render(_ctx, _cache, $props, $setup, $data, $options) {
30496
+ function Chartvue_type_template_id_df219c50_render(_ctx, _cache, $props, $setup, $data, $options) {
30460
30497
  var _directive_resize = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["resolveDirective"])("resize");
30461
30498
 
30462
30499
  return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])((Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("div", {
@@ -30465,7 +30502,7 @@ function Chartvue_type_template_id_53face60_render(_ctx, _cache, $props, $setup,
30465
30502
  class: "ev-chart"
30466
30503
  }, null, 4)), [[_directive_resize, $setup.onResize]]);
30467
30504
  }
30468
- // CONCATENATED MODULE: ./src/components/chart/Chart.vue?vue&type=template&id=53face60
30505
+ // CONCATENATED MODULE: ./src/components/chart/Chart.vue?vue&type=template&id=df219c50
30469
30506
 
30470
30507
  // CONCATENATED MODULE: ./node_modules/lodash-es/_arrayEach.js
30471
30508
  /**
@@ -31737,6 +31774,12 @@ function utils_throttle_throttle(func, wait, options) {
31737
31774
 
31738
31775
  /* harmony default export */ var utils_throttle = (utils_throttle_throttle);
31739
31776
  /* eslint-enable */
31777
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.entries.js
31778
+ var es_object_entries = __webpack_require__("4fad");
31779
+
31780
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.values.js
31781
+ var es_object_values = __webpack_require__("07ac");
31782
+
31740
31783
  // CONCATENATED MODULE: ./node_modules/lodash-es/reverse.js
31741
31784
  /** Used for built-in method references. */
31742
31785
  var reverse_arrayProto = Array.prototype;
@@ -32098,192 +32141,15 @@ function reverse(array) {
32098
32141
  return type === 'doughnut' || type === 'sunburst';
32099
32142
  }
32100
32143
  });
32101
- // CONCATENATED MODULE: ./src/components/chart/helpers/helpers.constant.js
32144
+ // CONCATENATED MODULE: ./src/components/chart/model/model.store.js
32145
+
32146
+
32147
+
32148
+
32149
+
32150
+
32102
32151
 
32103
- var AXIS_UNITS = {
32104
- x: {
32105
- rectStart: 'x1',
32106
- rectEnd: 'x2',
32107
- rectOffsetCounter: function rectOffsetCounter(position) {
32108
- return position === 'top' ? 'y2' : 'y1';
32109
- },
32110
- rectOffset: function rectOffset(position) {
32111
- return position === 'top' ? 'y1' : 'y2';
32112
- }
32113
- },
32114
- y: {
32115
- rectStart: 'y2',
32116
- rectEnd: 'y1',
32117
- rectOffsetCounter: function rectOffsetCounter(position) {
32118
- return position === 'left' ? 'x2' : 'x1';
32119
- },
32120
- rectOffset: function rectOffset(position) {
32121
- return position === 'left' ? 'x1' : 'x2';
32122
- }
32123
- }
32124
- };
32125
- var COLOR = ['#2b99f0', '#8ac449', '#00C4C5', '#ffde00', '#ff7781', '#8470ff', '#75cd8e', '#48d1cc', '#fec64f', '#fe984f', '#0052ff', '#00a48c', '#83cfde', '#dfe32d', '#ff7d40', '#99c7ff', '#a5fee3', '#0379c9', '#eef093', '#ffa891', '#00c5cd', '#009bc7', '#cacaff', '#ffc125', '#df6264']; // export const COLOR = [
32126
- // '#00C8FC', '#00F1CD', '#C19F87', '#008FD2', '#93F7FE', '#00FC78', '#0058DE',
32127
- // '#3BDEFF', '#254763', '#BAEDF9', '#A24E3D', '#1FD017', '#F1D3B6', '#AFC9C9',
32128
- // '#498700', '#3650FE', '#8786EF', '#68FBFB', '#BCF061', '#CBD3EA',
32129
- // ];
32130
32152
 
32131
- var LINE_OPTION = {
32132
- show: true,
32133
- highlight: {
32134
- defaultSize: 4,
32135
- maxSize: 6,
32136
- maxShadowSize: 10,
32137
- maxShadowOpacity: 0.4
32138
- },
32139
- xAxisIndex: 0,
32140
- yAxisIndex: 0,
32141
- point: true,
32142
- pointSize: 3,
32143
- pointStyle: '',
32144
- lineWidth: 2,
32145
- fill: false,
32146
- fillOpacity: 0.4,
32147
- showLegend: true
32148
- };
32149
- var BAR_OPTION = {
32150
- show: true,
32151
- highlight: {
32152
- pointSize: 5
32153
- },
32154
- xAxisIndex: 0,
32155
- yAxisIndex: 0,
32156
- category: true,
32157
- showLegend: true,
32158
- showValue: {
32159
- use: false,
32160
- fontSize: 12,
32161
- textColor: '#000000',
32162
- formatter: null,
32163
- decimalPoint: 0
32164
- }
32165
- };
32166
- var PIE_OPTION = {
32167
- show: true,
32168
- showLegend: true,
32169
- stroke: {
32170
- show: true,
32171
- color: '#FFFFFF',
32172
- lineWidth: 2
32173
- },
32174
- showValue: {
32175
- use: false,
32176
- fontSize: 12,
32177
- textColor: '#000000',
32178
- formatter: null
32179
- }
32180
- };
32181
- var AXIS_OPTION = {
32182
- min: null,
32183
- max: null,
32184
- autoScaleRatio: null,
32185
- startToZero: false,
32186
- showAxis: true,
32187
- axisLineColor: '#C9CFDC',
32188
- showGrid: true,
32189
- gridLineColor: '#C9CFDC',
32190
- showIndicator: false,
32191
- timeFormat: 'mm:ss',
32192
- range: null,
32193
- interval: null,
32194
- decimalPoint: null,
32195
- labelStyle: {
32196
- show: true,
32197
- fontSize: 12,
32198
- color: '#25262E',
32199
- fontFamily: 'Roboto',
32200
- fontWeight: 400,
32201
- fitWidth: false,
32202
- fitDir: 'right'
32203
- }
32204
- };
32205
- var PLOT_LINE_OPTION = {
32206
- color: '#FF0000',
32207
- lineWidth: 1
32208
- };
32209
- var PLOT_LINE_LABEL_OPTION = {
32210
- show: false,
32211
- fontSize: 12,
32212
- fontColor: '#FF0000',
32213
- fillColor: '#FFFFFF',
32214
- lineColor: '#FF0000',
32215
- lineWidth: 0,
32216
- fontWeight: 400,
32217
- fontFamily: 'Roboto',
32218
- verticalAlign: 'middle',
32219
- textAlign: 'center',
32220
- textOverflow: 'none',
32221
- // 'none', 'ellipsis'
32222
- maxWidth: null
32223
- };
32224
- var PLOT_BAND_OPTION = {
32225
- color: '#FAE59D'
32226
- };
32227
- var HEAT_MAP_OPTION = _objectSpread2(_objectSpread2({}, LINE_OPTION), {}, {
32228
- colorOpt: {
32229
- min: '#FFFFFF',
32230
- max: '#0052FF',
32231
- categoryCnt: 5,
32232
- border: '#FFFFFF',
32233
- error: '#FF0000'
32234
- },
32235
- spaces: {
32236
- x: 0,
32237
- y: 0
32238
- }
32239
- });
32240
- var TIME_INTERVALS = {
32241
- millisecond: {
32242
- common: true,
32243
- size: 1,
32244
- steps: [1, 2, 5, 10, 20, 50, 100, 250, 500]
32245
- },
32246
- second: {
32247
- common: true,
32248
- size: 1000,
32249
- steps: [1, 2, 5, 10, 30]
32250
- },
32251
- minute: {
32252
- common: true,
32253
- size: 60000,
32254
- steps: [1, 2, 5, 10, 30]
32255
- },
32256
- hour: {
32257
- common: true,
32258
- size: 3600000,
32259
- steps: [1, 2, 3, 6, 12]
32260
- },
32261
- day: {
32262
- common: true,
32263
- size: 86400000,
32264
- steps: [1, 2, 5]
32265
- },
32266
- week: {
32267
- common: false,
32268
- size: 604800000,
32269
- steps: [1, 2, 3, 4]
32270
- },
32271
- month: {
32272
- common: true,
32273
- size: 2.628e9,
32274
- steps: [1, 2, 3]
32275
- },
32276
- quarter: {
32277
- common: false,
32278
- size: 7.884e9,
32279
- steps: [1, 2, 3, 4]
32280
- },
32281
- year: {
32282
- common: true,
32283
- size: 3.154e10
32284
- }
32285
- };
32286
- // CONCATENATED MODULE: ./src/components/chart/model/model.store.js
32287
32153
 
32288
32154
 
32289
32155
 
@@ -32332,8 +32198,9 @@ var modules = {
32332
32198
  var sData = data[seriesID];
32333
32199
 
32334
32200
  if (series && sData) {
32201
+ series.labels = label;
32335
32202
  series.data = _this.addSeriesDSForHeatMap(sData);
32336
- series.minMax = _this.getSeriesMinMaxForHeatMap(series.data, series.spaces);
32203
+ series.minMax = _this.getSeriesMinMax(series.data);
32337
32204
  series.valueOpt = _this.getSeriesValueOptForHeatMap(series);
32338
32205
  }
32339
32206
  });
@@ -32680,18 +32547,24 @@ var modules = {
32680
32547
  /**
32681
32548
  * Take data to create data for each series
32682
32549
  * @param {array} data data array for each series
32550
+ * @param {object} label chart label
32551
+ *
32683
32552
  * @returns {array} data info added position and etc
32684
32553
  */
32685
32554
  addSeriesDSForHeatMap: function addSeriesDSForHeatMap(data) {
32686
- return data.map(function (item) {
32555
+ return data.map(function (_ref) {
32556
+ var x = _ref.x,
32557
+ y = _ref.y,
32558
+ value = _ref.value;
32687
32559
  return {
32688
- x: item.x,
32689
- y: item.y,
32690
- o: item.value,
32560
+ x: x,
32561
+ y: y,
32562
+ o: value,
32691
32563
  xp: null,
32692
32564
  yp: null,
32565
+ w: null,
32566
+ h: null,
32693
32567
  dataColor: null,
32694
- value: item.value,
32695
32568
  cId: null
32696
32569
  };
32697
32570
  });
@@ -32817,85 +32690,31 @@ var modules = {
32817
32690
 
32818
32691
  return def;
32819
32692
  },
32820
- adjustMinMax: function adjustMinMax(max, min, opt, space) {
32821
- if (opt.type === 'time' && opt.categoryMode || opt.type === 'step') {
32822
- return {
32823
- max: max,
32824
- min: min
32825
- };
32826
- }
32827
-
32828
- var targetMax = max;
32829
- var targetMin = min;
32830
-
32831
- if (targetMax > 0 && opt.interval && space) {
32832
- if (targetMax < opt.interval * space) {
32833
- targetMax += opt.interval;
32834
- }
32835
- }
32836
-
32837
- var targetInterval = opt.interval;
32838
-
32839
- if (opt.type === 'time') {
32840
- if (typeof targetInterval === 'string') {
32841
- targetInterval = TIME_INTERVALS[targetInterval].size;
32842
- } else if (_typeof(targetInterval) === 'object') {
32843
- targetInterval = targetInterval.time * TIME_INTERVALS[targetInterval.unit].size;
32844
- }
32845
- }
32846
-
32847
- if (!opt.startToZero || targetMin > 0) {
32848
- var targetSpace = space ? space - 1 : targetMax - targetMin;
32849
- var targetStep = Math.ceil((max - targetMin) / targetSpace);
32850
- targetMin = targetMin < targetStep ? 0 : targetMin - targetStep;
32851
- }
32852
-
32853
- return {
32854
- max: targetMax,
32855
- min: targetMin
32856
- };
32857
- },
32858
-
32859
- /**
32860
- * Take series data to create min/max info for each series
32861
- * @param data
32862
- * @param spaces
32863
- * @returns {*|{maxDomain: null, minY: null, minX: null, maxY: null, maxX: null}}
32864
- */
32865
- getSeriesMinMaxForHeatMap: function getSeriesMinMaxForHeatMap(data, spaces) {
32866
- var axesXOption = this.options.axesX[0];
32867
- var axesYOption = this.options.axesY[0];
32868
- var seriesMinMax = this.getSeriesMinMax(data);
32869
- var adjustX = this.adjustMinMax(seriesMinMax.maxX, seriesMinMax.minX, axesXOption, spaces.x);
32870
- seriesMinMax.maxX = adjustX.max;
32871
- seriesMinMax.minX = adjustX.min;
32872
- var adjustY = this.adjustMinMax(seriesMinMax.maxY, seriesMinMax.minY, axesYOption, spaces.y);
32873
- seriesMinMax.maxY = adjustY.max;
32874
- seriesMinMax.minY = adjustY.min;
32875
- return seriesMinMax;
32876
- },
32877
32693
  getSeriesValueOptForHeatMap: function getSeriesValueOptForHeatMap(series) {
32878
32694
  var data = series.data;
32879
- var colorOpt = series.colorOpt;
32880
- var colorAxis = series.colorAxis;
32695
+ var colorOpt = this.options.heatMapColor;
32881
32696
  var categoryCnt = colorOpt.categoryCnt;
32697
+ var minValue;
32882
32698
  var maxValue = 0;
32883
32699
  var isExistError = false;
32884
- data.forEach(function (_ref) {
32885
- var value = _ref.value;
32700
+ data.forEach(function (_ref2) {
32701
+ var value = _ref2.o;
32886
32702
 
32887
32703
  if (maxValue < value) {
32888
- maxValue = value;
32704
+ maxValue = Math.max(maxValue, value);
32889
32705
  }
32890
32706
 
32891
32707
  if (value < 0) {
32892
32708
  isExistError = true;
32709
+ } else if (minValue === undefined) {
32710
+ minValue = value;
32711
+ } else {
32712
+ minValue = Math.min(minValue, value);
32893
32713
  }
32894
32714
  });
32895
- var valueInterval = Math.ceil(maxValue / categoryCnt);
32896
32715
 
32897
- if (isExistError && colorAxis.length === categoryCnt) {
32898
- colorAxis.push({
32716
+ if (isExistError && series.colorAxis.length === categoryCnt) {
32717
+ series.colorAxis.push({
32899
32718
  id: "color#".concat(categoryCnt),
32900
32719
  value: colorOpt.error,
32901
32720
  state: 'normal',
@@ -32904,8 +32723,9 @@ var modules = {
32904
32723
  }
32905
32724
 
32906
32725
  return {
32726
+ min: minValue,
32907
32727
  max: maxValue,
32908
- interval: valueInterval,
32728
+ interval: Math.ceil((maxValue - minValue) / categoryCnt),
32909
32729
  existError: isExistError
32910
32730
  };
32911
32731
  },
@@ -32974,9 +32794,9 @@ var modules = {
32974
32794
 
32975
32795
  return findInfo;
32976
32796
  },
32977
- getItem: function getItem(_ref2) {
32978
- var seriesID = _ref2.seriesID,
32979
- dataIndex = _ref2.dataIndex;
32797
+ getItem: function getItem(_ref3) {
32798
+ var seriesID = _ref3.seriesID,
32799
+ dataIndex = _ref3.dataIndex;
32980
32800
  var useApproximate = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
32981
32801
  var dataInfo = this.getDataByValues(seriesID, dataIndex);
32982
32802
 
@@ -33083,6 +32903,177 @@ var modules = {
33083
32903
  };
33084
32904
  },
33085
32905
 
32906
+ /**
32907
+ * Find seriesId by position x and y
32908
+ * @param {array} offset position x and y
32909
+ *
32910
+ * @returns {object} clicked series id
32911
+ */
32912
+ getSeriesIdByPosition: function getSeriesIdByPosition(offset) {
32913
+ var _this6 = this;
32914
+
32915
+ var _offset = _slicedToArray(offset, 2),
32916
+ clickedX = _offset[0],
32917
+ clickedY = _offset[1];
32918
+
32919
+ var chartRect = this.chartRect;
32920
+ var labelOffset = this.labelOffset;
32921
+ var aPos = {
32922
+ x1: chartRect.x1 + labelOffset.left,
32923
+ x2: chartRect.x2 - labelOffset.right,
32924
+ y1: chartRect.y1 + labelOffset.top,
32925
+ y2: chartRect.y2 - labelOffset.bottom
32926
+ };
32927
+ var valueAxes = this.axesY[0];
32928
+ var labelAxes = this.axesX[0];
32929
+ var valueStartPoint = aPos[valueAxes.units.rectStart];
32930
+ var valueEndPoint = aPos[valueAxes.units.rectEnd];
32931
+ var labelStartPoint = aPos[labelAxes.units.rectStart];
32932
+ var labelEndPoint = aPos[labelAxes.units.rectEnd];
32933
+ var result = {
32934
+ sId: null
32935
+ };
32936
+
32937
+ if (clickedY > valueEndPoint && clickedY < valueStartPoint && clickedX < labelEndPoint && clickedX > labelStartPoint) {
32938
+ var hitSeries;
32939
+ var positionList;
32940
+ var hitItem = this.findHitItem(offset);
32941
+ var hitSeriesList = Object.keys(hitItem.items);
32942
+
32943
+ switch (this.options.type) {
32944
+ case 'line':
32945
+ {
32946
+ var orderedSeriesList = this.seriesInfo.charts.line;
32947
+ var isStackChart = Object.values(this.seriesList).some(function (_ref4) {
32948
+ var stackIndex = _ref4.stackIndex;
32949
+ return stackIndex;
32950
+ });
32951
+
32952
+ if (hitSeriesList.length) {
32953
+ // 클릭한 위치에 data 가 존재하는 경우
32954
+ if (isStackChart) {
32955
+ var _positionList$find;
32956
+
32957
+ positionList = orderedSeriesList.filter(function (sId) {
32958
+ return hitSeriesList.includes(sId);
32959
+ }).map(function (sId) {
32960
+ var _hitItem$items$sId, _hitItem$items$sId$da;
32961
+
32962
+ return {
32963
+ sId: sId,
32964
+ position: (_hitItem$items$sId = hitItem.items[sId]) === null || _hitItem$items$sId === void 0 ? void 0 : (_hitItem$items$sId$da = _hitItem$items$sId.data) === null || _hitItem$items$sId$da === void 0 ? void 0 : _hitItem$items$sId$da.yp
32965
+ };
32966
+ });
32967
+ hitSeries = (_positionList$find = positionList.find(function (_ref5) {
32968
+ var position = _ref5.position;
32969
+ return clickedY > position;
32970
+ })) === null || _positionList$find === void 0 ? void 0 : _positionList$find.sId;
32971
+ } else {
32972
+ var _Object$entries$find;
32973
+
32974
+ hitSeries = (_Object$entries$find = Object.entries(hitItem.items).find(function (_ref6) {
32975
+ var _ref7 = _slicedToArray(_ref6, 2),
32976
+ hit = _ref7[1].hit;
32977
+
32978
+ return hit;
32979
+ })) === null || _Object$entries$find === void 0 ? void 0 : _Object$entries$find[0];
32980
+ }
32981
+ } else {
32982
+ var _positionList$0$posit;
32983
+
32984
+ // 클릭한 위치에 data 가 존재하지 않는 경우
32985
+ var visibleSeriesList = orderedSeriesList.filter(function (sId) {
32986
+ return _this6.seriesList[sId].show;
32987
+ });
32988
+ positionList = visibleSeriesList.map(function (sId) {
32989
+ var _this6$seriesList$sId;
32990
+
32991
+ return {
32992
+ sId: sId,
32993
+ position: (_this6$seriesList$sId = _this6.seriesList[sId].data) === null || _this6$seriesList$sId === void 0 ? void 0 : _this6$seriesList$sId.map(function (_ref8) {
32994
+ var xp = _ref8.xp,
32995
+ yp = _ref8.yp;
32996
+ return [xp, yp];
32997
+ })
32998
+ };
32999
+ });
33000
+ var dataIndex = (_positionList$0$posit = positionList[0].position) === null || _positionList$0$posit === void 0 ? void 0 : _positionList$0$posit.findIndex(function (_ref9) {
33001
+ var _ref10 = _slicedToArray(_ref9, 1),
33002
+ xp = _ref10[0];
33003
+
33004
+ return xp >= clickedX;
33005
+ });
33006
+ var vectorList = positionList.map(function (_ref11) {
33007
+ var sId = _ref11.sId,
33008
+ position = _ref11.position;
33009
+ return {
33010
+ sId: sId,
33011
+ vector: {
33012
+ start: position[dataIndex - 1],
33013
+ end: position[dataIndex]
33014
+ }
33015
+ };
33016
+ }); // canvas 의 클릭 위치값은 제 4 사분면의 위치이므로 clickedY, y1, y2 의 값은 음수를 취한다.
33017
+
33018
+ if (isStackChart) {
33019
+ var _vectorList$find;
33020
+
33021
+ hitSeries = (_vectorList$find = vectorList.find(function (_ref12) {
33022
+ var vector = _ref12.vector;
33023
+
33024
+ var _vector$start = _slicedToArray(vector.start, 2),
33025
+ x1 = _vector$start[0],
33026
+ y1 = _vector$start[1];
33027
+
33028
+ var _vector$end = _slicedToArray(vector.end, 2),
33029
+ x2 = _vector$end[0],
33030
+ y2 = _vector$end[1];
33031
+
33032
+ var v1 = [x2 - x1, y1 - y2];
33033
+ var v2 = [x2 - clickedX, clickedY - y2];
33034
+ var xp = v1[0] * v2[1] - v1[1] * v2[0];
33035
+ return vector.start.every(function (v) {
33036
+ return typeof v === 'number';
33037
+ }) && vector.end.every(function (v) {
33038
+ return typeof v === 'number';
33039
+ }) && xp > 0;
33040
+ })) === null || _vectorList$find === void 0 ? void 0 : _vectorList$find.sId;
33041
+ } else {
33042
+ var _vectorList$find2;
33043
+
33044
+ hitSeries = (_vectorList$find2 = vectorList.find(function (_ref13) {
33045
+ var vector = _ref13.vector;
33046
+
33047
+ var _vector$start2 = _slicedToArray(vector.start, 2),
33048
+ x1 = _vector$start2[0],
33049
+ y1 = _vector$start2[1];
33050
+
33051
+ var _vector$end2 = _slicedToArray(vector.end, 2),
33052
+ x2 = _vector$end2[0],
33053
+ y2 = _vector$end2[1];
33054
+
33055
+ var a = (y1 - y2) / (x2 - x1);
33056
+ var b = -1;
33057
+ var c = -y1 - a * x1;
33058
+ var distance = Math.abs(a * clickedX - b * clickedY + c) / Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2));
33059
+ return distance < 3;
33060
+ })) === null || _vectorList$find2 === void 0 ? void 0 : _vectorList$find2.sId;
33061
+ }
33062
+ }
33063
+
33064
+ break;
33065
+ }
33066
+
33067
+ default:
33068
+ break;
33069
+ }
33070
+
33071
+ result.sId = hitSeries;
33072
+ }
33073
+
33074
+ return result;
33075
+ },
33076
+
33086
33077
  /**
33087
33078
  * Find label info by position x and y
33088
33079
  * @param {array} offset position x and y
@@ -33090,9 +33081,9 @@ var modules = {
33090
33081
  * @returns {object} clicked label information
33091
33082
  */
33092
33083
  getLabelInfoByPosition: function getLabelInfoByPosition(offset) {
33093
- var _offset = _slicedToArray(offset, 2),
33094
- x = _offset[0],
33095
- y = _offset[1];
33084
+ var _offset2 = _slicedToArray(offset, 2),
33085
+ x = _offset2[0],
33086
+ y = _offset2[1];
33096
33087
 
33097
33088
  var aPos = {
33098
33089
  x1: this.chartRect.x1 + this.labelOffset.left,
@@ -33130,7 +33121,7 @@ var modules = {
33130
33121
  * @returns {object} min/max info for all of data
33131
33122
  */
33132
33123
  getStoreMinMax: function getStoreMinMax() {
33133
- var _this6 = this;
33124
+ var _this7 = this;
33134
33125
 
33135
33126
  var keys = Object.keys(this.seriesList);
33136
33127
  var isHorizontal = this.options.horizontal;
@@ -33148,7 +33139,7 @@ var modules = {
33148
33139
  if (keys.length) {
33149
33140
  return keys.reduce(function (acc, key) {
33150
33141
  var minmax = acc;
33151
- var series = _this6.seriesList[key];
33142
+ var series = _this7.seriesList[key];
33152
33143
  var smm = series.minMax;
33153
33144
  var axisX = series.xAxisIndex;
33154
33145
  var axisY = series.yAxisIndex;
@@ -34025,6 +34016,193 @@ var defaultsDeep = _baseRest(function(args) {
34025
34016
 
34026
34017
  /* harmony default export */ var lodash_es_defaultsDeep = (defaultsDeep);
34027
34018
 
34019
+ // CONCATENATED MODULE: ./src/components/chart/helpers/helpers.constant.js
34020
+ var AXIS_UNITS = {
34021
+ x: {
34022
+ rectStart: 'x1',
34023
+ rectEnd: 'x2',
34024
+ rectOffsetCounter: function rectOffsetCounter(position) {
34025
+ return position === 'top' ? 'y2' : 'y1';
34026
+ },
34027
+ rectOffset: function rectOffset(position) {
34028
+ return position === 'top' ? 'y1' : 'y2';
34029
+ }
34030
+ },
34031
+ y: {
34032
+ rectStart: 'y2',
34033
+ rectEnd: 'y1',
34034
+ rectOffsetCounter: function rectOffsetCounter(position) {
34035
+ return position === 'left' ? 'x2' : 'x1';
34036
+ },
34037
+ rectOffset: function rectOffset(position) {
34038
+ return position === 'left' ? 'x1' : 'x2';
34039
+ }
34040
+ }
34041
+ };
34042
+ var COLOR = ['#2b99f0', '#8ac449', '#00C4C5', '#ffde00', '#ff7781', '#8470ff', '#75cd8e', '#48d1cc', '#fec64f', '#fe984f', '#0052ff', '#00a48c', '#83cfde', '#dfe32d', '#ff7d40', '#99c7ff', '#a5fee3', '#0379c9', '#eef093', '#ffa891', '#00c5cd', '#009bc7', '#cacaff', '#ffc125', '#df6264']; // export const COLOR = [
34043
+ // '#00C8FC', '#00F1CD', '#C19F87', '#008FD2', '#93F7FE', '#00FC78', '#0058DE',
34044
+ // '#3BDEFF', '#254763', '#BAEDF9', '#A24E3D', '#1FD017', '#F1D3B6', '#AFC9C9',
34045
+ // '#498700', '#3650FE', '#8786EF', '#68FBFB', '#BCF061', '#CBD3EA',
34046
+ // ];
34047
+
34048
+ var LINE_OPTION = {
34049
+ show: true,
34050
+ highlight: {
34051
+ defaultSize: 4,
34052
+ maxSize: 6,
34053
+ maxShadowSize: 10,
34054
+ maxShadowOpacity: 0.4
34055
+ },
34056
+ xAxisIndex: 0,
34057
+ yAxisIndex: 0,
34058
+ point: true,
34059
+ pointSize: 3,
34060
+ pointStyle: '',
34061
+ lineWidth: 2,
34062
+ fill: false,
34063
+ fillOpacity: 0.4,
34064
+ showLegend: true
34065
+ };
34066
+ var BAR_OPTION = {
34067
+ show: true,
34068
+ highlight: {
34069
+ pointSize: 5
34070
+ },
34071
+ xAxisIndex: 0,
34072
+ yAxisIndex: 0,
34073
+ category: true,
34074
+ showLegend: true,
34075
+ showValue: {
34076
+ use: false,
34077
+ fontSize: 12,
34078
+ textColor: '#000000',
34079
+ formatter: null,
34080
+ decimalPoint: 0
34081
+ }
34082
+ };
34083
+ var PIE_OPTION = {
34084
+ show: true,
34085
+ showLegend: true,
34086
+ stroke: {
34087
+ show: true,
34088
+ color: '#FFFFFF',
34089
+ lineWidth: 2
34090
+ },
34091
+ showValue: {
34092
+ use: false,
34093
+ fontSize: 12,
34094
+ textColor: '#000000',
34095
+ formatter: null
34096
+ }
34097
+ };
34098
+ var AXIS_OPTION = {
34099
+ min: null,
34100
+ max: null,
34101
+ autoScaleRatio: null,
34102
+ startToZero: false,
34103
+ showAxis: true,
34104
+ axisLineColor: '#C9CFDC',
34105
+ showGrid: true,
34106
+ gridLineColor: '#C9CFDC',
34107
+ showIndicator: false,
34108
+ timeFormat: 'mm:ss',
34109
+ range: null,
34110
+ interval: null,
34111
+ decimalPoint: null,
34112
+ labelStyle: {
34113
+ show: true,
34114
+ fontSize: 12,
34115
+ color: '#25262E',
34116
+ fontFamily: 'Roboto',
34117
+ fontWeight: 400,
34118
+ fitWidth: false,
34119
+ fitDir: 'right'
34120
+ }
34121
+ };
34122
+ var PLOT_LINE_OPTION = {
34123
+ color: '#FF0000',
34124
+ lineWidth: 1
34125
+ };
34126
+ var PLOT_LINE_LABEL_OPTION = {
34127
+ show: false,
34128
+ fontSize: 12,
34129
+ fontColor: '#FF0000',
34130
+ fillColor: '#FFFFFF',
34131
+ lineColor: '#FF0000',
34132
+ lineWidth: 0,
34133
+ fontWeight: 400,
34134
+ fontFamily: 'Roboto',
34135
+ verticalAlign: 'middle',
34136
+ textAlign: 'center',
34137
+ textOverflow: 'none',
34138
+ // 'none', 'ellipsis'
34139
+ maxWidth: null
34140
+ };
34141
+ var PLOT_BAND_OPTION = {
34142
+ color: '#FAE59D'
34143
+ };
34144
+ var HEAT_MAP_OPTION = {
34145
+ show: true,
34146
+ highlight: {
34147
+ maxShadowOpacity: 0.4
34148
+ },
34149
+ xAxisIndex: 0,
34150
+ yAxisIndex: 0,
34151
+ showLegend: true,
34152
+ showValue: {
34153
+ use: false,
34154
+ fontSize: 12,
34155
+ textColor: '#000000',
34156
+ formatter: null,
34157
+ decimalPoint: 0
34158
+ }
34159
+ };
34160
+ var TIME_INTERVALS = {
34161
+ millisecond: {
34162
+ common: true,
34163
+ size: 1,
34164
+ steps: [1, 2, 5, 10, 20, 50, 100, 250, 500]
34165
+ },
34166
+ second: {
34167
+ common: true,
34168
+ size: 1000,
34169
+ steps: [1, 2, 5, 10, 30]
34170
+ },
34171
+ minute: {
34172
+ common: true,
34173
+ size: 60000,
34174
+ steps: [1, 2, 5, 10, 30]
34175
+ },
34176
+ hour: {
34177
+ common: true,
34178
+ size: 3600000,
34179
+ steps: [1, 2, 3, 6, 12]
34180
+ },
34181
+ day: {
34182
+ common: true,
34183
+ size: 86400000,
34184
+ steps: [1, 2, 5]
34185
+ },
34186
+ week: {
34187
+ common: false,
34188
+ size: 604800000,
34189
+ steps: [1, 2, 3, 4]
34190
+ },
34191
+ month: {
34192
+ common: true,
34193
+ size: 2.628e9,
34194
+ steps: [1, 2, 3]
34195
+ },
34196
+ quarter: {
34197
+ common: false,
34198
+ size: 7.884e9,
34199
+ steps: [1, 2, 3, 4]
34200
+ },
34201
+ year: {
34202
+ common: true,
34203
+ size: 3.154e10
34204
+ }
34205
+ };
34028
34206
  // CONCATENATED MODULE: ./src/components/chart/helpers/helpers.canvas.js
34029
34207
 
34030
34208
 
@@ -34331,7 +34509,6 @@ var defaultsDeep = _baseRest(function(args) {
34331
34509
 
34332
34510
 
34333
34511
 
34334
-
34335
34512
  var element_line_Line = /*#__PURE__*/function () {
34336
34513
  function Line(sId, opt, sIdx) {
34337
34514
  var _this = this;
@@ -34449,9 +34626,10 @@ var element_line_Line = /*#__PURE__*/function () {
34449
34626
 
34450
34627
  var getYPos = function getYPos(val) {
34451
34628
  return helpers_canvas.calculateY(val, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
34452
- };
34629
+ }; // draw line
34630
+
34453
34631
 
34454
- this.data.reduce(function (prev, curr, ix, item) {
34632
+ this.data.reduce(function (prev, curr, ix) {
34455
34633
  x = getXPos(curr.x);
34456
34634
  y = getYPos(curr.y);
34457
34635
 
@@ -34459,20 +34637,13 @@ var element_line_Line = /*#__PURE__*/function () {
34459
34637
  x += helpers_util.aliasPixel(x);
34460
34638
  }
34461
34639
 
34462
- if (y === null || x === null) {
34463
- if (ix - 1 > -1) {
34464
- // draw fill(area) series not stacked
34465
- if (_this2.fill && prev.y !== null && !_this2.stackIndex) {
34466
- ctx.stroke();
34467
- ctx.lineTo(prev.xp, endPoint);
34468
- ctx.lineTo(item[startFillIndex].xp, endPoint);
34469
- ctx.fill();
34470
- ctx.beginPath();
34471
- }
34472
- }
34640
+ if (ix === 0) {
34641
+ ctx.moveTo(x, y);
34642
+ }
34643
+
34644
+ var isNullValue = prev.y === null || curr.y === null || prev.x === null || curr.x === null;
34473
34645
 
34474
- startFillIndex = ix + 1;
34475
- } else if (ix === 0 || prev.y === null || curr.y === null || prev.x === null || curr.x === null) {
34646
+ if (isNullValue) {
34476
34647
  ctx.moveTo(x, y);
34477
34648
  } else {
34478
34649
  ctx.lineTo(x, y);
@@ -34484,38 +34655,43 @@ var element_line_Line = /*#__PURE__*/function () {
34484
34655
 
34485
34656
  return curr;
34486
34657
  }, this.data[0]);
34487
- ctx.stroke();
34488
- var dataLen = this.data.length;
34658
+ ctx.stroke(); // draw fill
34489
34659
 
34490
- if (this.fill && dataLen) {
34660
+ if (this.fill && this.data.length) {
34661
+ ctx.beginPath();
34491
34662
  ctx.fillStyle = helpers_util.colorStringToRgba(mainColor, fillOpacity);
34663
+ this.data.forEach(function (currData, ix) {
34664
+ var isEmptyPoint = function isEmptyPoint(data) {
34665
+ return (data === null || data === void 0 ? void 0 : data.x) === null || (data === null || data === void 0 ? void 0 : data.y) === null || (data === null || data === void 0 ? void 0 : data.x) === undefined || (data === null || data === void 0 ? void 0 : data.y) === undefined;
34666
+ };
34492
34667
 
34493
- if (this.stackIndex) {
34494
- var reversedDataList = this.data.slice().reverse();
34495
- reversedDataList.forEach(function (curr, ix) {
34496
- x = getXPos(curr.x);
34497
- y = getYPos(curr.b);
34498
- var prev = reversedDataList[ix - 1];
34668
+ var nextData = _this2.data[ix + 1];
34499
34669
 
34500
- if (curr.o !== null) {
34501
- if (prev && prev.o == null) {
34502
- ctx.moveTo(x, getYPos(curr.b + curr.o));
34503
- }
34670
+ if (isEmptyPoint(currData)) {
34671
+ startFillIndex = ix + 1;
34504
34672
 
34505
- ctx.lineTo(x, y);
34673
+ if (!isEmptyPoint(nextData)) {
34674
+ ctx.moveTo(nextData.xp, nextData.yp);
34675
+ }
34506
34676
 
34507
- if (ix === reversedDataList.length - 1) {
34508
- ctx.lineTo(x, getYPos(curr.b + curr.o));
34509
- }
34510
- } else if (prev && prev.o) {
34511
- ctx.lineTo(getXPos(prev.x), getYPos(prev.b + prev.o));
34677
+ return;
34678
+ }
34679
+
34680
+ ctx.lineTo(currData.xp, currData.yp);
34681
+
34682
+ if (isEmptyPoint(nextData)) {
34683
+ for (var jx = ix; jx >= startFillIndex; jx--) {
34684
+ var _getYPos;
34685
+
34686
+ var prevData = _this2.data[jx];
34687
+ var xp = prevData.xp;
34688
+ var bp = (_getYPos = getYPos(prevData.b)) !== null && _getYPos !== void 0 ? _getYPos : endPoint;
34689
+ ctx.lineTo(xp, bp);
34512
34690
  }
34513
- });
34514
- } else if (startFillIndex < dataLen) {
34515
- ctx.lineTo(this.data[dataLen - 1].xp, endPoint);
34516
- ctx.lineTo(this.data[startFillIndex].xp, endPoint);
34517
- }
34518
34691
 
34692
+ ctx.closePath();
34693
+ }
34694
+ });
34519
34695
  ctx.fill();
34520
34696
  }
34521
34697
 
@@ -35838,7 +36014,6 @@ var element_pie_Pie = /*#__PURE__*/function () {
35838
36014
  var ctx = context !== null && context !== void 0 ? context : this.ctx;
35839
36015
  var slice = new Path2D();
35840
36016
  var radius = this.isSelect ? this.radius + 5 : this.radius;
35841
- var doughnutHoleRadius = this.radius * this.doughnutHoleSize;
35842
36017
  var color = this.color;
35843
36018
  var noneDownplayOpacity = color.includes('rgba') ? helpers_util.getOpacity(color) : 1;
35844
36019
  var opacity = this.state === 'downplay' ? 0.1 : noneDownplayOpacity;
@@ -35857,7 +36032,7 @@ var element_pie_Pie = /*#__PURE__*/function () {
35857
36032
  }
35858
36033
 
35859
36034
  if ((_this$showValue = this.showValue) !== null && _this$showValue !== void 0 && _this$showValue.use) {
35860
- this.drawValueLabels(ctx, doughnutHoleRadius);
36035
+ this.drawValueLabels(ctx);
35861
36036
  }
35862
36037
 
35863
36038
  ctx.closePath();
@@ -35918,7 +36093,6 @@ var element_pie_Pie = /*#__PURE__*/function () {
35918
36093
 
35919
36094
  var ctx = context;
35920
36095
  var radius = this.isSelect ? this.radius + 5 : this.radius;
35921
- var doughnutHoleRadius = this.radius * this.doughnutHoleSize;
35922
36096
  ctx.save();
35923
36097
  ctx.shadowOffsetX = 0;
35924
36098
  ctx.shadowOffsetY = 0;
@@ -35933,7 +36107,7 @@ var element_pie_Pie = /*#__PURE__*/function () {
35933
36107
  ctx.fill();
35934
36108
 
35935
36109
  if ((_this$showValue2 = this.showValue) !== null && _this$showValue2 !== void 0 && _this$showValue2.use) {
35936
- this.drawValueLabels(ctx, doughnutHoleRadius);
36110
+ this.drawValueLabels(ctx);
35937
36111
  }
35938
36112
 
35939
36113
  ctx.closePath();
@@ -35948,19 +36122,12 @@ var element_pie_Pie = /*#__PURE__*/function () {
35948
36122
  }, {
35949
36123
  key: "drawValueLabels",
35950
36124
  value: function drawValueLabels(context) {
36125
+ var ctx = context;
36126
+ var value = this.data.o;
35951
36127
  var _this$showValue3 = this.showValue,
35952
36128
  fontSize = _this$showValue3.fontSize,
35953
36129
  textColor = _this$showValue3.textColor,
35954
36130
  formatter = _this$showValue3.formatter;
35955
- var ctx = context;
35956
- ctx.save();
35957
- ctx.beginPath();
35958
- ctx.font = "normal normal normal ".concat(fontSize, "px Roboto");
35959
- ctx.fillStyle = textColor;
35960
- ctx.lineWidth = 1;
35961
- ctx.textAlign = 'center';
35962
- ctx.textBaseline = 'middle';
35963
- var value = this.data.o;
35964
36131
  var formattedTxt;
35965
36132
 
35966
36133
  if (formatter) {
@@ -35978,14 +36145,22 @@ var element_pie_Pie = /*#__PURE__*/function () {
35978
36145
  var valueWidth = Math.round(ctx.measureText(formattedTxt).width);
35979
36146
 
35980
36147
  if (innerAngle >= valueWidth * ratio && innerAngle >= valueHeight * ratio && radius >= valueWidth * ratio && radius >= valueHeight * ratio) {
36148
+ ctx.save();
36149
+ ctx.beginPath();
36150
+ var noneDownplayOpacity = textColor.includes('rgba') ? helpers_util.getOpacity(textColor) : 1;
36151
+ var opacity = this.state === 'downplay' ? 0.1 : noneDownplayOpacity;
36152
+ ctx.font = "normal normal normal ".concat(fontSize, "px Roboto");
36153
+ ctx.fillStyle = helpers_util.colorStringToRgba(textColor, opacity);
36154
+ ctx.lineWidth = 1;
36155
+ ctx.textAlign = 'center';
36156
+ ctx.textBaseline = 'middle';
35981
36157
  var halfRadius = radius / 2 + this.doughnutHoleSize;
35982
36158
  var centerAngle = (this.endAngle - this.startAngle) / 2 + this.startAngle;
35983
36159
  var xPos = halfRadius * Math.cos(centerAngle) + this.centerX;
35984
36160
  var yPos = halfRadius * Math.sin(centerAngle) + this.centerY;
35985
36161
  ctx.fillText(formattedTxt, xPos, yPos);
36162
+ ctx.restore();
35986
36163
  }
35987
-
35988
- ctx.restore();
35989
36164
  }
35990
36165
  }]);
35991
36166
 
@@ -36013,7 +36188,7 @@ var element_pie_Pie = /*#__PURE__*/function () {
36013
36188
 
36014
36189
 
36015
36190
  var element_heatmap_HeatMap = /*#__PURE__*/function () {
36016
- function HeatMap(sId, opt, sIdx) {
36191
+ function HeatMap(sId, opt, colorOpt) {
36017
36192
  var _this = this;
36018
36193
 
36019
36194
  _classCallCheck(this, HeatMap);
@@ -36022,28 +36197,15 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36022
36197
  Object.keys(merged).forEach(function (key) {
36023
36198
  _this[key] = merged[key];
36024
36199
  });
36025
- ['color', 'pointFill', 'fillColor'].forEach(function (colorProp) {
36026
- if (_this[colorProp] === undefined) {
36027
- _this[colorProp] = COLOR[sIdx];
36028
- }
36029
- });
36030
- this.colorAxis = this.createColorAxis(opt.colorOpt);
36031
- this.errorColor = opt.colorOpt.error;
36032
- this.borderColor = opt.colorOpt.border;
36200
+ this.createColorAxis(colorOpt);
36033
36201
  this.sId = sId;
36034
36202
  this.data = [];
36035
- this.spaces = opt.spaces || {
36036
- x: null,
36037
- y: null
36038
- };
36203
+ this.labels = {};
36204
+ this.valueOpt = {};
36039
36205
  this.size = {
36040
36206
  w: 0,
36041
36207
  h: 0
36042
36208
  };
36043
- this.valueOpt = {
36044
- max: 0,
36045
- interval: 0
36046
- };
36047
36209
  this.type = 'heatMap';
36048
36210
  }
36049
36211
  /**
@@ -36059,7 +36221,9 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36059
36221
  var colorAxis = [];
36060
36222
  var min = colorOpt.min,
36061
36223
  max = colorOpt.max,
36062
- categoryCnt = colorOpt.categoryCnt;
36224
+ categoryCnt = colorOpt.categoryCnt,
36225
+ error = colorOpt.error,
36226
+ stroke = colorOpt.stroke;
36063
36227
  var minColor = min.includes('#') ? helpers_util.hexToRgb(min) : min;
36064
36228
  var maxColor = max.includes('#') ? helpers_util.hexToRgb(max) : max;
36065
36229
 
@@ -36091,34 +36255,67 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36091
36255
  });
36092
36256
  }
36093
36257
 
36094
- return colorAxis;
36258
+ this.colorAxis = colorAxis;
36259
+ this.errorColor = error;
36260
+ this.stroke = stroke;
36095
36261
  }
36096
36262
  }, {
36097
36263
  key: "getColorIndex",
36098
36264
  value: function getColorIndex(value) {
36099
36265
  var existError = this.valueOpt.existError;
36100
- var maxIndex = this.colorAxis.length;
36266
+ var maxIndex = this.colorAxis.length - 1;
36101
36267
 
36102
- if (value < 0) {
36103
- return maxIndex - 1;
36268
+ if (existError && value < 0) {
36269
+ return maxIndex;
36104
36270
  }
36105
36271
 
36106
36272
  var colorIndex = Math.floor(value / this.valueOpt.interval);
36107
36273
 
36108
36274
  if (colorIndex >= maxIndex) {
36109
- return existError ? maxIndex - 2 : maxIndex - 1;
36275
+ return existError ? maxIndex - 1 : maxIndex;
36110
36276
  }
36111
36277
 
36112
36278
  return colorIndex;
36113
36279
  }
36114
36280
  }, {
36115
36281
  key: "drawItem",
36116
- value: function drawItem(ctx, xp, yp) {
36282
+ value: function drawItem(ctx, x, y, w, h) {
36117
36283
  ctx.beginPath();
36118
- ctx.strokeRect(xp - this.size.w, yp + Math.SQRT2, this.size.w, this.size.h);
36119
- ctx.fillRect(xp - this.size.w, yp + Math.SQRT2, this.size.w, this.size.h);
36284
+
36285
+ if (this.stroke.show) {
36286
+ ctx.strokeRect(x, y, w, h);
36287
+ ctx.fillRect(x, y, w, h);
36288
+ } else {
36289
+ var aliasPixel = helpers_util.aliasPixel(1);
36290
+ ctx.fillRect(x, y - aliasPixel, w + aliasPixel, h + aliasPixel);
36291
+ }
36292
+
36120
36293
  ctx.closePath();
36121
- ctx.stroke();
36294
+ }
36295
+ }, {
36296
+ key: "calculateXY",
36297
+ value: function calculateXY(dir, value, startPoint) {
36298
+ var point = null;
36299
+
36300
+ if (this.labels[dir] && this.labels[dir].length) {
36301
+ var index = this.labels[dir].findIndex(function (label) {
36302
+ return label === value;
36303
+ });
36304
+
36305
+ if (index > -1) {
36306
+ point = dir === 'x' ? startPoint + this.size.w * index : startPoint - this.size.h * (index + 1);
36307
+ } else {
36308
+ var timeIndex = this.labels[dir].findIndex(function (label) {
36309
+ return new Date(label).getTime() === new Date(value).getTime();
36310
+ });
36311
+
36312
+ if (timeIndex > -1) {
36313
+ point = dir === 'x' ? startPoint + this.size.w * timeIndex : startPoint - this.size.h * (timeIndex + 1);
36314
+ }
36315
+ }
36316
+ }
36317
+
36318
+ return point;
36122
36319
  }
36123
36320
  }, {
36124
36321
  key: "draw",
@@ -36131,24 +36328,23 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36131
36328
 
36132
36329
  var ctx = param.ctx,
36133
36330
  chartRect = param.chartRect,
36134
- labelOffset = param.labelOffset,
36135
- axesSteps = param.axesSteps;
36136
- var minmaxX = axesSteps.x[this.xAxisIndex];
36137
- var minmaxY = axesSteps.y[this.yAxisIndex];
36331
+ labelOffset = param.labelOffset;
36138
36332
  var xArea = chartRect.chartWidth - (labelOffset.left + labelOffset.right);
36139
36333
  var yArea = chartRect.chartHeight - (labelOffset.top + labelOffset.bottom);
36140
36334
  var xsp = chartRect.x1 + labelOffset.left;
36141
36335
  var ysp = chartRect.y2 - labelOffset.bottom;
36142
- this.size.w = Math.floor(xArea / (this.spaces.x || minmaxX.graphMax - minmaxX.graphMin));
36143
- this.size.h = Math.floor(yArea / (this.spaces.y || minmaxY.graphMax - minmaxY.graphMin));
36336
+ this.size.w = xArea / this.labels.x.length;
36337
+ this.size.h = yArea / this.labels.y.length;
36144
36338
  this.data.forEach(function (item) {
36145
- item.xp = helpers_canvas.calculateX(item.x, minmaxX.graphMin, minmaxX.graphMax, xArea, xsp);
36146
- item.yp = helpers_canvas.calculateY(item.y, minmaxY.graphMin, minmaxY.graphMax, yArea, ysp);
36147
- var xp = item.xp,
36148
- yp = item.yp,
36149
- value = item.o;
36339
+ var xp = _this2.calculateXY('x', item.x, xsp);
36150
36340
 
36151
- if (xp !== null && yp !== null) {
36341
+ var yp = _this2.calculateXY('y', item.y, ysp);
36342
+
36343
+ var w = _this2.size.w;
36344
+ var h = _this2.size.h;
36345
+ var value = item.o;
36346
+
36347
+ if (xp !== null && yp !== null && value !== null && value !== undefined) {
36152
36348
  var colorIndex = _this2.getColorIndex(value);
36153
36349
 
36154
36350
  var opacity = _this2.colorAxis[colorIndex].state === 'downplay' ? 0.1 : 1;
@@ -36156,14 +36352,137 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36156
36352
  item.cId = _this2.colorAxis[colorIndex].id;
36157
36353
 
36158
36354
  if (_this2.colorAxis[colorIndex].show) {
36159
- ctx.strokeStyle = helpers_util.colorStringToRgba(_this2.borderColor, opacity);
36160
36355
  ctx.fillStyle = helpers_util.colorStringToRgba(item.dataColor, opacity);
36161
36356
 
36162
- _this2.drawItem(ctx, xp, yp);
36357
+ if (_this2.stroke.show) {
36358
+ var _this2$stroke = _this2.stroke,
36359
+ color = _this2$stroke.color,
36360
+ lineWidth = _this2$stroke.lineWidth,
36361
+ sOpacity = _this2$stroke.opacity;
36362
+ ctx.strokeStyle = helpers_util.colorStringToRgba(color, opacity === 1 ? sOpacity : opacity);
36363
+ ctx.lineWidth = lineWidth;
36364
+ xp += lineWidth * 1.5;
36365
+ yp += lineWidth * 1.5;
36366
+ w -= lineWidth * 2;
36367
+ h -= lineWidth * 2;
36368
+ }
36369
+
36370
+ _this2.drawItem(ctx, xp, yp, w, h);
36371
+
36372
+ if (_this2.showValue.use) {
36373
+ _this2.drawValueLabels({
36374
+ context: ctx,
36375
+ data: item,
36376
+ positions: {
36377
+ x: xp,
36378
+ y: yp,
36379
+ w: w,
36380
+ h: h
36381
+ }
36382
+ });
36383
+ }
36163
36384
  }
36385
+
36386
+ item.xp = xp;
36387
+ item.yp = yp;
36388
+ item.w = w;
36389
+ item.h = h;
36164
36390
  }
36165
36391
  });
36166
36392
  }
36393
+ /**
36394
+ * Draw value label if series 'use' of showValue option is true
36395
+ *
36396
+ * @param context canvas context
36397
+ * @param data series value data (model.store.js addData return value)
36398
+ */
36399
+
36400
+ }, {
36401
+ key: "drawValueLabels",
36402
+ value: function drawValueLabels(_ref) {
36403
+ var context = _ref.context,
36404
+ data = _ref.data,
36405
+ positions = _ref.positions;
36406
+ var _this$showValue = this.showValue,
36407
+ fontSize = _this$showValue.fontSize,
36408
+ textColor = _this$showValue.textColor,
36409
+ align = _this$showValue.align,
36410
+ formatter = _this$showValue.formatter,
36411
+ decimalPoint = _this$showValue.decimalPoint;
36412
+ var x = positions.x,
36413
+ y = positions.y,
36414
+ w = positions.w,
36415
+ h = positions.h;
36416
+ var ctx = context;
36417
+ ctx.save();
36418
+ ctx.beginPath();
36419
+ ctx.font = "normal normal normal ".concat(fontSize, "px Roboto");
36420
+ ctx.fillStyle = textColor;
36421
+ ctx.lineWidth = 1;
36422
+ ctx.textBaseline = 'middle';
36423
+ ctx.textAlign = align !== 'center' ? 'left' : 'center';
36424
+ var value = data.o;
36425
+ var formattedTxt;
36426
+
36427
+ if (formatter) {
36428
+ formattedTxt = formatter(value);
36429
+ }
36430
+
36431
+ if (!formatter || typeof formattedTxt !== 'string') {
36432
+ formattedTxt = helpers_util.labelSignFormat(value, decimalPoint);
36433
+ }
36434
+
36435
+ var vw = Math.round(ctx.measureText(formattedTxt).width);
36436
+ var vh = fontSize;
36437
+ var centerX = x + w / 2;
36438
+ var centerY = y + h / 2;
36439
+
36440
+ if (vw >= w || vh >= h || formattedTxt < 0) {
36441
+ return;
36442
+ }
36443
+
36444
+ switch (align) {
36445
+ case 'top':
36446
+ {
36447
+ var xPos = centerX - vw / 2;
36448
+ var yPos = centerY - vh / 2;
36449
+ ctx.fillText(formattedTxt, xPos, yPos);
36450
+ break;
36451
+ }
36452
+
36453
+ case 'right':
36454
+ {
36455
+ var _xPos = x + w - vw;
36456
+
36457
+ ctx.fillText(formattedTxt, _xPos, centerY);
36458
+ break;
36459
+ }
36460
+
36461
+ case 'bottom':
36462
+ {
36463
+ var _xPos2 = centerX - vw / 2;
36464
+
36465
+ var _yPos = centerY + vh / 2;
36466
+
36467
+ ctx.fillText(formattedTxt, _xPos2, _yPos);
36468
+ break;
36469
+ }
36470
+
36471
+ case 'left':
36472
+ ctx.fillText(formattedTxt, x, centerY);
36473
+ break;
36474
+
36475
+ default:
36476
+ {
36477
+ var _xPos3 = centerX - vw / 2;
36478
+
36479
+ ctx.fillText(formattedTxt, _xPos3, centerY);
36480
+ break;
36481
+ }
36482
+ }
36483
+
36484
+ ctx.restore();
36485
+ }
36167
36486
  /**
36168
36487
  *Returns items in range
36169
36488
  * @param {object} params range values
@@ -36173,16 +36492,24 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36173
36492
 
36174
36493
  }, {
36175
36494
  key: "findItems",
36176
- value: function findItems(_ref) {
36177
- var xsp = _ref.xsp,
36178
- ysp = _ref.ysp,
36179
- width = _ref.width,
36180
- height = _ref.height;
36495
+ value: function findItems(_ref2) {
36496
+ var xsp = _ref2.xsp,
36497
+ ysp = _ref2.ysp,
36498
+ width = _ref2.width,
36499
+ height = _ref2.height;
36181
36500
  var gdata = this.data;
36182
36501
  var xep = xsp + width;
36183
36502
  var yep = ysp + height;
36184
- return gdata.filter(function (seriesData) {
36185
- return xsp - 1 <= seriesData.xp && seriesData.xp <= xep + 1 && ysp - 1 <= seriesData.yp && seriesData.yp <= yep + 1;
36503
+ return gdata.filter(function (_ref3) {
36504
+ var xp = _ref3.xp,
36505
+ yp = _ref3.yp,
36506
+ w = _ref3.w,
36507
+ h = _ref3.h;
36508
+ var x1 = xp;
36509
+ var x2 = xp + w;
36510
+ var y1 = yp;
36511
+ var y2 = yp + h;
36512
+ return x1 >= xsp && x1 <= xep && y1 >= ysp && y1 <= yep || x1 >= xsp && x1 <= xep && y2 >= ysp && y2 <= yep || x2 >= xsp && x2 <= xep && y1 >= ysp && y1 <= yep || x2 >= xsp && x2 <= xep && y2 >= ysp && y2 <= yep;
36186
36513
  });
36187
36514
  }
36188
36515
  /**
@@ -36200,13 +36527,29 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36200
36527
  var ctx = context;
36201
36528
  var x = gdata.xp;
36202
36529
  var y = gdata.yp;
36530
+ var w = gdata.w;
36531
+ var h = gdata.h;
36203
36532
  ctx.save();
36204
36533
 
36205
36534
  if (x !== null && y !== null) {
36206
36535
  var color = gdata.dataColor;
36207
36536
  ctx.strokeStyle = helpers_util.colorStringToRgba(color, 1);
36208
36537
  ctx.fillStyle = helpers_util.colorStringToRgba(color, this.highlight.maxShadowOpacity);
36209
- this.drawItem(ctx, x, y);
36538
+ ctx.shadowColor = color;
36539
+ this.drawItem(ctx, x, y, w, h);
36540
+
36541
+ if (this.showValue.use) {
36542
+ this.drawValueLabels({
36543
+ context: ctx,
36544
+ data: gdata,
36545
+ positions: {
36546
+ x: x,
36547
+ y: y,
36548
+ w: w,
36549
+ h: h
36550
+ }
36551
+ });
36552
+ }
36210
36553
  }
36211
36554
 
36212
36555
  ctx.restore();
@@ -36229,13 +36572,13 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36229
36572
  color: null,
36230
36573
  name: null
36231
36574
  };
36232
- var wSize = this.size.w;
36233
- var hSize = this.size.h;
36234
36575
  var gdata = this.data;
36235
36576
  var foundItem = gdata.find(function (data) {
36236
- var x = data.xp;
36237
- var y = data.yp;
36238
- return x - wSize <= xp && xp <= x && y <= yp && yp <= y + hSize;
36577
+ var x = data.xp,
36578
+ y = data.yp,
36579
+ wSize = data.w,
36580
+ hSize = data.h;
36581
+ return x <= xp && xp <= x + wSize && y <= yp && yp <= y + hSize;
36239
36582
  });
36240
36583
 
36241
36584
  if (foundItem) {
@@ -36246,6 +36589,114 @@ var element_heatmap_HeatMap = /*#__PURE__*/function () {
36246
36589
 
36247
36590
  return item;
36248
36591
  }
36592
+ }, {
36593
+ key: "findBlockRange",
36594
+ value: function findBlockRange(_ref4) {
36595
+ var xcp = _ref4.xcp,
36596
+ xep = _ref4.xep,
36597
+ ycp = _ref4.ycp,
36598
+ yep = _ref4.yep,
36599
+ range = _ref4.range;
36600
+ var labels = this.labels;
36601
+ var blockRange = {
36602
+ xsp: Math.min(xcp, xep),
36603
+ ysp: Math.min(ycp, yep),
36604
+ width: Math.ceil(Math.abs(xep - xcp)),
36605
+ height: Math.ceil(Math.abs(yep - ycp))
36606
+ };
36607
+
36608
+ if (labels.x.length && labels.y.length) {
36609
+ var x1 = range.x1,
36610
+ x2 = range.x2,
36611
+ y1 = range.y1,
36612
+ y2 = range.y2;
36613
+ var gapX = (x2 - x1) / labels.x.length;
36614
+ var gapY = (y2 - y1) / labels.y.length;
36615
+ var point = {
36616
+ xsp: xcp,
36617
+ xep: xep,
36618
+ ysp: ycp,
36619
+ yep: yep
36620
+ };
36621
+
36622
+ var setPoint = function setPoint(dir, target, key) {
36623
+ var itemPoint;
36624
+ var gap;
36625
+ var startPoint;
36626
+
36627
+ if (dir === 'x') {
36628
+ gap = gapX;
36629
+ startPoint = x1;
36630
+ } else {
36631
+ gap = gapY;
36632
+ startPoint = y1;
36633
+ }
36634
+
36635
+ var findItem = labels[dir].findIndex(function (item, index) {
36636
+ itemPoint = Math.round(startPoint + gap * index) + helpers_util.aliasPixel(1);
36637
+ return itemPoint <= target && target <= itemPoint + gap;
36638
+ });
36639
+
36640
+ if (findItem > -1) {
36641
+ point[key] = ['xsp', 'ysp'].includes(key) ? itemPoint : itemPoint + gap;
36642
+ }
36643
+ };
36644
+
36645
+ setPoint('x', Math.min(xcp, xep), 'xsp');
36646
+ setPoint('x', Math.max(xcp, xep), 'xep');
36647
+ setPoint('y', Math.min(ycp, yep), 'ysp');
36648
+ setPoint('y', Math.max(ycp, yep), 'yep');
36649
+ blockRange.xsp = Math.min(point.xsp, point.xep);
36650
+ blockRange.ysp = Math.min(point.ysp, point.yep);
36651
+ blockRange.width = Math.abs(point.xep - point.xsp);
36652
+ blockRange.height = Math.abs(point.yep - point.ysp);
36653
+ }
36654
+
36655
+ return blockRange;
36656
+ }
36657
+ }, {
36658
+ key: "findSelectionRange",
36659
+ value: function findSelectionRange(rangeInfo) {
36660
+ var xcp = rangeInfo.xcp,
36661
+ ycp = rangeInfo.ycp,
36662
+ width = rangeInfo.width,
36663
+ height = rangeInfo.height,
36664
+ range = rangeInfo.range;
36665
+ var selectionRange = null;
36666
+ var x1 = range.x1,
36667
+ x2 = range.x2,
36668
+ y1 = range.y1,
36669
+ y2 = range.y2;
36670
+ var _this$labels = this.labels,
36671
+ labelX = _this$labels.x,
36672
+ labelY = _this$labels.y;
36673
+
36674
+ if (labelX.length && labelY.length) {
36675
+ var gapX = (x2 - x1) / labelX.length;
36676
+ var gapY = (y2 - y1) / labelY.length;
36677
+ var xsp = xcp;
36678
+ var xep = xcp + width;
36679
+ var ysp = ycp;
36680
+ var yep = ycp + height;
36681
+ var xIndex = {
36682
+ min: Math.floor((xsp - x1) / gapX),
36683
+ max: Math.floor((xep - x1 - gapX) / gapX)
36684
+ };
36685
+ var lastIndexY = labelY.length - 1;
36686
+ var yIndex = {
36687
+ min: lastIndexY - Math.floor((yep - y1 - gapY) / gapY),
36688
+ max: lastIndexY - Math.floor((ysp - y1) / gapY)
36689
+ };
36690
+ selectionRange = {
36691
+ xMin: labelX[xIndex.min],
36692
+ xMax: labelX[xIndex.max],
36693
+ yMin: labelY[yIndex.min],
36694
+ yMax: labelY[yIndex.max]
36695
+ };
36696
+ }
36697
+
36698
+ return selectionRange;
36699
+ }
36249
36700
  }]);
36250
36701
 
36251
36702
  return HeatMap;
@@ -36320,7 +36771,7 @@ var model_series_modules = {
36320
36771
  return new element_pie(id, opt, index);
36321
36772
  } else if (type === 'heatMap') {
36322
36773
  this.seriesInfo.charts.heatMap.push(id);
36323
- return new element_heatmap(id, opt, index);
36774
+ return new element_heatmap(id, opt, this.options.heatMapColor);
36324
36775
  }
36325
36776
 
36326
36777
  return false;
@@ -36381,6 +36832,9 @@ var dayjs_min_default = /*#__PURE__*/__webpack_require__.n(dayjs_min);
36381
36832
 
36382
36833
 
36383
36834
 
36835
+
36836
+
36837
+
36384
36838
  var scale_Scale = /*#__PURE__*/function () {
36385
36839
  function Scale(type, opt, ctx, options) {
36386
36840
  var _this = this;
@@ -36547,11 +37001,11 @@ var scale_Scale = /*#__PURE__*/function () {
36547
37001
 
36548
37002
  }, {
36549
37003
  key: "draw",
36550
- value: function draw(chartRect, labelOffset, stepInfo, hitInfo) {
37004
+ value: function draw(chartRect, labelOffset, stepInfo, hitInfo, selectLabelInfo) {
36551
37005
  var _this$labelStyle,
37006
+ _this2 = this,
36552
37007
  _this$plotBands,
36553
- _this$plotLines,
36554
- _this2 = this;
37008
+ _this$plotLines;
36555
37009
 
36556
37010
  var ctx = this.ctx;
36557
37011
  var options = this.options;
@@ -36615,11 +37069,16 @@ var scale_Scale = /*#__PURE__*/function () {
36615
37069
  var labelText;
36616
37070
 
36617
37071
  for (var ix = 0; ix <= steps; ix++) {
37072
+ var _this$options, _this$options$selectL, _this$options2, _this$options2$select, _selectLabelInfo$data;
37073
+
36618
37074
  ctx.beginPath();
36619
37075
  ticks[ix] = axisMin + ix * stepValue;
36620
37076
  labelCenter = Math.round(startPoint + labelGap * ix);
36621
37077
  linePosition = labelCenter + aliasPixel;
36622
37078
  labelText = this.getLabelFormat(Math.min(axisMax, ticks[ix]));
37079
+ var isBlurredLabel = ((_this$options = this.options) === null || _this$options === void 0 ? void 0 : (_this$options$selectL = _this$options.selectLabel) === null || _this$options$selectL === void 0 ? void 0 : _this$options$selectL.use) && ((_this$options2 = this.options) === null || _this$options2 === void 0 ? void 0 : (_this$options2$select = _this$options2.selectLabel) === null || _this$options2$select === void 0 ? void 0 : _this$options2$select.useLabelOpacity) && this.options.horizontal === (this.type === 'y') && (selectLabelInfo === null || selectLabelInfo === void 0 ? void 0 : (_selectLabelInfo$data = selectLabelInfo.dataIndex) === null || _selectLabelInfo$data === void 0 ? void 0 : _selectLabelInfo$data.length) && !(selectLabelInfo !== null && selectLabelInfo !== void 0 && selectLabelInfo.label.map(function (t) {
37080
+ return _this2.getLabelFormat(Math.min(axisMax, t));
37081
+ }).includes(labelText));
36623
37082
  var labelColor = this.labelStyle.color;
36624
37083
  var defaultOpacity = 1;
36625
37084
 
@@ -36627,16 +37086,16 @@ var scale_Scale = /*#__PURE__*/function () {
36627
37086
  defaultOpacity = helpers_util.getOpacity(labelColor);
36628
37087
  }
36629
37088
 
36630
- ctx.fillStyle = helpers_util.colorStringToRgba(labelColor, defaultOpacity);
37089
+ ctx.fillStyle = helpers_util.colorStringToRgba(labelColor, isBlurredLabel ? 0.1 : defaultOpacity);
36631
37090
  var labelPoint = void 0;
36632
37091
 
36633
37092
  if (this.type === 'x') {
36634
- var _options$selectItem, _this$options;
37093
+ var _options$selectItem, _this$options3;
36635
37094
 
36636
37095
  labelPoint = this.position === 'top' ? offsetPoint - 10 : offsetPoint + 10;
36637
37096
  ctx.fillText(labelText, labelCenter, labelPoint);
36638
37097
 
36639
- if (options !== null && options !== void 0 && (_options$selectItem = options.selectItem) !== null && _options$selectItem !== void 0 && _options$selectItem.showLabelTip && hitInfo !== null && hitInfo !== void 0 && hitInfo.label && !((_this$options = this.options) !== null && _this$options !== void 0 && _this$options.horizontal)) {
37098
+ if (!isBlurredLabel && options !== null && options !== void 0 && (_options$selectItem = options.selectItem) !== null && _options$selectItem !== void 0 && _options$selectItem.showLabelTip && hitInfo !== null && hitInfo !== void 0 && hitInfo.label && !((_this$options3 = this.options) !== null && _this$options3 !== void 0 && _this$options3.horizontal)) {
36640
37099
  var selectedLabel = this.getLabelFormat(Math.min(axisMax, hitInfo.label + 0 * stepValue));
36641
37100
 
36642
37101
  if (selectedLabel === labelText) {
@@ -37527,7 +37986,7 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37527
37986
  _createClass(StepScale, [{
37528
37987
  key: "calculateScaleRange",
37529
37988
  value: function calculateScaleRange(minMax, chartRect) {
37530
- var stepMinMax = helpers_util.getStringMinMax(this.labels);
37989
+ var stepMinMax = this.rangeMode ? minMax : helpers_util.getStringMinMax(this.labels);
37531
37990
  var maxValue = stepMinMax.max;
37532
37991
  var minValue = stepMinMax.min;
37533
37992
  var maxWidth = chartRect.chartWidth / (this.labels.length + 2);
@@ -37549,9 +38008,21 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37549
38008
  }, {
37550
38009
  key: "calculateSteps",
37551
38010
  value: function calculateSteps(range) {
38011
+ var numberOfSteps = this.labels.length;
38012
+ var interval = 1;
38013
+
38014
+ if (this.rangeMode) {
38015
+ var maxSteps = range.maxSteps;
38016
+
38017
+ while (numberOfSteps > maxSteps * 2) {
38018
+ interval *= 2;
38019
+ numberOfSteps = Math.round(numberOfSteps / interval);
38020
+ }
38021
+ }
38022
+
37552
38023
  return {
37553
- steps: this.labels.length,
37554
- interval: 1,
38024
+ steps: numberOfSteps,
38025
+ interval: interval,
37555
38026
  graphMin: range.minValue,
37556
38027
  graphMax: range.maxValue
37557
38028
  };
@@ -37569,9 +38040,9 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37569
38040
  key: "draw",
37570
38041
  value: function draw(chartRect, labelOffset, stepInfo, hitInfo, selectLabelInfo) {
37571
38042
  var _this$labelStyle,
37572
- _this2 = this,
37573
38043
  _this$plotBands,
37574
- _this$plotLines;
38044
+ _this$plotLines,
38045
+ _this2 = this;
37575
38046
 
37576
38047
  var ctx = this.ctx;
37577
38048
  var labels = this.labels;
@@ -37581,7 +38052,9 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37581
38052
  y1: chartRect.y1 + labelOffset.top,
37582
38053
  y2: chartRect.y2 - labelOffset.bottom
37583
38054
  };
38055
+ var oriSteps = this.labels.length;
37584
38056
  var steps = stepInfo.steps;
38057
+ var count = stepInfo.interval;
37585
38058
  var startPoint = aPos[this.units.rectStart];
37586
38059
  var endPoint = aPos[this.units.rectEnd];
37587
38060
  var offsetPoint = aPos[this.units.rectOffset(this.position)];
@@ -37627,14 +38100,17 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37627
38100
  ctx.strokeStyle = this.gridLineColor;
37628
38101
  var labelText;
37629
38102
  var labelPoint;
37630
- labels.forEach(function (item, index) {
37631
- var _this2$options, _this2$options$select, _this2$options2, _this2$options2$selec, _selectLabelInfo$data, _selectLabelInfo$data2;
38103
+ var index;
37632
38104
 
38105
+ for (index = 0; index < oriSteps; index += count) {
38106
+ var _this$options, _this$options$selectL, _this$options2, _this$options2$select, _selectLabelInfo$data, _selectLabelInfo$data2;
38107
+
38108
+ var item = this.labels[index];
37633
38109
  labelCenter = Math.round(startPoint + labelGap * index);
37634
38110
  linePosition = labelCenter + aliasPixel;
37635
- labelText = _this2.getLabelFormat(item, maxWidth);
37636
- var isBlurredLabel = ((_this2$options = _this2.options) === null || _this2$options === void 0 ? void 0 : (_this2$options$select = _this2$options.selectLabel) === null || _this2$options$select === void 0 ? void 0 : _this2$options$select.use) && ((_this2$options2 = _this2.options) === null || _this2$options2 === void 0 ? void 0 : (_this2$options2$selec = _this2$options2.selectLabel) === null || _this2$options2$selec === void 0 ? void 0 : _this2$options2$selec.useLabelOpacity) && _this2.options.horizontal === (_this2.type === 'y') && (selectLabelInfo === null || selectLabelInfo === void 0 ? void 0 : (_selectLabelInfo$data = selectLabelInfo.dataIndex) === null || _selectLabelInfo$data === void 0 ? void 0 : _selectLabelInfo$data.length) && !(selectLabelInfo !== null && selectLabelInfo !== void 0 && (_selectLabelInfo$data2 = selectLabelInfo.dataIndex) !== null && _selectLabelInfo$data2 !== void 0 && _selectLabelInfo$data2.includes(index));
37637
- var labelColor = _this2.labelStyle.color;
38111
+ labelText = this.getLabelFormat(item, maxWidth);
38112
+ var isBlurredLabel = ((_this$options = this.options) === null || _this$options === void 0 ? void 0 : (_this$options$selectL = _this$options.selectLabel) === null || _this$options$selectL === void 0 ? void 0 : _this$options$selectL.use) && ((_this$options2 = this.options) === null || _this$options2 === void 0 ? void 0 : (_this$options2$select = _this$options2.selectLabel) === null || _this$options2$select === void 0 ? void 0 : _this$options2$select.useLabelOpacity) && this.options.horizontal === (this.type === 'y') && (selectLabelInfo === null || selectLabelInfo === void 0 ? void 0 : (_selectLabelInfo$data = selectLabelInfo.dataIndex) === null || _selectLabelInfo$data === void 0 ? void 0 : _selectLabelInfo$data.length) && !(selectLabelInfo !== null && selectLabelInfo !== void 0 && (_selectLabelInfo$data2 = selectLabelInfo.dataIndex) !== null && _selectLabelInfo$data2 !== void 0 && _selectLabelInfo$data2.includes(index));
38113
+ var labelColor = this.labelStyle.color;
37638
38114
  var defaultOpacity = 1;
37639
38115
 
37640
38116
  if (helpers_util.getColorStringType(labelColor) === 'RGBA') {
@@ -37643,21 +38119,22 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37643
38119
 
37644
38120
  ctx.fillStyle = helpers_util.colorStringToRgba(labelColor, isBlurredLabel ? 0.1 : defaultOpacity);
37645
38121
 
37646
- if (_this2.type === 'x') {
37647
- var _this2$options3, _this2$options3$selec, _this2$options4;
38122
+ if (this.type === 'x') {
38123
+ var _this$options3, _this$options3$select, _this$options4;
37648
38124
 
37649
- labelPoint = _this2.position === 'top' ? offsetPoint - 10 : offsetPoint + 10;
37650
- ctx.fillText(labelText, labelCenter + labelGap / 2, labelPoint);
38125
+ labelPoint = this.position === 'top' ? offsetPoint - 10 : offsetPoint + 10;
38126
+ var xPoint = this.rangeMode ? labelCenter : labelCenter + labelGap / 2;
38127
+ ctx.fillText(labelText, xPoint, labelPoint);
37651
38128
 
37652
- if (!isBlurredLabel && (_this2$options3 = _this2.options) !== null && _this2$options3 !== void 0 && (_this2$options3$selec = _this2$options3.selectItem) !== null && _this2$options3$selec !== void 0 && _this2$options3$selec.showLabelTip && hitInfo !== null && hitInfo !== void 0 && hitInfo.label && !((_this2$options4 = _this2.options) !== null && _this2$options4 !== void 0 && _this2$options4.horizontal)) {
38129
+ if (!isBlurredLabel && (_this$options3 = this.options) !== null && _this$options3 !== void 0 && (_this$options3$select = _this$options3.selectItem) !== null && _this$options3$select !== void 0 && _this$options3$select.showLabelTip && hitInfo !== null && hitInfo !== void 0 && hitInfo.label && !((_this$options4 = this.options) !== null && _this$options4 !== void 0 && _this$options4.horizontal)) {
37653
38130
  var selectedLabel = hitInfo.label;
37654
38131
 
37655
38132
  if (selectedLabel === labelText) {
37656
- var _this2$labelStyle, _this2$options5, _this2$options5$selec, _this2$options5$selec2, _this2$options6, _this2$options6$selec, _this2$options6$selec2;
38133
+ var _this$labelStyle2, _this$options5, _this$options5$select, _this$options5$select2, _this$options6, _this$options6$select, _this$options6$select2;
37657
38134
 
37658
- var height = Math.round(ctx.measureText((_this2$labelStyle = _this2.labelStyle) === null || _this2$labelStyle === void 0 ? void 0 : _this2$labelStyle.fontSize).width);
38135
+ var height = Math.round(ctx.measureText((_this$labelStyle2 = this.labelStyle) === null || _this$labelStyle2 === void 0 ? void 0 : _this$labelStyle2.fontSize).width);
37659
38136
  helpers_util.showLabelTip({
37660
- ctx: _this2.ctx,
38137
+ ctx: this.ctx,
37661
38138
  width: Math.round(ctx.measureText(selectedLabel).width) + 10,
37662
38139
  height: height,
37663
38140
  x: labelCenter + labelGap / 2,
@@ -37665,28 +38142,59 @@ var scale_step_StepScale = /*#__PURE__*/function (_Scale) {
37665
38142
  borderRadius: 2,
37666
38143
  arrowSize: 3,
37667
38144
  text: labelText,
37668
- backgroundColor: (_this2$options5 = _this2.options) === null || _this2$options5 === void 0 ? void 0 : (_this2$options5$selec = _this2$options5.selectItem) === null || _this2$options5$selec === void 0 ? void 0 : (_this2$options5$selec2 = _this2$options5$selec.labelTipStyle) === null || _this2$options5$selec2 === void 0 ? void 0 : _this2$options5$selec2.backgroundColor,
37669
- textColor: (_this2$options6 = _this2.options) === null || _this2$options6 === void 0 ? void 0 : (_this2$options6$selec = _this2$options6.selectItem) === null || _this2$options6$selec === void 0 ? void 0 : (_this2$options6$selec2 = _this2$options6$selec.labelTipStyle) === null || _this2$options6$selec2 === void 0 ? void 0 : _this2$options6$selec2.textColor
38145
+ backgroundColor: (_this$options5 = this.options) === null || _this$options5 === void 0 ? void 0 : (_this$options5$select = _this$options5.selectItem) === null || _this$options5$select === void 0 ? void 0 : (_this$options5$select2 = _this$options5$select.labelTipStyle) === null || _this$options5$select2 === void 0 ? void 0 : _this$options5$select2.backgroundColor,
38146
+ textColor: (_this$options6 = this.options) === null || _this$options6 === void 0 ? void 0 : (_this$options6$select = _this$options6.selectItem) === null || _this$options6$select === void 0 ? void 0 : (_this$options6$select2 = _this$options6$select.labelTipStyle) === null || _this$options6$select2 === void 0 ? void 0 : _this$options6$select2.textColor
37670
38147
  });
37671
38148
  }
37672
38149
  }
37673
38150
 
37674
- if (index > 0 && _this2.showGrid) {
38151
+ if (index > 0 && this.showGrid) {
37675
38152
  ctx.moveTo(linePosition, offsetPoint);
37676
38153
  ctx.lineTo(linePosition, offsetCounterPoint);
37677
38154
  }
37678
38155
  } else {
37679
- labelPoint = _this2.position === 'left' ? offsetPoint - 10 : offsetPoint + 10;
37680
- ctx.fillText(labelText, labelPoint, labelCenter + labelGap / 2);
38156
+ labelPoint = this.position === 'left' ? offsetPoint - 10 : offsetPoint + 10;
38157
+ var yPoint = this.rangeMode ? labelCenter : labelCenter + labelGap / 2;
38158
+ ctx.fillText(labelText, labelPoint, yPoint);
37681
38159
 
37682
- if (index > 0 && _this2.showGrid) {
38160
+ if (index > 0 && this.showGrid) {
37683
38161
  ctx.moveTo(offsetPoint, linePosition);
37684
38162
  ctx.lineTo(offsetCounterPoint, linePosition);
37685
38163
  }
37686
38164
  }
37687
38165
 
37688
38166
  ctx.stroke();
37689
- });
38167
+ }
38168
+
38169
+ if (this.rangeMode && index === this.labels.length) {
38170
+ var labelLastText = +labels[labels.length - 1] + (+labels[1] - +labels[0]);
38171
+
38172
+ if (isNaN(labelLastText)) {
38173
+ labelLastText = 'Max';
38174
+ }
38175
+
38176
+ labelCenter = Math.round(startPoint + labelGap * labels.length);
38177
+ linePosition = labelCenter + aliasPixel;
38178
+
38179
+ if (this.type === 'x') {
38180
+ ctx.fillText(labelLastText, labelCenter, labelPoint);
38181
+
38182
+ if (this.showGrid) {
38183
+ ctx.moveTo(linePosition, offsetPoint);
38184
+ ctx.lineTo(linePosition, offsetCounterPoint);
38185
+ }
38186
+ } else {
38187
+ ctx.fillText(labelLastText, labelPoint, labelCenter);
38188
+
38189
+ if (this.showGrid) {
38190
+ ctx.moveTo(offsetPoint, linePosition);
38191
+ ctx.lineTo(offsetCounterPoint, linePosition);
38192
+ }
38193
+ }
38194
+
38195
+ ctx.stroke();
38196
+ }
38197
+
37690
38198
  ctx.closePath();
37691
38199
  } // draw plot lines and plot bands
37692
38200
 
@@ -38000,7 +38508,7 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
38000
38508
 
38001
38509
  var graphGap = (endPoint - startPoint) / (labels.length || 1);
38002
38510
 
38003
- if (this.categoryMode) {
38511
+ if (this.categoryMode && !this.rangeMode) {
38004
38512
  startPoint += Math.ceil(graphGap / 2) - 2;
38005
38513
  }
38006
38514
 
@@ -38010,6 +38518,7 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
38010
38518
  ctx.beginPath();
38011
38519
  ctx.strokeStyle = this.gridLineColor;
38012
38520
  var labelText;
38521
+ var labelPoint;
38013
38522
 
38014
38523
  for (var ix = 0; ix < oriSteps; ix += count) {
38015
38524
  var _this$options, _this$options$selectL, _this$options2, _this$options2$select, _selectLabelInfo$data, _selectLabelInfo$data2;
@@ -38027,7 +38536,6 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
38027
38536
  }
38028
38537
 
38029
38538
  ctx.fillStyle = helpers_util.colorStringToRgba(labelColor, isBlurredLabel ? 0.1 : defaultOpacity);
38030
- var labelPoint = void 0;
38031
38539
 
38032
38540
  if (this.type === 'x') {
38033
38541
  var _this$options3, _this$options3$select, _this$options4;
@@ -38074,6 +38582,31 @@ var scale_time_category_TimeCategoryScale = /*#__PURE__*/function (_Scale) {
38074
38582
  ctx.stroke();
38075
38583
  }
38076
38584
 
38585
+ if (this.categoryMode && this.rangeMode && count * steps === oriSteps) {
38586
+ var diffTime = dayjs_min_default()(labels[1]).diff(dayjs_min_default()(labels[0]));
38587
+ var labelLastText = this.getLabelFormat(dayjs_min_default()(labels[labels.length - 1] + diffTime));
38588
+ labelCenter = Math.round(startPoint + graphGap * labels.length);
38589
+ linePosition = labelCenter + aliasPixel;
38590
+
38591
+ if (this.type === 'x') {
38592
+ ctx.fillText(labelLastText, labelCenter, labelPoint);
38593
+
38594
+ if (this.showGrid) {
38595
+ ctx.moveTo(linePosition, offsetPoint);
38596
+ ctx.lineTo(linePosition, offsetCounterPoint);
38597
+ }
38598
+ } else {
38599
+ ctx.fillText(labelLastText, labelPoint, labelCenter);
38600
+
38601
+ if (this.showGrid) {
38602
+ ctx.moveTo(offsetPoint, linePosition);
38603
+ ctx.lineTo(offsetCounterPoint, linePosition);
38604
+ }
38605
+ }
38606
+
38607
+ ctx.stroke();
38608
+ }
38609
+
38077
38610
  ctx.closePath();
38078
38611
  }
38079
38612
  }]);
@@ -38141,9 +38674,6 @@ var plugins_title_modules = {
38141
38674
  }
38142
38675
  };
38143
38676
  /* harmony default export */ var plugins_title = (plugins_title_modules);
38144
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.values.js
38145
- var es_object_values = __webpack_require__("07ac");
38146
-
38147
38677
  // CONCATENATED MODULE: ./src/components/chart/plugins/plugins.legend.js
38148
38678
 
38149
38679
 
@@ -38158,6 +38688,7 @@ var es_object_values = __webpack_require__("07ac");
38158
38688
 
38159
38689
 
38160
38690
 
38691
+
38161
38692
  var plugins_legend_modules = {
38162
38693
  /**
38163
38694
  * Create legend DOM
@@ -38244,10 +38775,15 @@ var plugins_legend_modules = {
38244
38775
  if (!series.isExistGrp && series.showLegend) {
38245
38776
  var colorAxis = series.colorAxis,
38246
38777
  valueOpt = series.valueOpt;
38778
+ var min = valueOpt.min,
38779
+ max = valueOpt.max,
38780
+ interval = valueOpt.interval,
38781
+ existError = valueOpt.existError;
38782
+ var endIndex = colorAxis.length - 1;
38247
38783
  colorAxis.forEach(function (colorItem, index) {
38248
- var maxValue = valueOpt.interval * (index + 1);
38249
- var minValue = maxValue - valueOpt.interval;
38250
- var name = valueOpt.existError && index === colorAxis.length - 1 ? 'error' : "".concat(minValue, " - ").concat(maxValue);
38784
+ var minValue = min + interval * index;
38785
+ var maxValue = index === endIndex ? max : minValue + interval;
38786
+ var name = existError && index === endIndex ? 'error' : "".concat(minValue, " - ").concat(maxValue);
38251
38787
 
38252
38788
  _this2.addLegend({
38253
38789
  cId: colorItem.id,
@@ -38351,6 +38887,8 @@ var plugins_legend_modules = {
38351
38887
 
38352
38888
 
38353
38889
  this.onLegendBoxOver = function (e) {
38890
+ var _this3$defaultSelectI, _this3$defaultSelectI2;
38891
+
38354
38892
  var type = e.target.dataset.type;
38355
38893
  var targetDOM;
38356
38894
 
@@ -38364,9 +38902,19 @@ var plugins_legend_modules = {
38364
38902
 
38365
38903
  var nameDOM = targetDOM.getElementsByClassName('ev-chart-legend-name')[0];
38366
38904
  var targetId = nameDOM.series.sId;
38905
+ var selectSeriesOption = _this3.options.selectSeries;
38906
+ var selectedList = (_this3$defaultSelectI = (_this3$defaultSelectI2 = _this3.defaultSelectInfo) === null || _this3$defaultSelectI2 === void 0 ? void 0 : _this3$defaultSelectI2.seriesId) !== null && _this3$defaultSelectI !== void 0 ? _this3$defaultSelectI : [];
38367
38907
  Object.values(_this3.seriesList).forEach(function (series) {
38368
- series.state = series.sId === targetId ? 'highlight' : 'downplay';
38908
+ series.state = series.sId === targetId || selectSeriesOption.use && selectedList.includes(targetId) ? 'highlight' : 'downplay';
38369
38909
  });
38910
+ var hitInfo = null;
38911
+
38912
+ if (helpers_util.isPieType(_this3.options.type)) {
38913
+ hitInfo = {
38914
+ sId: targetId,
38915
+ type: _this3.options.type
38916
+ };
38917
+ }
38370
38918
 
38371
38919
  _this3.update({
38372
38920
  updateSeries: false,
@@ -38374,9 +38922,7 @@ var plugins_legend_modules = {
38374
38922
  update: false,
38375
38923
  keepDomain: false
38376
38924
  },
38377
- hitInfo: {
38378
- sId: targetId
38379
- }
38925
+ hitInfo: hitInfo
38380
38926
  });
38381
38927
  };
38382
38928
  /**
@@ -38387,8 +38933,16 @@ var plugins_legend_modules = {
38387
38933
 
38388
38934
 
38389
38935
  this.onLegendBoxLeave = function () {
38936
+ var _this3$defaultSelectI3, _this3$defaultSelectI4;
38937
+
38938
+ var selectSeriesOption = _this3.options.selectSeries;
38939
+ var selectedList = (_this3$defaultSelectI3 = (_this3$defaultSelectI4 = _this3.defaultSelectInfo) === null || _this3$defaultSelectI4 === void 0 ? void 0 : _this3$defaultSelectI4.seriesId) !== null && _this3$defaultSelectI3 !== void 0 ? _this3$defaultSelectI3 : [];
38390
38940
  Object.values(_this3.seriesList).forEach(function (series) {
38391
- series.state = 'normal';
38941
+ if (selectSeriesOption.use && selectedList.length) {
38942
+ series.state = selectedList.includes(series.sId) ? 'highlight' : 'downplay';
38943
+ } else {
38944
+ series.state = 'normal';
38945
+ }
38392
38946
  });
38393
38947
 
38394
38948
  _this3.update({
@@ -39040,9 +39594,6 @@ var plugins_legend_modules = {
39040
39594
  }
39041
39595
  };
39042
39596
  /* harmony default export */ var plugins_legend = (plugins_legend_modules);
39043
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.entries.js
39044
- var es_object_entries = __webpack_require__("4fad");
39045
-
39046
39597
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.from-entries.js
39047
39598
  var es_object_from_entries = __webpack_require__("c1f9");
39048
39599
 
@@ -39062,6 +39613,9 @@ var es_object_from_entries = __webpack_require__("c1f9");
39062
39613
 
39063
39614
 
39064
39615
 
39616
+
39617
+
39618
+
39065
39619
  var plugins_interaction_modules = {
39066
39620
  /**
39067
39621
  * Hide legend components by manipulating css
@@ -39141,6 +39695,8 @@ var plugins_interaction_modules = {
39141
39695
 
39142
39696
  if (type === 'scatter') {
39143
39697
  _this.drawTooltipForScatter(hitInfo, _this.tooltipCtx);
39698
+ } else if (type === 'heatMap') {
39699
+ _this.drawToolTipForHeatMap(hitInfo, _this.tooltipCtx);
39144
39700
  } else {
39145
39701
  _this.drawTooltip(hitInfo, _this.tooltipCtx);
39146
39702
  }
@@ -39206,6 +39762,7 @@ var plugins_interaction_modules = {
39206
39762
  args.label = hitInfo.label;
39207
39763
  args.value = hitInfo.value;
39208
39764
  args.seriesId = hitInfo.sId;
39765
+ args.acc = hitInfo.acc;
39209
39766
  }
39210
39767
 
39211
39768
  if (typeof _this.listeners['dbl-click'] === 'function') {
@@ -39237,18 +39794,29 @@ var plugins_interaction_modules = {
39237
39794
  args.value = hitInfo.value;
39238
39795
  args.seriesId = hitInfo.sId;
39239
39796
  args.dataIndex = hitInfo.maxIndex;
39240
- }
39241
-
39242
- if (_this.options.selectLabel.use) {
39797
+ args.acc = hitInfo.acc;
39798
+ } else if (_this.options.selectLabel.use) {
39243
39799
  var _offset = _this.getMousePosition(e);
39244
39800
 
39245
39801
  var clickedLabelInfo = _this.getLabelInfoByPosition(_offset);
39246
39802
 
39247
39803
  var selected = _this.selectLabel(clickedLabelInfo.labelIndex);
39248
39804
 
39249
- _this.renderWithSelectLabel(selected.dataIndex);
39805
+ _this.renderWithSelected(selected.dataIndex);
39806
+
39807
+ args.selected = lodash_es_cloneDeep(_this.defaultSelectInfo);
39808
+ } else if (_this.options.selectSeries.use) {
39809
+ var _offset2 = _this.getMousePosition(e);
39810
+
39811
+ var _hitInfo = _this.getSeriesIdByPosition(_offset2);
39250
39812
 
39251
- args.selected = lodash_es_cloneDeep(_this.defaultSelectLabelInfo);
39813
+ if (_hitInfo.sId !== null) {
39814
+ var _selected = _this.selectSeries(_hitInfo.sId);
39815
+
39816
+ _this.renderWithSelected(_selected.seriesId);
39817
+ }
39818
+
39819
+ args.selected = lodash_es_cloneDeep(_this.defaultSelectInfo);
39252
39820
  }
39253
39821
 
39254
39822
  if (typeof _this.listeners.click === 'function') {
@@ -39379,10 +39947,31 @@ var plugins_interaction_modules = {
39379
39947
  yep = aOffsetY;
39380
39948
  }
39381
39949
 
39382
- dragInfo.xsp = Math.min(xcp, xep);
39383
- dragInfo.ysp = type === 'scatter' || type === 'heatMap' ? Math.min(ycp, yep) : aRange.y1;
39384
- dragInfo.width = Math.ceil(Math.abs(xep - xcp));
39385
- dragInfo.height = type === 'scatter' || type === 'heatMap' ? Math.ceil(Math.abs(yep - ycp)) : aRange.y2 - aRange.y1;
39950
+ if (type === 'heatMap') {
39951
+ var rangeInfo = {
39952
+ xcp: xcp,
39953
+ xep: xep,
39954
+ ycp: ycp,
39955
+ yep: yep,
39956
+ range: aRange
39957
+ };
39958
+
39959
+ var _this2$getDragInfoFor = _this2.getDragInfoForHeatMap(rangeInfo),
39960
+ xsp = _this2$getDragInfoFor.xsp,
39961
+ ysp = _this2$getDragInfoFor.ysp,
39962
+ width = _this2$getDragInfoFor.width,
39963
+ height = _this2$getDragInfoFor.height;
39964
+
39965
+ dragInfo.xsp = xsp;
39966
+ dragInfo.ysp = ysp;
39967
+ dragInfo.width = width;
39968
+ dragInfo.height = height;
39969
+ } else {
39970
+ dragInfo.xsp = Math.min(xcp, xep);
39971
+ dragInfo.ysp = type === 'scatter' ? Math.min(ycp, yep) : aRange.y1;
39972
+ dragInfo.width = Math.ceil(Math.abs(xep - xcp));
39973
+ dragInfo.height = type === 'scatter' ? Math.ceil(Math.abs(yep - ycp)) : aRange.y2 - aRange.y1;
39974
+ }
39386
39975
 
39387
39976
  _this2.overlayClear();
39388
39977
 
@@ -39402,7 +39991,7 @@ var plugins_interaction_modules = {
39402
39991
  var args = {
39403
39992
  e: e,
39404
39993
  data: _this2.findSelectedItems(dragInfo),
39405
- range: _this2.getSelectionRage(dragInfo)
39994
+ range: type === 'heatMap' ? _this2.getSelectionRangeForHeatMap(dragInfo) : _this2.getSelectionRage(dragInfo)
39406
39995
  };
39407
39996
  _this2.dragInfoBackup = lodash_es_defaultsDeep({}, dragInfo);
39408
39997
 
@@ -39576,34 +40165,38 @@ var plugins_interaction_modules = {
39576
40165
  },
39577
40166
 
39578
40167
  /**
39579
- * render after select label by index list
40168
+ * render after selected label or selected series
39580
40169
  * @param indexList {array} '[0, 1 ...]'
39581
40170
  */
39582
- renderWithSelectLabel: function renderWithSelectLabel(indexList) {
39583
- this.defaultSelectLabelInfo.dataIndex = indexList;
39584
- this.initSelectedLabelInfo();
40171
+ renderWithSelected: function renderWithSelected(list) {
40172
+ if (this.options.selectLabel.use) {
40173
+ this.defaultSelectInfo.dataIndex = list;
40174
+ } else if (this.options.selectSeries.use) {
40175
+ this.defaultSelectInfo.seriesId = list;
40176
+ }
40177
+
40178
+ this.initSelectedInfo();
39585
40179
  this.render();
39586
40180
  },
39587
40181
 
39588
40182
  /**
39589
- * init defaultSelectLabelInfo object.
39590
- * (set each series data and label text)
40183
+ * init defaultSelectInfo object.
40184
+ * - at selectLabel using: set each series data and label text
40185
+ * - at selectSeries using: set series state
39591
40186
  */
39592
- initSelectedLabelInfo: function initSelectedLabelInfo() {
40187
+ initSelectedInfo: function initSelectedInfo() {
39593
40188
  var _this3 = this;
39594
40189
 
39595
- var _this$options$selectL = this.options.selectLabel,
39596
- use = _this$options$selectL.use,
39597
- limit = _this$options$selectL.limit;
40190
+ if (this.options.selectLabel.use) {
40191
+ var limit = this.options.selectLabel.limit;
39598
40192
 
39599
- if (use) {
39600
- if (!this.defaultSelectLabelInfo) {
39601
- this.defaultSelectLabelInfo = {
40193
+ if (!this.defaultSelectInfo) {
40194
+ this.defaultSelectInfo = {
39602
40195
  dataIndex: []
39603
40196
  };
39604
40197
  }
39605
40198
 
39606
- var infoObj = this.defaultSelectLabelInfo;
40199
+ var infoObj = this.defaultSelectInfo;
39607
40200
  infoObj.dataIndex.splice(limit);
39608
40201
  infoObj.label = infoObj.dataIndex.map(function (i) {
39609
40202
  return _this3.data.labels[i];
@@ -39618,6 +40211,23 @@ var plugins_interaction_modules = {
39618
40211
  return [sId, data[labelIdx]];
39619
40212
  }));
39620
40213
  });
40214
+ } else if (this.options.selectSeries.use) {
40215
+ if (!this.defaultSelectInfo) {
40216
+ this.defaultSelectInfo = {
40217
+ seriesId: []
40218
+ };
40219
+ }
40220
+
40221
+ var selectedList = this.defaultSelectInfo.seriesId;
40222
+ Object.values(this.seriesList).forEach(function (series) {
40223
+ if (!selectedList.length) {
40224
+ series.state = 'normal';
40225
+ } else if (selectedList.includes(series.sId)) {
40226
+ series.state = 'highlight';
40227
+ } else {
40228
+ series.state = 'downplay';
40229
+ }
40230
+ });
39621
40231
  }
39622
40232
  },
39623
40233
 
@@ -39627,10 +40237,10 @@ var plugins_interaction_modules = {
39627
40237
  * @param labelIndex {array} '[0, 1 ...]'
39628
40238
  */
39629
40239
  selectLabel: function selectLabel(labelIndex) {
39630
- var _this$options$selectL2, _this$options5, _this$defaultSelectLa;
40240
+ var _this$options$selectL, _this$options5, _this$defaultSelectIn;
39631
40241
 
39632
- var option = (_this$options$selectL2 = (_this$options5 = this.options) === null || _this$options5 === void 0 ? void 0 : _this$options5.selectLabel) !== null && _this$options$selectL2 !== void 0 ? _this$options$selectL2 : {};
39633
- var before = (_this$defaultSelectLa = this.defaultSelectLabelInfo) !== null && _this$defaultSelectLa !== void 0 ? _this$defaultSelectLa : {
40242
+ var option = (_this$options$selectL = (_this$options5 = this.options) === null || _this$options5 === void 0 ? void 0 : _this$options5.selectLabel) !== null && _this$options$selectL !== void 0 ? _this$options$selectL : {};
40243
+ var before = (_this$defaultSelectIn = this.defaultSelectInfo) !== null && _this$defaultSelectIn !== void 0 ? _this$defaultSelectIn : {
39634
40244
  dataIndex: []
39635
40245
  };
39636
40246
  var after = lodash_es_cloneDeep(before);
@@ -39652,6 +40262,32 @@ var plugins_interaction_modules = {
39652
40262
 
39653
40263
  return after;
39654
40264
  },
40265
+ selectSeries: function selectSeries(seriesId) {
40266
+ var _this$options$selectS, _this$options6, _this$defaultSelectIn2;
40267
+
40268
+ var option = (_this$options$selectS = (_this$options6 = this.options) === null || _this$options6 === void 0 ? void 0 : _this$options6.selectSeries) !== null && _this$options$selectS !== void 0 ? _this$options$selectS : {};
40269
+ var before = (_this$defaultSelectIn2 = this.defaultSelectInfo) !== null && _this$defaultSelectIn2 !== void 0 ? _this$defaultSelectIn2 : {
40270
+ seriesId: []
40271
+ };
40272
+ var after = lodash_es_cloneDeep(before);
40273
+
40274
+ if (before.seriesId.includes(seriesId)) {
40275
+ var idx = before.seriesId.indexOf(seriesId);
40276
+ after.seriesId.splice(idx, 1);
40277
+ } else if (seriesId) {
40278
+ after.seriesId.push(seriesId);
40279
+
40280
+ if (option.limit > 0 && option.limit < after.seriesId.length) {
40281
+ if (option.useDeselectOverflow) {
40282
+ after.seriesId.splice(0, 1);
40283
+ } else {
40284
+ after.seriesId.pop();
40285
+ }
40286
+ }
40287
+ }
40288
+
40289
+ return after;
40290
+ },
39655
40291
 
39656
40292
  /**
39657
40293
  * Find items by series within a range
@@ -39735,6 +40371,33 @@ var plugins_interaction_modules = {
39735
40371
  var total = max - min;
39736
40372
  var targetValue = value - min;
39737
40373
  return targetValue / total;
40374
+ },
40375
+ getDragInfoForHeatMap: function getDragInfoForHeatMap(range) {
40376
+ var sId = Object.keys(this.seriesList)[0];
40377
+ return this.seriesList[sId].findBlockRange(range);
40378
+ },
40379
+ getSelectionRangeForHeatMap: function getSelectionRangeForHeatMap(range) {
40380
+ var dataRangeX = this.axesSteps.x.length ? this.axesSteps.x[0] : null;
40381
+ var dataRangeY = this.axesSteps.y.length ? this.axesSteps.y[0] : null;
40382
+
40383
+ if (!dataRangeX || !dataRangeY) {
40384
+ return null;
40385
+ }
40386
+
40387
+ var sId = Object.keys(this.seriesList)[0];
40388
+
40389
+ var _this$seriesList$sId$ = this.seriesList[sId].findSelectionRange(range),
40390
+ xMin = _this$seriesList$sId$.xMin,
40391
+ xMax = _this$seriesList$sId$.xMax,
40392
+ yMin = _this$seriesList$sId$.yMin,
40393
+ yMax = _this$seriesList$sId$.yMax;
40394
+
40395
+ return {
40396
+ xMin: xMin !== null && xMin !== void 0 ? xMin : dataRangeX.graphMin,
40397
+ xMax: xMax !== null && xMax !== void 0 ? xMax : dataRangeX.graphMax,
40398
+ yMin: yMin !== null && yMin !== void 0 ? yMin : dataRangeY.graphMin,
40399
+ yMax: yMax !== null && yMax !== void 0 ? yMax : dataRangeY.graphMax
40400
+ };
39738
40401
  }
39739
40402
  };
39740
40403
  /* harmony default export */ var plugins_interaction = (plugins_interaction_modules);
@@ -40056,13 +40719,6 @@ var plugins_tooltip_modules = {
40056
40719
  value: value,
40057
40720
  name: name
40058
40721
  });
40059
- } else if (this.options.type === 'heatMap') {
40060
- formattedTxt = opt.formatter({
40061
- x: this.options.horizontal ? hitItem.y : hitItem.x,
40062
- y: this.options.horizontal ? hitItem.x : hitItem.y,
40063
- name: name,
40064
- value: value
40065
- });
40066
40722
  } else {
40067
40723
  formattedTxt = opt.formatter({
40068
40724
  x: this.options.horizontal ? value : hitItem.x,
@@ -40110,10 +40766,13 @@ var plugins_tooltip_modules = {
40110
40766
  l: 16
40111
40767
  };
40112
40768
  var isHorizontal = this.options.horizontal;
40113
- var opt = this.options.tooltip; // draw tooltip Title(axis label) and add style class for wrap line about too much long label.
40769
+ var opt = this.options.tooltip;
40770
+ var xValue = '';
40771
+ var yValue = ''; // draw tooltip Title(axis label) and add style class for wrap line about too much long label.
40114
40772
 
40115
- if (this.axesX.length && this.axesY.length) {
40116
- this.tooltipHeaderDOM.textContent = this.options.horizontal ? "".concat(this.axesY[hitAxis.y].getLabelFormat(hitItem.y), " / ").concat(this.axesX[hitAxis.x].getLabelFormat(hitItem.x)) : "".concat(this.axesX[hitAxis.x].getLabelFormat(hitItem.x), " / ").concat(this.axesY[hitAxis.y].getLabelFormat(hitItem.y));
40773
+ if (this.axesX.length) {
40774
+ xValue = this.axesX[hitAxis.x].getLabelFormat(hitItem.x);
40775
+ this.tooltipHeaderDOM.textContent = xValue;
40117
40776
  }
40118
40777
 
40119
40778
  if (opt.textOverflow) {
@@ -40143,14 +40802,36 @@ var plugins_tooltip_modules = {
40143
40802
  }, hitColor);
40144
40803
  } else {
40145
40804
  ctx.fillStyle = hitColor;
40146
- } // 1. Draw series color
40805
+ } // 1. Draw value color
40147
40806
 
40148
40807
 
40149
40808
  ctx.fillRect(itemX - 4, itemY - 12, 12, 12);
40150
- ctx.fillStyle = opt.fontColor; // 2. Draw series name
40809
+ ctx.fillStyle = opt.fontColor; // 2. Draw value y names
40151
40810
 
40152
40811
  ctx.textBaseline = 'Bottom';
40153
- ctx.fillText(itemValue, itemX + COLOR_MARGIN, itemY);
40812
+
40813
+ if (this.axesY.length) {
40814
+ yValue = this.axesY[hitAxis.y].getLabelFormat(hitItem.y);
40815
+ ctx.fillText(yValue, itemX + COLOR_MARGIN, itemY);
40816
+ } // 3. Draw value
40817
+
40818
+
40819
+ var formattedTxt = itemValue;
40820
+
40821
+ if (opt.formatter) {
40822
+ formattedTxt = opt.formatter({
40823
+ x: xValue,
40824
+ y: yValue,
40825
+ value: itemValue
40826
+ });
40827
+ }
40828
+
40829
+ if ((!opt.formatter || typeof formattedTxt !== 'string') && itemValue !== 'error') {
40830
+ formattedTxt = numberWithComma(itemValue);
40831
+ }
40832
+
40833
+ ctx.textAlign = 'right';
40834
+ ctx.fillText(formattedTxt, this.tooltipDOM.offsetWidth - boxPadding.r, itemY);
40154
40835
  ctx.closePath();
40155
40836
  this.setTooltipDOMStyle(opt);
40156
40837
  },
@@ -40475,6 +41156,11 @@ var plugins_pie_modules = {
40475
41156
  var centerY = chartRect.height / 2;
40476
41157
  var chartWidth = centerX - (padding.left + padding.right);
40477
41158
  var chartHeight = centerY - (padding.bottom + padding.top);
41159
+
41160
+ if (typeof chartWidth === 'number' && chartWidth < 0 || typeof chartHeight === 'number' && chartHeight < 0) {
41161
+ return;
41162
+ }
41163
+
40478
41164
  var innerRadius = Math.min(chartWidth, chartHeight) * pieOption.doughnutHoleSize;
40479
41165
  var outerRadius = Math.min(chartWidth, chartHeight);
40480
41166
 
@@ -40565,6 +41251,11 @@ var plugins_pie_modules = {
40565
41251
  var centerY = height / 2;
40566
41252
  var chartWidth = centerX - (padding.left + padding.right);
40567
41253
  var chartHeight = centerY - (padding.bottom + padding.top);
41254
+
41255
+ if (typeof chartWidth === 'number' && chartWidth < 0 || typeof chartHeight === 'number' && chartHeight < 0) {
41256
+ return;
41257
+ }
41258
+
40568
41259
  var innerRadius = Math.min(chartWidth, chartHeight) * pieOption.doughnutHoleSize;
40569
41260
  var outerRadius = Math.min(chartWidth, chartHeight);
40570
41261
 
@@ -40658,6 +41349,11 @@ var plugins_pie_modules = {
40658
41349
  var centerY = height / 2;
40659
41350
  var chartWidth = centerX - (padding.left + padding.right);
40660
41351
  var chartHeight = centerY - (padding.bottom + padding.top);
41352
+
41353
+ if (typeof chartWidth === 'number' && chartWidth < 0 || typeof chartHeight === 'number' && chartHeight < 0) {
41354
+ return;
41355
+ }
41356
+
40661
41357
  var radius = Math.min(chartWidth, chartHeight) * pieOption.doughnutHoleSize;
40662
41358
  ctx.save();
40663
41359
  ctx.globalCompositeOperation = 'destination-out';
@@ -40975,10 +41671,10 @@ var element_tip_modules = {
40975
41671
  var opt = this.options;
40976
41672
  var isHorizontal = !!opt.horizontal;
40977
41673
  var labelTipOpt = opt.selectLabel;
40978
- var _this$defaultSelectLa = this.defaultSelectLabelInfo,
40979
- dataIndex = _this$defaultSelectLa.dataIndex,
40980
- data = _this$defaultSelectLa.data,
40981
- label = _this$defaultSelectLa.label;
41674
+ var _this$defaultSelectIn = this.defaultSelectInfo,
41675
+ dataIndex = _this$defaultSelectIn.dataIndex,
41676
+ data = _this$defaultSelectIn.data,
41677
+ label = _this$defaultSelectIn.label;
40982
41678
  var drawTip = false;
40983
41679
 
40984
41680
  if (dataIndex.length) {
@@ -41316,7 +42012,7 @@ var element_tip_modules = {
41316
42012
 
41317
42013
 
41318
42014
  var chart_core_EvChart = /*#__PURE__*/function () {
41319
- function EvChart(target, data, options, listeners, defaultSelectItemInfo, defaultSelectLabelInfo) {
42015
+ function EvChart(target, data, options, listeners, defaultSelectItemInfo, defaultSelectInfo) {
41320
42016
  var _this = this;
41321
42017
 
41322
42018
  _classCallCheck(this, EvChart);
@@ -41375,7 +42071,7 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41375
42071
  count: 0
41376
42072
  };
41377
42073
  this.defaultSelectItemInfo = defaultSelectItemInfo;
41378
- this.defaultSelectLabelInfo = defaultSelectLabelInfo;
42074
+ this.defaultSelectInfo = defaultSelectInfo;
41379
42075
  }
41380
42076
  /**
41381
42077
  * Initialize chart object
@@ -41411,7 +42107,7 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41411
42107
  this.axesY = this.createAxes('y', axesY);
41412
42108
  this.axesRange = this.getAxesRange();
41413
42109
  this.labelOffset = this.getLabelOffset();
41414
- this.initSelectedLabelInfo();
42110
+ this.initSelectedInfo();
41415
42111
  this.drawChart();
41416
42112
 
41417
42113
  if (tooltip.use) {
@@ -41484,7 +42180,8 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41484
42180
  var _this$options2 = this.options,
41485
42181
  maxTip = _this$options2.maxTip,
41486
42182
  selectLabel = _this$options2.selectLabel,
41487
- selectItem = _this$options2.selectItem;
42183
+ selectItem = _this$options2.selectItem,
42184
+ selectSeries = _this$options2.selectSeries;
41488
42185
  var opt = {
41489
42186
  ctx: this.bufferCtx,
41490
42187
  chartRect: this.chartRect,
@@ -41496,7 +42193,11 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41496
42193
  },
41497
42194
  selectLabel: {
41498
42195
  option: selectLabel,
41499
- selected: this.defaultSelectLabelInfo
42196
+ selected: this.defaultSelectInfo
42197
+ },
42198
+ selectSeries: {
42199
+ option: selectSeries,
42200
+ selected: this.defaultSelectInfo
41500
42201
  }
41501
42202
  };
41502
42203
  var showIndex = 0;
@@ -41643,7 +42344,7 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41643
42344
  value: function createAxes(dir) {
41644
42345
  var axes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
41645
42346
  var ctx = this.bufferCtx;
41646
- var labels = this.data.labels;
42347
+ var labels = this.options.type === 'heatMap' ? this.data.labels[dir] : this.data.labels;
41647
42348
  var options = this.options;
41648
42349
  return axes.map(function (axis) {
41649
42350
  switch (axis.type) {
@@ -41705,10 +42406,10 @@ var chart_core_EvChart = /*#__PURE__*/function () {
41705
42406
  var _this4 = this;
41706
42407
 
41707
42408
  this.axesX.forEach(function (axis, index) {
41708
- axis.draw(_this4.chartRect, _this4.labelOffset, _this4.axesSteps.x[index], hitInfo, _this4.defaultSelectLabelInfo);
42409
+ axis.draw(_this4.chartRect, _this4.labelOffset, _this4.axesSteps.x[index], hitInfo, _this4.defaultSelectInfo);
41709
42410
  });
41710
42411
  this.axesY.forEach(function (axis, index) {
41711
- axis.draw(_this4.chartRect, _this4.labelOffset, _this4.axesSteps.y[index], hitInfo, _this4.defaultSelectLabelInfo);
42412
+ axis.draw(_this4.chartRect, _this4.labelOffset, _this4.axesSteps.y[index], hitInfo, _this4.defaultSelectInfo);
41712
42413
  });
41713
42414
  }
41714
42415
  /**
@@ -42056,7 +42757,7 @@ var chart_core_EvChart = /*#__PURE__*/function () {
42056
42757
  this.axesY = this.createAxes('y', options.axesY);
42057
42758
  this.axesRange = this.getAxesRange();
42058
42759
  this.labelOffset = this.getLabelOffset();
42059
- this.initSelectedLabelInfo();
42760
+ this.initSelectedInfo();
42060
42761
  this.render(updateInfo === null || updateInfo === void 0 ? void 0 : updateInfo.hitInfo);
42061
42762
  var isDragMove = this.dragInfo && this.drawSelectionArea;
42062
42763
 
@@ -42327,11 +43028,28 @@ var DEFAULT_OPTIONS = {
42327
43028
  useApproximateValue: false,
42328
43029
  tipBackground: '#000000'
42329
43030
  },
43031
+ selectSeries: {
43032
+ use: false,
43033
+ limit: 1,
43034
+ useDeselectOverflow: false
43035
+ },
42330
43036
  dragSelection: {
42331
43037
  use: false,
42332
43038
  keepDisplay: true,
42333
43039
  fillColor: '#38ACEC',
42334
43040
  opacity: 0.65
43041
+ },
43042
+ heatMapColor: {
43043
+ min: '#FFFFFF',
43044
+ max: '#0052FF',
43045
+ categoryCnt: 5,
43046
+ stroke: {
43047
+ show: false,
43048
+ color: '#FFFFFF',
43049
+ lineWidth: 1,
43050
+ opacity: 1
43051
+ },
43052
+ error: '#FF0000'
42335
43053
  }
42336
43054
  };
42337
43055
  var DEFAULT_DATA = {
@@ -42370,9 +43088,12 @@ var chart_uses_useModel = function useModel() {
42370
43088
 
42371
43089
  var selectItemInfo = lodash_es_cloneDeep(props.selectedItem);
42372
43090
  var selectLabelInfo = lodash_es_cloneDeep(props.selectedLabel);
43091
+ var selectSeriesInfo = lodash_es_cloneDeep(props.selectedSeries);
42373
43092
  var eventListeners = {
42374
43093
  click: function () {
42375
43094
  var _click = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(e) {
43095
+ var _e$selected, _e$selected2;
43096
+
42376
43097
  return regeneratorRuntime.wrap(function _callee$(_context) {
42377
43098
  while (1) {
42378
43099
  switch (_context.prev = _context.next) {
@@ -42388,15 +43109,21 @@ var chart_uses_useModel = function useModel() {
42388
43109
  });
42389
43110
  }
42390
43111
 
42391
- if (e.selected) {
43112
+ if ((_e$selected = e.selected) !== null && _e$selected !== void 0 && _e$selected.dataIndex) {
42392
43113
  emit('update:selectedLabel', {
42393
43114
  dataIndex: e.selected.dataIndex
42394
43115
  });
42395
43116
  }
42396
43117
 
43118
+ if ((_e$selected2 = e.selected) !== null && _e$selected2 !== void 0 && _e$selected2.seriesId) {
43119
+ emit('update:selectedSeries', {
43120
+ seriesId: e.selected.seriesId
43121
+ });
43122
+ }
43123
+
42397
43124
  emit('click', e);
42398
43125
 
42399
- case 5:
43126
+ case 6:
42400
43127
  case "end":
42401
43128
  return _context.stop();
42402
43129
  }
@@ -42467,6 +43194,7 @@ var chart_uses_useModel = function useModel() {
42467
43194
  eventListeners: eventListeners,
42468
43195
  selectItemInfo: selectItemInfo,
42469
43196
  selectLabelInfo: selectLabelInfo,
43197
+ selectSeriesInfo: selectSeriesInfo,
42470
43198
  getNormalizedData: getNormalizedData,
42471
43199
  getNormalizedOptions: getNormalizedOptions
42472
43200
  };
@@ -42515,6 +43243,10 @@ var uses_useWrapper = function useWrapper(options) {
42515
43243
  type: Object,
42516
43244
  default: null
42517
43245
  },
43246
+ selectedSeries: {
43247
+ type: Object,
43248
+ default: null
43249
+ },
42518
43250
  options: {
42519
43251
  type: Object,
42520
43252
  default: function _default() {
@@ -42532,7 +43264,7 @@ var uses_useWrapper = function useWrapper(options) {
42532
43264
  default: 0
42533
43265
  }
42534
43266
  },
42535
- emits: ['click', 'dbl-click', 'drag-select', 'update:selectedItem', 'update:selectedLabel'],
43267
+ emits: ['click', 'dbl-click', 'drag-select', 'update:selectedItem', 'update:selectedLabel', 'update:selectedSeries'],
42536
43268
  setup: function setup(props) {
42537
43269
  var evChart = {};
42538
43270
  var isInit = false;
@@ -42541,6 +43273,7 @@ var uses_useWrapper = function useWrapper(options) {
42541
43273
  eventListeners = _useModel.eventListeners,
42542
43274
  selectItemInfo = _useModel.selectItemInfo,
42543
43275
  selectLabelInfo = _useModel.selectLabelInfo,
43276
+ selectSeriesInfo = _useModel.selectSeriesInfo,
42544
43277
  getNormalizedData = _useModel.getNormalizedData,
42545
43278
  getNormalizedOptions = _useModel.getNormalizedOptions;
42546
43279
 
@@ -42552,7 +43285,15 @@ var uses_useWrapper = function useWrapper(options) {
42552
43285
  wrapperStyle = _useWrapper.wrapperStyle;
42553
43286
 
42554
43287
  var createChart = function createChart() {
42555
- evChart = new chart_core(wrapper.value, normalizedData, normalizedOptions, eventListeners, selectItemInfo, selectLabelInfo);
43288
+ var selected;
43289
+
43290
+ if (normalizedOptions.selectLabel.use) {
43291
+ selected = selectLabelInfo;
43292
+ } else if (normalizedOptions.selectSeries.use) {
43293
+ selected = selectSeriesInfo;
43294
+ }
43295
+
43296
+ evChart = new chart_core(wrapper.value, normalizedData, normalizedOptions, eventListeners, selectItemInfo, selected);
42556
43297
  };
42557
43298
 
42558
43299
  var drawChart = function drawChart() {
@@ -42598,7 +43339,7 @@ var uses_useWrapper = function useWrapper(options) {
42598
43339
  return props.data;
42599
43340
  }, function (chartData) {
42600
43341
  var newData = getNormalizedData(chartData);
42601
- var isUpdateSeries = !lodash_es_isEqual(newData.series, evChart.data.series) || !lodash_es_isEqual(newData.groups, evChart.data.groups);
43342
+ var isUpdateSeries = !lodash_es_isEqual(newData.series, evChart.data.series) || !lodash_es_isEqual(newData.groups, evChart.data.groups) || props.options.type === 'heatMap';
42602
43343
  evChart.data = lodash_es_cloneDeep(newData);
42603
43344
  evChart.update({
42604
43345
  updateSeries: isUpdateSeries,
@@ -42630,13 +43371,25 @@ var uses_useWrapper = function useWrapper(options) {
42630
43371
  return props.selectedLabel;
42631
43372
  }, function (newValue) {
42632
43373
  if (newValue.dataIndex) {
42633
- evChart.renderWithSelectLabel(newValue.dataIndex);
43374
+ evChart.renderWithSelected(newValue.dataIndex);
42634
43375
  }
42635
43376
  }, {
42636
43377
  deep: true
42637
43378
  });
42638
43379
 
42639
43380
  case 12:
43381
+ _context.next = 14;
43382
+ return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
43383
+ return props.selectedSeries;
43384
+ }, function (newValue) {
43385
+ if (newValue.seriesId) {
43386
+ evChart.renderWithSelected(newValue.seriesId);
43387
+ }
43388
+ }, {
43389
+ deep: true
43390
+ });
43391
+
43392
+ case 14:
42640
43393
  case "end":
42641
43394
  return _context.stop();
42642
43395
  }
@@ -42679,8 +43432,8 @@ var uses_useWrapper = function useWrapper(options) {
42679
43432
  });
42680
43433
  // CONCATENATED MODULE: ./src/components/chart/Chart.vue?vue&type=script&lang=js
42681
43434
 
42682
- // EXTERNAL MODULE: ./src/components/chart/Chart.vue?vue&type=style&index=0&id=53face60&lang=scss
42683
- var Chartvue_type_style_index_0_id_53face60_lang_scss = __webpack_require__("96f9");
43435
+ // EXTERNAL MODULE: ./src/components/chart/Chart.vue?vue&type=style&index=0&id=df219c50&lang=scss
43436
+ var Chartvue_type_style_index_0_id_df219c50_lang_scss = __webpack_require__("2fe8");
42684
43437
 
42685
43438
  // CONCATENATED MODULE: ./src/components/chart/Chart.vue
42686
43439
 
@@ -42688,7 +43441,7 @@ var Chartvue_type_style_index_0_id_53face60_lang_scss = __webpack_require__("96f
42688
43441
 
42689
43442
 
42690
43443
 
42691
- Chartvue_type_script_lang_js.render = Chartvue_type_template_id_53face60_render
43444
+ Chartvue_type_script_lang_js.render = Chartvue_type_template_id_df219c50_render
42692
43445
 
42693
43446
  /* harmony default export */ var Chart = (Chartvue_type_script_lang_js);
42694
43447
  // CONCATENATED MODULE: ./src/components/chart/index.js
@@ -42702,32 +43455,32 @@ Chart.install = function (app) {
42702
43455
  };
42703
43456
 
42704
43457
  /* harmony default export */ var chart = (Chart);
42705
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/treeGrid/TreeGrid.vue?vue&type=template&id=557cf5ec&scoped=true
43458
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/treeGrid/TreeGrid.vue?vue&type=template&id=1aab6f12&scoped=true
42706
43459
 
42707
43460
 
42708
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-557cf5ec");
43461
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_withId = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withScopeId"])("data-v-1aab6f12");
42709
43462
 
42710
- Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-557cf5ec");
43463
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["pushScopeId"])("data-v-1aab6f12");
42711
43464
 
42712
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_1 = {
43465
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_1 = {
42713
43466
  class: "column-list"
42714
43467
  };
42715
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_2 = {
43468
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_2 = {
42716
43469
  key: 0
42717
43470
  };
42718
43471
 
42719
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_3 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("td", {
43472
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_3 = /*#__PURE__*/Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("td", {
42720
43473
  class: "is-empty"
42721
43474
  }, "No records", -1);
42722
43475
 
42723
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_4 = {
43476
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_4 = {
42724
43477
  ref: "resizeLine",
42725
43478
  class: "table-resize-line"
42726
43479
  };
42727
43480
 
42728
43481
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["popScopeId"])();
42729
43482
 
42730
- var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/TreeGridvue_type_template_id_557cf5ec_scoped_true_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
43483
+ var TreeGridvue_type_template_id_1aab6f12_scoped_true_render = /*#__PURE__*/TreeGridvue_type_template_id_1aab6f12_scoped_true_withId(function (_ctx, _cache, $props, $setup, $data, $options) {
42731
43484
  var _component_toolbar = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["resolveComponent"])("toolbar");
42732
43485
 
42733
43486
  var _component_ev_checkbox = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["resolveComponent"])("ev-checkbox");
@@ -42749,7 +43502,7 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42749
43502
  class: "toolbar-wrapper",
42750
43503
  style: "width: ".concat(_ctx.gridWidth, ";")
42751
43504
  }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_toolbar, null, {
42752
- toolbarWrapper: TreeGridvue_type_template_id_557cf5ec_scoped_true_withId(function () {
43505
+ toolbarWrapper: TreeGridvue_type_template_id_1aab6f12_scoped_true_withId(function () {
42753
43506
  return [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, "toolbar", {
42754
43507
  item: {
42755
43508
  onSearch: $setup.onSearch
@@ -42766,7 +43519,7 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42766
43519
  }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", {
42767
43520
  ref: "header",
42768
43521
  class: $setup.headerClass
42769
- }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_1, [_ctx.useCheckbox.use ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
43522
+ }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("ul", TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_1, [_ctx.useCheckbox.use ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("li", {
42770
43523
  key: 0,
42771
43524
  class: $setup.headerCheckboxClass,
42772
43525
  style: "width: ".concat(_ctx.minWidth, "px;")
@@ -42835,7 +43588,7 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42835
43588
  }, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderList"])(_ctx.orderedColumns, function (column, cellIndex) {
42836
43589
  return {
42837
43590
  name: $setup.getSlotName(column.field),
42838
- fn: TreeGridvue_type_template_id_557cf5ec_scoped_true_withId(function (_ref) {
43591
+ fn: TreeGridvue_type_template_id_1aab6f12_scoped_true_withId(function (_ref) {
42839
43592
  var item = _ref.item;
42840
43593
  return [!!_ctx.$slots[column.field] ? Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, column.field, {
42841
43594
  key: 0,
@@ -42850,13 +43603,13 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42850
43603
  })
42851
43604
  };
42852
43605
  })]), 1032, ["selected-data", "node-data", "use-checkbox", "ordered-columns", "expand-icon", "collapse-icon", "parent-icon", "child-icon", "is-resize", "row-height", "min-width", "highlight-index", "border-style", "onCheckTreeData", "onExpandTreeData", "onClickTreeData", "onDblClickTreeData"]);
42853
- }), 128)), !_ctx.viewStore.length ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("tr", TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_2, [TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_3])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)])]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", {
43606
+ }), 128)), !_ctx.viewStore.length ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])("tr", TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_2, [TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_3])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)])]), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", {
42854
43607
  style: "height: ".concat(_ctx.vScrollBottomHeight, "px;"),
42855
43608
  class: "vscroll-spacer"
42856
43609
  }, null, 4), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])(_component_ev_context_menu, {
42857
43610
  ref: "menu",
42858
43611
  items: _ctx.contextMenuItems
42859
- }, null, 8, ["items"])], 34), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", TreeGridvue_type_template_id_557cf5ec_scoped_true_hoisted_4, null, 512), [[external_commonjs_vue_commonjs2_vue_root_Vue_["vShow"], _ctx.showResizeLine]])], 2)], 4), [[_directive_resize, $setup.onResize], [_directive_observe_visibility, {
43612
+ }, null, 8, ["items"])], 34), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["withDirectives"])(Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createVNode"])("div", TreeGridvue_type_template_id_1aab6f12_scoped_true_hoisted_4, null, 512), [[external_commonjs_vue_commonjs2_vue_root_Vue_["vShow"], _ctx.showResizeLine]])], 2)], 4), [[_directive_resize, $setup.onResize], [_directive_observe_visibility, {
42860
43613
  callback: $setup.onShow,
42861
43614
  once: true
42862
43615
  }]]), $setup.useSummary ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(_component_grid_summary, {
@@ -42869,8 +43622,9 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42869
43622
  borderStyle: _ctx.borderStyle,
42870
43623
  minWidth: _ctx.minWidth,
42871
43624
  rowHeight: _ctx.rowHeight
42872
- }
42873
- }, null, 8, ["ordered-columns", "stores", "use-checkbox", "style-option"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true), _ctx.usePage && !_ctx.isInfinite ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(_component_grid_pagination, {
43625
+ },
43626
+ "scroll-left": $setup.summaryScroll
43627
+ }, null, 8, ["ordered-columns", "stores", "use-checkbox", "style-option", "scroll-left"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true), _ctx.usePage && !_ctx.isInfinite ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createBlock"])(_component_grid_pagination, {
42874
43628
  key: 2,
42875
43629
  modelValue: _ctx.currentPage,
42876
43630
  "onUpdate:modelValue": _cache[5] || (_cache[5] = function ($event) {
@@ -42883,7 +43637,7 @@ var TreeGridvue_type_template_id_557cf5ec_scoped_true_render = /*#__PURE__*/Tree
42883
43637
  order: _ctx.order
42884
43638
  }, null, 8, ["modelValue", "total", "per-page", "visible-page", "show-page-info", "order"])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)], 64);
42885
43639
  });
42886
- // CONCATENATED MODULE: ./src/components/treeGrid/TreeGrid.vue?vue&type=template&id=557cf5ec&scoped=true
43640
+ // CONCATENATED MODULE: ./src/components/treeGrid/TreeGrid.vue?vue&type=template&id=1aab6f12&scoped=true
42887
43641
 
42888
43642
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader-v16/dist??ref--0-1!./src/components/treeGrid/TreeGridNode.vue?vue&type=template&id=89ae5faa&scoped=true
42889
43643
 
@@ -43218,6 +43972,7 @@ treeGrid_toolbarvue_type_script_lang_js.render = treeGrid_toolbarvue_type_templa
43218
43972
 
43219
43973
 
43220
43974
 
43975
+
43221
43976
 
43222
43977
 
43223
43978
  var treeGrid_uses_this = undefined;
@@ -43283,7 +44038,8 @@ var treeGrid_uses_commonFunctions = function commonFunctions(params) {
43283
44038
  } else if (column.type === 'float') {
43284
44039
  var _column$decimal;
43285
44040
 
43286
- convertValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
44041
+ var floatValue = convertValue.toFixed((_column$decimal = column.decimal) !== null && _column$decimal !== void 0 ? _column$decimal : 3);
44042
+ convertValue = floatValue.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
43287
44043
  }
43288
44044
 
43289
44045
  return convertValue;
@@ -43348,6 +44104,7 @@ var uses_scrollEvent = function scrollEvent(params) {
43348
44104
  elementInfo = params.elementInfo,
43349
44105
  resizeInfo = params.resizeInfo,
43350
44106
  pageInfo = params.pageInfo,
44107
+ summaryScroll = params.summaryScroll,
43351
44108
  getPagingData = params.getPagingData,
43352
44109
  updatePagingInfo = params.updatePagingInfo;
43353
44110
  /**
@@ -43400,6 +44157,7 @@ var uses_scrollEvent = function scrollEvent(params) {
43400
44157
  var headerEl = elementInfo.header;
43401
44158
  var bodyEl = elementInfo.body;
43402
44159
  headerEl.scrollLeft = bodyEl.scrollLeft;
44160
+ summaryScroll.value = bodyEl.scrollLeft;
43403
44161
  };
43404
44162
  /**
43405
44163
  * scroll 이벤트를 처리한다.
@@ -44595,12 +45353,15 @@ var treeGrid_uses_pagingEvent = function pagingEvent(params) {
44595
45353
  updatePagingInfo = _pagingEvent.updatePagingInfo,
44596
45354
  changePage = _pagingEvent.changePage;
44597
45355
 
45356
+ var summaryScroll = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["ref"])(0);
45357
+
44598
45358
  var _scrollEvent = uses_scrollEvent({
44599
45359
  scrollInfo: scrollInfo,
44600
45360
  stores: stores,
44601
45361
  elementInfo: elementInfo,
44602
45362
  resizeInfo: resizeInfo,
44603
45363
  pageInfo: pageInfo,
45364
+ summaryScroll: summaryScroll,
44604
45365
  getPagingData: getPagingData,
44605
45366
  updatePagingInfo: updatePagingInfo
44606
45367
  }),
@@ -44671,20 +45432,23 @@ var treeGrid_uses_pagingEvent = function pagingEvent(params) {
44671
45432
  });
44672
45433
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
44673
45434
  return props.checked;
44674
- }, function (checkedList) {
45435
+ }, function (value) {
45436
+ checkInfo.checkedRows = value;
45437
+ });
45438
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
45439
+ return checkInfo.checkedRows;
45440
+ }, function (value) {
45441
+ checkInfo.isHeaderChecked = false;
44675
45442
  var store = stores.store;
44676
45443
 
44677
45444
  if (pageInfo.isClientPaging) {
44678
45445
  store = getPagingData();
44679
45446
  }
44680
45447
 
44681
- checkInfo.checkedRows = checkedList;
44682
- checkInfo.isHeaderChecked = false;
44683
-
44684
45448
  if (store.length) {
44685
45449
  store.forEach(function (row) {
44686
- row.checked = !!checkedList.find(function (c) {
44687
- return c.index === row.index;
45450
+ row.checked = !!value.find(function (checkedRow) {
45451
+ return checkedRow.index === row.index;
44688
45452
  });
44689
45453
  });
44690
45454
  checkHeader(store);
@@ -44694,14 +45458,22 @@ var treeGrid_uses_pagingEvent = function pagingEvent(params) {
44694
45458
  });
44695
45459
  Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
44696
45460
  return props.selected;
44697
- }, function (selectedList) {
44698
- selectInfo.selectedRow = selectedList;
44699
- stores.store.forEach(function (row) {
44700
- row.selected = !!selectInfo.selectedRow.find(function (s) {
44701
- return s.index === row.index;
45461
+ }, function (value) {
45462
+ if (selectInfo.useSelect) {
45463
+ selectInfo.selectedRow = value;
45464
+ }
45465
+ });
45466
+ Object(external_commonjs_vue_commonjs2_vue_root_Vue_["watch"])(function () {
45467
+ return selectInfo.selectedRow;
45468
+ }, function (value) {
45469
+ if (selectInfo.useSelect) {
45470
+ stores.store.forEach(function (row) {
45471
+ row.selected = !!value.find(function (selectedRow) {
45472
+ return selectedRow.index === row.index;
45473
+ });
44702
45474
  });
44703
- });
44704
- updateVScroll();
45475
+ updateVScroll();
45476
+ }
44705
45477
  }, {
44706
45478
  deep: true
44707
45479
  });
@@ -44965,6 +45737,7 @@ var treeGrid_uses_pagingEvent = function pagingEvent(params) {
44965
45737
  };
44966
45738
 
44967
45739
  return _objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2(_objectSpread2({
45740
+ summaryScroll: summaryScroll,
44968
45741
  gridStyle: gridStyle,
44969
45742
  gridClass: gridClass,
44970
45743
  headerClass: headerClass,
@@ -45002,8 +45775,8 @@ var treeGrid_uses_pagingEvent = function pagingEvent(params) {
45002
45775
  });
45003
45776
  // CONCATENATED MODULE: ./src/components/treeGrid/TreeGrid.vue?vue&type=script&lang=js
45004
45777
 
45005
- // EXTERNAL MODULE: ./src/components/treeGrid/TreeGrid.vue?vue&type=style&index=0&id=557cf5ec&lang=scss&scoped=true
45006
- var TreeGridvue_type_style_index_0_id_557cf5ec_lang_scss_scoped_true = __webpack_require__("c122");
45778
+ // EXTERNAL MODULE: ./src/components/treeGrid/TreeGrid.vue?vue&type=style&index=0&id=1aab6f12&lang=scss&scoped=true
45779
+ var TreeGridvue_type_style_index_0_id_1aab6f12_lang_scss_scoped_true = __webpack_require__("af65");
45007
45780
 
45008
45781
  // CONCATENATED MODULE: ./src/components/treeGrid/TreeGrid.vue
45009
45782
 
@@ -45011,8 +45784,8 @@ var TreeGridvue_type_style_index_0_id_557cf5ec_lang_scss_scoped_true = __webpack
45011
45784
 
45012
45785
 
45013
45786
 
45014
- TreeGridvue_type_script_lang_js.render = TreeGridvue_type_template_id_557cf5ec_scoped_true_render
45015
- TreeGridvue_type_script_lang_js.__scopeId = "data-v-557cf5ec"
45787
+ TreeGridvue_type_script_lang_js.render = TreeGridvue_type_template_id_1aab6f12_scoped_true_render
45788
+ TreeGridvue_type_script_lang_js.__scopeId = "data-v-1aab6f12"
45016
45789
 
45017
45790
  /* harmony default export */ var TreeGrid = (TreeGridvue_type_script_lang_js);
45018
45791
  // CONCATENATED MODULE: ./src/components/treeGrid/index.js