@elastic/charts 52.0.0 → 53.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/chart_types/metric/renderer/dom/text.js +10 -7
  2. package/dist/chart_types/metric/renderer/dom/text.js.map +1 -1
  3. package/dist/chart_types/xy_chart/renderer/dom/annotations/tooltip_content.js +1 -0
  4. package/dist/chart_types/xy_chart/renderer/dom/annotations/tooltip_content.js.map +1 -1
  5. package/dist/components/tooltip/components/index.d.ts +2 -0
  6. package/dist/components/tooltip/components/index.d.ts.map +1 -1
  7. package/dist/components/tooltip/components/index.js +2 -0
  8. package/dist/components/tooltip/components/index.js.map +1 -1
  9. package/dist/components/tooltip/components/tooltip_container.d.ts +8 -0
  10. package/dist/components/tooltip/components/tooltip_container.d.ts.map +1 -0
  11. package/dist/components/tooltip/components/tooltip_container.js +16 -0
  12. package/dist/components/tooltip/components/tooltip_container.js.map +1 -0
  13. package/dist/components/tooltip/components/tooltip_header.d.ts.map +1 -1
  14. package/dist/components/tooltip/components/tooltip_header.js +2 -7
  15. package/dist/components/tooltip/components/tooltip_header.js.map +1 -1
  16. package/dist/components/tooltip/components/tooltip_provider.d.ts +22 -1
  17. package/dist/components/tooltip/components/tooltip_provider.d.ts.map +1 -1
  18. package/dist/components/tooltip/components/tooltip_provider.js +15 -13
  19. package/dist/components/tooltip/components/tooltip_provider.js.map +1 -1
  20. package/dist/components/tooltip/components/tooltip_table.d.ts +1 -1
  21. package/dist/components/tooltip/components/tooltip_table.d.ts.map +1 -1
  22. package/dist/components/tooltip/components/tooltip_table.js +12 -10
  23. package/dist/components/tooltip/components/tooltip_table.js.map +1 -1
  24. package/dist/components/tooltip/components/tooltip_table_body.js +1 -1
  25. package/dist/components/tooltip/components/tooltip_table_body.js.map +1 -1
  26. package/dist/components/tooltip/components/tooltip_table_color_cell.d.ts.map +1 -1
  27. package/dist/components/tooltip/components/tooltip_table_color_cell.js.map +1 -1
  28. package/dist/components/tooltip/components/tooltip_wrapper.js +1 -2
  29. package/dist/components/tooltip/components/tooltip_wrapper.js.map +1 -1
  30. package/dist/components/tooltip/placement.d.ts +2 -0
  31. package/dist/components/tooltip/placement.d.ts.map +1 -0
  32. package/dist/components/tooltip/placement.js +43 -0
  33. package/dist/components/tooltip/placement.js.map +1 -0
  34. package/dist/components/tooltip/tooltip.js +23 -8
  35. package/dist/components/tooltip/tooltip.js.map +1 -1
  36. package/dist/specs/tooltip.d.ts +20 -6
  37. package/dist/specs/tooltip.d.ts.map +1 -1
  38. package/dist/specs/tooltip.js +3 -0
  39. package/dist/specs/tooltip.js.map +1 -1
  40. package/dist/theme.scss +6 -3
  41. package/dist/theme_dark.css +1 -1
  42. package/dist/theme_dark.css.map +1 -1
  43. package/dist/theme_light.css +1 -1
  44. package/dist/theme_light.css.map +1 -1
  45. package/dist/theme_only_dark.css +1 -1
  46. package/dist/theme_only_dark.css.map +1 -1
  47. package/dist/theme_only_light.css +1 -1
  48. package/dist/theme_only_light.css.map +1 -1
  49. package/package.json +1 -1
  50. package/dist/components/tooltip/components/tooltip_body.d.ts +0 -2
  51. package/dist/components/tooltip/components/tooltip_body.d.ts.map +0 -1
  52. package/dist/components/tooltip/components/tooltip_body.js +0 -82
  53. package/dist/components/tooltip/components/tooltip_body.js.map +0 -1
@@ -74,8 +74,9 @@ exports.BasicTooltip = exports.Tooltip = exports.TooltipComponent = void 0;
74
74
  var react_1 = __importStar(require("react"));
75
75
  var react_redux_1 = require("react-redux");
76
76
  var redux_1 = require("redux");
77
- var tooltip_body_1 = require("./components/tooltip_body");
77
+ var components_1 = require("./components");
78
78
  var tooltip_provider_1 = require("./components/tooltip_provider");
79
+ var placement_1 = require("./placement");
79
80
  var colors_1 = require("../../common/colors");
80
81
  var specs_1 = require("../../specs");
81
82
  var mouse_1 = require("../../state/actions/mouse");
@@ -95,7 +96,7 @@ var light_theme_1 = require("../../utils/themes/light_theme");
95
96
  var portal_1 = require("../portal");
96
97
  var TooltipComponent = function (_a) {
97
98
  var _b, _c, _d, _e, _f, _g, _h;
98
- var _j = _a.tooltip, header = _j.header, footer = _j.footer, actions = _j.actions, headerFormatter = _j.headerFormatter, actionPrompt = _j.actionPrompt, pinningPrompt = _j.pinningPrompt, selectionPrompt = _j.selectionPrompt, actionsLoading = _j.actionsLoading, noActionsLoaded = _j.noActionsLoaded, maxVisibleTooltipItems = _j.maxVisibleTooltipItems, anchorRef = _a.anchorRef, info = _a.info, zIndex = _a.zIndex, position = _a.position, getChartContainerRef = _a.getChartContainerRef, settings = _a.settings, tooltipTheme = _a.tooltipTheme, visible = _a.visible, rotation = _a.rotation, chartId = _a.chartId, onPointerMove = _a.onPointerMove, backgroundColor = _a.backgroundColor, pinned = _a.pinned, selected = _a.selected, toggleSelectedTooltipItem = _a.toggleSelectedTooltipItem, setSelectedTooltipItems = _a.setSelectedTooltipItems, pinTooltip = _a.pinTooltip, canPinTooltip = _a.canPinTooltip, isBrushing = _a.isBrushing;
99
+ var _j = _a.tooltip, TooltipCustomHeader = _j.header, TooltipCustomBody = _j.body, TooltipCustomFooter = _j.footer, actions = _j.actions, headerFormatter = _j.headerFormatter, actionPrompt = _j.actionPrompt, pinningPrompt = _j.pinningPrompt, selectionPrompt = _j.selectionPrompt, actionsLoading = _j.actionsLoading, noActionsLoaded = _j.noActionsLoaded, maxVisibleTooltipItems = _j.maxVisibleTooltipItems, anchorRef = _a.anchorRef, info = _a.info, zIndex = _a.zIndex, position = _a.position, getChartContainerRef = _a.getChartContainerRef, settings = _a.settings, tooltipTheme = _a.tooltipTheme, visible = _a.visible, rotation = _a.rotation, chartId = _a.chartId, onPointerMove = _a.onPointerMove, backgroundColor = _a.backgroundColor, pinned = _a.pinned, selected = _a.selected, toggleSelectedTooltipItem = _a.toggleSelectedTooltipItem, setSelectedTooltipItems = _a.setSelectedTooltipItems, pinTooltip = _a.pinTooltip, canPinTooltip = _a.canPinTooltip, isBrushing = _a.isBrushing;
99
100
  var _k = __read((0, react_1.useState)(settings === null || settings === void 0 ? void 0 : settings.placement), 2), computedPlacement = _k[0], setComputedPlacement = _k[1];
100
101
  var chartRef = getChartContainerRef();
101
102
  var handleScroll = function (e) {
@@ -130,6 +131,7 @@ var TooltipComponent = function (_a) {
130
131
  })) !== null && _d !== void 0 ? _d : [])), false), [
131
132
  (_f = (_e = info === null || info === void 0 ? void 0 : info.header) === null || _e === void 0 ? void 0 : _e.label) !== null && _f !== void 0 ? _f : '',
132
133
  ], false));
134
+ var textDirectionality = isMostlyRTL ? 'rtl' : 'ltr';
133
135
  var columns = [
134
136
  {
135
137
  id: 'color',
@@ -183,12 +185,25 @@ var TooltipComponent = function (_a) {
183
185
  },
184
186
  ];
185
187
  var hideActions = ((_g = info === null || info === void 0 ? void 0 : info.disableActions) !== null && _g !== void 0 ? _g : false) || (info === null || info === void 0 ? void 0 : info.values.every(function (v) { return v.displayOnly; }));
186
- return (react_1.default.createElement(portal_1.TooltipPortal, { scope: "MainTooltip", zIndex: zIndex + 100, anchor: anchorRef !== null && anchorRef !== void 0 ? anchorRef : {
187
- position: position,
188
- appendRef: chartRef,
189
- }, settings: popperSettings, chartId: chartId, visible: visible, onPlacementChange: setComputedPlacement },
190
- react_1.default.createElement(tooltip_provider_1.TooltipProvider, { backgroundColor: backgroundColor, dir: isMostlyRTL ? 'rtl' : 'ltr', pinned: pinned, actionable: actions.length > 0 || !Array.isArray(actions), canPinTooltip: canPinTooltip, selected: selected, values: (_h = info === null || info === void 0 ? void 0 : info.values) !== null && _h !== void 0 ? _h : [], pinTooltip: pinTooltip, theme: tooltipTheme, maxItems: maxVisibleTooltipItems },
191
- react_1.default.createElement(tooltip_body_1.TooltipBody, { info: info, columns: columns, headerFormatter: headerFormatter, settings: settings, visible: visible, header: header, footer: footer, placement: computedPlacement, toggleSelected: toggleSelectedTooltipItem, setSelection: setSelectedTooltipItems, actions: hideActions || !canPinTooltip ? [] : actions, actionPrompt: actionPrompt, pinningPrompt: pinningPrompt, selectionPrompt: selectionPrompt, actionsLoading: actionsLoading, noActionsLoaded: noActionsLoaded }))));
188
+ if (!info || !visible) {
189
+ return null;
190
+ }
191
+ var actionable = actions.length > 0 || !Array.isArray(actions);
192
+ var hasHeader = TooltipCustomHeader !== 'none' && info.header;
193
+ var hasBody = TooltipCustomBody !== 'none' && info.values.length > 0;
194
+ var hasFooter = TooltipCustomFooter !== 'default' && TooltipCustomFooter !== 'none';
195
+ var headerBottomDividerVisibility = hasHeader && (hasBody || hasFooter);
196
+ var bodyBottomDividerVisibility = hasBody && hasFooter;
197
+ return (react_1.default.createElement(portal_1.TooltipPortal, { scope: "MainTooltip", zIndex: zIndex + 100, anchor: anchorRef !== null && anchorRef !== void 0 ? anchorRef : { position: position, appendRef: chartRef }, settings: popperSettings, chartId: chartId, visible: visible, onPlacementChange: setComputedPlacement },
198
+ react_1.default.createElement(tooltip_provider_1.TooltipProvider, { backgroundColor: backgroundColor, dir: textDirectionality, pinned: pinned, actionable: actionable, canPinTooltip: canPinTooltip, selected: selected, setSelection: setSelectedTooltipItems, toggleSelected: toggleSelectedTooltipItem, values: (_h = info === null || info === void 0 ? void 0 : info.values) !== null && _h !== void 0 ? _h : [], pinTooltip: pinTooltip, theme: tooltipTheme, maxItems: maxVisibleTooltipItems },
199
+ react_1.default.createElement("div", { className: "echTooltip__outerWrapper", style: (0, placement_1.getStylesFromPlacement)(actionable, tooltipTheme, computedPlacement) }, (settings === null || settings === void 0 ? void 0 : settings.customTooltip) ? (react_1.default.createElement(settings.customTooltip, __assign({}, info, { dir: textDirectionality, pinned: pinned, selected: selected, setSelection: setSelectedTooltipItems, toggleSelected: toggleSelectedTooltipItem, headerFormatter: headerFormatter, backgroundColor: backgroundColor }))) : (react_1.default.createElement(components_1.TooltipWrapper, { actions: hideActions || !canPinTooltip ? [] : actions, actionPrompt: actionPrompt, pinningPrompt: pinningPrompt, selectionPrompt: selectionPrompt, actionsLoading: actionsLoading, noActionsLoaded: noActionsLoaded },
200
+ TooltipCustomHeader === 'none' ? null : TooltipCustomHeader === 'default' ? (react_1.default.createElement(components_1.TooltipHeader, { header: info.header, formatter: headerFormatter })) : (react_1.default.createElement(components_1.TooltipHeader, null,
201
+ react_1.default.createElement(TooltipCustomHeader, { items: info.values, header: info.header }))),
202
+ headerBottomDividerVisibility && react_1.default.createElement(components_1.TooltipDivider, null),
203
+ TooltipCustomBody === 'none' ? null : TooltipCustomBody === 'default' ? (react_1.default.createElement(components_1.TooltipTable, { columns: columns, items: info.values, pinned: pinned, onSelect: toggleSelectedTooltipItem, selected: selected, maxHeight: (0, components_1.computeTableMaxHeight)(pinned, columns, tooltipTheme.maxTableHeight, maxVisibleTooltipItems) })) : (react_1.default.createElement(TooltipCustomBody, { items: info.values, header: info.header })),
204
+ bodyBottomDividerVisibility && react_1.default.createElement(components_1.TooltipDivider, null),
205
+ TooltipCustomFooter === 'default' || TooltipCustomFooter === 'none' ? null : (react_1.default.createElement(components_1.TooltipFooter, null,
206
+ react_1.default.createElement(TooltipCustomFooter, { items: info.values, header: info.header })))))))));
192
207
  };
193
208
  exports.TooltipComponent = TooltipComponent;
194
209
  exports.TooltipComponent.displayName = 'Tooltip';
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../../src/components/tooltip/tooltip.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../../src/components/tooltip/tooltip.tsx"],"names":[],"mappings":"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"}
@@ -124,14 +124,28 @@ export interface TooltipSpec<D extends BaseDatum = Datum, SI extends SeriesIdent
124
124
  showNullValues: boolean;
125
125
  /**
126
126
  * Custom header for tooltip. Ignored when used with `customTooltip`.
127
- * \> Note: This is not the table headers but spans the entire tooltip.
127
+ * Note: This is not the table headers but spans the entire tooltip.
128
128
  */
129
- header?: string | ((items: TooltipValue<D, SI>[]) => ReactNode);
129
+ header: 'default' | 'none' | ComponentType<{
130
+ items: TooltipValue<D, SI>[];
131
+ header: TooltipValue<D, SI> | null;
132
+ }>;
133
+ /**
134
+ * Custom body for tooltip. Ignored when used with `customTooltip`.
135
+ * Note: This is not the table body but spans the entire tooltip.
136
+ */
137
+ body: 'default' | 'none' | ComponentType<{
138
+ items: TooltipValue<D, SI>[];
139
+ header: TooltipValue<D, SI> | null;
140
+ }>;
130
141
  /**
131
142
  * Custom footer for tooltip. Ignored when used with `customTooltip`.
132
- * \> Note: This is not the table footers but spans the entire tooltip.
143
+ * Note: This is not the table footers but spans the entire tooltip.
133
144
  */
134
- footer?: string | ((items: TooltipValue<D, SI>[]) => ReactNode);
145
+ footer: 'default' | 'none' | ComponentType<{
146
+ items: TooltipValue<D, SI>[];
147
+ header: TooltipValue<D, SI> | null;
148
+ }>;
135
149
  /**
136
150
  * Actions to enable tooltip selection
137
151
  */
@@ -187,14 +201,14 @@ export declare const DEFAULT_TOOLTIP_SNAP = true;
187
201
  * Configure tooltip for chart
188
202
  * @public
189
203
  */
190
- export declare const tooltipBuildProps: import("../state/spec_factory").BuildProps<TooltipSpec<any, SeriesIdentifier>, "id" | "chartType" | "specType", "type" | "actions" | "selectionPrompt" | "actionsLoading" | "noActionsLoaded" | "snap" | "showNullValues" | "actionPrompt" | "pinningPrompt" | "maxTooltipItems" | "maxVisibleTooltipItems", "footer" | "header" | "fallbackPlacements" | "placement" | "offset" | "boundary" | "boundaryPadding" | "headerFormatter" | "unit" | "customTooltip" | "stickTo", never>;
204
+ export declare const tooltipBuildProps: import("../state/spec_factory").BuildProps<TooltipSpec<any, SeriesIdentifier>, "id" | "chartType" | "specType", "body" | "footer" | "header" | "type" | "actions" | "selectionPrompt" | "actionsLoading" | "noActionsLoaded" | "snap" | "showNullValues" | "actionPrompt" | "pinningPrompt" | "maxTooltipItems" | "maxVisibleTooltipItems", "fallbackPlacements" | "placement" | "offset" | "boundary" | "boundaryPadding" | "headerFormatter" | "unit" | "customTooltip" | "stickTo", never>;
191
205
  /** @public */
192
206
  export declare const DEFAULT_TOOLTIP_SPEC: TooltipSpec;
193
207
  /**
194
208
  * Adds settings spec to chart specs
195
209
  * @public
196
210
  */
197
- export declare const Tooltip: <D extends BaseDatum = any, SI extends SeriesIdentifier = SeriesIdentifier>(props: SFProps<TooltipSpec<D, SI>, "id" | "chartType" | "specType", "type" | "actions" | "selectionPrompt" | "actionsLoading" | "noActionsLoaded" | "snap" | "showNullValues" | "actionPrompt" | "pinningPrompt" | "maxTooltipItems" | "maxVisibleTooltipItems", "footer" | "header" | "fallbackPlacements" | "placement" | "offset" | "boundary" | "boundaryPadding" | "headerFormatter" | "unit" | "customTooltip" | "stickTo", never>) => null;
211
+ export declare const Tooltip: <D extends BaseDatum = any, SI extends SeriesIdentifier = SeriesIdentifier>(props: SFProps<TooltipSpec<D, SI>, "id" | "chartType" | "specType", "body" | "footer" | "header" | "type" | "actions" | "selectionPrompt" | "actionsLoading" | "noActionsLoaded" | "snap" | "showNullValues" | "actionPrompt" | "pinningPrompt" | "maxTooltipItems" | "maxVisibleTooltipItems", "fallbackPlacements" | "placement" | "offset" | "boundary" | "boundaryPadding" | "headerFormatter" | "unit" | "customTooltip" | "stickTo", never>) => null;
198
212
  /**
199
213
  * This interface describe the properties of single value shown in the tooltip
200
214
  * @public
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/specs/tooltip.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/specs/tooltip.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EAAY,cAAc,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAG/B,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAgB,OAAO,EAAkB,MAAM,uBAAuB,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAkB,MAAM,iBAAiB,CAAC;AAExD;;;GAGG;AACH,MAAM,WAAW,YAAY,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,EAAE,EAAE,SAAS,gBAAgB,GAAG,gBAAgB,CACvG,SAAQ,YAAY,CAAC,CAAC,CAAC;IACvB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;IACb;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,gBAAgB,EAAE,EAAE,CAAC;IACrB;;;OAGG;IACH,KAAK,CAAC,EAAE,CAAC,CAAC;CAOX;AAED;;;GAGG;AACH,MAAM,MAAM,qBAAqB,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,EAAE,EAAE,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,CAC/G,IAAI,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,KACtB,GAAG,CAAC,OAAO,GAAG,MAAM,CAAC;AAE1B;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG,WAAW,GAAG,YAAY,CAAC;AAmBzD;;;GAGG;AACH,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,EAAE,EAAE,SAAS,gBAAgB,GAAG,gBAAgB,IAAI;IACvG;;OAEG;IACH,KAAK,EAAE,MAAM,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC;IAClG;;OAEG;IACH,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC;IACrF;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,GAAG,MAAM,CAAC;IAClG;;OAEG;IACH,QAAQ,EAAE,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,IAAI,CAAC;CACtF,CAAC;AAEF;;;GAGG;AACH,MAAM,WAAW,WAAW,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,EAAE,EAAE,SAAS,gBAAgB,GAAG,gBAAgB,CACtG,SAAQ,IAAI,EACV,qBAAqB,CAAC,OAAO,CAAC;IAChC;;;OAGG;IACH,IAAI,EAAE,WAAW,CAAC;IAElB;;;OAGG;IACH,IAAI,EAAE,OAAO,CAAC;IAEd;;OAEG;IACH,eAAe,CAAC,EAAE,qBAAqB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,aAAa,CAAC,EAAE,aAAa,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IAErC;;;OAGG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;IAEzB;;;OAGG;IACH,cAAc,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,MAAM,EAAE,SAAS,GAAG,MAAM,GAAG,aAAa,CAAC;QAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC;QAAC,MAAM,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,IAAI,CAAA;KAAE,CAAC,CAAC;IAEjH;;;OAGG;IACH,IAAI,EAAE,SAAS,GAAG,MAAM,GAAG,aAAa,CAAC;QAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC;QAAC,MAAM,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,IAAI,CAAA;KAAE,CAAC,CAAC;IAC/G;;;OAGG;IACH,MAAM,EAAE,SAAS,GAAG,MAAM,GAAG,aAAa,CAAC;QAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC;QAAC,MAAM,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,IAAI,CAAA;KAAE,CAAC,CAAC;IAEjH;;OAEG;IACH,OAAO,EACH,aAAa,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,GACtB,CAAC,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC,aAAa,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC;IAEpG;;OAEG;IACH,cAAc,EAAE,MAAM,GAAG,aAAa,CAAC;QAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IAE5E;;OAEG;IACH,eAAe,EAAE,MAAM,GAAG,aAAa,CAAC;QAAE,QAAQ,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAA;KAAE,CAAC,CAAC;IAE7E;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,sBAAsB,EAAE,MAAM,CAAC;CAChC;AAED;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,YAA6B,CAAC;AAE/D;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,OAAO,CAAC;AAEzC;;;GAGG;AACH,eAAO,MAAM,iBAAiB,+dAsB7B,CAAC;AAEF,cAAc;AACd,eAAO,MAAM,oBAAoB,EAAE,WAGlC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,OAAO,wgBAiBnB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,YAAY,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,EAAE,EAAE,SAAS,gBAAgB,GAAG,gBAAgB,IAAI,OAAO,CAC7G,WAAW,CAAC,CAAC,EAAE,EAAE,CAAC,EAClB,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC,WAAW,CAAC,EAC7C,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC,UAAU,CAAC,EAC5C,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC,WAAW,CAAC,EAC7C,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC,UAAU,CAAC,CAC7C,CAAC"}
@@ -50,6 +50,9 @@ exports.tooltipBuildProps = (0, spec_factory_1.buildSFProps)()({
50
50
  noActionsLoaded: 'No actions available',
51
51
  maxTooltipItems: 10,
52
52
  maxVisibleTooltipItems: 10,
53
+ header: 'default',
54
+ body: 'default',
55
+ footer: 'default',
53
56
  });
54
57
  exports.DEFAULT_TOOLTIP_SPEC = __assign(__assign({}, exports.tooltipBuildProps.defaults), exports.tooltipBuildProps.overrides);
55
58
  var Tooltip = function (props) {
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../src/specs/tooltip.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAUA,yCAAoE;AAGpE,8CAA2C;AAM3C,sDAA8E;AAE9E,0CAAwD;AAiExD,SAAgB,sBAAsB,CAAC,IAAiB;IACtD,OAAO,IAAI,KAAK,uBAAW,CAAC,cAAc,IAAI,IAAI,KAAK,uBAAW,CAAC,UAAU,CAAC;AAChF,CAAC;AAFD,wDAEC;AAGD,SAAgB,mBAAmB,CAAC,IAAiB;IACnD,OAAO,IAAI,KAAK,uBAAW,CAAC,MAAM,CAAC;AACrC,CAAC;AAFD,kDAEC;AAGD,SAAgB,cAAc,CAAC,OAAoB,EAAE,QAAsB,EAAE,eAAuB;IAAvB,gCAAA,EAAA,uBAAuB;IAClG,IAAI,CAAC,eAAe;QAAE,OAAO,OAAO,CAAC,IAAI,CAAC;IAClC,IAAA,OAAO,GAAK,QAAQ,CAAC,qBAAqB,CAAC,OAAO,QAA3C,CAA4C;IAC3D,OAAO,OAAO,CAAC,CAAC,CAAC,uBAAW,CAAC,cAAc,CAAC,CAAC,CAAC,uBAAW,CAAC,IAAI,CAAC;AACjE,CAAC;AAJD,wCAIC;AAwIY,QAAA,oBAAoB,GAAG,uBAAW,CAAC,cAAc,CAAC;AAQlD,QAAA,oBAAoB,GAAG,IAAI,CAAC;AAM5B,QAAA,iBAAiB,GAAG,IAAA,2BAAY,GAAe,CAC1D;IACE,EAAE,EAAE,sBAA+B;IACnC,SAAS,EAAE,uBAAS,CAAC,MAAM;IAC3B,QAAQ,EAAE,oBAAQ,CAAC,OAAO;CAC3B,EACD;IACE,IAAI,EAAE,uBAAW,CAAC,cAAc;IAChC,IAAI,EAAE,IAAI;IACV,cAAc,EAAE,KAAK;IACrB,OAAO,EAAE,EAAE;IACX,YAAY,EAAE,6BAA6B;IAC3C,aAAa,EAAE,4BAA4B;IAC3C,eAAe,EAAE,wBAAwB;IACzC,cAAc,EAAE,oBAAoB;IACpC,eAAe,EAAE,sBAAsB;IACvC,eAAe,EAAE,EAAE;IACnB,sBAAsB,EAAE,EAAE;CAC3B,CACF,CAAC;AAGW,QAAA,oBAAoB,yBAC5B,yBAAiB,CAAC,QAAQ,GAC1B,yBAAiB,CAAC,SAAS,EAC9B;AAMK,IAAM,OAAO,GAAG,UACrB,KAMC;IAEO,IAAA,QAAQ,GAAgB,yBAAiB,SAAjC,EAAE,SAAS,GAAK,yBAAiB,UAAtB,CAAuB;IAElD,IAAA,6BAAc,iCACT,QAAQ,GACR,IAAA,uBAAc,EAAC,KAAK,CAAC,GACrB,SAAS,EACZ,CAAC;IACH,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAjBW,QAAA,OAAO,WAiBlB"}
1
+ {"version":3,"file":"tooltip.js","sourceRoot":"","sources":["../../src/specs/tooltip.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAUA,yCAAoE;AAGpE,8CAA2C;AAM3C,sDAA8E;AAE9E,0CAAwD;AAiExD,SAAgB,sBAAsB,CAAC,IAAiB;IACtD,OAAO,IAAI,KAAK,uBAAW,CAAC,cAAc,IAAI,IAAI,KAAK,uBAAW,CAAC,UAAU,CAAC;AAChF,CAAC;AAFD,wDAEC;AAGD,SAAgB,mBAAmB,CAAC,IAAiB;IACnD,OAAO,IAAI,KAAK,uBAAW,CAAC,MAAM,CAAC;AACrC,CAAC;AAFD,kDAEC;AAGD,SAAgB,cAAc,CAAC,OAAoB,EAAE,QAAsB,EAAE,eAAuB;IAAvB,gCAAA,EAAA,uBAAuB;IAClG,IAAI,CAAC,eAAe;QAAE,OAAO,OAAO,CAAC,IAAI,CAAC;IAClC,IAAA,OAAO,GAAK,QAAQ,CAAC,qBAAqB,CAAC,OAAO,QAA3C,CAA4C;IAC3D,OAAO,OAAO,CAAC,CAAC,CAAC,uBAAW,CAAC,cAAc,CAAC,CAAC,CAAC,uBAAW,CAAC,IAAI,CAAC;AACjE,CAAC;AAJD,wCAIC;AA6IY,QAAA,oBAAoB,GAAG,uBAAW,CAAC,cAAc,CAAC;AAQlD,QAAA,oBAAoB,GAAG,IAAI,CAAC;AAM5B,QAAA,iBAAiB,GAAG,IAAA,2BAAY,GAAe,CAC1D;IACE,EAAE,EAAE,sBAA+B;IACnC,SAAS,EAAE,uBAAS,CAAC,MAAM;IAC3B,QAAQ,EAAE,oBAAQ,CAAC,OAAO;CAC3B,EACD;IACE,IAAI,EAAE,uBAAW,CAAC,cAAc;IAChC,IAAI,EAAE,IAAI;IACV,cAAc,EAAE,KAAK;IACrB,OAAO,EAAE,EAAE;IACX,YAAY,EAAE,6BAA6B;IAC3C,aAAa,EAAE,4BAA4B;IAC3C,eAAe,EAAE,wBAAwB;IACzC,cAAc,EAAE,oBAAoB;IACpC,eAAe,EAAE,sBAAsB;IACvC,eAAe,EAAE,EAAE;IACnB,sBAAsB,EAAE,EAAE;IAC1B,MAAM,EAAE,SAAS;IACjB,IAAI,EAAE,SAAS;IACf,MAAM,EAAE,SAAS;CAClB,CACF,CAAC;AAGW,QAAA,oBAAoB,yBAC5B,yBAAiB,CAAC,QAAQ,GAC1B,yBAAiB,CAAC,SAAS,EAC9B;AAMK,IAAM,OAAO,GAAG,UACrB,KAMC;IAEO,IAAA,QAAQ,GAAgB,yBAAiB,SAAjC,EAAE,SAAS,GAAK,yBAAiB,UAAtB,CAAuB;IAElD,IAAA,6BAAc,iCACT,QAAQ,GACR,IAAA,uBAAc,EAAC,KAAK,CAAC,GACrB,SAAS,EACZ,CAAC;IACH,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAjBW,QAAA,OAAO,WAiBlB"}
package/dist/theme.scss CHANGED
@@ -134,9 +134,12 @@ $tableRowHoverSelectedColor: tintOrShade($euiFocusBackgroundColor, 0, 10%);
134
134
  }
135
135
 
136
136
  &__tableWrapper {
137
- overflow: auto;
137
+ overflow: hidden;
138
138
  @include euiScrollBar;
139
139
  background-color: $euiColorEmptyShade;
140
+ &--pinned {
141
+ overflow: auto;
142
+ }
140
143
  }
141
144
 
142
145
  &__table {
@@ -152,7 +155,7 @@ $tableRowHoverSelectedColor: tintOrShade($euiFocusBackgroundColor, 0, 10%);
152
155
  &__tableFooter {
153
156
  .echTooltip__tableCell {
154
157
  cursor: default;
155
- font-weight: $euiFontWeightBold;
158
+ font-weight: $euiFontWeightSemiBold;
156
159
  background-color: $euiColorEmptyShade;
157
160
  position: sticky;
158
161
  z-index: 1;
@@ -316,7 +319,7 @@ $tableRowHoverSelectedColor: tintOrShade($euiFocusBackgroundColor, 0, 10%);
316
319
  }
317
320
 
318
321
  .echTooltipFooter {
319
- font-weight: $euiFontWeightBold;
322
+ font-weight: $euiFontWeightSemiBold;
320
323
  margin-top: 0;
321
324
  padding: $euiSizeXS ($euiSizeXS * 2);
322
325
  }
@@ -1 +1 @@
1
- *,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter",-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;max-width:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#1d1e24;color:#dfe5ef;overflow:hidden;cursor:default;-webkit-transition:opacity 250ms,-webkit-box-shadow 400ms;transition:opacity 250ms,-webkit-box-shadow 400ms;transition:box-shadow 400ms,opacity 250ms;transition:box-shadow 400ms,opacity 250ms,-webkit-box-shadow 400ms;border:1px solid #1d1e24}.echTooltip .euiHorizontalRule{background-color:#333}.echTooltip__outerWrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.echTooltip--pinned{-webkit-box-shadow:0 .7px 1.4px rgba(0,0,0,.175),0 1.9px 4px rgba(0,0,0,.125),0 4.5px 10px rgba(0,0,0,.125);box-shadow:0 .7px 1.4px rgba(0,0,0,.175),0 1.9px 4px rgba(0,0,0,.125),0 4.5px 10px rgba(0,0,0,.125);pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.echTooltip--pinned .echTooltip__tableRow--selectable{cursor:pointer}.echTooltip--pinned .echTooltipActions{pointer-events:auto}.echTooltip--pinned .echTooltip__tableWrapper{pointer-events:auto}.echTooltip .echTooltip__tableCell--truncate{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}.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__tableWrapper{overflow:auto;scrollbar-color:rgba(152,162,179,.5) transparent;scrollbar-width:thin;background-color:#1d1e24}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echTooltip__tableWrapper::-webkit-scrollbar-corner,.echTooltip__tableWrapper::-webkit-scrollbar-track{background-color:transparent}.echTooltip__table{display:grid;width:100%}.echTooltip__table--noGrid{display:table}.echTooltip__tableHeader .echTooltip__tableCell,.echTooltip__tableFooter .echTooltip__tableCell{cursor:default;font-weight:700;background-color:#1d1e24;position:sticky;z-index:1}.echTooltip__tableHeader,.echTooltip__tableBody,.echTooltip__tableFooter,.echTooltip__tableRow{display:contents}.echTooltip__tableHeader{margin-bottom:0;top:0}.echTooltip__tableHeader .echTooltip__tableCell{border-bottom:solid 1px #343741;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #343741;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(27,81,120,.28)}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(27,81,120,.28)}.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(54,162,239,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(52,55,65,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:11px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip:not(.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--bg)::before{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:11px}.echTooltip__colorCell--static{width:5px}.echTooltip__colorStrip,.echTooltip__colorStrip--bg,.echTooltip__colorStrip--spacer{position:absolute;top:0;left:0;bottom:0;width:5px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStrip::before{opacity:0;content:"✓";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:95%;font-size:90%;font-weight:bold;-webkit-transition:opacity 200ms;transition:opacity 200ms}.echTooltip__colorStrip--spacer{left:auto;right:0;width:6px;min-width:6px}.echTooltip__label{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}.echTooltipHeader{font-weight:600;margin-bottom:0;padding:4px 8px}.echTooltipFooter{font-weight:700;margin-top:0;padding:4px 8px}.echTooltipDivider{width:100%;border-bottom:solid 1px #343741}@-webkit-keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}@keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}.echTooltipPrompt{position:relative;width:100%;z-index:-1}.echTooltipPrompt__content{color:#7a7f89;font-style:normal;font-size:12px;line-height:26px;padding:0 8px}.echTooltipPrompt.slideDown{opacity:0;top:-26px;height:0;-webkit-animation:promptSlideDown .25s forwards;animation:promptSlideDown .25s forwards;-webkit-animation-delay:1.5s;animation-delay:1.5s}.echTooltipActions{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;font-style:normal;font-size:12px;line-height:21px}.echTooltipActions__prompt{position:relative;height:26px;padding:0 8px;line-height:26px;width:100%;color:#7a7f89;font-style:normal;font-size:12px}.echTooltipActions__action{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;text-align:left;width:100%;padding:0 8px;line-height:21px;cursor:pointer;color:#dfe5ef}.echTooltipActions__action:nth-child(2){padding-top:4px}.echTooltipActions__action:last-child{padding-bottom:2px}.echTooltipActions__action:hover,.echTooltipActions__action:focus{text-decoration:underline}.echTooltipActions__action[disabled]{cursor:default;color:#515761}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}[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--inert{pointer-events:none}.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:260px}.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;max-width:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#1d1e24;color:#dfe5ef;overflow:hidden;cursor:default;-webkit-transition:opacity 250ms,-webkit-box-shadow 400ms;transition:opacity 250ms,-webkit-box-shadow 400ms;transition:box-shadow 400ms,opacity 250ms;transition:box-shadow 400ms,opacity 250ms,-webkit-box-shadow 400ms;border:1px solid #1d1e24}.echTooltip .euiHorizontalRule{background-color:#333}.echTooltip__outerWrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.echTooltip--pinned{-webkit-box-shadow:0 .7px 1.4px rgba(0,0,0,.175),0 1.9px 4px rgba(0,0,0,.125),0 4.5px 10px rgba(0,0,0,.125);box-shadow:0 .7px 1.4px rgba(0,0,0,.175),0 1.9px 4px rgba(0,0,0,.125),0 4.5px 10px rgba(0,0,0,.125);pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.echTooltip--pinned .echTooltip__tableRow--selectable{cursor:pointer}.echTooltip--pinned .echTooltipActions{pointer-events:auto}.echTooltip--pinned .echTooltip__tableWrapper{pointer-events:auto}.echTooltip .echTooltip__tableCell--truncate{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}.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__tableWrapper{overflow:hidden;scrollbar-color:rgba(152,162,179,.5) transparent;scrollbar-width:thin;background-color:#1d1e24}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echTooltip__tableWrapper::-webkit-scrollbar-corner,.echTooltip__tableWrapper::-webkit-scrollbar-track{background-color:transparent}.echTooltip__tableWrapper--pinned{overflow:auto}.echTooltip__table{display:grid;width:100%}.echTooltip__table--noGrid{display:table}.echTooltip__tableHeader .echTooltip__tableCell,.echTooltip__tableFooter .echTooltip__tableCell{cursor:default;font-weight:600;background-color:#1d1e24;position:sticky;z-index:1}.echTooltip__tableHeader,.echTooltip__tableBody,.echTooltip__tableFooter,.echTooltip__tableRow{display:contents}.echTooltip__tableHeader{margin-bottom:0;top:0}.echTooltip__tableHeader .echTooltip__tableCell{border-bottom:solid 1px #343741;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #343741;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(27,81,120,.28)}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(27,81,120,.28)}.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(54,162,239,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(52,55,65,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:11px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip:not(.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--bg)::before{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:11px}.echTooltip__colorCell--static{width:5px}.echTooltip__colorStrip,.echTooltip__colorStrip--bg,.echTooltip__colorStrip--spacer{position:absolute;top:0;left:0;bottom:0;width:5px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStrip::before{opacity:0;content:"✓";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:95%;font-size:90%;font-weight:bold;-webkit-transition:opacity 200ms;transition:opacity 200ms}.echTooltip__colorStrip--spacer{left:auto;right:0;width:6px;min-width:6px}.echTooltip__label{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}.echTooltipHeader{font-weight:600;margin-bottom:0;padding:4px 8px}.echTooltipFooter{font-weight:600;margin-top:0;padding:4px 8px}.echTooltipDivider{width:100%;border-bottom:solid 1px #343741}@-webkit-keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}@keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}.echTooltipPrompt{position:relative;width:100%;z-index:-1}.echTooltipPrompt__content{color:#7a7f89;font-style:normal;font-size:12px;line-height:26px;padding:0 8px}.echTooltipPrompt.slideDown{opacity:0;top:-26px;height:0;-webkit-animation:promptSlideDown .25s forwards;animation:promptSlideDown .25s forwards;-webkit-animation-delay:1.5s;animation-delay:1.5s}.echTooltipActions{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;font-style:normal;font-size:12px;line-height:21px}.echTooltipActions__prompt{position:relative;height:26px;padding:0 8px;line-height:26px;width:100%;color:#7a7f89;font-style:normal;font-size:12px}.echTooltipActions__action{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;text-align:left;width:100%;padding:0 8px;line-height:21px;cursor:pointer;color:#dfe5ef}.echTooltipActions__action:nth-child(2){padding-top:4px}.echTooltipActions__action:last-child{padding-bottom:2px}.echTooltipActions__action:hover,.echTooltipActions__action:focus{text-decoration:underline}.echTooltipActions__action[disabled]{cursor:default;color:#515761}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}[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--inert{pointer-events:none}.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:260px}.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":["../../../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","../src/components/tooltip/components/_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/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/mixins/_typography.scss","../src/components/tooltip/components/_tooltip_header.scss","../src/components/tooltip/components/_tooltip_footer.scss","../src/components/tooltip/components/_tooltip_divider.scss","../src/components/tooltip/components/_tooltip_prompt.scss","../src/components/tooltip/components/_tooltip_actions.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","../src/components/_mixins.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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6BvBpB,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,UnCDc,KmCEd,YlCJwB,IkCO1B,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","../src/components/tooltip/components/_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/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/mixins/_typography.scss","../src/components/tooltip/components/_tooltip_header.scss","../src/components/tooltip/components/_tooltip_footer.scss","../src/components/tooltip/components/_tooltip_divider.scss","../src/components/tooltip/components/_tooltip_prompt.scss","../src/components/tooltip/components/_tooltip_actions.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","../src/components/_mixins.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":"CAQA,qBACE,sBAGF,2ZAaE,SACA,UACA,YACA,wBAGF,kBACE,YC9BkB,+CDiCpB,oBACE,oBACA,oBACA,kBAGF,6BACE,YEzCc,sIF4ChB,GACE,kBAGF,OACE,YG3C0B,IH+C5B,8EAEE,cAGF,KInBE,YFvCc,sIEwCd,YDrC0B,ICsC1B,sBACA,8BACA,0BACA,oBJgBA,UEtDgB,KFuDhB,MK9Ba,QL+Bb,YACA,iBKpCuB,QLuCzB,KACE,YEpDkB,YFuDpB,QACE,aAIA,0BACE,YAGF,uBACE,aAIJ,EACE,qBACA,MK7EgB,QL+EhB,QACE,qBAGF,QACE,qBACA,aAIJ,6BACE,eAGF,MACE,SACA,UAEA,eACE,UAIJ,OACE,gBACA,YACA,UACA,SACA,aACA,kBACA,cACA,gBAEA,aACE,eAIJ,MACE,gBAGF,aACE,YAGF,wDAEE,WACA,aAGF,MACE,yBACA,iBAGF,GACE,SAGF,SACE,qBAOF,SACE,iCM5JF,KCGE,6CAOA,wBACE,MCdU,KDeV,OCfU,KDkBZ,8BACE,sCACA,4BACA,cCrBU,KD0BR,yBAIJ,6DAEE,iBD5BwC,QGI5C,SACE,iCCTF,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,oBCQF,YCwBE,WACE,kHCvCF,cCIgB,IDHhB,iBEH0B,KFI1B,MVEc,KUDd,QGkBW,KHjBX,gBACA,yBACA,QPLY,IJoBV,UFdc,KEed,0BAOF,4BSZA,UACA,eACA,oBACA,iBACA,iBRJmB,QQKnB,MRQa,QQPb,gBACA,eACA,0CACA,yBElBA,+BACE,iBEVoB,KJ6BtB,0BACE,aAGF,oBCnBA,WACE,yFDoBA,oBACA,iBAEA,sDACE,eAGF,uCACE,oBAEF,8CACE,oBAIJ,6CMyFA,eACA,2BACA,kCACA,8BNxFA,uBACE,gBACA,aACA,8BAGF,0BACE,gBNxDF,iDAGE,qBMuDA,iBR7CiB,QENnB,6CACE,MCdU,KDeV,OCfU,KDkBZ,mDACE,sCACA,4BACA,cCrBU,KDwBR,6BAMJ,uGAEE,iBA7BwE,YM8DxE,kCACE,cAIJ,mBACE,aACA,WAEA,2BACE,cAMF,gGACE,eACA,YV7EsB,IU8EtB,iBRjEe,QQkEf,gBACA,UAIJ,+FAME,iBAGF,yBACE,gBACA,MAEA,gDACE,cA9FQ,kBA+FR,MAIJ,yBACE,aACA,SAEA,gDACE,WAxGQ,kBAyGR,SAIJ,mDACE,YAIA,0EACE,gBAIA,wNAEE,iBAtHgB,oBA2HlB,oOAEE,iBA5HqB,oBAgIvB,wOAEE,iBApIa,qBAyInB,sBACE,kBAGE,gLAEE,mCAKF,6FACE,MAzJgB,KA2JhB,qGACE,QACA,YAGF,2MACE,UAMR,uBACE,UACA,YACA,kBACA,gBACA,MA5KoB,KA8KpB,+BACE,MAnLe,IAuLnB,oFAGE,kBACA,MACA,OACA,SACA,MA9LiB,IA+LjB,uBAIA,gCACE,UACA,YACA,aACA,uBACA,mBACA,WACA,cACA,iBACA,yBAGF,gCACE,UACA,QACA,UACA,cAIJ,mBACE,cACA,cACA,gBAGF,mBACE,iBACA,6BAKE,6CACE,UACA,QO1OR,kBACE,YjBK0B,IiBJ1B,gBACA,gBCHF,kBACE,YlBK0B,IkBJ1B,aACA,gBCHF,mBACE,WACA,cTQY,kBUPd,2BACE,KACE,UACA,MACA,aAIJ,kBACE,kBACA,WACA,WAEA,2BACE,MlBiBkB,QkBhBlB,kBACA,eACA,iBACA,cAEF,4BACE,UACA,UACA,SACA,wCACA,gBA5BqB,wBCCvB,kBACA,aACA,uBACA,sBACA,WACA,kBACA,eACA,iBAEA,2BACE,kBACA,YACA,cACA,iBACA,WACA,MnBkBkB,QmBjBlB,kBACA,eAGF,2BAOE,gBACA,uBACA,mBACA,cACA,gBACA,WACA,cACA,iBACA,eACA,MnBLW,QmBVX,wCACE,gBAEF,sCACE,mBAYF,kEAEE,0BAGF,qCACE,eACA,MnBFiB,QmBGjB,sFAEE,qBChDR,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,kBACE,oBAGF,mCrB/BA,iDAGE,qBAqCF,YACA,gBACA,kBOgDE,6HczDA,WACA,gBACA,kBrB5BF,sDACE,MCdU,KDeV,OCfU,KDkBZ,4DACE,sCACA,4BACA,cCrBU,KDwBR,6BAMJ,yHAEE,iBA7BwE,YA+C1E,yCACE,aAGF,qEACE,mBqBZA,0CEpCF,+BAaE,mBFyBE,iBDnCoB,oBCoCpB,kBEpCJ,wDACE,mBAGF,8DACE,aCVJ,eACE,M1B0Ba,Q0BzBb,aACA,iBACA,8BACA,uBACA,kBAGA,6CAGE,OAde,KAiBjB,iDACE,YvBnBU,IuBqBV,uFACE,avBtBQ,IuB0BZ,2CACE,avB3BU,IuB6BV,iFACE,YvB9BQ,IuBmCV,4EACE,eAIJ,iCACE,iB1BvBoB,Q0B0BtB,2BACE,kBACA,MACA,QACA,SACA,OACA,WAGF,uBACE,eACA,aACA,uBACA,mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WAIJ,sBACE,aACA,gBACA,mBAGF,sB3BvDE,UFdc,KEed,0BAOF,4B2BiDE,cACA,gBACA,wBACA,qBACA,mBCnFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,cDgFE,kCZqDF,eACA,2BACA,kCACA,8BYnDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,sB3BjFE,UFdc,KEed,0BAOF,4B2B2EE,iBACA,cACA,YvB1GU,IuB2GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,M1B1GgB,Q0B+Gd,8CACE,iBEvIR,4BACE,aACA,mBACA,uBACA,WACA,Y7BkBE,UFdc,KEed,0BAOF,4B6BxBA,M5BgBkB,Q6BvBpB,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,UnCDc,KmCEd,YlCJwB,IkCO1B,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}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;max-width:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;color:#343741;overflow:hidden;cursor:default;-webkit-transition:opacity 250ms,-webkit-box-shadow 400ms;transition:opacity 250ms,-webkit-box-shadow 400ms;transition:box-shadow 400ms,opacity 250ms;transition:box-shadow 400ms,opacity 250ms,-webkit-box-shadow 400ms;border:1px solid #fff}.echTooltip .euiHorizontalRule{background-color:#595959}.echTooltip__outerWrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.echTooltip--pinned{-webkit-box-shadow:0 .7px 1.4px rgba(0,0,0,.07),0 1.9px 4px rgba(0,0,0,.05),0 4.5px 10px rgba(0,0,0,.05);box-shadow:0 .7px 1.4px rgba(0,0,0,.07),0 1.9px 4px rgba(0,0,0,.05),0 4.5px 10px rgba(0,0,0,.05);pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.echTooltip--pinned .echTooltip__tableRow--selectable{cursor:pointer}.echTooltip--pinned .echTooltipActions{pointer-events:auto}.echTooltip--pinned .echTooltip__tableWrapper{pointer-events:auto}.echTooltip .echTooltip__tableCell--truncate{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}.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__tableWrapper{overflow:auto;scrollbar-color:rgba(105,112,125,.5) transparent;scrollbar-width:thin;background-color:#fff}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echTooltip__tableWrapper::-webkit-scrollbar-corner,.echTooltip__tableWrapper::-webkit-scrollbar-track{background-color:transparent}.echTooltip__table{display:grid;width:100%}.echTooltip__table--noGrid{display:table}.echTooltip__tableHeader .echTooltip__tableCell,.echTooltip__tableFooter .echTooltip__tableCell{cursor:default;font-weight:700;background-color:#fff;position:sticky;z-index:1}.echTooltip__tableHeader,.echTooltip__tableBody,.echTooltip__tableFooter,.echTooltip__tableRow{display:contents}.echTooltip__tableHeader{margin-bottom:0;top:0}.echTooltip__tableHeader .echTooltip__tableCell{border-bottom:solid 1px #d3dae6;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #d3dae6;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.1)}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.1)}.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(211,218,230,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:11px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip:not(.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--bg)::before{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:11px}.echTooltip__colorCell--static{width:5px}.echTooltip__colorStrip,.echTooltip__colorStrip--bg,.echTooltip__colorStrip--spacer{position:absolute;top:0;left:0;bottom:0;width:5px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStrip::before{opacity:0;content:"✓";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:95%;font-size:90%;font-weight:bold;-webkit-transition:opacity 200ms;transition:opacity 200ms}.echTooltip__colorStrip--spacer{left:auto;right:0;width:6px;min-width:6px}.echTooltip__label{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}.echTooltipHeader{font-weight:600;margin-bottom:0;padding:4px 8px}.echTooltipFooter{font-weight:700;margin-top:0;padding:4px 8px}.echTooltipDivider{width:100%;border-bottom:solid 1px #d3dae6}@-webkit-keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}@keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}.echTooltipPrompt{position:relative;width:100%;z-index:-1}.echTooltipPrompt__content{color:#69707d;font-style:normal;font-size:12px;line-height:26px;padding:0 8px}.echTooltipPrompt.slideDown{opacity:0;top:-26px;height:0;-webkit-animation:promptSlideDown .25s forwards;animation:promptSlideDown .25s forwards;-webkit-animation-delay:1.5s;animation-delay:1.5s}.echTooltipActions{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;font-style:normal;font-size:12px;line-height:21px}.echTooltipActions__prompt{position:relative;height:26px;padding:0 8px;line-height:26px;width:100%;color:#69707d;font-style:normal;font-size:12px}.echTooltipActions__action{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;text-align:left;width:100%;padding:0 8px;line-height:21px;cursor:pointer;color:#343741}.echTooltipActions__action:nth-child(2){padding-top:4px}.echTooltipActions__action:last-child{padding-bottom:2px}.echTooltipActions__action:hover,.echTooltipActions__action:focus{text-decoration:underline}.echTooltipActions__action[disabled]{cursor:default;color:#abb4c4}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}[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--inert{pointer-events:none}.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:260px}.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;max-width:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;color:#343741;overflow:hidden;cursor:default;-webkit-transition:opacity 250ms,-webkit-box-shadow 400ms;transition:opacity 250ms,-webkit-box-shadow 400ms;transition:box-shadow 400ms,opacity 250ms;transition:box-shadow 400ms,opacity 250ms,-webkit-box-shadow 400ms;border:1px solid #fff}.echTooltip .euiHorizontalRule{background-color:#595959}.echTooltip__outerWrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.echTooltip--pinned{-webkit-box-shadow:0 .7px 1.4px rgba(0,0,0,.07),0 1.9px 4px rgba(0,0,0,.05),0 4.5px 10px rgba(0,0,0,.05);box-shadow:0 .7px 1.4px rgba(0,0,0,.07),0 1.9px 4px rgba(0,0,0,.05),0 4.5px 10px rgba(0,0,0,.05);pointer-events:auto;-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.echTooltip--pinned .echTooltip__tableRow--selectable{cursor:pointer}.echTooltip--pinned .echTooltipActions{pointer-events:auto}.echTooltip--pinned .echTooltip__tableWrapper{pointer-events:auto}.echTooltip .echTooltip__tableCell--truncate{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}.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__tableWrapper{overflow:hidden;scrollbar-color:rgba(105,112,125,.5) transparent;scrollbar-width:thin;background-color:#fff}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echTooltip__tableWrapper::-webkit-scrollbar-corner,.echTooltip__tableWrapper::-webkit-scrollbar-track{background-color:transparent}.echTooltip__tableWrapper--pinned{overflow:auto}.echTooltip__table{display:grid;width:100%}.echTooltip__table--noGrid{display:table}.echTooltip__tableHeader .echTooltip__tableCell,.echTooltip__tableFooter .echTooltip__tableCell{cursor:default;font-weight:600;background-color:#fff;position:sticky;z-index:1}.echTooltip__tableHeader,.echTooltip__tableBody,.echTooltip__tableFooter,.echTooltip__tableRow{display:contents}.echTooltip__tableHeader{margin-bottom:0;top:0}.echTooltip__tableHeader .echTooltip__tableCell{border-bottom:solid 1px #d3dae6;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #d3dae6;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.1)}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.1)}.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selectable:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(0,119,204,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(211,218,230,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:11px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip:not(.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--bg)::before{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:11px}.echTooltip__colorCell--static{width:5px}.echTooltip__colorStrip,.echTooltip__colorStrip--bg,.echTooltip__colorStrip--spacer{position:absolute;top:0;left:0;bottom:0;width:5px;-webkit-transition:width 200ms;transition:width 200ms}.echTooltip__colorStrip::before{opacity:0;content:"✓";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:95%;font-size:90%;font-weight:bold;-webkit-transition:opacity 200ms;transition:opacity 200ms}.echTooltip__colorStrip--spacer{left:auto;right:0;width:6px;min-width:6px}.echTooltip__label{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}.echTooltipHeader{font-weight:600;margin-bottom:0;padding:4px 8px}.echTooltipFooter{font-weight:600;margin-top:0;padding:4px 8px}.echTooltipDivider{width:100%;border-bottom:solid 1px #d3dae6}@-webkit-keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}@keyframes promptSlideDown{100%{opacity:1;top:0;height:26px}}.echTooltipPrompt{position:relative;width:100%;z-index:-1}.echTooltipPrompt__content{color:#69707d;font-style:normal;font-size:12px;line-height:26px;padding:0 8px}.echTooltipPrompt.slideDown{opacity:0;top:-26px;height:0;-webkit-animation:promptSlideDown .25s forwards;animation:promptSlideDown .25s forwards;-webkit-animation-delay:1.5s;animation-delay:1.5s}.echTooltipActions{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;font-style:normal;font-size:12px;line-height:21px}.echTooltipActions__prompt{position:relative;height:26px;padding:0 8px;line-height:26px;width:100%;color:#69707d;font-style:normal;font-size:12px}.echTooltipActions__action{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;text-align:left;width:100%;padding:0 8px;line-height:21px;cursor:pointer;color:#343741}.echTooltipActions__action:nth-child(2){padding-top:4px}.echTooltipActions__action:last-child{padding-bottom:2px}.echTooltipActions__action:hover,.echTooltipActions__action:focus{text-decoration:underline}.echTooltipActions__action[disabled]{cursor:default;color:#abb4c4}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}[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--inert{pointer-events:none}.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:260px}.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":["../../../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","../src/components/tooltip/components/_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/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/mixins/_typography.scss","../src/components/tooltip/components/_tooltip_header.scss","../src/components/tooltip/components/_tooltip_footer.scss","../src/components/tooltip/components/_tooltip_divider.scss","../src/components/tooltip/components/_tooltip_prompt.scss","../src/components/tooltip/components/_tooltip_actions.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","../src/components/_mixins.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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BpB,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,UnCDc,KmCEd,YlCJwB,IkCO1B,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","../src/components/tooltip/components/_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/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/mixins/_typography.scss","../src/components/tooltip/components/_tooltip_header.scss","../src/components/tooltip/components/_tooltip_footer.scss","../src/components/tooltip/components/_tooltip_divider.scss","../src/components/tooltip/components/_tooltip_prompt.scss","../src/components/tooltip/components/_tooltip_actions.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","../src/components/_mixins.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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M5BgBkB,Q6BvBpB,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,UnCDc,KmCEd,YlCJwB,IkCO1B,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"}