@elastic/charts 46.9.0 → 46.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/chart_types/index.d.ts +1 -0
  3. package/dist/chart_types/index.d.ts.map +1 -1
  4. package/dist/chart_types/index.js +1 -0
  5. package/dist/chart_types/index.js.map +1 -1
  6. package/dist/chart_types/metric/renderer/dom/index.d.ts +2 -0
  7. package/dist/chart_types/metric/renderer/dom/index.d.ts.map +1 -0
  8. package/dist/chart_types/metric/renderer/dom/index.js +155 -0
  9. package/dist/chart_types/metric/renderer/dom/index.js.map +1 -0
  10. package/dist/chart_types/metric/renderer/dom/progress.d.ts +2 -0
  11. package/dist/chart_types/metric/renderer/dom/progress.d.ts.map +1 -0
  12. package/dist/chart_types/metric/renderer/dom/progress.js +41 -0
  13. package/dist/chart_types/metric/renderer/dom/progress.js.map +1 -0
  14. package/dist/chart_types/metric/renderer/dom/sparkline.d.ts +2 -0
  15. package/dist/chart_types/metric/renderer/dom/sparkline.d.ts.map +1 -0
  16. package/dist/chart_types/metric/renderer/dom/sparkline.js +52 -0
  17. package/dist/chart_types/metric/renderer/dom/sparkline.js.map +1 -0
  18. package/dist/chart_types/metric/renderer/dom/text.d.ts +2 -0
  19. package/dist/chart_types/metric/renderer/dom/text.d.ts.map +1 -0
  20. package/dist/chart_types/metric/renderer/dom/text.js +141 -0
  21. package/dist/chart_types/metric/renderer/dom/text.js.map +1 -0
  22. package/dist/chart_types/metric/specs/index.d.ts +52 -0
  23. package/dist/chart_types/metric/specs/index.d.ts.map +1 -0
  24. package/dist/chart_types/metric/specs/index.js +25 -0
  25. package/dist/chart_types/metric/specs/index.js.map +1 -0
  26. package/dist/chart_types/metric/state/chart_state.d.ts +2 -0
  27. package/dist/chart_types/metric/state/chart_state.d.ts.map +1 -0
  28. package/dist/chart_types/metric/state/chart_state.js +40 -0
  29. package/dist/chart_types/metric/state/chart_state.js.map +1 -0
  30. package/dist/chart_types/metric/state/selectors/chart_size.d.ts +2 -0
  31. package/dist/chart_types/metric/state/selectors/chart_size.d.ts.map +1 -0
  32. package/dist/chart_types/metric/state/selectors/chart_size.js +20 -0
  33. package/dist/chart_types/metric/state/selectors/chart_size.js.map +1 -0
  34. package/dist/chart_types/metric/state/selectors/data.d.ts +2 -0
  35. package/dist/chart_types/metric/state/selectors/data.d.ts.map +1 -0
  36. package/dist/chart_types/metric/state/selectors/data.js +8 -0
  37. package/dist/chart_types/metric/state/selectors/data.js.map +1 -0
  38. package/dist/chart_types/specs.d.ts +1 -0
  39. package/dist/chart_types/specs.d.ts.map +1 -1
  40. package/dist/chart_types/specs.js +4 -1
  41. package/dist/chart_types/specs.js.map +1 -1
  42. package/dist/common/color_library_wrappers.js +11 -1
  43. package/dist/common/color_library_wrappers.js.map +1 -1
  44. package/dist/geoms/path.d.ts +2 -0
  45. package/dist/geoms/path.d.ts.map +1 -0
  46. package/dist/geoms/path.js +20 -0
  47. package/dist/geoms/path.js.map +1 -0
  48. package/dist/state/chart_state.js +8 -6
  49. package/dist/state/chart_state.js.map +1 -1
  50. package/dist/state/selectors/get_specs_by_type.d.ts +2 -0
  51. package/dist/state/selectors/get_specs_by_type.d.ts.map +1 -0
  52. package/dist/state/selectors/get_specs_by_type.js +12 -0
  53. package/dist/state/selectors/get_specs_by_type.js.map +1 -0
  54. package/dist/theme.scss +161 -0
  55. package/dist/theme_dark.css +1 -1
  56. package/dist/theme_dark.css.map +1 -1
  57. package/dist/theme_light.css +1 -1
  58. package/dist/theme_light.css.map +1 -1
  59. package/dist/theme_only_dark.css +1 -1
  60. package/dist/theme_only_dark.css.map +1 -1
  61. package/dist/theme_only_light.css +1 -1
  62. package/dist/theme_only_light.css.map +1 -1
  63. package/dist/utils/themes/dark_theme.d.ts.map +1 -1
  64. package/dist/utils/themes/dark_theme.js +9 -0
  65. package/dist/utils/themes/dark_theme.js.map +1 -1
  66. package/dist/utils/themes/light_theme.d.ts.map +1 -1
  67. package/dist/utils/themes/light_theme.js +9 -0
  68. package/dist/utils/themes/light_theme.js.map +1 -1
  69. package/dist/utils/themes/theme.d.ts +11 -0
  70. package/dist/utils/themes/theme.d.ts.map +1 -1
  71. package/dist/utils/themes/theme.js.map +1 -1
  72. package/package.json +1 -1
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.MetricState = void 0;
7
+ var react_1 = __importDefault(require("react"));
8
+ var __1 = require("../..");
9
+ var constants_1 = require("../../../common/constants");
10
+ var get_internal_is_intialized_1 = require("../../../state/selectors/get_internal_is_intialized");
11
+ var dom_1 = require("../renderer/dom");
12
+ var EMPTY_MAP = new Map();
13
+ var EMPTY_LEGEND_LIST = [];
14
+ var EMPTY_LEGEND_ITEM_LIST = [];
15
+ var MetricState = (function () {
16
+ function MetricState() {
17
+ this.chartType = __1.ChartType.Metric;
18
+ this.getChartTypeDescription = function () { return 'Metric chart'; };
19
+ this.chartRenderer = function () { return react_1.default.createElement(dom_1.Metric, null); };
20
+ this.isInitialized = function () { return get_internal_is_intialized_1.InitStatus.Initialized; };
21
+ this.isBrushAvailable = function () { return false; };
22
+ this.isBrushing = function () { return false; };
23
+ this.isChartEmpty = function () { return false; };
24
+ this.getLegendItems = function () { return EMPTY_LEGEND_LIST; };
25
+ this.getLegendItemsLabels = function () { return EMPTY_LEGEND_ITEM_LIST; };
26
+ this.getLegendExtraValues = function () { return EMPTY_MAP; };
27
+ this.getPointerCursor = function () { return constants_1.DEFAULT_CSS_CURSOR; };
28
+ this.isTooltipVisible = function () { return ({ visible: false, isExternal: false }); };
29
+ this.getTooltipInfo = function () { return undefined; };
30
+ this.getTooltipAnchor = function () { return null; };
31
+ this.eventCallbacks = function () { };
32
+ this.getProjectionContainerArea = function () { return ({ width: 0, height: 0, top: 0, left: 0 }); };
33
+ this.getMainProjectionArea = function () { return ({ width: 0, height: 0, top: 0, left: 0 }); };
34
+ this.getBrushArea = function () { return null; };
35
+ this.getDebugState = function () { return ({}); };
36
+ }
37
+ return MetricState;
38
+ }());
39
+ exports.MetricState = MetricState;
40
+ //# sourceMappingURL=chart_state.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chart_state.js","sourceRoot":"","sources":["../../../../src/chart_types/metric/state/chart_state.tsx"],"names":[],"mappings":";;;;;;AAQA,gDAA0B;AAE1B,2BAAkC;AAClC,uDAA+D;AAG/D,kGAAiF;AAEjF,uCAAyC;AAEzC,IAAM,SAAS,GAAG,IAAI,GAAG,EAAE,CAAC;AAC5B,IAAM,iBAAiB,GAAiB,EAAE,CAAC;AAC3C,IAAM,sBAAsB,GAAsB,EAAE,CAAC;AAGrD;IAAA;QACE,cAAS,GAAG,aAAS,CAAC,MAAM,CAAC;QAC7B,4BAAuB,GAAG,cAAM,OAAA,cAAc,EAAd,CAAc,CAAC;QAC/C,kBAAa,GAAG,cAAM,OAAA,8BAAC,YAAM,OAAG,EAAV,CAAU,CAAC;QACjC,kBAAa,GAAG,cAAM,OAAA,uCAAU,CAAC,WAAW,EAAtB,CAAsB,CAAC;QAC7C,qBAAgB,GAAG,cAAM,OAAA,KAAK,EAAL,CAAK,CAAC;QAC/B,eAAU,GAAG,cAAM,OAAA,KAAK,EAAL,CAAK,CAAC;QACzB,iBAAY,GAAG,cAAM,OAAA,KAAK,EAAL,CAAK,CAAC;QAC3B,mBAAc,GAAG,cAAM,OAAA,iBAAiB,EAAjB,CAAiB,CAAC;QACzC,yBAAoB,GAAG,cAAM,OAAA,sBAAsB,EAAtB,CAAsB,CAAC;QACpD,yBAAoB,GAAG,cAAM,OAAA,SAAS,EAAT,CAAS,CAAC;QACvC,qBAAgB,GAAG,cAAM,OAAA,8BAAkB,EAAlB,CAAkB,CAAC;QAC5C,qBAAgB,GAAG,cAAM,OAAA,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,CAAC,EAAvC,CAAuC,CAAC;QACjE,mBAAc,GAAG,cAAM,OAAA,SAAS,EAAT,CAAS,CAAC;QACjC,qBAAgB,GAAG,cAAM,OAAA,IAAI,EAAJ,CAAI,CAAC;QAC9B,mBAAc,GAAG,cAAO,CAAC,CAAC;QAC1B,+BAA0B,GAAG,cAAM,OAAA,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAA1C,CAA0C,CAAC;QAC9E,0BAAqB,GAAG,cAAM,OAAA,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,EAA1C,CAA0C,CAAC;QACzE,iBAAY,GAAG,cAAM,OAAA,IAAI,EAAJ,CAAI,CAAC;QAC1B,kBAAa,GAAG,cAAM,OAAA,CAAC,EAAE,CAAC,EAAJ,CAAI,CAAC;IAC7B,CAAC;IAAD,kBAAC;AAAD,CAAC,AApBD,IAoBC;AApBY,kCAAW"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=chart_size.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chart_size.d.ts","sourceRoot":"","sources":["../../../../../src/chart_types/metric/state/selectors/chart_size.ts"],"names":[],"mappings":""}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.chartSize = void 0;
15
+ var create_selector_1 = require("../../../../state/create_selector");
16
+ var getParentDimension = function (state) { return state.parentDimensions; };
17
+ exports.chartSize = (0, create_selector_1.createCustomCachedSelector)([getParentDimension], function (container) {
18
+ return __assign({}, container);
19
+ });
20
+ //# sourceMappingURL=chart_size.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chart_size.js","sourceRoot":"","sources":["../../../../../src/chart_types/metric/state/selectors/chart_size.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AASA,qEAA+E;AAG/E,IAAM,kBAAkB,GAAG,UAAC,KAAuB,IAAK,OAAA,KAAK,CAAC,gBAAgB,EAAtB,CAAsB,CAAC;AAGlE,QAAA,SAAS,GAAG,IAAA,4CAA0B,EACjD,CAAC,kBAAkB,CAAC,EACpB,UAAC,SAAS;IACR,oBAAY,SAAS,EAAG;AAC1B,CAAC,CACF,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../../../src/chart_types/metric/state/selectors/data.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getMetricSpecs = void 0;
4
+ var __1 = require("../../..");
5
+ var specs_1 = require("../../../../specs");
6
+ var get_specs_by_type_1 = require("../../../../state/selectors/get_specs_by_type");
7
+ exports.getMetricSpecs = (0, get_specs_by_type_1.getSpecsByType)(__1.ChartType.Metric, specs_1.SpecType.Series);
8
+ //# sourceMappingURL=data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data.js","sourceRoot":"","sources":["../../../../../src/chart_types/metric/state/selectors/data.ts"],"names":[],"mappings":";;;AAQA,8BAAqC;AACrC,2CAA6C;AAC7C,mFAA+E;AAIlE,QAAA,cAAc,GAAG,IAAA,kCAAc,EAAa,aAAS,CAAC,MAAM,EAAE,gBAAQ,CAAC,MAAM,CAAC,CAAC"}
@@ -2,4 +2,5 @@ export { AreaSeries, AreaSeriesProps, Axis, AxisProps, BarSeries, BarSeriesProps
2
2
  export * from './xy_chart/utils/specs';
3
3
  export { Partition } from './partition_chart/specs';
4
4
  export { Heatmap, HeatmapSpec, RasterTimeScale, TimeScale, LinearScale, OrdinalScale } from './heatmap/specs';
5
+ export { Metric, MetricSpecProps, MetricSpec, MetricBase, MetricWProgress, MetricWTrend, MetricTrendShape, } from './metric/specs';
5
6
  //# sourceMappingURL=specs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"specs.d.ts","sourceRoot":"","sources":["../../src/chart_types/specs.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,eAAe,EACf,IAAI,EACJ,SAAS,EACT,SAAS,EACT,cAAc,EACd,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,uBAAuB,EACvB,cAAc,EACd,mBAAmB,EACnB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAE1B,cAAc,wBAAwB,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEpD,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC"}
1
+ {"version":3,"file":"specs.d.ts","sourceRoot":"","sources":["../../src/chart_types/specs.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,eAAe,EACf,IAAI,EACJ,SAAS,EACT,SAAS,EACT,cAAc,EACd,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,uBAAuB,EACvB,cAAc,EACd,mBAAmB,EACnB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAE1B,cAAc,wBAAwB,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEpD,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE9G,OAAO,EACL,MAAM,EACN,eAAe,EACf,UAAU,EACV,UAAU,EACV,eAAe,EACf,YAAY,EACZ,gBAAgB,GACjB,MAAM,gBAAgB,CAAC"}
@@ -10,7 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
- exports.Heatmap = exports.Partition = exports.RectAnnotation = exports.LineSeries = exports.LineAnnotation = exports.HistogramBarSeries = exports.BubbleSeries = exports.BarSeries = exports.Axis = exports.AreaSeries = void 0;
13
+ exports.MetricTrendShape = exports.Metric = exports.Heatmap = exports.Partition = exports.RectAnnotation = exports.LineSeries = exports.LineAnnotation = exports.HistogramBarSeries = exports.BubbleSeries = exports.BarSeries = exports.Axis = exports.AreaSeries = void 0;
14
14
  var specs_1 = require("./xy_chart/specs");
15
15
  Object.defineProperty(exports, "AreaSeries", { enumerable: true, get: function () { return specs_1.AreaSeries; } });
16
16
  Object.defineProperty(exports, "Axis", { enumerable: true, get: function () { return specs_1.Axis; } });
@@ -25,4 +25,7 @@ var specs_2 = require("./partition_chart/specs");
25
25
  Object.defineProperty(exports, "Partition", { enumerable: true, get: function () { return specs_2.Partition; } });
26
26
  var specs_3 = require("./heatmap/specs");
27
27
  Object.defineProperty(exports, "Heatmap", { enumerable: true, get: function () { return specs_3.Heatmap; } });
28
+ var specs_4 = require("./metric/specs");
29
+ Object.defineProperty(exports, "Metric", { enumerable: true, get: function () { return specs_4.Metric; } });
30
+ Object.defineProperty(exports, "MetricTrendShape", { enumerable: true, get: function () { return specs_4.MetricTrendShape; } });
28
31
  //# sourceMappingURL=specs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"specs.js","sourceRoot":"","sources":["../../src/chart_types/specs.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAQA,0CAiB0B;AAhBxB,mGAAA,UAAU,OAAA;AAEV,6FAAA,IAAI,OAAA;AAEJ,kGAAA,SAAS,OAAA;AAET,qGAAA,YAAY,OAAA;AAEZ,2GAAA,kBAAkB,OAAA;AAElB,uGAAA,cAAc,OAAA;AAEd,mGAAA,UAAU,OAAA;AAEV,uGAAA,cAAc,OAAA;AAIhB,yDAAuC;AAEvC,iDAAoD;AAA3C,kGAAA,SAAS,OAAA;AAElB,yCAA8G;AAArG,gGAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"specs.js","sourceRoot":"","sources":["../../src/chart_types/specs.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAQA,0CAiB0B;AAhBxB,mGAAA,UAAU,OAAA;AAEV,6FAAA,IAAI,OAAA;AAEJ,kGAAA,SAAS,OAAA;AAET,qGAAA,YAAY,OAAA;AAEZ,2GAAA,kBAAkB,OAAA;AAElB,uGAAA,cAAc,OAAA;AAEd,mGAAA,UAAU,OAAA;AAEV,uGAAA,cAAc,OAAA;AAIhB,yDAAuC;AAEvC,iDAAoD;AAA3C,kGAAA,SAAS,OAAA;AAElB,yCAA8G;AAArG,gGAAA,OAAO,OAAA;AAEhB,wCAQwB;AAPtB,+FAAA,MAAM,OAAA;AAMN,yGAAA,gBAAgB,OAAA"}
@@ -28,7 +28,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  return (mod && mod.__esModule) ? mod : { "default": mod };
29
29
  };
30
30
  Object.defineProperty(exports, "__esModule", { value: true });
31
- exports.colorToRgba = exports.getGreensColorScale = exports.getChromaColor = exports.isValid = exports.RGBATupleToString = exports.overrideOpacity = void 0;
31
+ exports.hslToColor = exports.colorToHsl = exports.colorToRgba = exports.getGreensColorScale = exports.getChromaColor = exports.isValid = exports.RGBATupleToString = exports.overrideOpacity = void 0;
32
32
  var chroma_js_1 = __importDefault(require("chroma-js"));
33
33
  var common_1 = require("../utils/common");
34
34
  var logger_1 = require("../utils/logger");
@@ -80,4 +80,14 @@ function colorToRgba(color) {
80
80
  return cachedValue;
81
81
  }
82
82
  exports.colorToRgba = colorToRgba;
83
+ function colorToHsl(color) {
84
+ var _a = __read(colorToRgba(color), 3), r = _a[0], g = _a[1], b = _a[2];
85
+ return chroma_js_1.default.rgb(r, g, b).hsl();
86
+ }
87
+ exports.colorToHsl = colorToHsl;
88
+ function hslToColor(h, s, l) {
89
+ var rgba = chroma_js_1.default.hsl(h, s, l).rgba();
90
+ return RGBATupleToString(rgba);
91
+ }
92
+ exports.hslToColor = hslToColor;
83
93
  //# sourceMappingURL=color_library_wrappers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"color_library_wrappers.js","sourceRoot":"","sources":["../../src/common/color_library_wrappers.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,wDAA+B;AAE/B,0CAAwC;AACxC,0CAAyC;AACzC,mCAAyC;AACzC,qDAA6C;AAkB7C,SAAgB,eAAe,CAAC,EAAuB,EAAE,OAA4B;QAArD,KAAA,aAAuB,EAAtB,CAAC,QAAA,EAAE,CAAC,QAAA,EAAE,CAAC,QAAA,EAAE,CAAC,QAAA;IACzC,IAAM,eAAe,GAAG,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAIvG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;QAC5C,OAAO,eAAM,CAAC,WAAW,CAAC,IAAI,CAAC;KAChC;IACD,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAA,cAAK,EAAC,MAAM,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AACxF,CAAC;AATD,0CASC;AAGD,SAAgB,iBAAiB,CAAC,IAAc;;IAC9C,OAAO,UAAQ,IAAI,CAAC,CAAC,CAAC,UAAK,IAAI,CAAC,CAAC,CAAC,UAAK,IAAI,CAAC,CAAC,CAAC,WAAK,MAAA,IAAI,CAAC,CAAC,CAAC,mCAAI,CAAC,OAAG,CAAC;AACrE,CAAC;AAFD,8CAEC;AAGD,SAAgB,OAAO,CAAC,KAAY;IAClC,IAAI;QAEF,OAAO,IAAA,mBAAM,EAAC,KAAK,KAAK,eAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;KAC/E;IAAC,WAAM;QACN,OAAO,KAAK,CAAC;KACd;AACH,CAAC;AAPD,0BAOC;AAGD,SAAgB,cAAc,CAAC,KAAgB;IAE7C,OAAO,mBAAM,wCAAI,KAAK,WAAE;AAC1B,CAAC;AAHD,wCAGC;AAGD,SAAgB,mBAAmB,CAAC,KAAa,EAAE,MAAwB;IACzE,IAAM,KAAK,GAAG,mBAAM,CAAC,KAAK,CAAC,mBAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7E,OAAO,UAAC,KAAa,IAAK,OAAA,KAAK,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAlB,CAAkB,CAAC;AAC/C,CAAC;AAHD,kDAGC;AAED,IAAM,SAAS,GAAG,IAAI,0BAAQ,CAAmB,GAAG,CAAC,CAAC;AAGtD,SAAgB,WAAW,CAAC,KAAY;IACtC,IAAM,WAAW,GAAG,SAAS,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IACzC,IAAI,WAAW,KAAK,SAAS,EAAE;QAC7B,IAAM,WAAW,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,WAAW,KAAK,KAAK;YAAE,eAAM,CAAC,IAAI,CAAC,oEAAoE,EAAE,KAAK,CAAC,CAAC;QACpH,IAAM,QAAQ,GAAc,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,eAAM,CAAC,GAAG,CAAC,IAAI,CAAC;QAC/E,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;QAC/B,OAAO,QAAQ,CAAC;KACjB;IACD,OAAO,WAAW,CAAC;AACrB,CAAC;AAVD,kCAUC"}
1
+ {"version":3,"file":"color_library_wrappers.js","sourceRoot":"","sources":["../../src/common/color_library_wrappers.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=path.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"path.d.ts","sourceRoot":"","sources":["../../src/geoms/path.ts"],"names":[],"mappings":""}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.areaGenerator = exports.lineGenerator = void 0;
4
+ var d3_shape_1 = require("d3-shape");
5
+ var curves_1 = require("../utils/curves");
6
+ function lineGenerator(xProject, yProject, defined, curve) {
7
+ var generator = (0, d3_shape_1.line)().x(xProject).y(yProject).defined(defined).curve((0, curves_1.getCurveFactory)(curve));
8
+ return function (d) { var _a; return (_a = generator(d)) !== null && _a !== void 0 ? _a : ''; };
9
+ }
10
+ exports.lineGenerator = lineGenerator;
11
+ function areaGenerator(xProject, y0Project, y1Project, defined, curve) {
12
+ var generator = (0, d3_shape_1.area)().x(xProject).y0(y0Project).y1(y1Project).defined(defined).curve((0, curves_1.getCurveFactory)(curve));
13
+ return {
14
+ y0: function (d) { var _a; return (_a = generator.lineY0()(d)) !== null && _a !== void 0 ? _a : ''; },
15
+ y1: function (d) { var _a; return (_a = generator.lineY1()(d)) !== null && _a !== void 0 ? _a : ''; },
16
+ area: function (d) { var _a; return (_a = generator(d)) !== null && _a !== void 0 ? _a : ''; },
17
+ };
18
+ }
19
+ exports.areaGenerator = areaGenerator;
20
+ //# sourceMappingURL=path.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"path.js","sourceRoot":"","sources":["../../src/geoms/path.ts"],"names":[],"mappings":";;;AAQA,qCAAsC;AAEtC,0CAA6D;AAO7D,SAAgB,aAAa,CAC3B,QAA0B,EAC1B,QAA0B,EAC1B,OAA0B,EAC1B,KAAgB;IAEhB,IAAM,SAAS,GAAG,IAAA,eAAI,GAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAA,wBAAe,EAAC,KAAK,CAAC,CAAC,CAAC;IACnG,OAAO,UAAC,CAAC,YAAK,OAAA,MAAA,SAAS,CAAC,CAAC,CAAC,mCAAI,EAAE,CAAA,EAAA,CAAC;AACnC,CAAC;AARD,sCAQC;AASD,SAAgB,aAAa,CAC3B,QAA0B,EAC1B,SAA2B,EAC3B,SAA2B,EAC3B,OAA0B,EAC1B,KAAgB;IAEhB,IAAM,SAAS,GAAG,IAAA,eAAI,GAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,IAAA,wBAAe,EAAC,KAAK,CAAC,CAAC,CAAC;IACnH,OAAO;QACL,EAAE,EAAE,UAAC,CAAC,YAAK,OAAA,MAAA,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,mCAAI,EAAE,CAAA,EAAA;QACtC,EAAE,EAAE,UAAC,CAAC,YAAK,OAAA,MAAA,SAAS,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,mCAAI,EAAE,CAAA,EAAA;QACtC,IAAI,EAAE,UAAC,CAAC,YAAK,OAAA,MAAA,SAAS,CAAC,CAAC,CAAC,mCAAI,EAAE,CAAA,EAAA;KAChC,CAAC;AACJ,CAAC;AAbD,sCAaC"}
@@ -28,9 +28,10 @@ var chart_types_1 = require("../chart_types");
28
28
  var internal_chart_state_1 = require("../chart_types/flame_chart/internal_chart_state");
29
29
  var chart_state_1 = require("../chart_types/goal_chart/state/chart_state");
30
30
  var chart_state_2 = require("../chart_types/heatmap/state/chart_state");
31
- var chart_state_3 = require("../chart_types/partition_chart/state/chart_state");
32
- var chart_state_4 = require("../chart_types/wordcloud/state/chart_state");
33
- var chart_state_5 = require("../chart_types/xy_chart/state/chart_state");
31
+ var chart_state_3 = require("../chart_types/metric/state/chart_state");
32
+ var chart_state_4 = require("../chart_types/partition_chart/state/chart_state");
33
+ var chart_state_5 = require("../chart_types/wordcloud/state/chart_state");
34
+ var chart_state_6 = require("../chart_types/xy_chart/state/chart_state");
34
35
  var specs_1 = require("../specs");
35
36
  var common_1 = require("../utils/common");
36
37
  var logger_1 = require("../utils/logger");
@@ -146,11 +147,12 @@ function chartTypeFromSpecs(specs) {
146
147
  }
147
148
  var constructors = (_a = {},
148
149
  _a[chart_types_1.ChartType.Goal] = function () { return new chart_state_1.GoalState(); },
149
- _a[chart_types_1.ChartType.Partition] = function () { return new chart_state_3.PartitionState(); },
150
+ _a[chart_types_1.ChartType.Partition] = function () { return new chart_state_4.PartitionState(); },
150
151
  _a[chart_types_1.ChartType.Flame] = function () { return new internal_chart_state_1.FlameState(); },
151
- _a[chart_types_1.ChartType.XYAxis] = function () { return new chart_state_5.XYAxisChartState(); },
152
+ _a[chart_types_1.ChartType.XYAxis] = function () { return new chart_state_6.XYAxisChartState(); },
152
153
  _a[chart_types_1.ChartType.Heatmap] = function () { return new chart_state_2.HeatmapState(); },
153
- _a[chart_types_1.ChartType.Wordcloud] = function () { return new chart_state_4.WordcloudState(); },
154
+ _a[chart_types_1.ChartType.Wordcloud] = function () { return new chart_state_5.WordcloudState(); },
155
+ _a[chart_types_1.ChartType.Metric] = function () { return new chart_state_3.MetricState(); },
154
156
  _a[chart_types_1.ChartType.Global] = function () { return null; },
155
157
  _a);
156
158
  function newInternalState(chartType) {
@@ -1 +1 @@
1
- {"version":3,"file":"chart_state.js","sourceRoot":"","sources":["../../src/state/chart_state.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"chart_state.js","sourceRoot":"","sources":["../../src/state/chart_state.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=get_specs_by_type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get_specs_by_type.d.ts","sourceRoot":"","sources":["../../../src/state/selectors/get_specs_by_type.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getSpecsByType = void 0;
4
+ var create_selector_1 = require("../create_selector");
5
+ var utils_1 = require("../utils");
6
+ var getSpecsByType = function (chartType, specType) {
7
+ return (0, create_selector_1.createCustomCachedSelector)([function (state) { return state.specs; }], function (specs) {
8
+ return (0, utils_1.getSpecsFromStore)(specs, chartType, specType);
9
+ });
10
+ };
11
+ exports.getSpecsByType = getSpecsByType;
12
+ //# sourceMappingURL=get_specs_by_type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get_specs_by_type.js","sourceRoot":"","sources":["../../../src/state/selectors/get_specs_by_type.ts"],"names":[],"mappings":";;;AAWA,sDAAgE;AAChE,kCAA6C;AAGtC,IAAM,cAAc,GAAG,UAAiB,SAAoB,EAAE,QAAkB;IACrF,OAAA,IAAA,4CAA0B,EAAC,CAAC,UAAC,KAAuB,IAAK,OAAA,KAAK,CAAC,KAAK,EAAX,CAAW,CAAC,EAAE,UAAC,KAAK;QAC3E,OAAO,IAAA,yBAAiB,EAAI,KAAK,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;IAC1D,CAAC,CAAC;AAFF,CAEE,CAAC;AAHQ,QAAA,cAAc,kBAGtB"}
package/dist/theme.scss CHANGED
@@ -522,4 +522,165 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
522
522
  background: transparent;
523
523
  }
524
524
 
525
+ @mixin lineClamp($maxLines) {
526
+ text-overflow: ellipsis;
527
+ display: -webkit-box;
528
+ -webkit-line-clamp: $maxLines; /* number of lines to show */
529
+ line-clamp: $maxLines;
530
+ -webkit-box-orient: vertical;
531
+ overflow: hidden;
532
+ }
533
+
534
+ .echMetricText {
535
+ position: relative;
536
+ padding: 8px;
537
+ height: 100%;
538
+ z-index: 1;
539
+ display: grid;
540
+ grid-template-columns: 100%;
541
+ grid-template-rows: min-content min-content auto min-content min-content;
542
+
543
+ &__title {
544
+ font-weight: 400;
545
+ }
546
+
547
+ &__subtitle {
548
+ padding-top: 5px;
549
+ font-weight: 300;
550
+ }
551
+
552
+ &__extra {
553
+ text-align: right;
554
+ font-weight: 400;
555
+ }
556
+
557
+ &__value {
558
+ position: relative;
559
+ font-weight: 600;
560
+ text-align: right;
561
+ white-space: nowrap;
562
+ }
563
+
564
+ &__part {
565
+ font-weight: 400;
566
+ }
567
+
568
+ &__gap {
569
+ position: relative;
570
+ }
571
+ }
572
+
573
+ .echSingleMetricProgress {
574
+ position: absolute;
575
+ overflow: hidden;
576
+
577
+ &--vertical {
578
+ left: 0;
579
+ right: 0;
580
+ top: 0;
581
+ bottom: 0;
582
+ height: 100%;
583
+ width: 100%;
584
+ &.echSingleMetricProgress--small {
585
+ right: auto;
586
+ width: 10px;
587
+ }
588
+ }
589
+
590
+ &--horizontal {
591
+ left: 0;
592
+ right: 0;
593
+ width: 100%;
594
+ top: 0;
595
+ bottom: 0;
596
+ height: 100%;
597
+ &.echSingleMetricProgress--small {
598
+ top: auto;
599
+ height: 10px;
600
+ }
601
+ }
602
+ }
603
+
604
+ .echSingleMetricProgressBar {
605
+ &--vertical {
606
+ position: absolute;
607
+ left: 0;
608
+ right: 0;
609
+ bottom: 0;
610
+ width: 100%;
611
+ }
612
+ &--horizontal {
613
+ position: absolute;
614
+ top: 0;
615
+ bottom: 0;
616
+ left: 0;
617
+ height: 100%;
618
+ }
619
+ }
620
+
621
+ .echSingleMetricSparkline {
622
+ position: absolute;
623
+ overflow: hidden;
624
+ top: 0;
625
+ bottom: 0;
626
+ left: 0;
627
+ right: 0;
628
+ }
629
+
630
+ .echSingleMetricSparkline__svg {
631
+ position: absolute;
632
+ top: 0;
633
+ bottom: 0;
634
+ left: 0;
635
+ right: 0;
636
+ width: 100%;
637
+ height: 100%;
638
+ }
639
+
640
+ .echSingleMetricChart--small {
641
+ position: absolute;
642
+ top: auto;
643
+ left: auto;
644
+ bottom: 0;
645
+ right: 0;
646
+ width: 100px;
647
+ height: 30px;
648
+ }
649
+
650
+ .echMetricContainer {
651
+ display: grid;
652
+ width: 100%;
653
+ height: 100%;
654
+ align-content: start;
655
+ justify-content: stretch;
656
+ align-items: stretch;
657
+ user-select: text;
658
+ }
659
+
660
+ .echMetric {
661
+ position: relative;
662
+ overflow: hidden;
663
+
664
+ &--rightBorder {
665
+ border-right: 1px solid #343741;
666
+ }
667
+
668
+ &--bottomBorder {
669
+ border-bottom: 1px solid #343741;
670
+ }
671
+
672
+ &--vertical {
673
+ &.echMetric--small {
674
+ padding-left: 10px;
675
+ }
676
+ }
677
+
678
+ &--horizontal {
679
+ &.echMetric--small {
680
+ padding-bottom: 10px;
681
+ }
682
+ }
683
+ }
684
+
685
+
525
686
 
@@ -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:""}table{border-collapse:collapse;border-spacing:0}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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir=rtl] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir=rtl] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir=rtl] .echTooltip__value{margin-left:0;margin-right:8px}[id^=echTooltipPortal]{pointer-events:none}[id^=echAnchor]{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background: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;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size: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{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}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:""}table{border-collapse:collapse;border-spacing:0}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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir=rtl] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir=rtl] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir=rtl] .echTooltip__value{margin-left:0;margin-right:8px}[id^=echTooltipPortal]{pointer-events:none}[id^=echAnchor]{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background: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;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size: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{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}.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;overflow:hidden}.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}.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}.echMetricText__title{font-weight:400}.echMetricText__subtitle{padding-top:5px;font-weight:300}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap}.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--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%}.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","../src/components/tooltip/_tooltip.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/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.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/themes/amsterdam/_colors_dark.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"],"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,MACE,yBACA,iBAEF,GACE,SAEF,SACE,qBAKF,SACE,iCCpFF,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,oBCNF,YC2CE,WACE,kHC5CF,cCFgB,IDGhB,iBEH0B,KFI1B,WACA,QGkBW,KHjBX,gBACA,yBIiBE,UCdc,KDed,eAOF,4BJlBE,QMVU,KFoBV,UCfc,KDgBd,0BAOF,4BN3BA,UACA,yBACA,oBACA,iBACA,gBAEA,kBACE,QQVU,IRaZ,oBEIA,YOZ0B,IPa1B,6BACA,eMnBY,INoBZ,cMpBY,IReV,gBACA,gBAGF,kBACE,aACA,cAEA,6BACE,aACA,cACA,YACA,eACA,cAGF,mCACE,kBACA,MQjCQ,IRkCR,iBACA,cAGF,yBACE,kBACA,MACA,OACA,QACA,SAIJ,mBUhDA,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cV4CE,cACA,cAGF,mBACE,YSjDwB,ITkDxB,iBACA,6BACA,YQxDU,IRyDV,cAGF,4BACE,sCAGF,oBACE,UAMI,kDACE,YACA,gBAGF,wDACE,eACA,gBAIJ,wCACE,cACA,aQpFM,IGHd,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,kBfmDE,6HajEA,WACA,gBACA,kBEvBF,sDACE,MRfU,KQgBV,ORhBU,KQmBZ,4DACE,sCACA,4BACA,cRtBU,KQyBR,6BAMJ,yHAEE,iBA9BwE,YAgD1E,yCACE,aAGF,qEACE,mBFjBA,0CGhCF,+BAaE,mBHqBE,iBD/BoB,oBCgCpB,kBGhCJ,wDACE,mBAGF,8DACE,aCVJ,eACE,MCwBa,QDvBb,aACA,iBACA,8BACA,uBACA,kBAGA,6CAGE,OAde,KAiBjB,iDACE,YVnBU,IUqBV,uFACE,aVtBQ,IU0BZ,2CACE,aV3BU,IU6BV,iFACE,YV9BQ,IUmCV,4EACE,eAIJ,iCACE,iBCzBoB,QD4BtB,2BACE,kBACA,MACA,QACA,SACA,OACA,WAGF,uBACE,eACA,aACA,uBACA,mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBZtDE,UCfc,KDgBd,0BAOF,4BYgDE,cACA,gBACA,wBACA,qBACA,mBRnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cQgFE,kCE0DF,eACA,2BACA,kCACA,8BACA,4BFzDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBZhFE,UCfc,KDgBd,0BAOF,4BY0EE,iBACA,cACA,YV1GU,IU2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MC5GgB,QDiHd,8CACE,iBGvIR,4BACE,aACA,mBACA,uBACA,WACA,YfmBE,UCfc,KDgBd,0BAOF,4BezBA,MFckB,QGrBpB,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,kBACA,iBACA,UlBMgB,KkBLhB,YhBG0B,IgBD1B,wBxBuCA,WACE,kHC5CF,cCFgB,IDGhB,iBEH0B,KFI1B,WACA,QGkBW,KHjBX,gBACA,yBIiBE,UCdc,KDed,eAOF,4BJlBE,QMVU,KFoBV,UCfc,KDgBd,0BAOF,4BmBvBE,UACA,yBACA,oBACA,iBACA,gBAGF,uBvBGA,YOZ0B,IPa1B,6BACA,eMnBY,INoBZ,cMpBY,IiBgBV,gBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBC9BJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA","file":"theme_dark.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../src/_reset.scss","../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../src/components/tooltip/_tooltip.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/themes/amsterdam/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui/src/themes/amsterdam/global_styling/variables/_typography.scss","../../../node_modules/@elastic/eui/src/global_styling/variables/_size.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/themes/amsterdam/_colors_dark.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,MACE,yBACA,iBAEF,GACE,SAEF,SACE,qBAKF,SACE,iCCpFF,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,oBCNF,YC2CE,WACE,kHC5CF,cCFgB,IDGhB,iBEH0B,KFI1B,WACA,QGkBW,KHjBX,gBACA,yBIiBE,UCdc,KDed,eAOF,4BJlBE,QMVU,KFoBV,UCfc,KDgBd,0BAOF,4BN3BA,UACA,yBACA,oBACA,iBACA,gBAEA,kBACE,QQVU,IRaZ,oBEIA,YOZ0B,IPa1B,6BACA,eMnBY,INoBZ,cMpBY,IReV,gBACA,gBAGF,kBACE,aACA,cAEA,6BACE,aACA,cACA,YACA,eACA,cAGF,mCACE,kBACA,MQjCQ,IRkCR,iBACA,cAGF,yBACE,kBACA,MACA,OACA,QACA,SAIJ,mBUhDA,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cV4CE,cACA,cAGF,mBACE,YSjDwB,ITkDxB,iBACA,6BACA,YQxDU,IRyDV,cAGF,4BACE,sCAGF,oBACE,UAMI,kDACE,YACA,gBAGF,wDACE,eACA,gBAIJ,wCACE,cACA,aQpFM,IGHd,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,kBfmDE,6HajEA,WACA,gBACA,kBEvBF,sDACE,MRfU,KQgBV,ORhBU,KQmBZ,4DACE,sCACA,4BACA,cRtBU,KQyBR,6BAMJ,yHAEE,iBA9BwE,YAgD1E,yCACE,aAGF,qEACE,mBFjBA,0CGhCF,+BAaE,mBHqBE,iBD/BoB,oBCgCpB,kBGhCJ,wDACE,mBAGF,8DACE,aCVJ,eACE,MCwBa,QDvBb,aACA,iBACA,8BACA,uBACA,kBAGA,6CAGE,OAde,KAiBjB,iDACE,YVnBU,IUqBV,uFACE,aVtBQ,IU0BZ,2CACE,aV3BU,IU6BV,iFACE,YV9BQ,IUmCV,4EACE,eAIJ,iCACE,iBCzBoB,QD4BtB,2BACE,kBACA,MACA,QACA,SACA,OACA,WAGF,uBACE,eACA,aACA,uBACA,mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sBZtDE,UCfc,KDgBd,0BAOF,4BYgDE,cACA,gBACA,wBACA,qBACA,mBRnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cQgFE,kCE0DF,eACA,2BACA,kCACA,8BACA,4BFzDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sBZhFE,UCfc,KDgBd,0BAOF,4BY0EE,iBACA,cACA,YV1GU,IU2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MC5GgB,QDiHd,8CACE,iBGvIR,4BACE,aACA,mBACA,uBACA,WACA,YfmBE,UCfc,KDgBd,0BAOF,4BezBA,MFckB,QGrBpB,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,kBACA,iBACA,UlBMgB,KkBLhB,YhBG0B,IgBD1B,wBxBuCA,WACE,kHC5CF,cCFgB,IDGhB,iBEH0B,KFI1B,WACA,QGkBW,KHjBX,gBACA,yBIiBE,UCdc,KDed,eAOF,4BJlBE,QMVU,KFoBV,UCfc,KDgBd,0BAOF,4BmBvBE,UACA,yBACA,oBACA,iBACA,gBAGF,uBvBGA,YOZ0B,IPa1B,6BACA,eMnBY,INoBZ,cMpBY,IiBgBV,gBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBC9BJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,gBAEA,wBACE,+BAGF,yBACE,gCAIA,sCACE,kBAKF,wCACE,oBCrBN,eACE,kBACA,YACA,YACA,UACA,aACA,2BACA,wEAEA,sBACE,gBAGF,yBACE,gBACA,gBAGF,sBACE,iBACA,gBAGF,sBACE,kBACA,gBACA,iBACA,mBAGF,qBACE,gBAGF,oBACE,kBC5CJ,yBACE,kBACA,gBAEA,mCACE,OACA,QACA,MACA,SACA,YACA,WACA,kEACE,WACA,WAIJ,qCACE,OACA,QACA,WACA,MACA,SACA,YACA,oEACE,SACA,YAMJ,sCACE,kBACA,OACA,QACA,SACA,WAEF,wCACE,kBACA,MACA,SACA,OACA,YC5CJ,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YAGF,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:""}table{border-collapse:collapse;border-spacing:0}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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir=rtl] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir=rtl] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir=rtl] .echTooltip__value{margin-left:0;margin-right:8px}[id^=echTooltipPortal]{pointer-events:none}[id^=echAnchor]{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background: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;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size: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{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
1
+ *,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}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:""}table{border-collapse:collapse;border-spacing:0}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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";margin-left:8px;direction:ltr}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,.1)}.echTooltip--hidden{opacity:0}.echTooltip[dir=rtl] .echTooltip__item--container{padding:3px;padding-right:0}.echTooltip[dir=rtl] .echTooltip__item--backgroundColor{margin-right:0;margin-left:3px}.echTooltip[dir=rtl] .echTooltip__value{margin-left:0;margin-right:8px}[id^=echTooltipPortal]{pointer-events:none}[id^=echAnchor]{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background: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;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size: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{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 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;font-size:14px;font-size:1rem;line-height:1.7142857143rem;padding:12px;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}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}.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;overflow:hidden}.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}.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}.echMetricText__title{font-weight:400}.echMetricText__subtitle{padding-top:5px;font-weight:300}.echMetricText__extra{text-align:right;font-weight:400}.echMetricText__value{position:relative;font-weight:600;text-align:right;white-space:nowrap}.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--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%}.echSingleMetricChart--small{position:absolute;top:auto;left:auto;bottom:0;right:0;width:100px;height:30px}