@elastic/charts 71.1.2 → 71.2.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 (103) hide show
  1. package/README.md +4 -1
  2. package/dist/chart_types/metric/renderer/dom/badge.js +2 -1
  3. package/dist/chart_types/metric/renderer/dom/badge.js.map +1 -1
  4. package/dist/chart_types/metric/renderer/dom/text_measurements.js +1 -1
  5. package/dist/chart_types/metric/renderer/dom/text_measurements.js.map +1 -1
  6. package/dist/chart_types/partition_chart/state/selectors/get_chart_type_description.js +1 -1
  7. package/dist/chart_types/partition_chart/state/selectors/get_chart_type_description.js.map +1 -1
  8. package/dist/chart_types/timeslip/timeslip/render/raster.js +1 -1
  9. package/dist/chart_types/timeslip/timeslip/render/raster.js.map +1 -1
  10. package/dist/chart_types/xy_chart/domains/x_domain.js +2 -1
  11. package/dist/chart_types/xy_chart/domains/x_domain.js.map +1 -1
  12. package/dist/chart_types/xy_chart/domains/y_domain.js +3 -1
  13. package/dist/chart_types/xy_chart/domains/y_domain.js.map +1 -1
  14. package/dist/chart_types/xy_chart/state/chart_selectors.js +2 -0
  15. package/dist/chart_types/xy_chart/state/chart_selectors.js.map +1 -1
  16. package/dist/chart_types/xy_chart/state/selectors/get_legend_max_formatted_value.d.ts +2 -0
  17. package/dist/chart_types/xy_chart/state/selectors/get_legend_max_formatted_value.d.ts.map +1 -0
  18. package/dist/chart_types/xy_chart/state/selectors/get_legend_max_formatted_value.js +25 -0
  19. package/dist/chart_types/xy_chart/state/selectors/get_legend_max_formatted_value.js.map +1 -0
  20. package/dist/common/data_structures.js +3 -2
  21. package/dist/common/data_structures.js.map +1 -1
  22. package/dist/common/legend.d.ts.map +1 -1
  23. package/dist/common/legend.js +34 -2
  24. package/dist/common/legend.js.map +1 -1
  25. package/dist/common/text_utils.d.ts +1 -1
  26. package/dist/common/text_utils.d.ts.map +1 -1
  27. package/dist/common/text_utils.js +1 -1
  28. package/dist/common/text_utils.js.map +1 -1
  29. package/dist/components/legend/constants.d.ts +2 -0
  30. package/dist/components/legend/constants.d.ts.map +1 -0
  31. package/dist/components/legend/constants.js +5 -0
  32. package/dist/components/legend/constants.js.map +1 -0
  33. package/dist/components/legend/label.js +17 -7
  34. package/dist/components/legend/label.js.map +1 -1
  35. package/dist/components/legend/legend.js +24 -16
  36. package/dist/components/legend/legend.js.map +1 -1
  37. package/dist/components/legend/legend_list.d.ts +2 -0
  38. package/dist/components/legend/legend_list.d.ts.map +1 -0
  39. package/dist/components/legend/legend_list.js +126 -0
  40. package/dist/components/legend/legend_list.js.map +1 -0
  41. package/dist/components/legend/legend_table/legend_table_item.js +8 -4
  42. package/dist/components/legend/legend_table/legend_table_item.js.map +1 -1
  43. package/dist/components/legend/use_action_focus_management.d.ts +2 -0
  44. package/dist/components/legend/use_action_focus_management.d.ts.map +1 -0
  45. package/dist/components/legend/use_action_focus_management.js +172 -0
  46. package/dist/components/legend/use_action_focus_management.js.map +1 -0
  47. package/dist/components/legend/utils.js +11 -1
  48. package/dist/components/legend/utils.js.map +1 -1
  49. package/dist/index.d.ts +1 -1
  50. package/dist/index.d.ts.map +1 -1
  51. package/dist/index.js +2 -1
  52. package/dist/index.js.map +1 -1
  53. package/dist/legacy/theme_dark.css +1 -1
  54. package/dist/legacy/theme_dark.css.map +1 -1
  55. package/dist/legacy/theme_light.css +1 -1
  56. package/dist/legacy/theme_light.css.map +1 -1
  57. package/dist/legacy/theme_only_dark.css +1 -1
  58. package/dist/legacy/theme_only_dark.css.map +1 -1
  59. package/dist/legacy/theme_only_light.css +1 -1
  60. package/dist/legacy/theme_only_light.css.map +1 -1
  61. package/dist/specs/default_legend_config.js +1 -0
  62. package/dist/specs/default_legend_config.js.map +1 -1
  63. package/dist/specs/default_settings_spec.d.ts +1 -1
  64. package/dist/specs/default_settings_spec.d.ts.map +1 -1
  65. package/dist/specs/settings.d.ts +17 -1
  66. package/dist/specs/settings.d.ts.map +1 -1
  67. package/dist/specs/settings.js.map +1 -1
  68. package/dist/state/chart_selectors.js +1 -0
  69. package/dist/state/chart_selectors.js.map +1 -1
  70. package/dist/state/selectors/get_legend_config_selector.js +3 -1
  71. package/dist/state/selectors/get_legend_config_selector.js.map +1 -1
  72. package/dist/state/selectors/get_legend_size.js +53 -11
  73. package/dist/state/selectors/get_legend_size.js.map +1 -1
  74. package/dist/state/selectors/get_longest_legend_formatted_value.d.ts +2 -0
  75. package/dist/state/selectors/get_longest_legend_formatted_value.d.ts.map +1 -0
  76. package/dist/state/selectors/get_longest_legend_formatted_value.js +25 -0
  77. package/dist/state/selectors/get_longest_legend_formatted_value.js.map +1 -0
  78. package/dist/state/utils/legend_row_count.d.ts +2 -0
  79. package/dist/state/utils/legend_row_count.d.ts.map +1 -0
  80. package/dist/state/utils/legend_row_count.js +58 -0
  81. package/dist/state/utils/legend_row_count.js.map +1 -0
  82. package/dist/theme.scss +149 -5
  83. package/dist/theme_dark.css +1 -1
  84. package/dist/theme_dark.css.map +1 -1
  85. package/dist/theme_light.css +1 -1
  86. package/dist/theme_light.css.map +1 -1
  87. package/dist/theme_only_dark.css +1 -1
  88. package/dist/theme_only_dark.css.map +1 -1
  89. package/dist/theme_only_light.css +1 -1
  90. package/dist/theme_only_light.css.map +1 -1
  91. package/dist/utils/common.d.ts +7 -0
  92. package/dist/utils/common.d.ts.map +1 -1
  93. package/dist/utils/common.js +5 -1
  94. package/dist/utils/common.js.map +1 -1
  95. package/dist/utils/themes/theme.d.ts +11 -1
  96. package/dist/utils/themes/theme.d.ts.map +1 -1
  97. package/dist/utils/themes/theme.js.map +1 -1
  98. package/dist/utils/time_zone.js.map +1 -1
  99. package/package.json +1 -1
  100. package/dist/components/legend/legend_item.d.ts +0 -2
  101. package/dist/components/legend/legend_item.d.ts.map +0 -1
  102. package/dist/components/legend/legend_item.js +0 -87
  103. package/dist/components/legend/legend_item.js.map +0 -1
@@ -1 +1 @@
1
- .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.echChart{height:100%;width:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChart__titles{margin-right:24px}.echChartContent{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:1px;width:100%}.echChartContent--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChartTitle{font-style:normal;font-weight:bold;font-size:16px;line-height:19px;padding:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echChartTitle+.echChartDescription{padding-top:0}.echChartDescription{padding:8px;font-style:normal;font-weight:normal;font-size:14px;line-height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;overflow:hidden;width:100%;height:100%}.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:4px;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.5;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:#050f21;color:#cad3e2;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 #050f21}.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{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.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(113,134,168,.5) transparent;scrollbar-width:thin;background-color:#050f21}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.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:#050f21;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 #243147;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #243147;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px;-webkit-transition:margin 200ms,padding 200ms;transition:margin 200ms,padding 200ms}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#0c2a55}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell+.echTooltip__tableCell{margin-left:10px;padding-left:10px}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#0c2a55}.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(97,162,255,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(36,49,71,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:21px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--icon{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:21px}.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--icon{opacity:0;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:100%;-webkit-transition:opacity 200ms;transition:opacity 200ms;padding:0 4px}.echTooltip__colorStrip--spacer{left:auto;right:10px;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 #243147}@-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:#8e9fbc;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:#8e9fbc;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:#cad3e2}.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:#6a7fa0}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}.echLegendTable__container{scrollbar-color:rgba(113,134,168,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegendTable__container::-webkit-scrollbar{width:16px;height:16px}.echLegendTable__container::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegendTable__container::-webkit-scrollbar-corner,.echLegendTable__container::-webkit-scrollbar-track{background-color:transparent}.echLegendTable__container:focus{outline:none}.echLegendTable__container[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegendTable__container :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#0d2f5e;border-radius:2px}.echLegendTable{overflow:auto;display:grid;width:100%;position:relative}.echLegendTable__header,.echLegendTable__rowgroup,.echLegendTable__row{display:contents}.echLegendTable .echColorPickerPopover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegend--vertical .echLegendTable__container{padding:8px}.echLegend--horizontal .echLegendTable{padding:4px 8px 4px 16px}.echLegendTable__item{color:#cad3e2}.echLegendTable__item .echLegendItem__action{padding-top:2px;max-width:16px;height:16px}.echLegendTable__item .echLegendItem__action:empty{width:0}.echLegendTable__item:last-child .echLegendTable__cell{border-bottom:solid 1px #243147}.echLegendTable__item:not([dir=rtl]) .echLegendTable__cell:last-child{padding-right:2px}.echLegendTable__item[dir=rtl] .echLegendTable__cell:last-child{padding-left:2px}.echLegendTable__item[dir=rtl] .echLegendItem__label{text-align:right}.echLegendTable__item[dir=rtl] .echLegend__legendValue{text-align:left}.echLegendTable__item--highlightable .echLegendTable__cell:hover{background-color:#172336}.echLegendTable__item--highlightable .echLegendTable__cell:hover~.echLegendTable__cell{background-color:#172336}.echLegendTable__item--highlightable .echLegendTable__cell:has(~.echLegendTable__cell:hover){background-color:#172336}.echLegendTable__item:not(.echLegendTable__item--hidden) .echLegendSingleItem__color--changable{cursor:pointer}.echLegendTable__item--vertical{padding-top:2px;padding-bottom:2px}.echLegendTable__item--hidden{color:#7186a8}.echLegendTable__item .echLegend__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr;white-space:nowrap}.echLegendTable__cell{font-size:12px;font-size:0.8571428571rem;line-height:1.5;-ms-flex-line-pack:baseline;align-content:baseline;border-bottom:solid 1px #172336;padding:4px 8px}.echLegendTable__cell--truncate{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}.echLegendTable__colorCell{padding-right:0;padding-left:2px}.echLegendTable__colorCell.echLegend__colorWrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;z-index:1}.echLegendTable__header{cursor:default;font-weight:600;background-color:#050f21;font-size:12px}.echLegendTable__header .echLegendTable__cell{border-bottom:solid 1px #243147}[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:#0d2f5e}.echLegend{z-index: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(113,134,168,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.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{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#0d2f5e;border-radius:2px}.echLegendItem{color:#cad3e2;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 .echLegend__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__legendValue){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background):last-child:not(.echLegendItem__legendValue){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#172336}.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%;display:-webkit-box;display:-ms-flexbox;display:flex}.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.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-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__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#7186a8}.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.5;color:#7186a8}.echGridContainer{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}.echGridCell{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echGridCell--rightBorder{border-right:1px solid #343741}.echGridCell--bottomBorder{border-bottom:1px solid #343741}.echAlignedGrid{display:grid;-ms-flex-line-pack:stretch;align-content:stretch;width:100%;height:100%}.echAlignedGrid--header{width:100%;height:100%;margin:0;padding:0}.echAlignedGrid__borderRight{border-right:1px solid #edf0f5}.echAlignedGrid__borderBottom{border-bottom:1px solid #edf0f5}.echAlignedGrid--content{width:100%;min-height:0;margin:0;padding:0}.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(5,15,33,.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;line-height:normal}.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}.echMetricText{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0, 1fr);grid-template-rows:-webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content auto min-content min-content;height:100%;padding:8px;line-height:1.2}.echMetricText__gap{overflow:hidden}.echMetricText__titlesBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echMetricText__titlesBlock--left{-webkit-box-align:start;-ms-flex-align:start;align-items:start;text-align:left}.echMetricText__titlesBlock--center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.echMetricText__titlesBlock--center .echMetricText__title button{width:100%}.echMetricText__titlesBlock--right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;text-align:right}.echMetricText .echMetricText__extraBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;padding-top:5px}.echMetricText .echMetricText__extraBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.echMetricText .echMetricText__extraBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText .echMetricText__extraBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.echMetricText__valueBlock{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.echMetricText__valueBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.echMetricText__valueBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText__valueBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.echMetricText__title{word-wrap:break-word;width:100%}.echMetricText__title button{width:95%;outline:none;display:block}.echMetricText__subtitle{padding-top:5px;font-weight:normal;width:95%}.echMetricText__extra{font-weight:normal}.echMetricText__value{position:relative;font-weight:bold;white-space:nowrap;overflow:hidden}.echMetricText__valueIcon{padding-left:8px}.echMetricText__part{font-weight:bold}.echMetricText__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.echMetricText__icon--left{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.echMetricText__icon--right{-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right}.echSingleMetricProgress{position:absolute;border-radius:8px}.echSingleMetricProgress--vertical{left:8px;right:0;top:8px;bottom:0;height:calc(100% - 16px);width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:4px}.echSingleMetricProgress--vertical.echSingleMetricProgress--medium{right:auto;width:8px}.echSingleMetricProgress--vertical.echSingleMetricProgress--large{right:auto;width:16px}.echSingleMetricProgress--horizontal{left:8px;right:0;width:calc(100% - 16px);top:0;bottom:8px;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:4px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--medium{top:auto;height:8px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--large{top:auto;height:16px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s;max-width:100%;max-height:100%}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricTarget{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;overflow:visible;z-index:1}.echSingleMetricTarget--vertical{-webkit-transform:rotate(90deg);transform:rotate(90deg);position:absolute;left:100%;bottom:0}.echSingleMetricTarget--horizontal{position:absolute;bottom:100%}.echSingleMetricZeroBaseline{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;overflow:visible}.echSingleMetricZeroBaseline--vertical{position:absolute;left:0}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--small{right:auto;height:2px;width:6.5px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--medium{right:auto;height:2px;width:13px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--large{right:auto;height:4px;width:26px}.echSingleMetricZeroBaseline--horizontal{position:absolute;bottom:0}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--small{top:auto;width:2px;height:6.5px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--medium{top:auto;width:2px;height:13px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--large{top:auto;width:4px;height:26px}.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}.echSecondaryMetric{display:-webkit-box;display:-ms-flexbox;display:flex;gap:4px;overflow:hidden;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap}.echSecondaryMetric__label{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echSecondaryMetric__value{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:calc(100% - 4px)}.echSecondaryMetric__value--full{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.echSecondaryMetric__truncate{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.echBadge__content{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;overflow:hidden;min-block-size:18px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;padding-block:0px;padding-inline:8px;border:1px solid transparent;border-radius:2px;font-size:inherit;line-height:inherit;text-align:start;text-decoration:none;background-color:#e3e8f2;color:#07101f;cursor:inherit}.echBadge__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;min-width:0}.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--rightBorder{border-right:1px solid #343741}.echMetric--topBorder{border-top:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--withProgressBar--small{padding-left:12px}.echMetric--vertical.echMetric--withProgressBar--medium{padding-left:16px}.echMetric--vertical.echMetric--withProgressBar--large{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--small{padding-left:20px}.echMetric--vertical.echMetric--withTargetProgressBar--medium{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--large{padding-left:32px}.echMetric--horizontal.echMetric--withProgressBar--small{padding-bottom:12px}.echMetric--horizontal.echMetric--withProgressBar--medium{padding-bottom:16px}.echMetric--horizontal.echMetric--withProgressBar--large{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--small{padding-bottom:20px}.echMetric--horizontal.echMetric--withTargetProgressBar--medium{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--large{padding-bottom:32px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}
1
+ .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.echChart{height:100%;width:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChart__titles{margin-right:24px}.echChartContent{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:1px;width:100%}.echChartContent--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChartTitle{font-style:normal;font-weight:bold;font-size:16px;line-height:19px;padding:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echChartTitle+.echChartDescription{padding-top:0}.echChartDescription{padding:8px;font-style:normal;font-weight:normal;font-size:14px;line-height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;overflow:hidden;width:100%;height:100%}.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:4px;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.5;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:#050f21;color:#cad3e2;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 #050f21}.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{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.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(113,134,168,.5) transparent;scrollbar-width:thin;background-color:#050f21}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.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:#050f21;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 #243147;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #243147;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px;-webkit-transition:margin 200ms,padding 200ms;transition:margin 200ms,padding 200ms}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#0c2a55}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell+.echTooltip__tableCell{margin-left:10px;padding-left:10px}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#0c2a55}.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(97,162,255,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(36,49,71,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:21px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--icon{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:21px}.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--icon{opacity:0;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:100%;-webkit-transition:opacity 200ms;transition:opacity 200ms;padding:0 4px}.echTooltip__colorStrip--spacer{left:auto;right:10px;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 #243147}@-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:#8e9fbc;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:#8e9fbc;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:#cad3e2}.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:#6a7fa0}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}.echLegendTable__container{scrollbar-color:rgba(113,134,168,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegendTable__container::-webkit-scrollbar{width:16px;height:16px}.echLegendTable__container::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegendTable__container::-webkit-scrollbar-corner,.echLegendTable__container::-webkit-scrollbar-track{background-color:transparent}.echLegendTable__container:focus{outline:none}.echLegendTable__container[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegendTable__container :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#0d2f5e;border-radius:2px}.echLegendTable{overflow:auto;display:grid;width:100%;position:relative}.echLegendTable__header,.echLegendTable__rowgroup,.echLegendTable__row{display:contents}.echLegendTable .echColorPickerPopover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegend--vertical .echLegendTable__container{padding:8px}.echLegend--horizontal .echLegendTable{padding:4px 8px 4px 16px}.echLegendTable__item{color:#cad3e2}.echLegendTable__item .echLegendItem__action{padding-top:2px;max-width:16px;height:16px}.echLegendTable__item .echLegendItem__action:empty{width:0}.echLegendTable__item--actionOnHover .echLegendItem__action{opacity:0}.echLegendTable__item--actionOnHover:hover .echLegendItem__action,.echLegendTable__item--actionOnHover:focus-within .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendTable__item--isActive .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendTable__item:last-child .echLegendTable__cell{border-bottom:solid 1px #243147}.echLegendTable__item:not([dir=rtl]) .echLegendTable__cell:last-child{padding-right:2px}.echLegendTable__item[dir=rtl] .echLegendTable__cell:last-child{padding-left:2px}.echLegendTable__item[dir=rtl] .echLegendItem__label{text-align:right}.echLegendTable__item[dir=rtl] .echLegend__legendValue{text-align:left}.echLegendTable__item--highlightable .echLegendTable__cell:hover{background-color:#172336}.echLegendTable__item--highlightable .echLegendTable__cell:hover~.echLegendTable__cell{background-color:#172336}.echLegendTable__item--highlightable .echLegendTable__cell:has(~.echLegendTable__cell:hover){background-color:#172336}.echLegendTable__item:not(.echLegendTable__item--hidden) .echLegendSingleItem__color--changable{cursor:pointer}.echLegendTable__item--vertical{padding-top:2px;padding-bottom:2px}.echLegendTable__item--hidden{color:#7186a8}.echLegendTable__item .echLegend__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr;white-space:nowrap}.echLegendTable__cell{font-size:12px;font-size:0.8571428571rem;line-height:1.5;-ms-flex-line-pack:baseline;align-content:baseline;border-bottom:solid 1px #172336;padding:4px 8px}.echLegendTable__cell--truncate{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}.echLegendTable__colorCell{padding-right:0;padding-left:2px}.echLegendTable__colorCell.echLegend__colorWrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;z-index:1}.echLegendTable__header{cursor:default;font-weight:600;background-color:#050f21;font-size:12px}.echLegendTable__header .echLegendTable__cell{border-bottom:solid 1px #243147}[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:#0d2f5e}.echLegend{z-index:1}.echLegend .echLegendGridList{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 .echLegendGridList{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 .echLegendGridListContainer{scrollbar-color:rgba(113,134,168,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendGridListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendGridListContainer::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendGridListContainer::-webkit-scrollbar-corner,.echLegend .echLegendGridListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendGridListContainer:focus{outline:none}.echLegend .echLegendGridListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendGridListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#0d2f5e;border-radius:2px}.echLegend{z-index:1}.echLegend .echLegendList{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-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{display:block;margin-top:8px;margin-bottom:8px}.echLegend--horizontal .echLegendListContainer{overflow-x:hidden;overflow-y:auto}.echLegend--horizontal .echLegendListContainer .echLegendList{line-height:24px}.echLegend--horizontal .echLegendListContainer .echLegendItem{display:inline;margin-right:24px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.background{display:none}.echLegend--horizontal .echLegendListContainer .echLegendItem>*:not(.background){display:inline-block;vertical-align:middle;margin-left:8px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__colorLabel{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px;max-width:100%;margin-left:4px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__actionGroup{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__actionGroup>*{margin-left:0}.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(113,134,168,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(113,134,168,.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{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#0d2f5e;border-radius:2px}.echLegendItem{color:#cad3e2;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 .echLegend__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__legendValue){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background):last-child:not(.echLegendItem__legendValue){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#172336}.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%;display:-webkit-box;display:-ms-flexbox;display:flex}.echLegendItem--actionOnHover .echLegendItem__action{opacity:0}.echLegendItem--actionOnHover:hover .echLegendItem__action,.echLegendItem--actionOnHover:focus-within .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendItem--isActive .echLegendItem__action{opacity:1;pointer-events:auto}.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.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-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__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#7186a8}.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.5;color:#7186a8}.echGridContainer{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}.echGridCell{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echGridCell--rightBorder{border-right:1px solid #343741}.echGridCell--bottomBorder{border-bottom:1px solid #343741}.echAlignedGrid{display:grid;-ms-flex-line-pack:stretch;align-content:stretch;width:100%;height:100%}.echAlignedGrid--header{width:100%;height:100%;margin:0;padding:0}.echAlignedGrid__borderRight{border-right:1px solid #edf0f5}.echAlignedGrid__borderBottom{border-bottom:1px solid #edf0f5}.echAlignedGrid--content{width:100%;min-height:0;margin:0;padding:0}.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(5,15,33,.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;line-height:normal}.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}.echMetricText{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0, 1fr);grid-template-rows:-webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content auto min-content min-content;height:100%;padding:8px;line-height:1.2}.echMetricText__gap{overflow:hidden}.echMetricText__titlesBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echMetricText__titlesBlock--left{-webkit-box-align:start;-ms-flex-align:start;align-items:start;text-align:left}.echMetricText__titlesBlock--center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.echMetricText__titlesBlock--center .echMetricText__title button{width:100%}.echMetricText__titlesBlock--right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;text-align:right}.echMetricText .echMetricText__extraBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;padding-top:5px}.echMetricText .echMetricText__extraBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.echMetricText .echMetricText__extraBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText .echMetricText__extraBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.echMetricText__valueBlock{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.echMetricText__valueBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.echMetricText__valueBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText__valueBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.echMetricText__title{word-wrap:break-word;width:100%}.echMetricText__title button{width:95%;outline:none;display:block}.echMetricText__subtitle{padding-top:5px;font-weight:normal;width:95%}.echMetricText__extra{font-weight:normal}.echMetricText__value{position:relative;font-weight:bold;white-space:nowrap;overflow:hidden}.echMetricText__valueIcon{padding-left:8px}.echMetricText__part{font-weight:bold}.echMetricText__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.echMetricText__icon--left{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.echMetricText__icon--right{-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right}.echSingleMetricProgress{position:absolute;border-radius:8px}.echSingleMetricProgress--vertical{left:8px;right:0;top:8px;bottom:0;height:calc(100% - 16px);width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:4px}.echSingleMetricProgress--vertical.echSingleMetricProgress--medium{right:auto;width:8px}.echSingleMetricProgress--vertical.echSingleMetricProgress--large{right:auto;width:16px}.echSingleMetricProgress--horizontal{left:8px;right:0;width:calc(100% - 16px);top:0;bottom:8px;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:4px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--medium{top:auto;height:8px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--large{top:auto;height:16px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s;max-width:100%;max-height:100%}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricTarget{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;overflow:visible;z-index:1}.echSingleMetricTarget--vertical{-webkit-transform:rotate(90deg);transform:rotate(90deg);position:absolute;left:100%;bottom:0}.echSingleMetricTarget--horizontal{position:absolute;bottom:100%}.echSingleMetricZeroBaseline{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;overflow:visible}.echSingleMetricZeroBaseline--vertical{position:absolute;left:0}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--small{right:auto;height:2px;width:6.5px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--medium{right:auto;height:2px;width:13px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--large{right:auto;height:4px;width:26px}.echSingleMetricZeroBaseline--horizontal{position:absolute;bottom:0}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--small{top:auto;width:2px;height:6.5px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--medium{top:auto;width:2px;height:13px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--large{top:auto;width:4px;height:26px}.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}.echSecondaryMetric{display:-webkit-box;display:-ms-flexbox;display:flex;gap:4px;overflow:hidden;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap}.echSecondaryMetric__label{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echSecondaryMetric__value{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:calc(100% - 4px)}.echSecondaryMetric__value--full{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.echSecondaryMetric__truncate{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.echBadge__content{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;overflow:hidden;min-block-size:18px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;padding-block:2px;padding-inline:10px;border:1px solid transparent;border-radius:9999px;font-size:inherit;line-height:inherit;text-align:start;text-decoration:none;background-color:#e3e8f2;color:#07101f;cursor:inherit}.echBadge__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;min-width:0}.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--rightBorder{border-right:1px solid #343741}.echMetric--topBorder{border-top:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--withProgressBar--small{padding-left:12px}.echMetric--vertical.echMetric--withProgressBar--medium{padding-left:16px}.echMetric--vertical.echMetric--withProgressBar--large{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--small{padding-left:20px}.echMetric--vertical.echMetric--withTargetProgressBar--medium{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--large{padding-left:32px}.echMetric--horizontal.echMetric--withProgressBar--small{padding-bottom:12px}.echMetric--horizontal.echMetric--withProgressBar--medium{padding-bottom:16px}.echMetric--horizontal.echMetric--withProgressBar--large{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--small{padding-bottom:20px}.echMetric--horizontal.echMetric--withTargetProgressBar--medium{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--large{padding-bottom:32px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../src/components/tooltip/components/_tooltip.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/colors/_semantic_colors.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/_typography.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_typography.scss","../src/components/_mixins.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_font_weight.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/legend/legend_table/_legend_table.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_states.scss","../src/components/legend/_variables.scss","../src/components/legend/legend_table/_legend_single_item.scss","../src/components/legend/legend_table/_legend_table_cell.scss","../src/components/legend/legend_table/_legend_table_header.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../src/components/legend/_legend.scss","../src/components/legend/_legend_item.scss","../src/components/_unavailable_chart.scss","../src/components/grid/_index.scss","../src/components/grid/_aligned_grid.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/dom/_text.scss","../src/chart_types/metric/renderer/_variables.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss","../src/chart_types/metric/renderer/dom/_secondary_metric.scss","../src/chart_types/metric/renderer/dom/_badge.scss","../src/chart_types/metric/renderer/_index.scss"],"names":[],"mappings":"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mBACA,OAzDe,KA0Df,2BAEA,uIAIE,YACA,WACA,aAIJ,sBACE,aACA,gBACA,mBAGF,sBpBxDE,UCdc,KDed,0BAyDF,YE9DkB,IkB8DhB,cACA,gBACA,wBACA,qBACA,mBjBpFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,ciBiFE,kCpBoDF,eACA,2BACA,kCACA,8BoBlDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,4BpBlFE,UCdc,KDed,0BAyDF,YE9DkB,IkBwFhB,iBACA,cACA,YrB3GU,IqB4GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MvBmEc,QuB9DZ,8CACE,iBCxIR,4BACE,aACA,mBACA,uBACA,WACA,YrBkBE,UCdc,KDed,0BAyDF,YE9DkB,ImBZlB,MxB8LgB,QyBrMlB,kBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,aACE,kBACA,WACA,YACA,gBACA,4CAEA,0BACE,+BAGF,2BACE,gCCtBJ,gBACE,aACA,sBACA,WACA,YAEF,wBACE,WACA,YACA,SACA,UAEF,6BACE,+BAEF,8BACE,gCAGF,yBACE,WACA,aACA,SACA,UCvBF,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,sBCpBF,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,U1BDc,K0BEd,YtBJwB,IsBKxB,mBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCxBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,eACE,kBACA,UACA,aACA,qCACA,4DACA,YACA,QCMQ,IDLR,gBAEA,oBACE,gBAGF,4BACE,aACA,sBAIA,kCACE,kBACA,gBAGF,oCACE,mBACA,kBAGE,iEACE,WAKN,mCACE,gBACA,iBAIJ,0CACE,aACA,mBACA,gBACA,gBAEA,gDACE,2BAEF,kDACE,uBAEF,iDACE,yBAIJ,2BACE,WACA,aACA,mBAEA,iCACE,sBAGF,mCACE,uBAGF,kCACE,oBAIJ,sBACE,qBACA,WAEA,6BACE,UACA,aACA,cAIJ,yBACE,gBACA,mBACA,UAGF,sBACE,mBAGF,sBACE,kBACA,iBACA,mBACA,gBAGF,0BACE,aC7FM,IDgGR,qBACE,iBAGF,qBACE,aAEA,2BACE,qBAGF,4BACE,sBEvHN,yBACE,kBACA,cAJ2B,IAM3B,mCACE,KDMM,ICLN,QACA,IDIM,ICHN,SACA,yBACA,WAEA,kEACE,WACA,MDfyB,ICkB3B,mEACE,WACA,MDnB0B,ICsB5B,kEACE,WACA,MDvByB,KC2B7B,qCACE,KDlBM,ICmBN,QACA,wBACA,MACA,ODtBM,ICuBN,YAEA,oEACE,SACA,ODvCyB,IC0C3B,qEACE,SACA,OD3C0B,IC8C5B,oEACE,SACA,OD/CyB,KCoD/B,4BACE,4CACA,eACA,gBAEA,sCACE,kBACA,OACA,QACA,SACA,WAGF,wCACE,kBACA,MACA,SACA,OACA,YAIJ,uBACE,aACA,uBACA,mBACA,iBACA,UAEA,iCACE,wBACA,kBACA,UACA,SAGF,mCACE,kBACA,YAIJ,6BACE,aACA,uBACA,mBACA,iBAcA,uCACE,kBACA,OAEA,0EACE,WACA,OAlBS,IAmBT,MAfgB,MAkBlB,2EACE,WACA,OAxBS,IAyBT,MAxBU,KA2BZ,0EACE,WACA,OArBe,IAsBf,MArBgB,KAyBpB,yCACE,kBACA,SAEA,4EACE,SACA,MAzCS,IA0CT,OAtCgB,MAyClB,6EACE,SACA,MA/CS,IAgDT,OA/CU,KAkDZ,4EACE,SACA,MA5Ce,IA6Cf,OA5CgB,KCjHtB,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA,YC9BF,oBAGE,aACA,IAHkB,IAIlB,gBACA,mBACA,mBAEA,2BACE,cAGF,2BACE,oBACA,cACA,2BAEA,iCACE,cACA,eAIJ,8BACE,YACA,gBACA,uBACA,mBCzBJ,mBACE,oBACA,mBACA,sBACA,gBAEA,oBACA,cACA,YAEA,kBACA,mBAEA,6BACA,kBAEA,kBACA,oBACA,iBACA,qBAEA,iBAxBwB,QAyBxB,MAxBkB,QA0BlB,eAGF,gBACE,gBACA,uBACA,mBACA,WACA,YC5BF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,wBACE,+BAGF,sBACE,6BAGF,yBACE,gCAME,uDACE,kBAEF,wDACE,kBAEF,uDACE,kBAKF,6DACE,kBAEF,8DACE,kBAEF,6DACE,kBAOF,yDACE,oBAEF,0DACE,oBAEF,yDACE,oBAKF,+DACE,oBAEF,gEACE,oBAEF,+DACE,oBAMR,gBACE,kBACA,WACA,WACA,WACA","file":"theme_only_dark.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../src/components/tooltip/components/_tooltip.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/colors/_semantic_colors.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/_typography.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_typography.scss","../src/components/_mixins.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_font_weight.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/legend/legend_table/_legend_table.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_states.scss","../src/components/legend/_variables.scss","../src/components/legend/legend_table/_legend_single_item.scss","../src/components/legend/legend_table/_legend_table_cell.scss","../src/components/legend/legend_table/_legend_table_header.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../src/components/legend/_legend_grid_list.scss","../src/components/legend/_legend_list.scss","../src/components/legend/_legend_item.scss","../src/components/_unavailable_chart.scss","../src/components/grid/_index.scss","../src/components/grid/_aligned_grid.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/dom/_text.scss","../src/chart_types/metric/renderer/_variables.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss","../src/chart_types/metric/renderer/dom/_secondary_metric.scss","../src/chart_types/metric/renderer/dom/_badge.scss","../src/chart_types/metric/renderer/_index.scss"],"names":[],"mappings":"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+BAGF,2BACE,gCCtBJ,gBACE,aACA,sBACA,WACA,YAEF,wBACE,WACA,YACA,SACA,UAEF,6BACE,+BAEF,8BACE,gCAGF,yBACE,WACA,aACA,SACA,UCvBF,gBACE,kBACA,oBACA,MACA,SACA,OACA,QACA,WACA,YAGF,6BACE,0BAGF,+BACE,4BAGF,sBACE,sBCpBF,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,U3BDc,K2BEd,YvBJwB,IuBKxB,mBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCxBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,eACE,kBACA,UACA,aACA,qCACA,4DACA,YACA,QCMQ,IDLR,gBAEA,oBACE,gBAGF,4BACE,aACA,sBAIA,kCACE,kBACA,gBAGF,oCACE,mBACA,kBAGE,iEACE,WAKN,mCACE,gBACA,iBAIJ,0CACE,aACA,mBACA,gBACA,gBAEA,gDACE,2BAEF,kDACE,uBAEF,iDACE,yBAIJ,2BACE,WACA,aACA,mBAEA,iCACE,sBAGF,mCACE,uBAGF,kCACE,oBAIJ,sBACE,qBACA,WAEA,6BACE,UACA,aACA,cAIJ,yBACE,gBACA,mBACA,UAGF,sBACE,mBAGF,sBACE,kBACA,iBACA,mBACA,gBAGF,0BACE,aC7FM,IDgGR,qBACE,iBAGF,qBACE,aAEA,2BACE,qBAGF,4BACE,sBEvHN,yBACE,kBACA,cAJ2B,IAM3B,mCACE,KDMM,ICLN,QACA,IDIM,ICHN,SACA,yBACA,WAEA,kEACE,WACA,MDfyB,ICkB3B,mEACE,WACA,MDnB0B,ICsB5B,kEACE,WACA,MDvByB,KC2B7B,qCACE,KDlBM,ICmBN,QACA,wBACA,MACA,ODtBM,ICuBN,YAEA,oEACE,SACA,ODvCyB,IC0C3B,qEACE,SACA,OD3C0B,IC8C5B,oEACE,SACA,OD/CyB,KCoD/B,4BACE,4CACA,eACA,gBAEA,sCACE,kBACA,OACA,QACA,SACA,WAGF,wCACE,kBACA,MACA,SACA,OACA,YAIJ,uBACE,aACA,uBACA,mBACA,iBACA,UAEA,iCACE,wBACA,kBACA,UACA,SAGF,mCACE,kBACA,YAIJ,6BACE,aACA,uBACA,mBACA,iBAcA,uCACE,kBACA,OAEA,0EACE,WACA,OAlBS,IAmBT,MAfgB,MAkBlB,2EACE,WACA,OAxBS,IAyBT,MAxBU,KA2BZ,0EACE,WACA,OArBe,IAsBf,MArBgB,KAyBpB,yCACE,kBACA,SAEA,4EACE,SACA,MAzCS,IA0CT,OAtCgB,MAyClB,6EACE,SACA,MA/CS,IAgDT,OA/CU,KAkDZ,4EACE,SACA,MA5Ce,IA6Cf,OA5CgB,KCjHtB,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA,YC9BF,oBAGE,aACA,IAHkB,IAIlB,gBACA,mBACA,mBAEA,2BACE,cAGF,2BACE,oBACA,cACA,2BAEA,iCACE,cACA,eAIJ,8BACE,YACA,gBACA,uBACA,mBCzBJ,mBACE,oBACA,mBACA,sBACA,gBAEA,oBACA,cACA,YAEA,kBACA,oBAEA,6BACA,qBAEA,kBACA,oBACA,iBACA,qBAEA,iBAxBwB,QAyBxB,MAxBkB,QA0BlB,eAGF,gBACE,gBACA,uBACA,mBACA,WACA,YC5BF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,wBACE,+BAGF,sBACE,6BAGF,yBACE,gCAME,uDACE,kBAEF,wDACE,kBAEF,uDACE,kBAKF,6DACE,kBAEF,8DACE,kBAEF,6DACE,kBAOF,yDACE,oBAEF,0DACE,oBAEF,yDACE,oBAKF,+DACE,oBAEF,gEACE,oBAEF,+DACE,oBAMR,gBACE,kBACA,WACA,WACA,WACA","file":"theme_only_dark.css"}
@@ -1 +1 @@
1
- .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.echChart{height:100%;width:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChart__titles{margin-right:24px}.echChartContent{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:1px;width:100%}.echChartContent--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChartTitle{font-style:normal;font-weight:bold;font-size:16px;line-height:19px;padding:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echChartTitle+.echChartDescription{padding-top:0}.echChartDescription{padding:8px;font-style:normal;font-weight:normal;font-size:14px;line-height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;overflow:hidden;width:100%;height:100%}.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:4px;background-color:#444b59;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.5;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:#1d2a3e;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:#5d636f}.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{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.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(90,109,140,.5) transparent;scrollbar-width:thin;background-color:#fff}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.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 #cad3e2;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #cad3e2;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px;-webkit-transition:margin 200ms,padding 200ms;transition:margin 200ms,padding 200ms}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#e8f1ff}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell+.echTooltip__tableCell{margin-left:10px;padding-left:10px}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#e8f1ff}.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(11,100,221,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(202,211,226,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:21px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--icon{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:21px}.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--icon{opacity:0;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:100%;-webkit-transition:opacity 200ms;transition:opacity 200ms;padding:0 4px}.echTooltip__colorStrip--spacer{left:auto;right:10px;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 #cad3e2}@-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:#516381;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:#516381;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:#1d2a3e}.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:#798eaf}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}.echLegendTable__container{scrollbar-color:rgba(90,109,140,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegendTable__container::-webkit-scrollbar{width:16px;height:16px}.echLegendTable__container::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegendTable__container::-webkit-scrollbar-corner,.echLegendTable__container::-webkit-scrollbar-track{background-color:transparent}.echLegendTable__container:focus{outline:none}.echLegendTable__container[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegendTable__container :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e8f1ff;border-radius:2px}.echLegendTable{overflow:auto;display:grid;width:100%;position:relative}.echLegendTable__header,.echLegendTable__rowgroup,.echLegendTable__row{display:contents}.echLegendTable .echColorPickerPopover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegend--vertical .echLegendTable__container{padding:8px}.echLegend--horizontal .echLegendTable{padding:4px 8px 4px 16px}.echLegendTable__item{color:#1d2a3e}.echLegendTable__item .echLegendItem__action{padding-top:2px;max-width:16px;height:16px}.echLegendTable__item .echLegendItem__action:empty{width:0}.echLegendTable__item:last-child .echLegendTable__cell{border-bottom:solid 1px #cad3e2}.echLegendTable__item:not([dir=rtl]) .echLegendTable__cell:last-child{padding-right:2px}.echLegendTable__item[dir=rtl] .echLegendTable__cell:last-child{padding-left:2px}.echLegendTable__item[dir=rtl] .echLegendItem__label{text-align:right}.echLegendTable__item[dir=rtl] .echLegend__legendValue{text-align:left}.echLegendTable__item--highlightable .echLegendTable__cell:hover{background-color:#ecf1f9}.echLegendTable__item--highlightable .echLegendTable__cell:hover~.echLegendTable__cell{background-color:#ecf1f9}.echLegendTable__item--highlightable .echLegendTable__cell:has(~.echLegendTable__cell:hover){background-color:#ecf1f9}.echLegendTable__item:not(.echLegendTable__item--hidden) .echLegendSingleItem__color--changable{cursor:pointer}.echLegendTable__item--vertical{padding-top:2px;padding-bottom:2px}.echLegendTable__item--hidden{color:#5a6d8c}.echLegendTable__item .echLegend__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr;white-space:nowrap}.echLegendTable__cell{font-size:12px;font-size:0.8571428571rem;line-height:1.5;-ms-flex-line-pack:baseline;align-content:baseline;border-bottom:solid 1px #ecf1f9;padding:4px 8px}.echLegendTable__cell--truncate{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}.echLegendTable__colorCell{padding-right:0;padding-left:2px}.echLegendTable__colorCell.echLegend__colorWrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;z-index:1}.echLegendTable__header{cursor:default;font-weight:600;background-color:#fff;font-size:12px}.echLegendTable__header .echLegendTable__cell{border-bottom:solid 1px #cad3e2}[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:#e8f1ff}.echLegend{z-index: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(90,109,140,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.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{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e8f1ff;border-radius:2px}.echLegendItem{color:#1d2a3e;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 .echLegend__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__legendValue){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background):last-child:not(.echLegendItem__legendValue){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#ecf1f9}.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%;display:-webkit-box;display:-ms-flexbox;display:flex}.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.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-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__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#5a6d8c}.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.5;color:#5a6d8c}.echGridContainer{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}.echGridCell{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echGridCell--rightBorder{border-right:1px solid #343741}.echGridCell--bottomBorder{border-bottom:1px solid #343741}.echAlignedGrid{display:grid;-ms-flex-line-pack:stretch;align-content:stretch;width:100%;height:100%}.echAlignedGrid--header{width:100%;height:100%;margin:0;padding:0}.echAlignedGrid__borderRight{border-right:1px solid #edf0f5}.echAlignedGrid__borderBottom{border-bottom:1px solid #edf0f5}.echAlignedGrid--content{width:100%;min-height:0;margin:0;padding:0}.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;line-height:normal}.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}.echMetricText{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0, 1fr);grid-template-rows:-webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content auto min-content min-content;height:100%;padding:8px;line-height:1.2}.echMetricText__gap{overflow:hidden}.echMetricText__titlesBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echMetricText__titlesBlock--left{-webkit-box-align:start;-ms-flex-align:start;align-items:start;text-align:left}.echMetricText__titlesBlock--center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.echMetricText__titlesBlock--center .echMetricText__title button{width:100%}.echMetricText__titlesBlock--right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;text-align:right}.echMetricText .echMetricText__extraBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;padding-top:5px}.echMetricText .echMetricText__extraBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.echMetricText .echMetricText__extraBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText .echMetricText__extraBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.echMetricText__valueBlock{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.echMetricText__valueBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.echMetricText__valueBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText__valueBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.echMetricText__title{word-wrap:break-word;width:100%}.echMetricText__title button{width:95%;outline:none;display:block}.echMetricText__subtitle{padding-top:5px;font-weight:normal;width:95%}.echMetricText__extra{font-weight:normal}.echMetricText__value{position:relative;font-weight:bold;white-space:nowrap;overflow:hidden}.echMetricText__valueIcon{padding-left:8px}.echMetricText__part{font-weight:bold}.echMetricText__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.echMetricText__icon--left{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.echMetricText__icon--right{-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right}.echSingleMetricProgress{position:absolute;border-radius:8px}.echSingleMetricProgress--vertical{left:8px;right:0;top:8px;bottom:0;height:calc(100% - 16px);width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:4px}.echSingleMetricProgress--vertical.echSingleMetricProgress--medium{right:auto;width:8px}.echSingleMetricProgress--vertical.echSingleMetricProgress--large{right:auto;width:16px}.echSingleMetricProgress--horizontal{left:8px;right:0;width:calc(100% - 16px);top:0;bottom:8px;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:4px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--medium{top:auto;height:8px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--large{top:auto;height:16px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s;max-width:100%;max-height:100%}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricTarget{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;overflow:visible;z-index:1}.echSingleMetricTarget--vertical{-webkit-transform:rotate(90deg);transform:rotate(90deg);position:absolute;left:100%;bottom:0}.echSingleMetricTarget--horizontal{position:absolute;bottom:100%}.echSingleMetricZeroBaseline{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;overflow:visible}.echSingleMetricZeroBaseline--vertical{position:absolute;left:0}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--small{right:auto;height:2px;width:6.5px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--medium{right:auto;height:2px;width:13px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--large{right:auto;height:4px;width:26px}.echSingleMetricZeroBaseline--horizontal{position:absolute;bottom:0}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--small{top:auto;width:2px;height:6.5px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--medium{top:auto;width:2px;height:13px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--large{top:auto;width:4px;height:26px}.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}.echSecondaryMetric{display:-webkit-box;display:-ms-flexbox;display:flex;gap:4px;overflow:hidden;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap}.echSecondaryMetric__label{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echSecondaryMetric__value{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:calc(100% - 4px)}.echSecondaryMetric__value--full{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.echSecondaryMetric__truncate{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.echBadge__content{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;overflow:hidden;min-block-size:18px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;padding-block:0px;padding-inline:8px;border:1px solid transparent;border-radius:2px;font-size:inherit;line-height:inherit;text-align:start;text-decoration:none;background-color:#e3e8f2;color:#07101f;cursor:inherit}.echBadge__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;min-width:0}.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--rightBorder{border-right:1px solid #343741}.echMetric--topBorder{border-top:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--withProgressBar--small{padding-left:12px}.echMetric--vertical.echMetric--withProgressBar--medium{padding-left:16px}.echMetric--vertical.echMetric--withProgressBar--large{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--small{padding-left:20px}.echMetric--vertical.echMetric--withTargetProgressBar--medium{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--large{padding-left:32px}.echMetric--horizontal.echMetric--withProgressBar--small{padding-bottom:12px}.echMetric--horizontal.echMetric--withProgressBar--medium{padding-bottom:16px}.echMetric--horizontal.echMetric--withProgressBar--large{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--small{padding-bottom:20px}.echMetric--horizontal.echMetric--withTargetProgressBar--medium{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--large{padding-bottom:32px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}
1
+ .echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.echChart{height:100%;width:100%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChart__titles{margin-right:24px}.echChartContent{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;height:1px;width:100%}.echChartContent--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echChartTitle{font-style:normal;font-weight:bold;font-size:16px;line-height:19px;padding:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echChartTitle+.echChartDescription{padding-top:0}.echChartDescription{padding:8px;font-style:normal;font-weight:normal;font-size:14px;line-height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-ms-flex-negative:0;flex-shrink:0}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;overflow:hidden;width:100%;height:100%}.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:4px;background-color:#444b59;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;padding:8px;font-size:12px;font-size:0.8571428571rem;line-height:1.5;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:#1d2a3e;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:#5d636f}.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{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.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(90,109,140,.5) transparent;scrollbar-width:thin;background-color:#fff}.echTooltip__tableWrapper::-webkit-scrollbar{width:16px;height:16px}.echTooltip__tableWrapper::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.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 #cad3e2;top:0}.echTooltip__tableFooter{margin-top:0;bottom:0}.echTooltip__tableFooter .echTooltip__tableCell{border-top:solid 1px #cad3e2;bottom:0}.echTooltip__tableCell:not(.echTooltip__colorCell){padding:4px}.echTooltip__tableBody .echTooltip__tableCell:not(.echTooltip__colorCell){padding:2px 4px;-webkit-transition:margin 200ms,padding 200ms;transition:margin 200ms,padding 200ms}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#e8f1ff}.echTooltip__tableBody .echTooltip__tableRow--selected .echTooltip__colorCell+.echTooltip__tableCell{margin-left:10px;padding-left:10px}.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableBody .echTooltip__tableRow--selected:hover .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:#e8f1ff}.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(11,100,221,.05)}.echTooltip__tableRow{position:relative}.echTooltip__tableRow--highlighted .echTooltip__tableCell:not(.echTooltip__colorCell),.echTooltip__tableRow--highlighted .echTooltip__colorCell .echTooltip__colorStrip--spacer{background-color:rgba(202,211,226,.5)}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip{width:21px}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--spacer{width:0;min-width:0}.echTooltip__tableRow--selected :not(.echTooltip__colorCell--static) .echTooltip__colorStrip--icon{opacity:1}.echTooltip__colorCell{padding:0;height:100%;position:relative;overflow:hidden;width:21px}.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--icon{opacity:0;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:100%;-webkit-transition:opacity 200ms;transition:opacity 200ms;padding:0 4px}.echTooltip__colorStrip--spacer{left:auto;right:10px;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 #cad3e2}@-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:#516381;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:#516381;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:#1d2a3e}.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:#798eaf}.echTooltipActions__action[disabled]:hover,.echTooltipActions__action[disabled]:focus{text-decoration:none}.echLegendTable__container{scrollbar-color:rgba(90,109,140,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegendTable__container::-webkit-scrollbar{width:16px;height:16px}.echLegendTable__container::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegendTable__container::-webkit-scrollbar-corner,.echLegendTable__container::-webkit-scrollbar-track{background-color:transparent}.echLegendTable__container:focus{outline:none}.echLegendTable__container[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegendTable__container :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e8f1ff;border-radius:2px}.echLegendTable{overflow:auto;display:grid;width:100%;position:relative}.echLegendTable__header,.echLegendTable__rowgroup,.echLegendTable__row{display:contents}.echLegendTable .echColorPickerPopover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegend--vertical .echLegendTable__container{padding:8px}.echLegend--horizontal .echLegendTable{padding:4px 8px 4px 16px}.echLegendTable__item{color:#1d2a3e}.echLegendTable__item .echLegendItem__action{padding-top:2px;max-width:16px;height:16px}.echLegendTable__item .echLegendItem__action:empty{width:0}.echLegendTable__item--actionOnHover .echLegendItem__action{opacity:0}.echLegendTable__item--actionOnHover:hover .echLegendItem__action,.echLegendTable__item--actionOnHover:focus-within .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendTable__item--isActive .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendTable__item:last-child .echLegendTable__cell{border-bottom:solid 1px #cad3e2}.echLegendTable__item:not([dir=rtl]) .echLegendTable__cell:last-child{padding-right:2px}.echLegendTable__item[dir=rtl] .echLegendTable__cell:last-child{padding-left:2px}.echLegendTable__item[dir=rtl] .echLegendItem__label{text-align:right}.echLegendTable__item[dir=rtl] .echLegend__legendValue{text-align:left}.echLegendTable__item--highlightable .echLegendTable__cell:hover{background-color:#ecf1f9}.echLegendTable__item--highlightable .echLegendTable__cell:hover~.echLegendTable__cell{background-color:#ecf1f9}.echLegendTable__item--highlightable .echLegendTable__cell:has(~.echLegendTable__cell:hover){background-color:#ecf1f9}.echLegendTable__item:not(.echLegendTable__item--hidden) .echLegendSingleItem__color--changable{cursor:pointer}.echLegendTable__item--vertical{padding-top:2px;padding-bottom:2px}.echLegendTable__item--hidden{color:#5a6d8c}.echLegendTable__item .echLegend__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr;white-space:nowrap}.echLegendTable__cell{font-size:12px;font-size:0.8571428571rem;line-height:1.5;-ms-flex-line-pack:baseline;align-content:baseline;border-bottom:solid 1px #ecf1f9;padding:4px 8px}.echLegendTable__cell--truncate{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}.echLegendTable__colorCell{padding-right:0;padding-left:2px}.echLegendTable__colorCell.echLegend__colorWrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;z-index:1}.echLegendTable__header{cursor:default;font-weight:600;background-color:#fff;font-size:12px}.echLegendTable__header .echLegendTable__cell{border-bottom:solid 1px #cad3e2}[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:#e8f1ff}.echLegend{z-index:1}.echLegend .echLegendGridList{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 .echLegendGridList{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 .echLegendGridListContainer{scrollbar-color:rgba(90,109,140,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendGridListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendGridListContainer::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.5);background-clip:content-box;border-radius:16px;border:6px solid transparent}.echLegend .echLegendGridListContainer::-webkit-scrollbar-corner,.echLegend .echLegendGridListContainer::-webkit-scrollbar-track{background-color:transparent}.echLegend .echLegendGridListContainer:focus{outline:none}.echLegend .echLegendGridListContainer[tabindex="0"]:focus:focus-visible{outline-style:auto}.echLegend .echLegendGridListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e8f1ff;border-radius:2px}.echLegend{z-index:1}.echLegend .echLegendList{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-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{display:block;margin-top:8px;margin-bottom:8px}.echLegend--horizontal .echLegendListContainer{overflow-x:hidden;overflow-y:auto}.echLegend--horizontal .echLegendListContainer .echLegendList{line-height:24px}.echLegend--horizontal .echLegendListContainer .echLegendItem{display:inline;margin-right:24px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.background{display:none}.echLegend--horizontal .echLegendListContainer .echLegendItem>*:not(.background){display:inline-block;vertical-align:middle;margin-left:8px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__colorLabel{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px;max-width:100%;margin-left:4px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__actionGroup{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px}.echLegend--horizontal .echLegendListContainer .echLegendItem>.echLegendItem__actionGroup>*{margin-left:0}.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(90,109,140,.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%);-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(90,109,140,.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{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e8f1ff;border-radius:2px}.echLegendItem{color:#1d2a3e;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 .echLegend__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__legendValue){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background){margin-right:4px}.echLegendItem[dir=rtl]>*:not(.background):last-child:not(.echLegendItem__legendValue){margin-left:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#ecf1f9}.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%;display:-webkit-box;display:-ms-flexbox;display:flex}.echLegendItem--actionOnHover .echLegendItem__action{opacity:0}.echLegendItem--actionOnHover:hover .echLegendItem__action,.echLegendItem--actionOnHover:focus-within .echLegendItem__action{opacity:1;pointer-events:auto}.echLegendItem--isActive .echLegendItem__action{opacity:1;pointer-events:auto}.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.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-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__legendValue{font-size:12px;font-size:0.8571428571rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";letter-spacing:unset;direction:ltr}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#5a6d8c}.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.5;color:#5a6d8c}.echGridContainer{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}.echGridCell{position:relative;width:100%;height:100%;overflow:hidden;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}.echGridCell--rightBorder{border-right:1px solid #343741}.echGridCell--bottomBorder{border-bottom:1px solid #343741}.echAlignedGrid{display:grid;-ms-flex-line-pack:stretch;align-content:stretch;width:100%;height:100%}.echAlignedGrid--header{width:100%;height:100%;margin:0;padding:0}.echAlignedGrid__borderRight{border-right:1px solid #edf0f5}.echAlignedGrid__borderBottom{border-bottom:1px solid #edf0f5}.echAlignedGrid--content{width:100%;min-height:0;margin:0;padding:0}.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;line-height:normal}.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}.echMetricText{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0, 1fr);grid-template-rows:-webkit-min-content auto -webkit-min-content -webkit-min-content;grid-template-rows:min-content auto min-content min-content;height:100%;padding:8px;line-height:1.2}.echMetricText__gap{overflow:hidden}.echMetricText__titlesBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echMetricText__titlesBlock--left{-webkit-box-align:start;-ms-flex-align:start;align-items:start;text-align:left}.echMetricText__titlesBlock--center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}.echMetricText__titlesBlock--center .echMetricText__title button{width:100%}.echMetricText__titlesBlock--right{-webkit-box-align:end;-ms-flex-align:end;align-items:end;text-align:right}.echMetricText .echMetricText__extraBlock{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden;padding-top:5px}.echMetricText .echMetricText__extraBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.echMetricText .echMetricText__extraBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText .echMetricText__extraBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.echMetricText__valueBlock{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.echMetricText__valueBlock--left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.echMetricText__valueBlock--center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.echMetricText__valueBlock--right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.echMetricText__title{word-wrap:break-word;width:100%}.echMetricText__title button{width:95%;outline:none;display:block}.echMetricText__subtitle{padding-top:5px;font-weight:normal;width:95%}.echMetricText__extra{font-weight:normal}.echMetricText__value{position:relative;font-weight:bold;white-space:nowrap;overflow:hidden}.echMetricText__valueIcon{padding-left:8px}.echMetricText__part{font-weight:bold}.echMetricText__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.echMetricText__icon--left{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.echMetricText__icon--right{-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right}.echSingleMetricProgress{position:absolute;border-radius:8px}.echSingleMetricProgress--vertical{left:8px;right:0;top:8px;bottom:0;height:calc(100% - 16px);width:100%}.echSingleMetricProgress--vertical.echSingleMetricProgress--small{right:auto;width:4px}.echSingleMetricProgress--vertical.echSingleMetricProgress--medium{right:auto;width:8px}.echSingleMetricProgress--vertical.echSingleMetricProgress--large{right:auto;width:16px}.echSingleMetricProgress--horizontal{left:8px;right:0;width:calc(100% - 16px);top:0;bottom:8px;height:100%}.echSingleMetricProgress--horizontal.echSingleMetricProgress--small{top:auto;height:4px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--medium{top:auto;height:8px}.echSingleMetricProgress--horizontal.echSingleMetricProgress--large{top:auto;height:16px}.echSingleMetricProgressBar{-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s;max-width:100%;max-height:100%}.echSingleMetricProgressBar--vertical{position:absolute;left:0;right:0;bottom:0;width:100%}.echSingleMetricProgressBar--horizontal{position:absolute;top:0;bottom:0;left:0;height:100%}.echSingleMetricTarget{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;overflow:visible;z-index:1}.echSingleMetricTarget--vertical{-webkit-transform:rotate(90deg);transform:rotate(90deg);position:absolute;left:100%;bottom:0}.echSingleMetricTarget--horizontal{position:absolute;bottom:100%}.echSingleMetricZeroBaseline{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;overflow:visible}.echSingleMetricZeroBaseline--vertical{position:absolute;left:0}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--small{right:auto;height:2px;width:6.5px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--medium{right:auto;height:2px;width:13px}.echSingleMetricZeroBaseline--vertical.echSingleMetricZeroBaseline--large{right:auto;height:4px;width:26px}.echSingleMetricZeroBaseline--horizontal{position:absolute;bottom:0}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--small{top:auto;width:2px;height:6.5px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--medium{top:auto;width:2px;height:13px}.echSingleMetricZeroBaseline--horizontal.echSingleMetricZeroBaseline--large{top:auto;width:4px;height:26px}.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}.echSecondaryMetric{display:-webkit-box;display:-ms-flexbox;display:flex;gap:4px;overflow:hidden;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap}.echSecondaryMetric__label{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echSecondaryMetric__value{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;max-width:calc(100% - 4px)}.echSecondaryMetric__value--full{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;max-width:100%}.echSecondaryMetric__truncate{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.echBadge__content{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;overflow:hidden;min-block-size:18px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;padding-block:2px;padding-inline:10px;border:1px solid transparent;border-radius:9999px;font-size:inherit;line-height:inherit;text-align:start;text-decoration:none;background-color:#e3e8f2;color:#07101f;cursor:inherit}.echBadge__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;min-width:0}.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--rightBorder{border-right:1px solid #343741}.echMetric--topBorder{border-top:1px solid #343741}.echMetric--bottomBorder{border-bottom:1px solid #343741}.echMetric--vertical.echMetric--withProgressBar--small{padding-left:12px}.echMetric--vertical.echMetric--withProgressBar--medium{padding-left:16px}.echMetric--vertical.echMetric--withProgressBar--large{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--small{padding-left:20px}.echMetric--vertical.echMetric--withTargetProgressBar--medium{padding-left:24px}.echMetric--vertical.echMetric--withTargetProgressBar--large{padding-left:32px}.echMetric--horizontal.echMetric--withProgressBar--small{padding-bottom:12px}.echMetric--horizontal.echMetric--withProgressBar--medium{padding-bottom:16px}.echMetric--horizontal.echMetric--withProgressBar--large{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--small{padding-bottom:20px}.echMetric--horizontal.echMetric--withTargetProgressBar--medium{padding-bottom:24px}.echMetric--horizontal.echMetric--withTargetProgressBar--large{padding-bottom:32px}.echMetricEmpty{position:absolute;bottom:9px;right:11px;width:20px;border-bottom:1px solid}
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../src/components/tooltip/components/_tooltip.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/colors/_semantic_colors.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/_typography.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_typography.scss","../src/components/_mixins.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_font_weight.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/legend/legend_table/_legend_table.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_states.scss","../src/components/legend/_variables.scss","../src/components/legend/legend_table/_legend_single_item.scss","../src/components/legend/legend_table/_legend_table_cell.scss","../src/components/legend/legend_table/_legend_table_header.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../src/components/legend/_legend.scss","../src/components/legend/_legend_item.scss","../src/components/_unavailable_chart.scss","../src/components/grid/_index.scss","../src/components/grid/_aligned_grid.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/dom/_text.scss","../src/chart_types/metric/renderer/_variables.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss","../src/chart_types/metric/renderer/dom/_secondary_metric.scss","../src/chart_types/metric/renderer/dom/_badge.scss","../src/chart_types/metric/renderer/_index.scss"],"names":[],"mappings":"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AzDe,KA0Df,2BAEA,uIAIE,YACA,WACA,aAIJ,sBACE,aACA,gBACA,mBAGF,sBpBxDE,UCdc,KDed,0BAyDF,YE9DkB,IkB8DhB,cACA,gBACA,wBACA,qBACA,mBjBpFF,yBACA,qBACA,qBACA,sBACA,aACA,gBACA,ciBiFE,kCpBoDF,eACA,2BACA,kCACA,8BoBlDE,yCACE,oBACA,4BACA,qBAGF,uCACE,eACA,0BAIJ,4BpBlFE,UCdc,KDed,0BAyDF,YE9DkB,IkBwFhB,iBACA,cACA,YrB3GU,IqB4GV,6BACA,qBACA,cAGF,yBACE,gBACA,mBAEA,uCACE,eAGF,qCACE,eACA,kBAIJ,uBACE,MvBsEc,QuBjEZ,8CACE,iBCxIR,4BACE,aACA,mBACA,uBACA,WACA,YrBkBE,UCdc,KDed,0BAyDF,YE9DkB,ImBZlB,MxBiMgB,QyBxMlB,kBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,aACE,kBACA,WACA,YACA,gBACA,4CAEA,0BACE,+BAGF,2BACE,gCCtBJ,gBACE,aACA,sBACA,WACA,YAEF,wBACE,WACA,YACA,SACA,UAEF,6BACE,+BAEF,8BACE,gCAGF,yBACE,WACA,aACA,SACA,UCvBF,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,U1BDc,K0BEd,YtBJwB,IsBKxB,mBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCxBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,eACE,kBACA,UACA,aACA,qCACA,4DACA,YACA,QCMQ,IDLR,gBAEA,oBACE,gBAGF,4BACE,aACA,sBAIA,kCACE,kBACA,gBAGF,oCACE,mBACA,kBAGE,iEACE,WAKN,mCACE,gBACA,iBAIJ,0CACE,aACA,mBACA,gBACA,gBAEA,gDACE,2BAEF,kDACE,uBAEF,iDACE,yBAIJ,2BACE,WACA,aACA,mBAEA,iCACE,sBAGF,mCACE,uBAGF,kCACE,oBAIJ,sBACE,qBACA,WAEA,6BACE,UACA,aACA,cAIJ,yBACE,gBACA,mBACA,UAGF,sBACE,mBAGF,sBACE,kBACA,iBACA,mBACA,gBAGF,0BACE,aC7FM,IDgGR,qBACE,iBAGF,qBACE,aAEA,2BACE,qBAGF,4BACE,sBEvHN,yBACE,kBACA,cAJ2B,IAM3B,mCACE,KDMM,ICLN,QACA,IDIM,ICHN,SACA,yBACA,WAEA,kEACE,WACA,MDfyB,ICkB3B,mEACE,WACA,MDnB0B,ICsB5B,kEACE,WACA,MDvByB,KC2B7B,qCACE,KDlBM,ICmBN,QACA,wBACA,MACA,ODtBM,ICuBN,YAEA,oEACE,SACA,ODvCyB,IC0C3B,qEACE,SACA,OD3C0B,IC8C5B,oEACE,SACA,OD/CyB,KCoD/B,4BACE,4CACA,eACA,gBAEA,sCACE,kBACA,OACA,QACA,SACA,WAGF,wCACE,kBACA,MACA,SACA,OACA,YAIJ,uBACE,aACA,uBACA,mBACA,iBACA,UAEA,iCACE,wBACA,kBACA,UACA,SAGF,mCACE,kBACA,YAIJ,6BACE,aACA,uBACA,mBACA,iBAcA,uCACE,kBACA,OAEA,0EACE,WACA,OAlBS,IAmBT,MAfgB,MAkBlB,2EACE,WACA,OAxBS,IAyBT,MAxBU,KA2BZ,0EACE,WACA,OArBe,IAsBf,MArBgB,KAyBpB,yCACE,kBACA,SAEA,4EACE,SACA,MAzCS,IA0CT,OAtCgB,MAyClB,6EACE,SACA,MA/CS,IAgDT,OA/CU,KAkDZ,4EACE,SACA,MA5Ce,IA6Cf,OA5CgB,KCjHtB,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA,YC9BF,oBAGE,aACA,IAHkB,IAIlB,gBACA,mBACA,mBAEA,2BACE,cAGF,2BACE,oBACA,cACA,2BAEA,iCACE,cACA,eAIJ,8BACE,YACA,gBACA,uBACA,mBCzBJ,mBACE,oBACA,mBACA,sBACA,gBAEA,oBACA,cACA,YAEA,kBACA,mBAEA,6BACA,kBAEA,kBACA,oBACA,iBACA,qBAEA,iBAxBwB,QAyBxB,MAxBkB,QA0BlB,eAGF,gBACE,gBACA,uBACA,mBACA,WACA,YC5BF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,wBACE,+BAGF,sBACE,6BAGF,yBACE,gCAME,uDACE,kBAEF,wDACE,kBAEF,uDACE,kBAKF,6DACE,kBAEF,8DACE,kBAEF,6DACE,kBAOF,yDACE,oBAEF,0DACE,oBAEF,yDACE,oBAKF,+DACE,oBAEF,gEACE,oBAEF,+DACE,oBAMR,gBACE,kBACA,WACA,WACA,WACA","file":"theme_only_light.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../src/components/_global.scss","../src/components/_container.scss","../src/components/brush/_brush.scss","../src/components/tooltip/components/_tooltip.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_shadow.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_tool_tip.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/colors/_semantic_colors.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_z_index.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_size.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_typography.scss","../../../node_modules/@elastic/eui-theme-borealis/src/variables/_typography.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_typography.scss","../src/components/_mixins.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_helpers.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/variables/_font_weight.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/legend/legend_table/_legend_table.scss","../../../node_modules/@elastic/eui-theme-common/src/global_styling/mixins/_states.scss","../src/components/legend/_variables.scss","../src/components/legend/legend_table/_legend_single_item.scss","../src/components/legend/legend_table/_legend_table_cell.scss","../src/components/legend/legend_table/_legend_table_header.scss","../src/components/portal/_portal.scss","../src/components/icons/_icon.scss","../src/components/legend/_legend_grid_list.scss","../src/components/legend/_legend_list.scss","../src/components/legend/_legend_item.scss","../src/components/_unavailable_chart.scss","../src/components/grid/_index.scss","../src/components/grid/_aligned_grid.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/dom/_text.scss","../src/chart_types/metric/renderer/_variables.scss","../src/chart_types/metric/renderer/dom/_progress.scss","../src/chart_types/metric/renderer/dom/_sparkline.scss","../src/chart_types/metric/renderer/dom/_secondary_metric.scss","../src/chart_types/metric/renderer/dom/_badge.scss","../src/chart_types/metric/renderer/_index.scss"],"names":[],"mappings":"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BACE,gCCtBJ,gBACE,aACA,sBACA,WACA,YAEF,wBACE,WACA,YACA,SACA,UAEF,6BACE,+BAEF,8BACE,gCAGF,yBACE,WACA,aACA,SACA,UCvBF,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,U3BDc,K2BEd,YvBJwB,IuBKxB,mBAGF,wBACE,gBAGF,qBACE,kBAGF,qBACE,mBCxBJ,mBACE,kBACA,MACA,OACA,UACA,SACA,SACA,uBCPF,eACE,kBACA,UACA,aACA,qCACA,4DACA,YACA,QCMQ,IDLR,gBAEA,oBACE,gBAGF,4BACE,aACA,sBAIA,kCACE,kBACA,gBAGF,oCACE,mBACA,kBAGE,iEACE,WAKN,mCACE,gBACA,iBAIJ,0CACE,aACA,mBACA,gBACA,gBAEA,gDACE,2BAEF,kDACE,uBAEF,iDACE,yBAIJ,2BACE,WACA,aACA,mBAEA,iCACE,sBAGF,mCACE,uBAGF,kCACE,oBAIJ,sBACE,qBACA,WAEA,6BACE,UACA,aACA,cAIJ,yBACE,gBACA,mBACA,UAGF,sBACE,mBAGF,sBACE,kBACA,iBACA,mBACA,gBAGF,0BACE,aC7FM,IDgGR,qBACE,iBAGF,qBACE,aAEA,2BACE,qBAGF,4BACE,sBEvHN,yBACE,kBACA,cAJ2B,IAM3B,mCACE,KDMM,ICLN,QACA,IDIM,ICHN,SACA,yBACA,WAEA,kEACE,WACA,MDfyB,ICkB3B,mEACE,WACA,MDnB0B,ICsB5B,kEACE,WACA,MDvByB,KC2B7B,qCACE,KDlBM,ICmBN,QACA,wBACA,MACA,ODtBM,ICuBN,YAEA,oEACE,SACA,ODvCyB,IC0C3B,qEACE,SACA,OD3C0B,IC8C5B,oEACE,SACA,OD/CyB,KCoD/B,4BACE,4CACA,eACA,gBAEA,sCACE,kBACA,OACA,QACA,SACA,WAGF,wCACE,kBACA,MACA,SACA,OACA,YAIJ,uBACE,aACA,uBACA,mBACA,iBACA,UAEA,iCACE,wBACA,kBACA,UACA,SAGF,mCACE,kBACA,YAIJ,6BACE,aACA,uBACA,mBACA,iBAcA,uCACE,kBACA,OAEA,0EACE,WACA,OAlBS,IAmBT,MAfgB,MAkBlB,2EACE,WACA,OAxBS,IAyBT,MAxBU,KA2BZ,0EACE,WACA,OArBe,IAsBf,MArBgB,KAyBpB,yCACE,kBACA,SAEA,4EACE,SACA,MAzCS,IA0CT,OAtCgB,MAyClB,6EACE,SACA,MA/CS,IAgDT,OA/CU,KAkDZ,4EACE,SACA,MA5Ce,IA6Cf,OA5CgB,KCjHtB,0BACE,kBACA,gBACA,MACA,SACA,OACA,QAGF,+BACE,kBACA,MACA,SACA,OACA,QACA,WACA,YACA,wEAEE,gCAIJ,6BACE,kBACA,SACA,UACA,SACA,QACA,YACA,YC9BF,oBAGE,aACA,IAHkB,IAIlB,gBACA,mBACA,mBAEA,2BACE,cAGF,2BACE,oBACA,cACA,2BAEA,iCACE,cACA,eAIJ,8BACE,YACA,gBACA,uBACA,mBCzBJ,mBACE,oBACA,mBACA,sBACA,gBAEA,oBACA,cACA,YAEA,kBACA,oBAEA,6BACA,qBAEA,kBACA,oBACA,iBACA,qBAEA,iBAxBwB,QAyBxB,MAxBkB,QA0BlB,eAGF,gBACE,gBACA,uBACA,mBACA,WACA,YC5BF,oBACE,aACA,WACA,YACA,oBACA,wBACA,oBACA,iBAGF,WACE,kBACA,WACA,YACA,gBACA,4CAEA,+BACE,kBACA,MACA,OACA,QACA,SACA,oBAIA,4CACE,aACA,sBAIJ,wBACE,+BAGF,sBACE,6BAGF,yBACE,gCAME,uDACE,kBAEF,wDACE,kBAEF,uDACE,kBAKF,6DACE,kBAEF,8DACE,kBAEF,6DACE,kBAOF,yDACE,oBAEF,0DACE,oBAEF,yDACE,oBAKF,+DACE,oBAEF,gEACE,oBAEF,+DACE,oBAMR,gBACE,kBACA,WACA,WACA,WACA","file":"theme_only_light.css"}
@@ -13,6 +13,13 @@ export declare const Position: Readonly<{
13
13
  /** @public */
14
14
  export type Position = $Values<typeof Position>;
15
15
  /** @public */
16
+ export declare const LegendLayout: Readonly<{
17
+ List: "list";
18
+ Table: "table";
19
+ }>;
20
+ /** @public */
21
+ export type LegendLayout = $Values<typeof LegendLayout>;
22
+ /** @public */
16
23
  export declare const LayoutDirection: Readonly<{
17
24
  Horizontal: "horizontal";
18
25
  Vertical: "vertical";
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/utils/common.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/utils/common.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAI7C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6DAA6D,CAAC;AAClG,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAG9C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE1C,cAAc;AACd,eAAO,MAAM,QAAQ;;;;;EAKnB,CAAC;AACH,cAAc;AACd,MAAM,MAAM,QAAQ,GAAG,OAAO,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEhD,cAAc;AACd,eAAO,MAAM,YAAY;;;EAGvB,CAAC;AACH,cAAc;AACd,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,OAAO,YAAY,CAAC,CAAC;AAExD,cAAc;AACd,eAAO,MAAM,eAAe;;;EAG1B,CAAC;AACH,cAAc;AACd,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D;;;;GAIG;AACH,eAAO,MAAM,YAAY;IACvB;;;OAGG;;IAEH;;OAEG;;IAEH;;OAEG;;EAEH,CAAC;AACH,cAAc;AACd,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,OAAO,YAAY,CAAC,CAAC;AAExD,cAAc;AACd,eAAO,MAAM,mBAAmB;;;;IAI9B;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;EAEH,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,cAAc;AACd,eAAO,MAAM,iBAAiB;;;;IAI5B;;;;;;;OAOG;;IAEH;;;;;;;OAOG;;EAEH,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,cAAc;AACd,MAAM,MAAM,KAAK,GAAG,GAAG,CAAC;AACxB,cAAc;AACd,MAAM,MAAM,QAAQ,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,CAAC;AAC1C,cAAc;AACd,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,KAAK,CAAC;AACzC,cAAc;AACd,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC;AAuDhC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;KAC/B,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,MAAM,EAAE,GAClC,CAAC,CAAC,CAAC,CAAC,GACJ,CAAC,CAAC,CAAC,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,GAChC,CAAC,CAAC,CAAC,CAAC,GACJ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,GACtB,gBAAgB,CAAC,CAAC,CAAC,EAAE,GACrB,CAAC,CAAC,CAAC,CAAC,SAAS,aAAa,CAAC,MAAM,CAAC,CAAC,GACjC,aAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,GAClC,CAAC,CAAC,CAAC,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,CAAC,GACvB,GAAG,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,GACxB,CAAC,CAAC,CAAC,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,GAChC,GAAG,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,GAC3B,CAAC,CAAC,CAAC,CAAC,SAAS,MAAM,GACjB,CAAC,CAAC,CAAC,CAAC,GACJ,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,GAC7B,CAAC,CAAC,CAAC,CAAC,GACJ,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CACzC,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,GAAG,KAAK,IAAI,IAAI,GAAG,KAAK,SAAS,CAAC,CAAC,SAAS,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;AAEjH;;;GAGG;AACH,MAAM,MAAM,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,GAAG,KAAK,IAAI,OAAO,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,GAAG,KAAK,CAAC;AAElG,cAAc;AACd,MAAM,MAAM,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;AAE/D,cAAc;AACd,MAAM,WAAW,YAAY;IAC3B;;;;;;OAMG;IACH,0BAA0B,CAAC,EAAE,OAAO,CAAC;IACrC;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AA2LD,cAAc;AACd,MAAM,MAAM,cAAc,CAAC,CAAC,GAAG,MAAM,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,CAAC;AAC9D,cAAc;AACd,MAAM,MAAM,aAAa,CAAC,CAAC,SAAS,SAAS,GAAG,KAAK,IAAI,CAAC,CAAC,EAAE,CAAC,KAAK,cAAc,CAAC;AAClF,cAAc;AACd,MAAM,MAAM,aAAa,CAAC,CAAC,GAAG,cAAc,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,CAAC;AACrE,cAAc;AACd,MAAM,MAAM,YAAY,GAAG,CAAC,KAAK,EAAE,cAAc,KAAK,OAAO,CAAC;AAiM9D;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,EAC3D,KAAK,EAAE,CAAC,EAAE,EACV,QAAQ,EAAE,MAAM,CAAC,EACjB,WAAW,EAAE,CAAC,GACb,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAKnB"}
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.clampAll = exports.inRange = exports.isWithinRange = exports.isBetween = exports.range = exports.roundTo = exports.round = exports.radToDeg = exports.degToRad = exports.VerticalAlignment = exports.HorizontalAlignment = exports.ColorVariant = exports.LayoutDirection = exports.Position = void 0;
26
+ exports.clampAll = exports.inRange = exports.isWithinRange = exports.isBetween = exports.range = exports.roundTo = exports.round = exports.radToDeg = exports.degToRad = exports.VerticalAlignment = exports.HorizontalAlignment = exports.ColorVariant = exports.LayoutDirection = exports.LegendLayout = exports.Position = void 0;
27
27
  exports.compareByValueAsc = compareByValueAsc;
28
28
  exports.clamp = clamp;
29
29
  exports.getColorFromVariant = getColorFromVariant;
@@ -64,6 +64,10 @@ exports.Position = Object.freeze({
64
64
  Left: 'left',
65
65
  Right: 'right',
66
66
  });
67
+ exports.LegendLayout = Object.freeze({
68
+ List: 'list',
69
+ Table: 'table',
70
+ });
67
71
  exports.LayoutDirection = Object.freeze({
68
72
  Horizontal: 'horizontal',
69
73
  Vertical: 'vertical',
@@ -1 +1 @@
1
- {"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/utils/common.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/utils/common.tsx"],"names":[],"mappings":"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"}
@@ -17,6 +17,7 @@ export interface TextStyle {
17
17
  fontSize: number;
18
18
  fontFamily: string;
19
19
  fontStyle?: FontStyle;
20
+ fontWeight?: FontWeight;
20
21
  fill: Color;
21
22
  padding: number | SimplePadding;
22
23
  }
@@ -375,7 +376,16 @@ export interface LegendLabelOptions {
375
376
  *
376
377
  * @defaultValue 1
377
378
  */
378
- maxLines: number;
379
+ maxLines?: number;
380
+ /**
381
+ * Sets widthLimit allowable before truncating (unit: px)
382
+ * Only applicable if the list layout is chosen for the top and bottom positions
383
+ *
384
+ * Setting value to `0` will _never_ truncate the text
385
+ *
386
+ * @defaultValue 250
387
+ */
388
+ widthLimit?: number;
379
389
  }
380
390
  /** @public */
381
391
  export interface LegendStyle {