@elastic/charts 38.1.5 → 39.1.0

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 (92) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/dist/chart_types/heatmap/layout/viewmodel/viewmodel.d.ts.map +1 -1
  3. package/dist/chart_types/heatmap/layout/viewmodel/viewmodel.js +45 -41
  4. package/dist/chart_types/heatmap/layout/viewmodel/viewmodel.js.map +1 -1
  5. package/dist/chart_types/heatmap/specs/heatmap.d.ts +19 -2
  6. package/dist/chart_types/heatmap/specs/heatmap.d.ts.map +1 -1
  7. package/dist/chart_types/heatmap/specs/heatmap.js +1 -1
  8. package/dist/chart_types/heatmap/specs/heatmap.js.map +1 -1
  9. package/dist/chart_types/heatmap/state/selectors/compute_chart_dimensions.js +1 -1
  10. package/dist/chart_types/heatmap/state/selectors/compute_chart_dimensions.js.map +1 -1
  11. package/dist/chart_types/heatmap/state/selectors/get_heatmap_table.js +21 -15
  12. package/dist/chart_types/heatmap/state/selectors/get_heatmap_table.js.map +1 -1
  13. package/dist/chart_types/heatmap/state/selectors/get_x_axis_right_overflow.js +7 -5
  14. package/dist/chart_types/heatmap/state/selectors/get_x_axis_right_overflow.js.map +1 -1
  15. package/dist/chart_types/partition_chart/layout/types/viewmodel_types.d.ts.map +1 -1
  16. package/dist/chart_types/partition_chart/layout/types/viewmodel_types.js +11 -1
  17. package/dist/chart_types/partition_chart/layout/types/viewmodel_types.js.map +1 -1
  18. package/dist/chart_types/partition_chart/layout/viewmodel/fill_text_layout.js +15 -10
  19. package/dist/chart_types/partition_chart/layout/viewmodel/fill_text_layout.js.map +1 -1
  20. package/dist/chart_types/partition_chart/layout/viewmodel/link_text_layout.js +6 -2
  21. package/dist/chart_types/partition_chart/layout/viewmodel/link_text_layout.js.map +1 -1
  22. package/dist/chart_types/partition_chart/renderer/canvas/canvas_renderers.js +32 -8
  23. package/dist/chart_types/partition_chart/renderer/canvas/canvas_renderers.js.map +1 -1
  24. package/dist/chart_types/partition_chart/renderer/canvas/partition.js +4 -2
  25. package/dist/chart_types/partition_chart/renderer/canvas/partition.js.map +1 -1
  26. package/dist/chart_types/specs.d.ts +1 -1
  27. package/dist/chart_types/specs.d.ts.map +1 -1
  28. package/dist/chart_types/specs.js.map +1 -1
  29. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.d.ts +2 -0
  30. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.d.ts.map +1 -0
  31. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.js +91 -0
  32. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.js.map +1 -0
  33. package/dist/chart_types/xy_chart/axes/timeslip/rasters.js +12 -36
  34. package/dist/chart_types/xy_chart/axes/timeslip/rasters.js.map +1 -1
  35. package/dist/chart_types/xy_chart/renderer/canvas/axes/tick_label.js +2 -2
  36. package/dist/chart_types/xy_chart/renderer/canvas/axes/tick_label.js.map +1 -1
  37. package/dist/chart_types/xy_chart/renderer/canvas/primitives/text.js +3 -1
  38. package/dist/chart_types/xy_chart/renderer/canvas/primitives/text.js.map +1 -1
  39. package/dist/chart_types/xy_chart/renderer/canvas/utils/has_mostly_rtl.d.ts +2 -0
  40. package/dist/chart_types/xy_chart/renderer/canvas/utils/has_mostly_rtl.d.ts.map +1 -0
  41. package/dist/chart_types/xy_chart/renderer/canvas/utils/has_mostly_rtl.js +24 -0
  42. package/dist/chart_types/xy_chart/renderer/canvas/utils/has_mostly_rtl.js.map +1 -0
  43. package/dist/chart_types/xy_chart/renderer/canvas/xy_chart.js +7 -3
  44. package/dist/chart_types/xy_chart/renderer/canvas/xy_chart.js.map +1 -1
  45. package/dist/chart_types/xy_chart/state/selectors/axis_tick_formatter.d.ts +2 -0
  46. package/dist/chart_types/xy_chart/state/selectors/axis_tick_formatter.d.ts.map +1 -0
  47. package/dist/chart_types/xy_chart/state/selectors/axis_tick_formatter.js +64 -0
  48. package/dist/chart_types/xy_chart/state/selectors/axis_tick_formatter.js.map +1 -0
  49. package/dist/chart_types/xy_chart/state/selectors/compute_axis_ticks_dimensions.js +19 -12
  50. package/dist/chart_types/xy_chart/state/selectors/compute_axis_ticks_dimensions.js.map +1 -1
  51. package/dist/chart_types/xy_chart/state/selectors/visible_ticks.js +43 -98
  52. package/dist/chart_types/xy_chart/state/selectors/visible_ticks.js.map +1 -1
  53. package/dist/chart_types/xy_chart/utils/axis_utils.js.map +1 -1
  54. package/dist/chart_types/xy_chart/utils/group_data_series.d.ts +4 -1
  55. package/dist/chart_types/xy_chart/utils/group_data_series.d.ts.map +1 -1
  56. package/dist/chart_types/xy_chart/utils/group_data_series.js.map +1 -1
  57. package/dist/chart_types/xy_chart/utils/stacked_series_utils.js +6 -2
  58. package/dist/chart_types/xy_chart/utils/stacked_series_utils.js.map +1 -1
  59. package/dist/common/text_utils.js +6 -1
  60. package/dist/common/text_utils.js.map +1 -1
  61. package/dist/components/legend/label.js +3 -1
  62. package/dist/components/legend/label.js.map +1 -1
  63. package/dist/components/legend/legend.js +6 -1
  64. package/dist/components/legend/legend.js.map +1 -1
  65. package/dist/components/legend/legend_item.js +6 -6
  66. package/dist/components/legend/legend_item.js.map +1 -1
  67. package/dist/components/tooltip/tooltip.js +31 -1
  68. package/dist/components/tooltip/tooltip.js.map +1 -1
  69. package/dist/index.d.ts +3 -0
  70. package/dist/index.d.ts.map +1 -1
  71. package/dist/index.js +3 -1
  72. package/dist/index.js.map +1 -1
  73. package/dist/theme.scss +40 -1
  74. package/dist/theme_dark.css +1 -1
  75. package/dist/theme_light.css +1 -1
  76. package/dist/theme_only_dark.css +1 -1
  77. package/dist/theme_only_light.css +1 -1
  78. package/dist/utils/chrono/chrono.js.map +1 -1
  79. package/dist/utils/chrono/elasticsearch.d.ts +16 -1
  80. package/dist/utils/chrono/elasticsearch.d.ts.map +1 -1
  81. package/dist/utils/chrono/elasticsearch.js +70 -3
  82. package/dist/utils/chrono/elasticsearch.js.map +1 -1
  83. package/dist/utils/chrono/moment.js +6 -2
  84. package/dist/utils/chrono/moment.js.map +1 -1
  85. package/dist/utils/common.d.ts.map +1 -1
  86. package/dist/utils/common.js +30 -1
  87. package/dist/utils/common.js.map +1 -1
  88. package/dist/utils/data/data_processing.d.ts +26 -0
  89. package/dist/utils/data/data_processing.d.ts.map +1 -0
  90. package/dist/utils/data/data_processing.js +33 -0
  91. package/dist/utils/data/data_processing.js.map +1 -0
  92. package/package.json +1 -1
@@ -139,7 +139,8 @@ var LegendListItem = (function (_super) {
139
139
  };
140
140
  LegendListItem.prototype.render = function () {
141
141
  var _a;
142
- var _b = this.props, extraValues = _b.extraValues, item = _b.item, showExtra = _b.showExtra, colorPicker = _b.colorPicker, totalItems = _b.totalItems, Action = _b.action, positionConfig = _b.positionConfig, labelOptions = _b.labelOptions;
142
+ var _b;
143
+ var _c = this.props, extraValues = _c.extraValues, item = _c.item, showExtra = _c.showExtra, colorPicker = _c.colorPicker, totalItems = _c.totalItems, Action = _c.action, positionConfig = _c.positionConfig, labelOptions = _c.labelOptions, isMostlyRTL = _c.isMostlyRTL;
143
144
  var color = item.color, isSeriesHidden = item.isSeriesHidden, isItemHidden = item.isItemHidden, seriesIdentifiers = item.seriesIdentifiers, label = item.label, pointStyle = item.pointStyle;
144
145
  if (isItemHidden)
145
146
  return null;
@@ -150,12 +151,11 @@ var LegendListItem = (function (_super) {
150
151
  var hasColorPicker = Boolean(colorPicker);
151
152
  var extra = showExtra && (0, utils_1.getExtra)(extraValues, item, totalItems);
152
153
  var style = item.depth
153
- ? {
154
- marginLeft: exports.LEGEND_HIERARCHY_MARGIN * ((_a = item.depth) !== null && _a !== void 0 ? _a : 0),
155
- }
156
- : undefined;
154
+ ? (_a = {},
155
+ _a[isMostlyRTL ? 'marginRight' : 'marginLeft'] = exports.LEGEND_HIERARCHY_MARGIN * ((_b = item.depth) !== null && _b !== void 0 ? _b : 0),
156
+ _a) : undefined;
157
157
  return (react_1.default.createElement(react_1.default.Fragment, null,
158
- react_1.default.createElement("li", { className: itemClassNames, onMouseEnter: this.onLegendItemMouseOver, onMouseLeave: this.onLegendItemMouseOut, style: style, "data-ech-series-name": label },
158
+ react_1.default.createElement("li", { className: itemClassNames, onMouseEnter: this.onLegendItemMouseOver, onMouseLeave: this.onLegendItemMouseOut, style: style, dir: isMostlyRTL ? 'rtl' : 'ltr', "data-ech-series-name": label },
159
159
  react_1.default.createElement("div", { className: "background" }),
160
160
  react_1.default.createElement("div", { className: "colorWrapper" },
161
161
  react_1.default.createElement(color_1.Color, { ref: this.colorRef, color: color, seriesName: label, isSeriesHidden: isSeriesHidden, hasColorPicker: hasColorPicker, onClick: this.handleColorClick(hasColorPicker), pointStyle: pointStyle })),
@@ -1 +1 @@
1
- {"version":3,"file":"legend_item.js","sourceRoot":"","sources":["../../../src/components/legend/legend_item.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,0DAAoC;AACpC,6CAAuE;AAsBvE,6CAAqD;AACrD,+DAAwD;AAExD,iCAA6C;AAC7C,iCAAsC;AACtC,iCAA6C;AAC7C,iCAAmC;AAGtB,QAAA,uBAAuB,GAAG,EAAE,CAAC;AA6B1C;IAAoC,kCAA2C;IAA/E;QAAA,qEAoKC;QAjKC,+BAAyB,GAAG,KAAK,CAAC;QAElC,cAAQ,GAAG,IAAA,iBAAS,GAAqB,CAAC;QAE1C,WAAK,GAAoB;YACvB,MAAM,EAAE,KAAK;YACb,YAAY,EAAE,KAAK;SACpB,CAAC;QAMF,sBAAgB,GAAG,UAAC,UAAmB;YACrC,OAAA,UAAU;gBACR,CAAC,CAAC,UAAC,KAAK;oBACJ,KAAK,CAAC,eAAe,EAAE,CAAC;oBACxB,KAAI,CAAC,YAAY,EAAE,CAAC;gBACtB,CAAC;gBACH,CAAC,CAAC,SAAS;QALb,CAKa,CAAC;QAEhB,kBAAY,GAAG;YACb,KAAI,CAAC,QAAQ,CAAC,UAAC,EAAU;oBAAR,MAAM,YAAA;gBAAO,OAAA,CAAC,EAAE,MAAM,EAAE,CAAC,MAAM,EAAE,CAAC;YAArB,CAAqB,CAAC,CAAC;QACvD,CAAC,CAAC;QAEF,2BAAqB,GAAG;YAChB,IAAA,KAAyC,KAAI,CAAC,KAAK,EAAjD,WAAW,iBAAA,EAAE,eAAe,qBAAA,EAAE,IAAI,UAAe,CAAC;YAE1D,IAAI,WAAW,EAAE;gBACf,WAAW,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;aACrC;YACD,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC7B,CAAC,CAAC;QAEF,0BAAoB,GAAG;YACf,IAAA,KAAiC,KAAI,CAAC,KAAK,EAAzC,UAAU,gBAAA,EAAE,cAAc,oBAAe,CAAC;YAElD,IAAI,UAAU,EAAE;gBACd,UAAU,EAAE,CAAC;aACd;YACD,cAAc,EAAE,CAAC;QACnB,CAAC,CAAC;QAKF,mBAAa,GAAG,UAAC,YAAgC;YACzC,IAAA,KAA4D,KAAI,CAAC,KAAK,EAApE,IAAI,UAAA,EAAE,OAAO,aAAA,EAAE,0BAA0B,gCAAA,EAAE,UAAU,gBAAe,CAAC;YAC7E,IAAI,UAAU,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,YAAY,IAAI,CAAC,OAAO,CAAC,EAAE;gBACvD,OAAO;aACR;YAED,OAAO,UAAC,MAAM;gBACZ,IAAI,OAAO,EAAE;oBACX,OAAO,CAAC,YAAY,CAAC,CAAC;iBACvB;gBAED,IAAI,IAAI,CAAC,YAAY,EAAE;oBACrB,0BAA0B,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;iBAClD;YACH,CAAC,CAAC;QACJ,CAAC,CAAC;;IAoGJ,CAAC;IAxJC,8CAAqB,GAArB,UAAsB,SAA0B,EAAE,SAA0B;QAC1E,OAAO,CAAC,IAAA,2BAAS,EAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,IAAI,CAAC,IAAA,2BAAS,EAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,CAAC;IAChF,CAAC;IAoDD,0CAAiB,GAAjB;QAAA,iBA+BC;QA9BO,IAAA,KAMF,IAAI,CAAC,KAAK,EALC,WAAW,iBAAA,EACxB,IAAI,UAAA,EACJ,0BAA0B,gCAAA,EAC1B,uBAAuB,6BAAA,EACvB,uBAAuB,6BACX,CAAC;QACP,IAAA,iBAAiB,GAAY,IAAI,kBAAhB,EAAE,KAAK,GAAK,IAAI,MAAT,CAAU;QAC1C,IAAM,UAAU,GAAG,iBAAiB,CAAC,GAAG,CAAC,UAAC,EAAO;gBAAL,GAAG,SAAA;YAAO,OAAA,GAAG;QAAH,CAAG,CAAC,CAAC;QAC3D,IAAM,WAAW,GAAG;YAClB,uBAAuB,CAAC,UAAU,EAAE,KAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;YACnF,0BAA0B,EAAE,CAAC;YAC7B,qBAAqB,CAAC,0BAAM,OAAA,MAAA,MAAA,KAAI,CAAC,QAAQ,0CAAE,OAAO,0CAAE,KAAK,EAAE,CAAA,EAAA,CAAC,CAAC;YAC7D,KAAI,CAAC,YAAY,EAAE,CAAC;QACtB,CAAC,CAAC;QACF,IAAM,YAAY,GAAG,UAAC,CAAe;YACnC,KAAI,CAAC,yBAAyB,GAAG,CAAC,KAAK,IAAI,CAAC;YAC5C,uBAAuB,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;QACzC,CAAC,CAAC;QACF,IAAI,WAAW,IAAI,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;YAC7D,OAAO,CACL,8BAAC,WAAW,IACV,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,OAAO,EAC7B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,WAAW,EACpB,QAAQ,EAAE,YAAY,EACtB,iBAAiB,EAAE,iBAAiB,GACpC,CACH,CAAC;SACH;IACH,CAAC;IAED,+BAAM,GAAN;;QACQ,IAAA,KASF,IAAI,CAAC,KAAK,EARZ,WAAW,iBAAA,EACX,IAAI,UAAA,EACJ,SAAS,eAAA,EACT,WAAW,iBAAA,EACX,UAAU,gBAAA,EACF,MAAM,YAAA,EACd,cAAc,oBAAA,EACd,YAAY,kBACA,CAAC;QACP,IAAA,KAAK,GAAyE,IAAI,MAA7E,EAAE,cAAc,GAAyD,IAAI,eAA7D,EAAE,YAAY,GAA2C,IAAI,aAA/C,EAAE,iBAAiB,GAAwB,IAAI,kBAA5B,EAAE,KAAK,GAAiB,IAAI,MAArB,EAAE,UAAU,GAAK,IAAI,WAAT,CAAU;QAE3F,IAAI,YAAY;YAAE,OAAO,IAAI,CAAC;QAE9B,IAAM,cAAc,GAAG,IAAA,oBAAU,EAAC,eAAe,EAAE;YACjD,uBAAuB,EAAE,cAAc;YACvC,yBAAyB,EAAE,cAAc,CAAC,SAAS,KAAK,wBAAe,CAAC,QAAQ;SACjF,CAAC,CAAC;QACH,IAAM,cAAc,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;QAC5C,IAAM,KAAK,GAAG,SAAS,IAAI,IAAA,gBAAQ,EAAC,WAAW,EAAE,IAAI,EAAE,UAAU,CAAC,CAAC;QACnE,IAAM,KAAK,GAAG,IAAI,CAAC,KAAK;YACtB,CAAC,CAAC;gBACE,UAAU,EAAE,+BAAuB,GAAG,CAAC,MAAA,IAAI,CAAC,KAAK,mCAAI,CAAC,CAAC;aACxD;YACH,CAAC,CAAC,SAAS,CAAC;QACd,OAAO,CACL;YACE,sCACE,SAAS,EAAE,cAAc,EACzB,YAAY,EAAE,IAAI,CAAC,qBAAqB,EACxC,YAAY,EAAE,IAAI,CAAC,oBAAoB,EACvC,KAAK,EAAE,KAAK,0BACU,KAAK;gBAE3B,uCAAK,SAAS,EAAC,YAAY,GAAG;gBAC9B,uCAAK,SAAS,EAAC,cAAc;oBAC3B,8BAAC,aAAS,IACR,GAAG,EAAE,IAAI,CAAC,QAAQ,EAClB,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,KAAK,EACjB,cAAc,EAAE,cAAc,EAC9B,cAAc,EAAE,cAAc,EAC9B,OAAO,EAAE,IAAI,CAAC,gBAAgB,CAAC,cAAc,CAAC,EAC9C,UAAU,EAAE,UAAU,GACtB,CACE;gBACN,8BAAC,aAAS,IACR,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,YAAY,EACrB,YAAY,EAAE,UAAU,GAAG,CAAC,IAAI,IAAI,CAAC,YAAY,EACjD,QAAQ,EAAE,IAAI,CAAC,aAAa,CAAC,iBAAiB,CAAC,EAC/C,cAAc,EAAE,cAAc,GAC9B;gBACD,KAAK,IAAI,CAAC,cAAc,IAAI,IAAA,mBAAW,EAAC,KAAK,CAAC;gBAC9C,MAAM,IAAI,CACT,uCAAK,SAAS,EAAC,uBAAuB;oBACpC,8BAAC,MAAM,IAAC,MAAM,EAAE,iBAAiB,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,GAAI,CAC7D,CACP,CACE;YACJ,IAAI,CAAC,iBAAiB,EAAE,CACxB,CACJ,CAAC;IACJ,CAAC;IAlKM,0BAAW,GAAG,YAAY,CAAC;IAmKpC,qBAAC;CAAA,AApKD,CAAoC,iBAAS,GAoK5C;AApKY,wCAAc;AAuK3B,SAAgB,gBAAgB,CAAC,IAAgB,EAAE,KAAoC,EAAE,KAAa;IACpG,OAAO,8BAAC,cAAc,aAAC,GAAG,EAAE,KAAG,KAAO,EAAE,IAAI,EAAE,IAAI,IAAM,KAAK,EAAI,CAAC;AACpE,CAAC;AAFD,4CAEC"}
1
+ {"version":3,"file":"legend_item.js","sourceRoot":"","sources":["../../../src/components/legend/legend_item.tsx"],"names":[],"mappings":"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"}
@@ -40,6 +40,31 @@ var __rest = (this && this.__rest) || function (s, e) {
40
40
  }
41
41
  return t;
42
42
  };
43
+ var __read = (this && this.__read) || function (o, n) {
44
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
45
+ if (!m) return o;
46
+ var i = m.call(o), r, ar = [], e;
47
+ try {
48
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
49
+ }
50
+ catch (error) { e = { error: error }; }
51
+ finally {
52
+ try {
53
+ if (r && !r.done && (m = i["return"])) m.call(i);
54
+ }
55
+ finally { if (e) throw e.error; }
56
+ }
57
+ return ar;
58
+ };
59
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
60
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
61
+ if (ar || !(i in from)) {
62
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
63
+ ar[i] = from[i];
64
+ }
65
+ }
66
+ return to.concat(ar || Array.prototype.slice.call(from));
67
+ };
43
68
  var __importDefault = (this && this.__importDefault) || function (mod) {
44
69
  return (mod && mod.__esModule) ? mod : { "default": mod };
45
70
  };
@@ -102,6 +127,7 @@ var TooltipComponent = function (_a) {
102
127
  ")"))));
103
128
  }))); };
104
129
  var renderTooltip = function () {
130
+ var _a, _b;
105
131
  if (!info || !visible) {
106
132
  return null;
107
133
  }
@@ -109,7 +135,11 @@ var TooltipComponent = function (_a) {
109
135
  var CustomTooltip = settings.customTooltip;
110
136
  return react_1.default.createElement(CustomTooltip, __assign({}, info));
111
137
  }
112
- return (react_1.default.createElement("div", { className: "echTooltip" },
138
+ var isMostlyRTL = (0, common_1.hasMostlyRTLItems)(__spreadArray(__spreadArray([], __read(info.values.map(function (_a) {
139
+ var label = _a.label;
140
+ return label;
141
+ })), false), [(_b = (_a = info.header) === null || _a === void 0 ? void 0 : _a.label) !== null && _b !== void 0 ? _b : ''], false));
142
+ return (react_1.default.createElement("div", { className: "echTooltip", dir: isMostlyRTL ? 'rtl' : 'ltr' },
113
143
  renderHeader(info.header),
114
144
  renderValues(info.values)));
115
145
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../../src/components/tooltip/tooltip.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../../src/components/tooltip/tooltip.tsx"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -42,4 +42,7 @@ export { Pixels, Ratio } from './common/geometry';
42
42
  export { AdditiveNumber } from './utils/accessor';
43
43
  export { FontStyle, FONT_STYLES } from './common/text_utils';
44
44
  export { Color } from './common/colors';
45
+ export { ESCalendarInterval, ESCalendarIntervalUnit, ESFixedInterval, ESFixedIntervalUnit, } from './utils/chrono/elasticsearch';
46
+ export { GroupKeysOrKeyFn, GroupByKeyFn } from './chart_types/xy_chart/utils/group_data_series';
47
+ export { computeRatioByGroups } from './utils/data/data_processing';
45
48
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAEhF,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGpE,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAChG,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAC7G,OAAO,EACL,0BAA0B,EAC1B,uBAAuB,EACvB,4BAA4B,GAC7B,MAAM,0CAA0C,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EACL,MAAM,IAAI,eAAe,EACzB,eAAe,IAAI,kBAAkB,EACrC,eAAe,GAChB,MAAM,yDAAyD,CAAC;AACjE,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,2CAA2C,CAAC;AACpF,cAAc,sCAAsC,CAAC;AACrD,cAAc,qCAAqC,CAAC;AAEpD,OAAO,EACL,QAAQ,EACR,UAAU,EACV,iBAAiB,EACjB,eAAe,EACf,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAGxE,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGjG,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAGvD,cAAc,4DAA4D,CAAC;AAC3E,cAAc,4DAA4D,CAAC;AAG3E,OAAO,EAAE,IAAI,EAAE,MAAM,oDAAoD,CAAC;AAC1E,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,iDAAiD,CAAC;AAC1F,OAAO,EAAE,SAAS,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAGxF,OAAO,EACL,KAAK,EACL,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,MAAM,EACN,KAAK,EACL,SAAS,EACT,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,cAAc,EACd,eAAe,GAChB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAC;AAC9F,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- exports.FONT_STYLES = exports.LegendStrategy = exports.MODEL_KEY = exports.DataGenerator = exports.LayoutDirection = exports.ColorVariant = exports.HorizontalAlignment = exports.VerticalAlignment = exports.Position = exports.DARK_THEME = exports.LIGHT_THEME = exports.ScaleType = exports.PartitionLayout = exports.BandedAccessorType = exports.niceTimeFormatByDay = exports.niceTimeFormatter = exports.timeFormatter = exports.CurveType = exports.toEntries = exports.ChartType = void 0;
13
+ exports.computeRatioByGroups = exports.FONT_STYLES = exports.LegendStrategy = exports.MODEL_KEY = exports.DataGenerator = exports.LayoutDirection = exports.ColorVariant = exports.HorizontalAlignment = exports.VerticalAlignment = exports.Position = exports.DARK_THEME = exports.LIGHT_THEME = exports.ScaleType = exports.PartitionLayout = exports.BandedAccessorType = exports.niceTimeFormatByDay = exports.niceTimeFormatter = exports.timeFormatter = exports.CurveType = exports.toEntries = exports.ChartType = void 0;
14
14
  __exportStar(require("./components"), exports);
15
15
  var chart_types_1 = require("./chart_types");
16
16
  Object.defineProperty(exports, "ChartType", { enumerable: true, get: function () { return chart_types_1.ChartType; } });
@@ -55,4 +55,6 @@ var highlighted_geoms_1 = require("./chart_types/partition_chart/layout/utils/hi
55
55
  Object.defineProperty(exports, "LegendStrategy", { enumerable: true, get: function () { return highlighted_geoms_1.LegendStrategy; } });
56
56
  var text_utils_1 = require("./common/text_utils");
57
57
  Object.defineProperty(exports, "FONT_STYLES", { enumerable: true, get: function () { return text_utils_1.FONT_STYLES; } });
58
+ var data_processing_1 = require("./utils/data/data_processing");
59
+ Object.defineProperty(exports, "computeRatioByGroups", { enumerable: true, get: function () { return data_processing_1.computeRatioByGroups; } });
58
60
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAQA,+CAA6B;AAC7B,6CAA0C;AAAjC,wGAAA,SAAS,OAAA;AAMlB,0CAAwB;AAExB,yCAA2C;AAAlC,mGAAA,SAAS,OAAA;AAClB,yCAA2C;AAAlC,mGAAA,SAAS,OAAA;AAGlB,sDAAgG;AAAvF,2GAAA,aAAa,OAAA;AAAE,+GAAA,iBAAiB,OAAA;AAAE,iHAAA,mBAAmB,OAAA;AAQ9D,6CAAqE;AAA7C,8GAAA,kBAAkB,OAAA;AAG1C,wFAIiE;AAD/D,+GAAA,eAAe,OAAA;AAGjB,uEAAqD;AACrD,sEAAoD;AAapD,gDAA+C;AAAtC,sGAAA,SAAS,OAAA;AAIlB,uDAAqC;AACrC,8DAA4C;AAC5C,0DAAyD;AAAhD,0GAAA,WAAW,OAAA;AACpB,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AAGnB,6FAA2E;AAC3E,6FAA2E;AAQ3E,yCAiBwB;AAftB,kGAAA,QAAQ,OAAA;AAGR,2GAAA,iBAAiB,OAAA;AACjB,6GAAA,mBAAmB,OAAA;AAKnB,sGAAA,YAAY,OAAA;AAKZ,yGAAA,eAAe,OAAA;AAEjB,yEAAuE;AAA9D,+GAAA,aAAa,OAAA;AACtB,6DAA2C;AAC3C,4DAA0C;AAC1C,sEAAwE;AAA/D,mGAAA,SAAS,OAAA;AAClB,kGAA8F;AAArF,mHAAA,cAAc,OAAA;AAGvB,kDAA6D;AAAzC,yGAAA,WAAW,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAQA,+CAA6B;AAC7B,6CAA0C;AAAjC,wGAAA,SAAS,OAAA;AAMlB,0CAAwB;AAExB,yCAA2C;AAAlC,mGAAA,SAAS,OAAA;AAClB,yCAA2C;AAAlC,mGAAA,SAAS,OAAA;AAGlB,sDAAgG;AAAvF,2GAAA,aAAa,OAAA;AAAE,+GAAA,iBAAiB,OAAA;AAAE,iHAAA,mBAAmB,OAAA;AAQ9D,6CAAqE;AAA7C,8GAAA,kBAAkB,OAAA;AAG1C,wFAIiE;AAD/D,+GAAA,eAAe,OAAA;AAGjB,uEAAqD;AACrD,sEAAoD;AAapD,gDAA+C;AAAtC,sGAAA,SAAS,OAAA;AAIlB,uDAAqC;AACrC,8DAA4C;AAC5C,0DAAyD;AAAhD,0GAAA,WAAW,OAAA;AACpB,wDAAuD;AAA9C,wGAAA,UAAU,OAAA;AAGnB,6FAA2E;AAC3E,6FAA2E;AAQ3E,yCAiBwB;AAftB,kGAAA,QAAQ,OAAA;AAGR,2GAAA,iBAAiB,OAAA;AACjB,6GAAA,mBAAmB,OAAA;AAKnB,sGAAA,YAAY,OAAA;AAKZ,yGAAA,eAAe,OAAA;AAEjB,yEAAuE;AAA9D,+GAAA,aAAa,OAAA;AACtB,6DAA2C;AAC3C,4DAA0C;AAC1C,sEAAwE;AAA/D,mGAAA,SAAS,OAAA;AAClB,kGAA8F;AAArF,mHAAA,cAAc,OAAA;AAGvB,kDAA6D;AAAzC,yGAAA,WAAW,OAAA;AAY/B,gEAAoE;AAA3D,uHAAA,oBAAoB,OAAA"}
package/dist/theme.scss CHANGED
@@ -131,6 +131,7 @@
131
131
  text-align: right;
132
132
  font-feature-settings: 'tnum';
133
133
  margin-left: $euiSizeS;
134
+ direction: ltr;
134
135
  }
135
136
 
136
137
  &__rowHighlighted {
@@ -140,6 +141,27 @@
140
141
  &--hidden {
141
142
  opacity: 0;
142
143
  }
144
+
145
+ &[dir='rtl'] {
146
+ .echTooltip {
147
+ &__item {
148
+ &--container {
149
+ padding: 3px;
150
+ padding-right: 0;
151
+ }
152
+
153
+ &--backgroundColor {
154
+ margin-right: 0;
155
+ margin-left: 3px;
156
+ }
157
+ }
158
+
159
+ &__value {
160
+ margin-left: 0;
161
+ margin-right: $euiSizeS;
162
+ }
163
+ }
164
+ }
143
165
  }
144
166
 
145
167
 
@@ -253,7 +275,7 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
253
275
  height: $legendItemHeight;
254
276
  }
255
277
 
256
- > *:not(.background) {
278
+ &:not([dir='rtl']) > *:not(.background) {
257
279
  margin-left: $euiSizeXS;
258
280
 
259
281
  &:last-child:not(.echLegendItem__extra) {
@@ -261,6 +283,14 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
261
283
  }
262
284
  }
263
285
 
286
+ &[dir='rtl'] > *:not(.background) {
287
+ margin-right: $euiSizeXS;
288
+
289
+ &:last-child:not(.echLegendItem__extra) {
290
+ margin-left: $euiSizeXS;
291
+ }
292
+ }
293
+
264
294
  &:not(&--hidden) {
265
295
  .echLegendItem__color--changable {
266
296
  cursor: pointer;
@@ -336,6 +366,7 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
336
366
  margin-left: $euiSizeXS;
337
367
  font-feature-settings: 'tnum';
338
368
  letter-spacing: unset;
369
+ direction: ltr;
339
370
  }
340
371
 
341
372
  &--vertical {
@@ -355,6 +386,14 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
355
386
  &--hidden {
356
387
  color: $euiColorDarkShade;
357
388
  }
389
+
390
+ &[dir='rtl'] {
391
+ .echLegendItem {
392
+ &__label {
393
+ text-align: right;
394
+ }
395
+ }
396
+ }
358
397
  }
359
398
 
360
399
 
@@ -1 +1 @@
1
- *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#DFE5EF;height:100%;background-color:#141519}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#1BA9F5}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(152,162,179,0.5) #242529}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:4px solid #242529}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#242529}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#DFE5EF;height:100%;background-color:#141519}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#1BA9F5}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(152,162,179,0.5) #242529}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:4px solid #242529}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#242529}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir='rtl'] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir='rtl'] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir='rtl'] .echTooltip__value{margin-left:0;margin-right:8px}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem:not([dir='rtl'])>*:not(.background){margin-left:4px}.echLegendItem:not([dir='rtl'])>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background):last-child:not(.echLegendItem__extra){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echLegendItem[dir='rtl'] .echLegendItem__label{text-align:right}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
@@ -1 +1 @@
1
- *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#343741;height:100%;background-color:#fafbfd}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#006BB4}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(105,112,125,0.5) #f3f3f5}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:4px solid #f3f3f5}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#f3f3f5}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#343741;height:100%;background-color:#fafbfd}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#006BB4}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(105,112,125,0.5) #f3f3f5}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:4px solid #f3f3f5}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#f3f3f5}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir='rtl'] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir='rtl'] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir='rtl'] .echTooltip__value{margin-left:0;margin-right:8px}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem:not([dir='rtl'])>*:not(.background){margin-left:4px}.echLegendItem:not([dir='rtl'])>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background):last-child:not(.echLegendItem__extra){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echLegendItem[dir='rtl'] .echLegendItem__label{text-align:right}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
@@ -1 +1 @@
1
- .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir='rtl'] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir='rtl'] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir='rtl'] .echTooltip__value{margin-left:0;margin-right:8px}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem:not([dir='rtl'])>*:not(.background){margin-left:4px}.echLegendItem:not([dir='rtl'])>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background):last-child:not(.echLegendItem__extra){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echLegendItem[dir='rtl'] .echLegendItem__label{text-align:right}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
@@ -1 +1 @@
1
- .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir='rtl'] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir='rtl'] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir='rtl'] .echTooltip__value{margin-left:0;margin-right:8px}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem:not([dir='rtl'])>*:not(.background){margin-left:4px}.echLegendItem:not([dir='rtl'])>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background){margin-right:4px}.echLegendItem[dir='rtl']>*:not(.background):last-child:not(.echLegendItem__extra){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echLegendItem[dir='rtl'] .echLegendItem__label{text-align:right}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
@@ -1 +1 @@
1
- {"version":3,"file":"chrono.js","sourceRoot":"","sources":["../../../src/utils/chrono/chrono.ts"],"names":[],"mappings":";;;AASA,mCAUkB;AAIlB,SAAgB,OAAO,CACrB,QAAkB,EAClB,QAA4B,EAC5B,IAAuB,EACvB,KAAa;IAEb,OAAO,IAAA,+BAAsB,EAAC,IAAA,qBAAY,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;AAC3F,CAAC;AAPD,0BAOC;AAGD,SAAgB,YAAY,CAC1B,QAAkB,EAClB,QAA4B,EAC5B,IAAuB,EACvB,KAAa;IAEb,OAAO,IAAA,+BAAsB,EAAC,IAAA,0BAAiB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;AAChG,CAAC;AAPD,oCAOC;AAGD,SAAgB,gBAAgB,CAAC,QAAkB,EAAE,QAAiB;IACpE,OAAO,IAAA,+BAAsB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC;AAChE,CAAC;AAFD,4CAEC;AAGD,SAAgB,OAAO,CACrB,QAAkB,EAClB,QAA4B,EAC5B,IAA8C;IAE9C,OAAO,IAAA,+BAAsB,EAAC,IAAA,uBAAc,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;AACtF,CAAC;AAND,0BAMC;AAGD,SAAgB,KAAK,CACnB,QAAkB,EAClB,QAA4B,EAC5B,IAA8C;IAE9C,OAAO,IAAA,+BAAsB,EAAC,IAAA,qBAAY,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;AACpF,CAAC;AAND,sBAMC;AAED,SAAS,UAAU,CAAC,QAAkB,EAAE,QAAiB;IACvD,OAAO,IAAA,uBAAc,EAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAC5C,CAAC;AAGD,SAAgB,YAAY,CAAC,QAAkB,EAAE,QAAiB;IAChE,OAAO,IAAA,2BAAkB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC;AAC5D,CAAC;AAFD,oCAEC;AAGD,SAAgB,UAAU,CAAC,QAAkB,EAAE,QAA4B,EAAE,MAAc;IACzF,OAAO,IAAA,sBAAa,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;AAC/D,CAAC;AAFD,gCAEC;AAGD,SAAgB,IAAI,CAClB,SAAmB,EACnB,SAA6B,EAC7B,SAAmB,EACnB,SAA6B,EAC7B,IAA8C;IAE9C,OAAO,IAAA,qBAAY,EAAC,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,EAAE,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,EAAE,IAAI,CAAC,CAAC;AAChG,CAAC;AARD,oBAQC"}
1
+ {"version":3,"file":"chrono.js","sourceRoot":"","sources":["../../../src/utils/chrono/chrono.ts"],"names":[],"mappings":";;;AASA,mCAUkB;AAIlB,SAAgB,OAAO,CACrB,QAAkB,EAClB,QAA4B,EAC5B,IAA8C,EAC9C,KAAa;IAEb,OAAO,IAAA,+BAAsB,EAAC,IAAA,qBAAY,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;AAC3F,CAAC;AAPD,0BAOC;AAGD,SAAgB,YAAY,CAC1B,QAAkB,EAClB,QAA4B,EAC5B,IAA8C,EAC9C,KAAa;IAEb,OAAO,IAAA,+BAAsB,EAAC,IAAA,0BAAiB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;AAChG,CAAC;AAPD,oCAOC;AAGD,SAAgB,gBAAgB,CAAC,QAAkB,EAAE,QAAiB;IACpE,OAAO,IAAA,+BAAsB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC;AAChE,CAAC;AAFD,4CAEC;AAGD,SAAgB,OAAO,CACrB,QAAkB,EAClB,QAA4B,EAC5B,IAA8C;IAE9C,OAAO,IAAA,+BAAsB,EAAC,IAAA,uBAAc,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;AACtF,CAAC;AAND,0BAMC;AAGD,SAAgB,KAAK,CACnB,QAAkB,EAClB,QAA4B,EAC5B,IAA8C;IAE9C,OAAO,IAAA,+BAAsB,EAAC,IAAA,qBAAY,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;AACpF,CAAC;AAND,sBAMC;AAED,SAAS,UAAU,CAAC,QAAkB,EAAE,QAAiB;IACvD,OAAO,IAAA,uBAAc,EAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAC5C,CAAC;AAGD,SAAgB,YAAY,CAAC,QAAkB,EAAE,QAAiB;IAChE,OAAO,IAAA,2BAAkB,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC;AAC5D,CAAC;AAFD,oCAEC;AAGD,SAAgB,UAAU,CAAC,QAAkB,EAAE,QAA4B,EAAE,MAAc;IACzF,OAAO,IAAA,sBAAa,EAAC,UAAU,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,CAAC;AAC/D,CAAC;AAFD,gCAEC;AAGD,SAAgB,IAAI,CAClB,SAAmB,EACnB,SAA6B,EAC7B,SAAmB,EACnB,SAA6B,EAC7B,IAA8C;IAE9C,OAAO,IAAA,qBAAY,EAAC,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,EAAE,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,EAAE,IAAI,CAAC,CAAC;AAChG,CAAC;AARD,oBAQC"}
@@ -1,2 +1,17 @@
1
- export {};
1
+ /** @public */
2
+ export declare type ESCalendarIntervalUnit = 'minute' | 'm' | 'hour' | 'h' | 'day' | 'd' | 'week' | 'w' | 'month' | 'M' | 'quarter' | 'q' | 'year' | 'y';
3
+ /** @public */
4
+ export declare type ESFixedIntervalUnit = 'ms' | 's' | 'm' | 'h' | 'd';
5
+ /** @public */
6
+ export interface ESCalendarInterval {
7
+ type: 'calendar';
8
+ unit: ESCalendarIntervalUnit;
9
+ value: number;
10
+ }
11
+ /** @public */
12
+ export interface ESFixedInterval {
13
+ type: 'fixed';
14
+ unit: ESFixedIntervalUnit;
15
+ value: number;
16
+ }
2
17
  //# sourceMappingURL=elasticsearch.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"elasticsearch.d.ts","sourceRoot":"","sources":["../../../src/utils/chrono/elasticsearch.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"elasticsearch.d.ts","sourceRoot":"","sources":["../../../src/utils/chrono/elasticsearch.ts"],"names":[],"mappings":"AAYA,cAAc;AACd,oBAAY,sBAAsB,GAC9B,QAAQ,GACR,GAAG,GACH,MAAM,GACN,GAAG,GACH,KAAK,GACL,GAAG,GACH,MAAM,GACN,GAAG,GACH,OAAO,GACP,GAAG,GACH,SAAS,GACT,GAAG,GACH,MAAM,GACN,GAAG,CAAC;AAER,cAAc;AACd,oBAAY,mBAAmB,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;AAW/D,cAAc;AACd,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,UAAU,CAAC;IACjB,IAAI,EAAE,sBAAsB,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,cAAc;AACd,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,mBAAmB,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -1,6 +1,31 @@
1
1
  "use strict";
2
+ var __read = (this && this.__read) || function (o, n) {
3
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
4
+ if (!m) return o;
5
+ var i = m.call(o), r, ar = [], e;
6
+ try {
7
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
8
+ }
9
+ catch (error) { e = { error: error }; }
10
+ finally {
11
+ try {
12
+ if (r && !r.done && (m = i["return"])) m.call(i);
13
+ }
14
+ finally { if (e) throw e.error; }
15
+ }
16
+ return ar;
17
+ };
18
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
19
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
20
+ if (ar || !(i in from)) {
21
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
22
+ ar[i] = from[i];
23
+ }
24
+ }
25
+ return to.concat(ar || Array.prototype.slice.call(from));
26
+ };
2
27
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.snapDateToESInterval = exports.ES_FIXED_INTERVAL_UNIT_TO_BASE = void 0;
28
+ exports.addIntervalToTime = exports.timeRange = exports.snapDateToESInterval = exports.ES_FIXED_INTERVAL_UNIT_TO_BASE = void 0;
4
29
  var chrono_1 = require("./chrono");
5
30
  exports.ES_FIXED_INTERVAL_UNIT_TO_BASE = {
6
31
  ms: 1,
@@ -40,9 +65,51 @@ function esCalendarIntervalSnap(date, interval, snapTo, timeZone) {
40
65
  : (0, chrono_1.endOf)(date, timeZone, esCalendarIntervalToChronoInterval[interval.unit]);
41
66
  }
42
67
  function esFixedIntervalSnap(date, interval, snapTo, timeZone) {
43
- var unitMultiplier = interval.quantity * exports.ES_FIXED_INTERVAL_UNIT_TO_BASE[interval.unit];
68
+ var unitMultiplier = interval.value * exports.ES_FIXED_INTERVAL_UNIT_TO_BASE[interval.unit];
44
69
  var unixTimestamp = (0, chrono_1.getUnixTimestamp)(date, timeZone);
45
- var roundedDate = Math.floor(unixTimestamp / unitMultiplier) * unitMultiplier;
70
+ var utcOffsetInMs = (0, chrono_1.getUTCOffset)(date, timeZone) * 60 * 1000;
71
+ var roundedDate = Math.floor((unixTimestamp + utcOffsetInMs) / unitMultiplier) * unitMultiplier - utcOffsetInMs;
46
72
  return snapTo === 'start' ? roundedDate : roundedDate + unitMultiplier - 1;
47
73
  }
74
+ function timeRange(from, to, interval, timeZone) {
75
+ return interval.type === 'fixed'
76
+ ? fixedTimeRange(from, to, interval, timeZone)
77
+ : calendarTimeRange(from, to, interval, timeZone);
78
+ }
79
+ exports.timeRange = timeRange;
80
+ function calendarTimeRange(from, to, interval, timeZone) {
81
+ var snappedFrom = snapDateToESInterval(from, interval, 'start', timeZone);
82
+ var snappedTo = snapDateToESInterval(to, interval, 'start', timeZone);
83
+ var values = [snappedFrom];
84
+ var current = snappedFrom;
85
+ while ((0, chrono_1.addTime)(current, timeZone, esCalendarIntervalToChronoInterval[interval.unit], interval.value) < snappedTo) {
86
+ current = (0, chrono_1.addTime)(current, timeZone, esCalendarIntervalToChronoInterval[interval.unit], interval.value);
87
+ values.push(current);
88
+ }
89
+ return values;
90
+ }
91
+ function fixedTimeRange(from, to, interval, timeZone) {
92
+ var snappedFrom = snapDateToESInterval(from, interval, 'start', timeZone);
93
+ var snappedTo = snapDateToESInterval(to, interval, 'start', timeZone);
94
+ var utcTo = localToUTC(snappedTo, timeZone);
95
+ var current = localToUTC(snappedFrom, timeZone);
96
+ var values = [current];
97
+ while (current + interval.value * exports.ES_FIXED_INTERVAL_UNIT_TO_BASE[interval.unit] < utcTo) {
98
+ current = current + interval.value * exports.ES_FIXED_INTERVAL_UNIT_TO_BASE[interval.unit];
99
+ values.push(current);
100
+ }
101
+ return __spreadArray([], __read(new Set(values.map(function (d) { return utcToLocal(d, timeZone); }))), false);
102
+ }
103
+ function addIntervalToTime(time, interval, timeZone) {
104
+ return interval.type === 'fixed'
105
+ ? utcToLocal(localToUTC(time, timeZone) + interval.value * exports.ES_FIXED_INTERVAL_UNIT_TO_BASE[interval.unit], timeZone)
106
+ : (0, chrono_1.addTime)(time, timeZone, esCalendarIntervalToChronoInterval[interval.unit], interval.value);
107
+ }
108
+ exports.addIntervalToTime = addIntervalToTime;
109
+ function utcToLocal(time, timeZone) {
110
+ return time - (0, chrono_1.getUTCOffset)(time, timeZone) * 60 * 1000;
111
+ }
112
+ function localToUTC(time, timeZone) {
113
+ return time + (0, chrono_1.getUTCOffset)(time, timeZone) * 60 * 1000;
114
+ }
48
115
  //# sourceMappingURL=elasticsearch.js.map