@elastic/charts 49.0.1 → 50.0.1

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 (76) hide show
  1. package/dist/chart_types/timeslip/timeslip/axis_model.js.map +1 -1
  2. package/dist/chart_types/timeslip/timeslip/data.js +3 -4
  3. package/dist/chart_types/timeslip/timeslip/data.js.map +1 -1
  4. package/dist/chart_types/timeslip/timeslip/domain_tween.js.map +1 -1
  5. package/dist/chart_types/timeslip/timeslip/render/annotations/chart_title.js +4 -4
  6. package/dist/chart_types/timeslip/timeslip/render/annotations/chart_title.js.map +1 -1
  7. package/dist/chart_types/timeslip/timeslip/render/annotations/time_extent.js +3 -2
  8. package/dist/chart_types/timeslip/timeslip/render/annotations/time_extent.js.map +1 -1
  9. package/dist/chart_types/timeslip/timeslip/render/annotations/time_unit.js +8 -3
  10. package/dist/chart_types/timeslip/timeslip/render/annotations/time_unit.js.map +1 -1
  11. package/dist/chart_types/timeslip/timeslip/render/cartesian.d.ts +9 -1
  12. package/dist/chart_types/timeslip/timeslip/render/cartesian.d.ts.map +1 -1
  13. package/dist/chart_types/timeslip/timeslip/render/cartesian.js +4 -30
  14. package/dist/chart_types/timeslip/timeslip/render/cartesian.js.map +1 -1
  15. package/dist/chart_types/timeslip/timeslip/render/column.js +99 -46
  16. package/dist/chart_types/timeslip/timeslip/render/column.js.map +1 -1
  17. package/dist/chart_types/timeslip/timeslip/render/glyphs/bar.js.map +1 -1
  18. package/dist/chart_types/timeslip/timeslip/render/glyphs/boxplot.d.ts +10 -1
  19. package/dist/chart_types/timeslip/timeslip/render/glyphs/boxplot.d.ts.map +1 -1
  20. package/dist/chart_types/timeslip/timeslip/render/glyphs/boxplot.js +1 -1
  21. package/dist/chart_types/timeslip/timeslip/render/glyphs/boxplot.js.map +1 -1
  22. package/dist/chart_types/timeslip/timeslip/render/glyphs/debug_box.js.map +1 -1
  23. package/dist/chart_types/timeslip/timeslip/render/raster.js +96 -119
  24. package/dist/chart_types/timeslip/timeslip/render/raster.js.map +1 -1
  25. package/dist/chart_types/timeslip/timeslip/timeslip_render.d.ts +7 -1
  26. package/dist/chart_types/timeslip/timeslip/timeslip_render.d.ts.map +1 -1
  27. package/dist/chart_types/timeslip/timeslip/timeslip_render.js +378 -438
  28. package/dist/chart_types/timeslip/timeslip/timeslip_render.js.map +1 -1
  29. package/dist/chart_types/timeslip/timeslip/utils/dom.js +4 -3
  30. package/dist/chart_types/timeslip/timeslip/utils/dom.js.map +1 -1
  31. package/dist/chart_types/timeslip/timeslip/utils/math.js.map +1 -1
  32. package/dist/chart_types/timeslip/timeslip/utils/scale.d.ts +2 -0
  33. package/dist/chart_types/timeslip/timeslip/utils/scale.d.ts.map +1 -0
  34. package/dist/chart_types/timeslip/timeslip/utils/{projection.js → scale.js} +1 -1
  35. package/dist/chart_types/timeslip/timeslip/utils/scale.js.map +1 -0
  36. package/dist/chart_types/timeslip/timeslip_api.d.ts +3 -11
  37. package/dist/chart_types/timeslip/timeslip_api.d.ts.map +1 -1
  38. package/dist/chart_types/timeslip/timeslip_api.js.map +1 -1
  39. package/dist/chart_types/timeslip/timeslip_chart.js +3 -1
  40. package/dist/chart_types/timeslip/timeslip_chart.js.map +1 -1
  41. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.js +14 -11
  42. package/dist/chart_types/xy_chart/axes/timeslip/multilayer_ticks.js.map +1 -1
  43. package/dist/chart_types/xy_chart/axes/timeslip/rasters.d.ts +2 -0
  44. package/dist/chart_types/xy_chart/axes/timeslip/rasters.d.ts.map +1 -1
  45. package/dist/chart_types/xy_chart/axes/timeslip/rasters.js +1 -1
  46. package/dist/chart_types/xy_chart/axes/timeslip/rasters.js.map +1 -1
  47. package/dist/chart_types/xy_chart/axes/timeslip/time_unit_translations.d.ts +2 -0
  48. package/dist/chart_types/xy_chart/axes/timeslip/time_unit_translations.d.ts.map +1 -0
  49. package/dist/chart_types/xy_chart/axes/timeslip/time_unit_translations.js +127 -0
  50. package/dist/chart_types/xy_chart/axes/timeslip/time_unit_translations.js.map +1 -0
  51. package/dist/chart_types/xy_chart/domains/x_domain.js +3 -4
  52. package/dist/chart_types/xy_chart/domains/x_domain.js.map +1 -1
  53. package/dist/common/iterables.js +40 -1
  54. package/dist/common/iterables.js.map +1 -1
  55. package/dist/common/predicate.js +5 -1
  56. package/dist/common/predicate.js.map +1 -1
  57. package/dist/theme_dark.css +1 -1
  58. package/dist/theme_dark.css.map +1 -1
  59. package/dist/theme_light.css +1 -1
  60. package/dist/theme_light.css.map +1 -1
  61. package/dist/utils/time_zone.d.ts +2 -0
  62. package/dist/utils/time_zone.d.ts.map +1 -0
  63. package/dist/utils/time_zone.js +29 -0
  64. package/dist/utils/time_zone.js.map +1 -0
  65. package/package.json +1 -1
  66. package/dist/chart_types/timeslip/timeslip/translations.d.ts +0 -2
  67. package/dist/chart_types/timeslip/timeslip/translations.d.ts.map +0 -1
  68. package/dist/chart_types/timeslip/timeslip/translations.js +0 -215
  69. package/dist/chart_types/timeslip/timeslip/translations.js.map +0 -1
  70. package/dist/chart_types/timeslip/timeslip/utils/generator.d.ts +0 -2
  71. package/dist/chart_types/timeslip/timeslip/utils/generator.d.ts.map +0 -1
  72. package/dist/chart_types/timeslip/timeslip/utils/generator.js +0 -18
  73. package/dist/chart_types/timeslip/timeslip/utils/generator.js.map +0 -1
  74. package/dist/chart_types/timeslip/timeslip/utils/projection.d.ts +0 -2
  75. package/dist/chart_types/timeslip/timeslip/utils/projection.d.ts.map +0 -1
  76. package/dist/chart_types/timeslip/timeslip/utils/projection.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"x_domain.js","sourceRoot":"","sources":["../../../../src/chart_types/xy_chart/domains/x_domain.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"x_domain.js","sourceRoot":"","sources":["../../../../src/chart_types/xy_chart/domains/x_domain.ts"],"names":[],"mappings":"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"}
@@ -38,7 +38,7 @@ var __values = (this && this.__values) || function(o) {
38
38
  throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
39
39
  };
40
40
  Object.defineProperty(exports, "__esModule", { value: true });
41
- exports.map = void 0;
41
+ exports.filter = exports.map = void 0;
42
42
  function map(fun, iterable) {
43
43
  var i = 0;
44
44
  return (function mapGenerator() {
@@ -77,4 +77,43 @@ function map(fun, iterable) {
77
77
  })();
78
78
  }
79
79
  exports.map = map;
80
+ function filter(fun, iterable) {
81
+ var i = 0;
82
+ return (function mapGenerator() {
83
+ var iterable_2, iterable_2_1, next, e_2_1;
84
+ var e_2, _a;
85
+ return __generator(this, function (_b) {
86
+ switch (_b.label) {
87
+ case 0:
88
+ _b.trys.push([0, 5, 6, 7]);
89
+ iterable_2 = __values(iterable), iterable_2_1 = iterable_2.next();
90
+ _b.label = 1;
91
+ case 1:
92
+ if (!!iterable_2_1.done) return [3, 4];
93
+ next = iterable_2_1.value;
94
+ if (!fun(next, i++)) return [3, 3];
95
+ return [4, next];
96
+ case 2:
97
+ _b.sent();
98
+ _b.label = 3;
99
+ case 3:
100
+ iterable_2_1 = iterable_2.next();
101
+ return [3, 1];
102
+ case 4: return [3, 7];
103
+ case 5:
104
+ e_2_1 = _b.sent();
105
+ e_2 = { error: e_2_1 };
106
+ return [3, 7];
107
+ case 6:
108
+ try {
109
+ if (iterable_2_1 && !iterable_2_1.done && (_a = iterable_2.return)) _a.call(iterable_2);
110
+ }
111
+ finally { if (e_2) throw e_2.error; }
112
+ return [7];
113
+ case 7: return [2];
114
+ }
115
+ });
116
+ })();
117
+ }
118
+ exports.filter = filter;
80
119
  //# sourceMappingURL=iterables.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"iterables.js","sourceRoot":"","sources":["../../src/common/iterables.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAUA,SAAgB,GAAG,CAAkB,GAA4C,EAAE,QAA0B;IAC3G,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,OAAO,CAAC,SAAU,YAAY;;;;;;;oBACT,aAAA,SAAA,QAAQ,CAAA;;;;oBAAhB,IAAI;oBAAc,WAAM,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAA;;oBAApB,SAAoB,CAAC;;;;;;;;;;;;;;;;;;;KACnD,CAAC,EAAE,CAAC;AACP,CAAC;AALD,kBAKC"}
1
+ {"version":3,"file":"iterables.js","sourceRoot":"","sources":["../../src/common/iterables.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAUA,SAAgB,GAAG,CAAkB,GAA4C,EAAE,QAA0B;IAC3G,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,OAAO,CAAC,SAAU,YAAY;;;;;;;oBACT,aAAA,SAAA,QAAQ,CAAA;;;;oBAAhB,IAAI;oBAAc,WAAM,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAA;;oBAApB,SAAoB,CAAC;;;;;;;;;;;;;;;;;;;KACnD,CAAC,EAAE,CAAC;AACP,CAAC;AALD,kBAKC;AAGD,SAAgB,MAAM,CAAO,GAA0C,EAAE,QAAwB;IAC/F,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,OAAO,CAAC,SAAU,YAAY;;;;;;;oBACT,aAAA,SAAA,QAAQ,CAAA;;;;oBAAhB,IAAI;yBACT,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,EAAd,cAAc;oBAAE,WAAM,IAAI,EAAA;;oBAAV,SAAU,CAAC;;;;;;;;;;;;;;;;;;;KAElC,CAAC,EAAE,CAAC;AACP,CAAC;AAPD,wBAOC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getPredicateFn = exports.Predicate = void 0;
3
+ exports.hasKey = exports.getPredicateFn = exports.Predicate = void 0;
4
4
  exports.Predicate = Object.freeze({
5
5
  NumAsc: 'numAsc',
6
6
  NumDesc: 'numDesc',
@@ -39,4 +39,8 @@ function getPredicateFn(predicate, accessor) {
39
39
  }
40
40
  }
41
41
  exports.getPredicateFn = getPredicateFn;
42
+ var hasKey = function (obj, key) {
43
+ return obj.hasOwnProperty(key);
44
+ };
45
+ exports.hasKey = hasKey;
42
46
  //# sourceMappingURL=predicate.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"predicate.js","sourceRoot":"","sources":["../../src/common/predicate.ts"],"names":[],"mappings":";;;AAWa,QAAA,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC;IACrC,MAAM,EAAE,QAAiB;IACzB,OAAO,EAAE,SAAkB;IAC3B,QAAQ,EAAE,UAAmB;IAC7B,SAAS,EAAE,WAAoB;IAC/B,SAAS,EAAE,WAAoB;CAChC,CAAC,CAAC;AAMH,SAAgB,cAAc,CAAI,SAAoB,EAAE,QAAkB;IACxE,QAAQ,SAAS,EAAE;QACjB,KAAK,UAAU;YACb,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YACtC,CAAC,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YACtC,CAAC,CAAC;QACJ,KAAK,SAAS;YACZ,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,GAAG,MAAM,CAAC;YACzB,CAAC,CAAC;QACJ,KAAK,QAAQ;YACX,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,GAAG,MAAM,CAAC;YACzB,CAAC,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,cAAM,OAAA,CAAC,EAAD,CAAC,CAAC;KAClB;AACH,CAAC;AA7BD,wCA6BC"}
1
+ {"version":3,"file":"predicate.js","sourceRoot":"","sources":["../../src/common/predicate.ts"],"names":[],"mappings":";;;AAWa,QAAA,SAAS,GAAG,MAAM,CAAC,MAAM,CAAC;IACrC,MAAM,EAAE,QAAiB;IACzB,OAAO,EAAE,SAAkB;IAC3B,QAAQ,EAAE,UAAmB;IAC7B,SAAS,EAAE,WAAoB;IAC/B,SAAS,EAAE,WAAoB;CAChC,CAAC,CAAC;AAMH,SAAgB,cAAc,CAAI,SAAoB,EAAE,QAAkB;IACxE,QAAQ,SAAS,EAAE;QACjB,KAAK,UAAU;YACb,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YACtC,CAAC,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YACtC,CAAC,CAAC;QACJ,KAAK,SAAS;YACZ,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,GAAG,MAAM,CAAC;YACzB,CAAC,CAAC;QACJ,KAAK,QAAQ;YACX,OAAO,UAAC,CAAI,EAAE,CAAI;gBAChB,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClD,OAAO,MAAM,GAAG,MAAM,CAAC;YACzB,CAAC,CAAC;QACJ,KAAK,WAAW;YACd,OAAO,cAAM,OAAA,CAAC,EAAD,CAAC,CAAC;KAClB;AACH,CAAC;AA7BD,wCA6BC;AAGM,IAAM,MAAM,GAAG,UAAoC,GAAM,EAAE,GAAW;IAC3E,OAAA,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC;AAAvB,CAAuB,CAAC;AADb,QAAA,MAAM,UACO"}
@@ -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}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}a[href],button,[role=button]{cursor:pointer}button{background:none;border:none;padding:0;margin:0;color:inherit;border-radius:0;font-size:inherit}input{margin:0;padding:0}input:disabled{opacity:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:""}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}.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;overflow:hidden}.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 1px 5px rgba(0,0,0,.25),0 3.6px 13px rgba(0,0,0,.175),0 8.4px 23px rgba(0,0,0,.15),0 23px 35px rgba(0,0,0,.125);box-shadow:0 1px 5px rgba(0,0,0,.25),0 3.6px 13px rgba(0,0,0,.175),0 8.4px 23px rgba(0,0,0,.15),0 23px 35px rgba(0,0,0,.125);border-radius:6px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.1428571429rem;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;background-color:#1d1e24;color:#dfe5ef;overflow:hidden}.echTooltip .euiHorizontalRule{background-color:#333}.echTooltip>:not(:last-child){border-bottom:solid 1px #343741}.echTooltip .euiTable{background-color:transparent}.echTooltip .euiTableFooterCell,.echTooltip .euiTableHeaderCell,.echTooltip .euiTableRowCell{color:#fff}.echTooltip__list--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__divider{border-bottom:solid 1px #343741}.echTooltip__metricRow{padding:4px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.echTooltip__header{font-weight:700;margin-bottom:0;padding:4px 8px}.echTooltip__footer{font-weight:700;border-top:solid 1px #343741;margin-top:0;padding:4px 8px}.echTooltip__stickyAction{color:#69707d;padding:8px;margin-left:5px}.echTooltip__table{width:100%}.echTooltip__table--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__tableHeader{font-weight:700;margin-bottom:0;border-bottom:solid 1px #343741}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody td:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableFooter{border-top:solid 1px #343741;font-weight:700;margin-top:0}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted{background-color:rgba(52,55,65,.5)}.echTooltip__colorCell{padding:0;height:100%;position:relative}.echTooltip__colorCell--empty{width:0}.echTooltip__colorStrip{position:absolute;top:0;left:0;bottom:0;width:5px;min-width:5px;max-width:8px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStripSpacer{width:8px}.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;text-align:left}.echTooltip__value{text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.echTooltip[dir=rtl] .echTooltip__colorStrip{left:auto;right: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:rgba(54,162,239,.2)}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr);-webkit-padding-start:0;padding-inline-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0}.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,.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,.5) transparent;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,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{outline:2px solid currentColor;outline-offset:1px;background-color:rgba(54,162,239,.2);border-radius:3px}.echLegend .echLegendListContainer :focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus:not(:focus-visible){outline:none}.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:0.8571428571rem;line-height:1.1428571429rem;-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}.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:0.8571428571rem;line-height:1.1428571429rem;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:0.8571428571rem;line-height:1.1428571429rem;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,.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,.2)}.echHighlighter__mask{fill:rgba(29,30,36,.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,.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid #000;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{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__marker{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.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}.echMetricContainer{display:grid;width:100%;height:100%;-ms-flex-line-pack:start;align-content:start;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.echMetric{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echMetric .echMetric--outline{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.echMetric:focus-within .echMetric--outline{outline:auto;outline-offset:-1.5px}.echMetric:focus-within button{outline:none}.echMetric--rightBorder{border-right:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--small{padding-left:10px}.echMetric--horizontal.echMetric--small{padding-bottom:10px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}.echMetricText{position:relative;padding:8px;height:100%;z-index:1;display:grid;grid-template-columns:100%;grid-template-rows:-webkit-min-content -webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content min-content auto min-content min-content;text-align:left;line-height:1.2}.echMetricText__title{font-weight:400;word-wrap:break-word}.echMetricText__title button{width:100%;text-align:left}.echMetricText__icon{position:absolute;right:8px;top:8px}.echMetricText__subtitle{padding-top:5px;font-weight:300;text-align:left}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap;overflow:hidden}.echMetricText__part{font-weight:400}.echMetricText__gap{position:relative}.echSingleMetricProgress{position:absolute;overflow:hidden}.echSingleMetricProgress--vertical{left:0;right:0;top:0;bottom:0;height:100%;width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:10px}.echSingleMetricProgress--horizontal{left:0;right:0;width:100%;top:0;bottom:0;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:10px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricSparkline{position:absolute;overflow:hidden;top:0;bottom:0;left:0;right:0}.echSingleMetricSparkline__svg{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echSingleMetricSparkline__svg rect,.echSingleMetricSparkline__svg path{-webkit-transition:fill ease-in-out .1s;transition:fill ease-in-out .1s}.echSingleMetricChart--small{position:absolute;top:auto;left:auto;bottom:0;right:0;width:100px;height:30px}
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",-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",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:normal;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:14px;color:#dfe5ef;height:100%;background-color:#141519}body{line-height:1.142857143}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#36a2ef}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,.5) #242529}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,.5);background-clip:content-box;border-radius:16px;border:4px solid #242529}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#242529}svg text{letter-spacing:normal !important}.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;overflow:hidden}.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 1px 5px rgba(0,0,0,.25),0 3.6px 13px rgba(0,0,0,.175),0 8.4px 23px rgba(0,0,0,.15),0 23px 35px rgba(0,0,0,.125);box-shadow:0 1px 5px rgba(0,0,0,.25),0 3.6px 13px rgba(0,0,0,.175),0 8.4px 23px rgba(0,0,0,.15),0 23px 35px rgba(0,0,0,.125);border-radius:6px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.1428571429rem;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;background-color:#1d1e24;color:#dfe5ef;overflow:hidden}.echTooltip .euiHorizontalRule{background-color:#333}.echTooltip>:not(:last-child){border-bottom:solid 1px #343741}.echTooltip .euiTable{background-color:transparent}.echTooltip .euiTableFooterCell,.echTooltip .euiTableHeaderCell,.echTooltip .euiTableRowCell{color:#fff}.echTooltip__list--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__divider{border-bottom:solid 1px #343741}.echTooltip__metricRow{padding:4px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.echTooltip__header{font-weight:700;margin-bottom:0;padding:4px 8px}.echTooltip__footer{font-weight:700;border-top:solid 1px #343741;margin-top:0;padding:4px 8px}.echTooltip__stickyAction{color:#69707d;padding:8px;margin-left:5px}.echTooltip__table{width:100%}.echTooltip__table--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__tableHeader{font-weight:700;margin-bottom:0;border-bottom:solid 1px #343741}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody td:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableFooter{border-top:solid 1px #343741;font-weight:700;margin-top:0}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted{background-color:rgba(52,55,65,.5)}.echTooltip__colorCell{padding:0;height:100%;position:relative}.echTooltip__colorCell--empty{width:0}.echTooltip__colorStrip{position:absolute;top:0;left:0;bottom:0;width:5px;min-width:5px;max-width:8px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStripSpacer{width:8px}.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;text-align:left}.echTooltip__value{text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.echTooltip[dir=rtl] .echTooltip__colorStrip{left:auto;right: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:rgba(54,162,239,.2)}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr);-webkit-padding-start:0;padding-inline-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0}.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,.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,.5) transparent;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,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{outline:2px solid currentColor;outline-offset:1px;background-color:rgba(54,162,239,.2);border-radius:3px}.echLegend .echLegendListContainer :focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus:not(:focus-visible){outline:none}.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:0.8571428571rem;line-height:1.1428571429rem;-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}.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:0.8571428571rem;line-height:1.1428571429rem;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:0.8571428571rem;line-height:1.1428571429rem;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,.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,.2)}.echHighlighter__mask{fill:rgba(29,30,36,.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,.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid #000;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{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__marker{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.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}.echMetricContainer{display:grid;width:100%;height:100%;-ms-flex-line-pack:start;align-content:start;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.echMetric{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echMetric .echMetric--outline{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.echMetric:focus-within .echMetric--outline{outline:auto;outline-offset:-1.5px}.echMetric:focus-within button{outline:none}.echMetric--rightBorder{border-right:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--small{padding-left:10px}.echMetric--horizontal.echMetric--small{padding-bottom:10px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}.echMetricText{position:relative;padding:8px;height:100%;z-index:1;display:grid;grid-template-columns:100%;grid-template-rows:-webkit-min-content -webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content min-content auto min-content min-content;text-align:left;line-height:1.2}.echMetricText__title{font-weight:400;word-wrap:break-word}.echMetricText__title button{width:100%;text-align:left}.echMetricText__icon{position:absolute;right:8px;top:8px}.echMetricText__subtitle{padding-top:5px;font-weight:300;text-align:left}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap;overflow:hidden}.echMetricText__part{font-weight:400}.echMetricText__gap{position:relative}.echSingleMetricProgress{position:absolute;overflow:hidden}.echSingleMetricProgress--vertical{left:0;right:0;top:0;bottom:0;height:100%;width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:10px}.echSingleMetricProgress--horizontal{left:0;right:0;width:100%;top:0;bottom:0;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:10px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricSparkline{position:absolute;overflow:hidden;top:0;bottom:0;left:0;right:0}.echSingleMetricSparkline__svg{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echSingleMetricSparkline__svg rect,.echSingleMetricSparkline__svg path{-webkit-transition:fill ease-in-out .1s;transition:fill ease-in-out .1s}.echSingleMetricChart--small{position:absolute;top:auto;left:auto;bottom:0;right:0;width:100px;height:30px}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/_reset.scss","../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_borders.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../src/components/tooltip/_tooltip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/_colors_dark.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_font_weight.scss","../src/components/_mixins.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_states.scss","../src/components/legend/_legend.scss","../src/components/legend/_variables.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_states.scss","../src/components/legend/_legend_item.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss","../src/components/_unavailable_chart.scss","../src/chart_types/xy_chart/renderer/dom/_highlighter.scss","../src/chart_types/xy_chart/renderer/dom/_crosshair.scss","../src/chart_types/xy_chart/renderer/dom/_screen_reader.scss","../src/chart_types/xy_chart/renderer/dom/annotations/_annotations.scss","../src/chart_types/partition_chart/renderer/_index.scss","../src/chart_types/metric/renderer/_index.scss","../src/chart_types/metric/renderer/dom/_text.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss"],"names":[],"mappings":"AAIA,mBACE,sBAEF,2ZAaE,SACA,UACA,YACA,wBAEF,oBACE,oBACA,oBACA,kBAGF,8EAEE,cAEF,6BAGE,eAEF,OACE,gBACA,YACA,UACA,SACA,cACA,gBACA,kBAEF,MACE,SACA,UAEF,eACE,UAEF,MAEE,gBAEF,aAEE,YAEF,oDAIE,WAEF,GACE,SAEF,SACE,qBAKF,SACE,iCChFF,gBACE,kBACA,oBACA,gBACA,QACA,SACA,kBAGF,oBACE,kBACA,MACA,SACA,OACA,QCdF,UACE,kBACA,aACA,YAEA,kBACE,sBAIJ,cACE,OACA,kBACA,gBAGF,0BACE,kBACA,MACA,SACA,QACA,OACA,sBACA,iBAGF,iBACE,kBACA,kBACA,SACA,MACA,OACA,QACA,sBCjCF,cACE,kBACA,MACA,OACA,SACA,UACA,sBACA,gBACA,gCCqCA,WACE,kHC5CF,cCFgB,IDGhB,iBEH0B,KFI1B,WACA,QGkBW,KHjBX,gBACA,yBACA,QILY,ICqBV,UCfc,KDgBd,0BAOF,4BErBA,UACA,yBACA,oBACA,iBACA,gBACA,iBCCmB,cAaN,QDZb,gBPRA,+BACE,iBEVoB,KKmBtB,8BACE,gCAGF,sBACE,6BAGF,6FAGE,WAIA,8BACE,gBACA,oBAIJ,qBACE,gCAGF,uBACE,gBACA,aACA,8BAGF,oBACE,YE7CwB,IF8CxB,gBACA,gBAGF,oBACE,YEnDwB,IFoDxB,6BACA,aACA,gBAGF,0BACE,cACA,QH/DU,IGgEV,YA/DiB,IAkEnB,mBACE,WAEA,+BACE,gBACA,oBAIJ,yBACE,YEzEwB,IF0ExB,gBACA,gCAGF,mDACE,YAIA,sDACE,gBAIJ,yBACE,6BACA,YE1FwB,IF2FxB,aAGF,sBACE,kBAEA,mCACE,mCASJ,uBACE,UACA,YACA,kBAEA,8BACE,QAIJ,wBACE,kBACA,MACA,OACA,SACA,MA7HiB,IA8HjB,UA9HiB,IA+HjB,UA9HoB,IA+HpB,uBAGF,8BACE,MAnIoB,IAsItB,mBG1IA,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cHsIE,cACA,cACA,gBAGF,mBACE,iBACA,6BAKE,6CACE,UACA,QI3JR,uBACE,oBAGF,gBACE,kBACA,oBAGF,6BACE,eACA,kBACA,QACA,SCbF,SACE,cACA,qBACA,sBACA,kBAEA,aACE,0BAGF,eACE,UACA,WCFsB,oBCTxB,0BACE,aACA,qCACA,uBACA,qBACA,qBACA,mBAGA,sCACE,gBCTe,KDUf,aCXY,IDYZ,WCZY,IDaZ,cCbY,IDiBhB,iCAEE,QAGF,qCAEE,QAGF,kBACE,gCACA,kBAGF,mCE1BA,iDAGE,qBAqCF,YACA,gBACA,kBjBmDE,6HejEA,WACA,gBACA,kBEvBF,sDACE,MZfU,KYgBV,OZhBU,KYmBZ,4DACE,sCACA,4BACA,cZtBU,KYyBR,6BAMJ,yHAEE,iBA9BwE,YAgD1E,yCACE,aAGF,qEACE,mBFjBA,0CGhCF,+BAaE,mBHqBE,iBD/BoB,oBCgCpB,kBGhCJ,wDACE,mBAGF,8DACE,aCVJ,eACE,MVwBa,QUvBb,aACA,iBACA,8BACA,uBACA,kBAGA,6CAGE,OAde,KAiBjB,iDACE,YdnBU,IcqBV,uFACE,adtBQ,Ic0BZ,2CACE,ad3BU,Ic6BV,iFACE,Yd9BQ,IcmCV,4EACE,eAIJ,iCACE,iBVzBoB,QU4BtB,2BACE,kBACA,MACA,QACA,SACA,OACA,WAGF,uBACE,eACA,aACA,uBACA,mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBbtDE,UCfc,KDgBd,0BAOF,4BagDE,cACA,gBACA,wBACA,qBACA,mBRnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cQgFE,kCCuDF,eACA,2BACA,kCACA,8BDrDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBbhFE,UCfc,KDgBd,0BAOF,4Ba0EE,iBACA,cACA,Yd1GU,Ic2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MV5GgB,QUiHd,8CACE,iBEvIR,4BACE,aACA,mBACA,uBACA,WACA,YfmBE,UCfc,KDgBd,0BAOF,4BezBA,MZckB,QarBpB,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,uBCpBF,6DAGE,kBACA,MACA,OACA,oBCNF,qBACE,kBACA,cACA,SACA,UACA,WACA,gBAGF,0BACE,kBACA,iBACA,mBACA,oBACA,sBACA,uBACA,yBACA,gCACA,0FAGE,sBACA,eAIJ,sBACE,gBACA,gBC5BF,eACE,UACA,yBACA,oBACA,iBACA,gBAEA,uBACE,kBACA,iBACA,UlBDc,KkBEd,YfJwB,IeO1B,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCvBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,+BACE,aAGF,wBACE,+BAGF,yBACE,gCAIA,sCACE,kBAKF,wCACE,oBAKN,gBACE,kBACA,WACA,WACA,WACA,wBCtDF,eACE,kBACA,YACA,YACA,UACA,aACA,2BACA,wEACA,gBACA,gBACA,sBACE,gBACA,qBACA,6BACE,WACA,gBAGJ,qBACE,kBACA,UACA,QAGF,yBACE,gBACA,gBACA,gBAGF,sBACE,iBACA,gBAGF,sBACE,kBACA,gBACA,iBACA,mBACA,gBAGF,qBACE,gBAGF,oBACE,kBCzDJ,yBACE,kBACA,gBAEA,mCACE,OACA,QACA,MACA,SACA,YACA,WACA,kEACE,WACA,WAIJ,qCACE,OACA,QACA,WACA,MACA,SACA,YACA,oEACE,SACA,YAKN,4BACE,4CACA,sCACE,kBACA,OACA,QACA,SACA,WAEF,wCACE,kBACA,MACA,SACA,OACA,YC7CJ,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA","file":"theme_dark.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../node_modules/@elastic/eui/src/themes/legacy/reset/_reset.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_font_weight.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/_colors_dark.scss","../../../node_modules/@elastic/eui/src/themes/legacy/reset/_scrollbar.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.scss","../src/_reset.scss","../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_borders.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss","../src/components/tooltip/_tooltip.scss","../src/components/_mixins.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_states.scss","../src/components/legend/_legend.scss","../src/components/legend/_variables.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_states.scss","../src/components/legend/_legend_item.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss","../src/components/_unavailable_chart.scss","../src/chart_types/xy_chart/renderer/dom/_highlighter.scss","../src/chart_types/xy_chart/renderer/dom/_crosshair.scss","../src/chart_types/xy_chart/renderer/dom/_screen_reader.scss","../src/chart_types/xy_chart/renderer/dom/annotations/_annotations.scss","../src/chart_types/partition_chart/renderer/_index.scss","../src/chart_types/metric/renderer/_index.scss","../src/chart_types/metric/renderer/dom/_text.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss"],"names":[],"mappings":"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IE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBtBtDE,UFfc,KEgBd,0BAOF,4BsBgDE,cACA,gBACA,wBACA,qBACA,mBPnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cOgFE,kCCuDF,eACA,2BACA,kCACA,8BDrDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBtBhFE,UFfc,KEgBd,0BAOF,4BsB0EE,iBACA,cACA,YlB1GU,IkB2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MrB5GgB,QqBiHd,8CACE,iBEvIR,4BACE,aACA,mBACA,uBACA,WACA,YxBmBE,UFfc,KEgBd,0BAOF,4BwBzBA,MvBckB,QwBrBpB,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,uBCpBF,6DAGE,kBACA,MACA,OACA,oBCNF,qBACE,kBACA,cACA,SACA,UACA,WACA,gBAGF,0BACE,kBACA,iBACA,mBACA,oBACA,sBACA,uBACA,yBACA,gCACA,0FAGE,sBACA,eAIJ,sBACE,gBACA,gBC5BF,eACE,UACA,yBACA,oBACA,iBACA,gBAEA,uBACE,kBACA,iBACA,U9BDc,K8BEd,Y7BJwB,I6BO1B,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCvBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,+BACE,aAGF,wBACE,+BAGF,yBACE,gCAIA,sCACE,kBAKF,wCACE,oBAKN,gBACE,kBACA,WACA,WACA,WACA,wBCtDF,eACE,kBACA,YACA,YACA,UACA,aACA,2BACA,wEACA,gBACA,gBACA,sBACE,gBACA,qBACA,6BACE,WACA,gBAGJ,qBACE,kBACA,UACA,QAGF,yBACE,gBACA,gBACA,gBAGF,sBACE,iBACA,gBAGF,sBACE,kBACA,gBACA,iBACA,mBACA,gBAGF,qBACE,gBAGF,oBACE,kBCzDJ,yBACE,kBACA,gBAEA,mCACE,OACA,QACA,MACA,SACA,YACA,WACA,kEACE,WACA,WAIJ,qCACE,OACA,QACA,WACA,MACA,SACA,YACA,oEACE,SACA,YAKN,4BACE,4CACA,sCACE,kBACA,OACA,QACA,SACA,WAEF,wCACE,kBACA,MACA,SACA,OACA,YC7CJ,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA","file":"theme_dark.css"}
@@ -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}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}a[href],button,[role=button]{cursor:pointer}button{background:none;border:none;padding:0;margin:0;color:inherit;border-radius:0;font-size:inherit}input{margin:0;padding:0}input:disabled{opacity:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:""}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}.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;overflow:hidden}.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 1px 5px rgba(0,0,0,.1),0 3.6px 13px rgba(0,0,0,.07),0 8.4px 23px rgba(0,0,0,.06),0 23px 35px rgba(0,0,0,.05);box-shadow:0 1px 5px rgba(0,0,0,.1),0 3.6px 13px rgba(0,0,0,.07),0 8.4px 23px rgba(0,0,0,.06),0 23px 35px rgba(0,0,0,.05);border-radius:6px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.1428571429rem;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;background-color:#fff;color:#343741;overflow:hidden}.echTooltip .euiHorizontalRule{background-color:#595959}.echTooltip>:not(:last-child){border-bottom:solid 1px #d3dae6}.echTooltip .euiTable{background-color:transparent}.echTooltip .euiTableFooterCell,.echTooltip .euiTableHeaderCell,.echTooltip .euiTableRowCell{color:#fff}.echTooltip__list--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__divider{border-bottom:solid 1px #d3dae6}.echTooltip__metricRow{padding:4px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.echTooltip__header{font-weight:700;margin-bottom:0;padding:4px 8px}.echTooltip__footer{font-weight:700;border-top:solid 1px #d3dae6;margin-top:0;padding:4px 8px}.echTooltip__stickyAction{color:#69707d;padding:8px;margin-left:5px}.echTooltip__table{width:100%}.echTooltip__table--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__tableHeader{font-weight:700;margin-bottom:0;border-bottom:solid 1px #d3dae6}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody td:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableFooter{border-top:solid 1px #d3dae6;font-weight:700;margin-top:0}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted{background-color:rgba(211,218,230,.5)}.echTooltip__colorCell{padding:0;height:100%;position:relative}.echTooltip__colorCell--empty{width:0}.echTooltip__colorStrip{position:absolute;top:0;left:0;bottom:0;width:5px;min-width:5px;max-width:8px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStripSpacer{width:8px}.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;text-align:left}.echTooltip__value{text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.echTooltip[dir=rtl] .echTooltip__colorStrip{left:auto;right: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:rgba(0,119,204,.1)}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr);-webkit-padding-start:0;padding-inline-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0}.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,.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,.5) transparent;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,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{outline:2px solid currentColor;outline-offset:1px;background-color:rgba(0,119,204,.1);border-radius:3px}.echLegend .echLegendListContainer :focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus:not(:focus-visible){outline:none}.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:0.8571428571rem;line-height:1.1428571429rem;-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}.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:0.8571428571rem;line-height:1.1428571429rem;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:0.8571428571rem;line-height:1.1428571429rem;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,.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,.2)}.echHighlighter__mask{fill:rgba(255,255,255,.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,.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid #000;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{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__marker{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.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}.echMetricContainer{display:grid;width:100%;height:100%;-ms-flex-line-pack:start;align-content:start;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.echMetric{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echMetric .echMetric--outline{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.echMetric:focus-within .echMetric--outline{outline:auto;outline-offset:-1.5px}.echMetric:focus-within button{outline:none}.echMetric--rightBorder{border-right:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--small{padding-left:10px}.echMetric--horizontal.echMetric--small{padding-bottom:10px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}.echMetricText{position:relative;padding:8px;height:100%;z-index:1;display:grid;grid-template-columns:100%;grid-template-rows:-webkit-min-content -webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content min-content auto min-content min-content;text-align:left;line-height:1.2}.echMetricText__title{font-weight:400;word-wrap:break-word}.echMetricText__title button{width:100%;text-align:left}.echMetricText__icon{position:absolute;right:8px;top:8px}.echMetricText__subtitle{padding-top:5px;font-weight:300;text-align:left}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap;overflow:hidden}.echMetricText__part{font-weight:400}.echMetricText__gap{position:relative}.echSingleMetricProgress{position:absolute;overflow:hidden}.echSingleMetricProgress--vertical{left:0;right:0;top:0;bottom:0;height:100%;width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:10px}.echSingleMetricProgress--horizontal{left:0;right:0;width:100%;top:0;bottom:0;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:10px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricSparkline{position:absolute;overflow:hidden;top:0;bottom:0;left:0;right:0}.echSingleMetricSparkline__svg{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echSingleMetricSparkline__svg rect,.echSingleMetricSparkline__svg path{-webkit-transition:fill ease-in-out .1s;transition:fill ease-in-out .1s}.echSingleMetricChart--small{position:absolute;top:auto;left:auto;bottom:0;right:0;width:100px;height:30px}
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",-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",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:normal;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:14px;color:#343741;height:100%;background-color:#fafbfd}body{line-height:1.142857143}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#07c}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,.5) #f3f3f5}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,.5);background-clip:content-box;border-radius:16px;border:4px solid #f3f3f5}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#f3f3f5}svg text{letter-spacing:normal !important}.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;overflow:hidden}.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 1px 5px rgba(0,0,0,.1),0 3.6px 13px rgba(0,0,0,.07),0 8.4px 23px rgba(0,0,0,.06),0 23px 35px rgba(0,0,0,.05);box-shadow:0 1px 5px rgba(0,0,0,.1),0 3.6px 13px rgba(0,0,0,.07),0 8.4px 23px rgba(0,0,0,.06),0 23px 35px rgba(0,0,0,.05);border-radius:6px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.1428571429rem;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;background-color:#fff;color:#343741;overflow:hidden}.echTooltip .euiHorizontalRule{background-color:#595959}.echTooltip>:not(:last-child){border-bottom:solid 1px #d3dae6}.echTooltip .euiTable{background-color:transparent}.echTooltip .euiTableFooterCell,.echTooltip .euiTableHeaderCell,.echTooltip .euiTableRowCell{color:#fff}.echTooltip__list--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__divider{border-bottom:solid 1px #d3dae6}.echTooltip__metricRow{padding:4px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.echTooltip__header{font-weight:700;margin-bottom:0;padding:4px 8px}.echTooltip__footer{font-weight:700;border-top:solid 1px #d3dae6;margin-top:0;padding:4px 8px}.echTooltip__stickyAction{color:#69707d;padding:8px;margin-left:5px}.echTooltip__table{width:100%}.echTooltip__table--scrollable{overflow-y:auto;pointer-events:auto}.echTooltip__tableHeader{font-weight:700;margin-bottom:0;border-bottom:solid 1px #d3dae6}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody td:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableFooter{border-top:solid 1px #d3dae6;font-weight:700;margin-top:0}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted{background-color:rgba(211,218,230,.5)}.echTooltip__colorCell{padding:0;height:100%;position:relative}.echTooltip__colorCell--empty{width:0}.echTooltip__colorStrip{position:absolute;top:0;left:0;bottom:0;width:5px;min-width:5px;max-width:8px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStripSpacer{width:8px}.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;text-align:left}.echTooltip__value{text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum"}.echTooltip[dir=rtl] .echTooltip__colorStrip{left:auto;right: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:rgba(0,119,204,.1)}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr);-webkit-padding-start:0;padding-inline-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0}.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,.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,.5) transparent;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,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{outline:2px solid currentColor;outline-offset:1px;background-color:rgba(0,119,204,.1);border-radius:3px}.echLegend .echLegendListContainer :focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus:not(:focus-visible){outline:none}.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:0.8571428571rem;line-height:1.1428571429rem;-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}.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:0.8571428571rem;line-height:1.1428571429rem;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:0.8571428571rem;line-height:1.1428571429rem;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,.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,.2)}.echHighlighter__mask{fill:rgba(255,255,255,.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,.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid #000;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{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__marker{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.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}.echMetricContainer{display:grid;width:100%;height:100%;-ms-flex-line-pack:start;align-content:start;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.echMetric{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echMetric .echMetric--outline{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.echMetric:focus-within .echMetric--outline{outline:auto;outline-offset:-1.5px}.echMetric:focus-within button{outline:none}.echMetric--rightBorder{border-right:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--small{padding-left:10px}.echMetric--horizontal.echMetric--small{padding-bottom:10px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}.echMetricText{position:relative;padding:8px;height:100%;z-index:1;display:grid;grid-template-columns:100%;grid-template-rows:-webkit-min-content -webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content min-content auto min-content min-content;text-align:left;line-height:1.2}.echMetricText__title{font-weight:400;word-wrap:break-word}.echMetricText__title button{width:100%;text-align:left}.echMetricText__icon{position:absolute;right:8px;top:8px}.echMetricText__subtitle{padding-top:5px;font-weight:300;text-align:left}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap;overflow:hidden}.echMetricText__part{font-weight:400}.echMetricText__gap{position:relative}.echSingleMetricProgress{position:absolute;overflow:hidden}.echSingleMetricProgress--vertical{left:0;right:0;top:0;bottom:0;height:100%;width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:10px}.echSingleMetricProgress--horizontal{left:0;right:0;width:100%;top:0;bottom:0;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:10px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricSparkline{position:absolute;overflow:hidden;top:0;bottom:0;left:0;right:0}.echSingleMetricSparkline__svg{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echSingleMetricSparkline__svg rect,.echSingleMetricSparkline__svg path{-webkit-transition:fill ease-in-out .1s;transition:fill ease-in-out .1s}.echSingleMetricChart--small{position:absolute;top:auto;left:auto;bottom:0;right:0;width:100px;height:30px}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/_reset.scss","../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_borders.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../src/components/tooltip/_tooltip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/_colors_light.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_font_weight.scss","../src/components/_mixins.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_states.scss","../src/components/legend/_legend.scss","../src/components/legend/_variables.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_states.scss","../src/components/legend/_legend_item.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss","../src/components/_unavailable_chart.scss","../src/chart_types/xy_chart/renderer/dom/_highlighter.scss","../src/chart_types/xy_chart/renderer/dom/_crosshair.scss","../src/chart_types/xy_chart/renderer/dom/_screen_reader.scss","../src/chart_types/xy_chart/renderer/dom/annotations/_annotations.scss","../src/chart_types/partition_chart/renderer/_index.scss","../src/chart_types/metric/renderer/_index.scss","../src/chart_types/metric/renderer/dom/_text.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss"],"names":[],"mappings":"AAIA,mBACE,sBAEF,2ZAaE,SACA,UACA,YACA,wBAEF,oBACE,oBACA,oBACA,kBAGF,8EAEE,cAEF,6BAGE,eAEF,OACE,gBACA,YACA,UACA,SACA,cACA,gBACA,kBAEF,MACE,SACA,UAEF,eACE,UAEF,MAEE,gBAEF,aAEE,YAEF,oDAIE,WAEF,GACE,SAEF,SACE,qBAKF,SACE,iCChFF,gBACE,kBACA,oBACA,gBACA,QACA,SACA,kBAGF,oBACE,kBACA,MACA,SACA,OACA,QCdF,UACE,kBACA,aACA,YAEA,kBACE,sBAIJ,cACE,OACA,kBACA,gBAGF,0BACE,kBACA,MACA,SACA,QACA,OACA,sBACA,iBAGF,iBACE,kBACA,kBACA,SACA,MACA,OACA,QACA,sBCjCF,cACE,kBACA,MACA,OACA,SACA,UACA,sBACA,gBACA,gCCqCA,WACE,+GC5CF,cCFgB,IDGhB,iBEH0B,QFI1B,WACA,QGkBW,KHjBX,gBACA,yBACA,QILY,ICqBV,UCfc,KDgBd,0BAOF,4BErBA,UACA,yBACA,oBACA,iBACA,gBACA,iBCCmB,WAKE,QDJrB,gBPRA,+BACE,iBEVoB,QKmBtB,8BACE,gCAGF,sBACE,6BAGF,6FAGE,WAIA,8BACE,gBACA,oBAIJ,qBACE,gCAGF,uBACE,gBACA,aACA,8BAGF,oBACE,YE7CwB,IF8CxB,gBACA,gBAGF,oBACE,YEnDwB,IFoDxB,6BACA,aACA,gBAGF,0BACE,cACA,QH/DU,IGgEV,YA/DiB,IAkEnB,mBACE,WAEA,+BACE,gBACA,oBAIJ,yBACE,YEzEwB,IF0ExB,gBACA,gCAGF,mDACE,YAIA,sDACE,gBAIJ,yBACE,6BACA,YE1FwB,IF2FxB,aAGF,sBACE,kBAEA,mCACE,sCASJ,uBACE,UACA,YACA,kBAEA,8BACE,QAIJ,wBACE,kBACA,MACA,OACA,SACA,MA7HiB,IA8HjB,UA9HiB,IA+HjB,UA9HoB,IA+HpB,uBAGF,8BACE,MAnIoB,IAsItB,mBG1IA,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cHsIE,cACA,cACA,gBAGF,mBACE,iBACA,6BAKE,6CACE,UACA,QI3JR,uBACE,oBAGF,gBACE,kBACA,oBAGF,6BACE,eACA,kBACA,QACA,SCbF,SACE,cACA,qBACA,sBACA,kBAEA,aACE,0BAGF,eACE,UACA,WCFsB,mBCTxB,0BACE,aACA,qCACA,uBACA,qBACA,qBACA,mBAGA,sCACE,gBCTe,KDUf,aCXY,IDYZ,WCZY,IDaZ,cCbY,IDiBhB,iCAEE,QAGF,qCAEE,QAGF,kBACE,gCACA,kBAGF,mCE1BA,iDAGE,qBAqCF,YACA,gBACA,kBjBmDE,6HejEA,WACA,gBACA,kBEvBF,sDACE,MZfU,KYgBV,OZhBU,KYmBZ,4DACE,sCACA,4BACA,cZtBU,KYyBR,6BAMJ,yHAEE,iBA9BwE,YAgD1E,yCACE,aAGF,qEACE,mBFjBA,0CGhCF,+BAaE,mBHqBE,iBD/BoB,mBCgCpB,kBGhCJ,wDACE,mBAGF,8DACE,aCVJ,eACE,MVgBqB,QUfrB,aACA,iBACA,8BACA,uBACA,kBAGA,6CAGE,OAde,KAiBjB,iDACE,YdnBU,IcqBV,uFACE,adtBQ,Ic0BZ,2CACE,ad3BU,Ic6BV,iFACE,Yd9BQ,IcmCV,4EACE,eAIJ,iCACE,iBVzBoB,QU4BtB,2BACE,kBACA,MACA,QACA,SACA,OACA,WAGF,uBACE,eACA,aACA,uBACA,mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBbtDE,UCfc,KDgBd,0BAOF,4BagDE,cACA,gBACA,wBACA,qBACA,mBRnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cQgFE,kCCuDF,eACA,2BACA,kCACA,8BDrDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBbhFE,UCfc,KDgBd,0BAOF,4Ba0EE,iBACA,cACA,Yd1GU,Ic2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MV5GgB,QUiHd,8CACE,iBEvIR,4BACE,aACA,mBACA,uBACA,WACA,YfmBE,UCfc,KDgBd,0BAOF,4BezBA,MZckB,QarBpB,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,0BCpBF,6DAGE,kBACA,MACA,OACA,oBCNF,qBACE,kBACA,cACA,SACA,UACA,WACA,gBAGF,0BACE,kBACA,iBACA,mBACA,oBACA,sBACA,uBACA,yBACA,gCACA,0FAGE,sBACA,eAIJ,sBACE,gBACA,gBC5BF,eACE,UACA,yBACA,oBACA,iBACA,gBAEA,uBACE,kBACA,iBACA,UlBDc,KkBEd,YfJwB,IeO1B,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCvBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,+BACE,aAGF,wBACE,+BAGF,yBACE,gCAIA,sCACE,kBAKF,wCACE,oBAKN,gBACE,kBACA,WACA,WACA,WACA,wBCtDF,eACE,kBACA,YACA,YACA,UACA,aACA,2BACA,wEACA,gBACA,gBACA,sBACE,gBACA,qBACA,6BACE,WACA,gBAGJ,qBACE,kBACA,UACA,QAGF,yBACE,gBACA,gBACA,gBAGF,sBACE,iBACA,gBAGF,sBACE,kBACA,gBACA,iBACA,mBACA,gBAGF,qBACE,gBAGF,oBACE,kBCzDJ,yBACE,kBACA,gBAEA,mCACE,OACA,QACA,MACA,SACA,YACA,WACA,kEACE,WACA,WAIJ,qCACE,OACA,QACA,WACA,MACA,SACA,YACA,oEACE,SACA,YAKN,4BACE,4CACA,sCACE,kBACA,OACA,QACA,SACA,WAEF,wCACE,kBACA,MACA,SACA,OACA,YC7CJ,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA","file":"theme_light.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../node_modules/@elastic/eui/src/themes/legacy/reset/_reset.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_font_weight.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/_colors_light.scss","../../../node_modules/@elastic/eui/src/themes/legacy/reset/_scrollbar.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.scss","../src/_reset.scss","../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_borders.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss","../src/components/tooltip/_tooltip.scss","../src/components/_mixins.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_states.scss","../src/components/legend/_legend.scss","../src/components/legend/_variables.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/mixins/_states.scss","../src/components/legend/_legend_item.scss","../../../node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss","../src/components/_unavailable_chart.scss","../src/chart_types/xy_chart/renderer/dom/_highlighter.scss","../src/chart_types/xy_chart/renderer/dom/_crosshair.scss","../src/chart_types/xy_chart/renderer/dom/_screen_reader.scss","../src/chart_types/xy_chart/renderer/dom/annotations/_annotations.scss","../src/chart_types/partition_chart/renderer/_index.scss","../src/chart_types/metric/renderer/_index.scss","../src/chart_types/metric/renderer/dom/_text.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss"],"names":[],"mappings":"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,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBtBtDE,UFfc,KEgBd,0BAOF,4BsBgDE,cACA,gBACA,wBACA,qBACA,mBPnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cOgFE,kCCuDF,eACA,2BACA,kCACA,8BDrDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBtBhFE,UFfc,KEgBd,0BAOF,4BsB0EE,iBACA,cACA,YlB1GU,IkB2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MrB5GgB,QqBiHd,8CACE,iBEvIR,4BACE,aACA,mBACA,uBACA,WACA,YxBmBE,UFfc,KEgBd,0BAOF,4BwBzBA,MvBckB,QwBrBpB,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,0BCpBF,6DAGE,kBACA,MACA,OACA,oBCNF,qBACE,kBACA,cACA,SACA,UACA,WACA,gBAGF,0BACE,kBACA,iBACA,mBACA,oBACA,sBACA,uBACA,yBACA,gCACA,0FAGE,sBACA,eAIJ,sBACE,gBACA,gBC5BF,eACE,UACA,yBACA,oBACA,iBACA,gBAEA,uBACE,kBACA,iBACA,U9BDc,K8BEd,Y7BJwB,I6BO1B,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCvBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,+BACE,aAGF,wBACE,+BAGF,yBACE,gCAIA,sCACE,kBAKF,wCACE,oBAKN,gBACE,kBACA,WACA,WACA,WACA,wBCtDF,eACE,kBACA,YACA,YACA,UACA,aACA,2BACA,wEACA,gBACA,gBACA,sBACE,gBACA,qBACA,6BACE,WACA,gBAGJ,qBACE,kBACA,UACA,QAGF,yBACE,gBACA,gBACA,gBAGF,sBACE,iBACA,gBAGF,sBACE,kBACA,gBACA,iBACA,mBACA,gBAGF,qBACE,gBAGF,oBACE,kBCzDJ,yBACE,kBACA,gBAEA,mCACE,OACA,QACA,MACA,SACA,YACA,WACA,kEACE,WACA,WAIJ,qCACE,OACA,QACA,WACA,MACA,SACA,YACA,oEACE,SACA,YAKN,4BACE,4CACA,sCACE,kBACA,OACA,QACA,SACA,WAEF,wCACE,kBACA,MACA,SACA,OACA,YC7CJ,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA","file":"theme_light.css"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=time_zone.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time_zone.d.ts","sourceRoot":"","sources":["../../src/utils/time_zone.ts"],"names":[],"mappings":""}
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getZoneFromSpecs = exports.getValidatedTimeZone = void 0;
4
+ var logger_1 = require("./logger");
5
+ var isValidTimeZone = function (timeZone) {
6
+ try {
7
+ Intl.DateTimeFormat(undefined, { timeZone: timeZone });
8
+ return true;
9
+ }
10
+ catch (error) {
11
+ logger_1.Logger.warn("The supplied timeZone ".concat(timeZone, " does not exist. The default time zone will be used."));
12
+ logger_1.Logger.warn(error);
13
+ return false;
14
+ }
15
+ };
16
+ var getValidatedTimeZone = function (specifiedTimeZone) {
17
+ return specifiedTimeZone && isValidTimeZone(specifiedTimeZone)
18
+ ? specifiedTimeZone
19
+ : Intl.DateTimeFormat().resolvedOptions().timeZone;
20
+ };
21
+ exports.getValidatedTimeZone = getValidatedTimeZone;
22
+ var getZoneFromSpecs = function (specs) {
23
+ var allValidTimezones = new Set(specs.map(function (s) { var _a; return (_a = s.timeZone) !== null && _a !== void 0 ? _a : ''; }).filter(isValidTimeZone));
24
+ return allValidTimezones.size === 1
25
+ ? allValidTimezones.values().next().value
26
+ : Intl.DateTimeFormat().resolvedOptions().timeZone;
27
+ };
28
+ exports.getZoneFromSpecs = getZoneFromSpecs;
29
+ //# sourceMappingURL=time_zone.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time_zone.js","sourceRoot":"","sources":["../../src/utils/time_zone.ts"],"names":[],"mappings":";;;AAQA,mCAAkC;AAElC,IAAM,eAAe,GAAG,UAAC,QAAiB;IACxC,IAAI;QACF,IAAI,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,QAAQ,UAAA,EAAE,CAAC,CAAC;QAC7C,OAAO,IAAI,CAAC;KACb;IAAC,OAAO,KAAK,EAAE;QACd,eAAM,CAAC,IAAI,CAAC,gCAAyB,QAAQ,yDAAsD,CAAC,CAAC;QACrG,eAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnB,OAAO,KAAK,CAAC;KACd;AACH,CAAC,CAAC;AAGK,IAAM,oBAAoB,GAAG,UAAC,iBAA0B;IAC7D,OAAA,iBAAiB,IAAI,eAAe,CAAC,iBAAiB,CAAC;QACrD,CAAC,CAAC,iBAAiB;QACnB,CAAC,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,eAAe,EAAE,CAAC,QAAQ;AAFpD,CAEoD,CAAC;AAH1C,QAAA,oBAAoB,wBAGsB;AAGhD,IAAM,gBAAgB,GAAG,UAAC,KAA8B;IAC7D,IAAM,iBAAiB,GAAG,IAAI,GAAG,CAAS,KAAK,CAAC,GAAG,CAAC,UAAC,CAAC,YAAK,OAAA,MAAA,CAAC,CAAC,QAAQ,mCAAI,EAAE,CAAA,EAAA,CAAC,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,CAAC;IACtG,OAAO,iBAAiB,CAAC,IAAI,KAAK,CAAC;QACjC,CAAC,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK;QACzC,CAAC,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,eAAe,EAAE,CAAC,QAAQ,CAAC;AACvD,CAAC,CAAC;AALW,QAAA,gBAAgB,oBAK3B"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elastic/charts",
3
3
  "description": "Elastic-Charts data visualization library",
4
- "version": "49.0.1",
4
+ "version": "50.0.1",
5
5
  "author": "Elastic DataVis",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
7
7
  "main": "dist/index.js",
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=translations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../src/chart_types/timeslip/timeslip/translations.ts"],"names":[],"mappings":""}
@@ -1,215 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.uiStrings = void 0;
4
- exports.uiStrings = {
5
- 'ar-TN': {
6
- bar: 'حاجز',
7
- year: 'سنة',
8
- month: 'شهر',
9
- week: 'أسبوع',
10
- day: 'يوم',
11
- hour: 'ساعة',
12
- minute: 'دقيقة',
13
- second: 'ثانية',
14
- millisecond: 'مللي ثانية',
15
- years: 'سنوات',
16
- months: 'اشهر',
17
- weeks: 'أسابيع',
18
- days: 'أيام',
19
- hours: 'ساعات',
20
- minutes: 'دقائق',
21
- seconds: 'ثواني',
22
- milliseconds: 'مللي ثانية',
23
- },
24
- 'de-CH': {
25
- bar: 'Balken',
26
- year: 'Jahr',
27
- month: 'Monat',
28
- week: 'Woche',
29
- day: 'Tag',
30
- hour: 'Stunde',
31
- minute: 'Minute',
32
- second: 'Sekunde',
33
- millisecond: 'Millisekunde',
34
- years: 'Jahre',
35
- months: 'Monate',
36
- weeks: 'Wochen',
37
- days: 'Tage',
38
- hours: 'Stunden',
39
- minutes: 'Minuten',
40
- seconds: 'Sekunden',
41
- milliseconds: 'Millisekunden',
42
- },
43
- 'fr-FR': {
44
- bar: 'barre',
45
- year: 'année',
46
- month: 'mois',
47
- week: 'semaine',
48
- day: 'jour',
49
- hour: 'heure',
50
- minute: 'minute',
51
- second: 'seconde',
52
- millisecond: 'milliseconde',
53
- years: 'ans',
54
- months: 'mois',
55
- weeks: 'semaines',
56
- days: 'jours',
57
- hours: 'heures',
58
- minutes: 'minutes',
59
- seconds: 'secondes',
60
- milliseconds: 'millisecondes',
61
- },
62
- 'en-US': {
63
- bar: 'bar',
64
- year: 'year',
65
- month: 'month',
66
- week: 'week',
67
- day: 'day',
68
- hour: 'hour',
69
- minute: 'minute',
70
- second: 'second',
71
- millisecond: 'millisecond',
72
- years: 'years',
73
- months: 'months',
74
- weeks: 'weeks',
75
- days: 'days',
76
- hours: 'hours',
77
- minutes: 'minutes',
78
- seconds: 'seconds',
79
- milliseconds: 'milliseconds',
80
- },
81
- 'el-GR': {
82
- bar: 'γραμμή',
83
- year: 'χρόνος',
84
- month: 'μήνα',
85
- week: 'εβδομάδα',
86
- day: 'μέρα',
87
- hour: 'ώρα',
88
- minute: 'λεπτό',
89
- second: 'δευτερόλεπτο',
90
- millisecond: 'χιλιοστό του δευτερολέπτου',
91
- years: 'μήνες',
92
- months: 'months',
93
- weeks: 'εβδομάδες',
94
- days: 'ημέρες',
95
- hours: 'ώρες',
96
- minutes: 'λεπτά',
97
- seconds: 'δευτερόλεπτα',
98
- milliseconds: 'χιλιοστά του δευτερολέπτου',
99
- },
100
- 'hu-HU': {
101
- bar: 'oszlop',
102
- year: 'év',
103
- month: 'hónap',
104
- week: 'hét',
105
- day: 'nap',
106
- hour: 'óra',
107
- minute: 'perc',
108
- second: 'másodperc',
109
- millisecond: 'ezredmásodperc',
110
- years: 'év',
111
- months: 'hónap',
112
- weeks: 'hét',
113
- days: 'nap',
114
- hours: 'óra',
115
- minutes: 'perc',
116
- seconds: 'másodperc',
117
- milliseconds: 'ezredmásodperc',
118
- },
119
- 'he-IL': {
120
- bar: 'עַמוּדָה',
121
- year: 'שנה',
122
- month: 'חודש',
123
- week: 'שבוע',
124
- day: 'יום',
125
- hour: 'שעה',
126
- minute: 'דקות',
127
- second: 'השני',
128
- millisecond: 'אלפית השנייה',
129
- years: 'years',
130
- months: 'חודשים',
131
- weeks: 'שבועות',
132
- days: 'ימים',
133
- hours: 'שעות',
134
- minutes: 'דקות',
135
- seconds: 'שניות',
136
- milliseconds: 'אלפיות השנייה',
137
- },
138
- 'hi-IN': {
139
- bar: 'बार',
140
- year: 'वर्ष',
141
- month: 'महीना',
142
- week: 'सप्ताह',
143
- day: 'दिन',
144
- hour: 'घंटा',
145
- minute: 'मिनट',
146
- second: 'सेकंड',
147
- millisecond: 'मिलीसेकंड',
148
- years: 'साल',
149
- months: 'महीने',
150
- weeks: 'सप्ताह',
151
- days: 'दिन',
152
- hours: 'घंटे',
153
- minutes: 'मिनट',
154
- seconds: 'सेकंड',
155
- milliseconds: 'मिलीसेकेंड',
156
- },
157
- 'it-IT': {
158
- bar: 'barra',
159
- year: 'anno',
160
- month: 'mese',
161
- week: 'settimana',
162
- day: 'giorno',
163
- hour: 'ora',
164
- minute: 'minuto',
165
- second: 'secondo',
166
- millisecond: 'millisecondo',
167
- years: 'anni',
168
- months: 'mesi',
169
- weeks: 'settimane',
170
- days: 'giorni',
171
- hours: 'ore',
172
- minutes: 'minuti',
173
- seconds: 'secondi',
174
- milliseconds: 'millisecondi',
175
- },
176
- 'ja-JA': {
177
- bar: '棒',
178
- year: '年',
179
- month: 'ヶ月',
180
- week: '週間',
181
- day: '日',
182
- hour: '時間',
183
- minute: '分',
184
- second: '秒',
185
- millisecond: 'ミリ秒',
186
- years: '年間',
187
- months: 'ヵ月',
188
- weeks: '週間',
189
- days: '日間',
190
- hours: '時間',
191
- minutes: '分間',
192
- seconds: '秒間',
193
- milliseconds: 'ミリ秒',
194
- },
195
- 'ru-RU': {
196
- bar: 'полоса',
197
- year: 'год',
198
- month: 'месяц',
199
- week: 'неделя',
200
- day: 'день',
201
- hour: 'час',
202
- minute: 'минута',
203
- second: 'секунда',
204
- millisecond: 'миллисекунда',
205
- years: 'лет',
206
- months: 'месяцев',
207
- weeks: 'недель',
208
- days: 'дней',
209
- hours: 'часов',
210
- minutes: 'минут',
211
- seconds: 'секунд',
212
- milliseconds: 'миллисекунд',
213
- },
214
- };
215
- //# sourceMappingURL=translations.js.map