@elastic/charts 37.0.0 → 38.0.3
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.
- package/CHANGELOG.md +51 -0
- package/NOTICE.txt +21 -0
- package/dist/chart_types/goal_chart/layout/viewmodel/geoms.js +20 -10
- package/dist/chart_types/goal_chart/layout/viewmodel/geoms.js.map +1 -1
- package/dist/chart_types/goal_chart/layout/viewmodel/utils.d.ts +2 -0
- package/dist/chart_types/goal_chart/layout/viewmodel/utils.d.ts.map +1 -0
- package/dist/chart_types/goal_chart/layout/viewmodel/utils.js +37 -0
- package/dist/chart_types/goal_chart/layout/viewmodel/utils.js.map +1 -0
- package/dist/chart_types/goal_chart/state/selectors/scenegraph.js +5 -13
- package/dist/chart_types/goal_chart/state/selectors/scenegraph.js.map +1 -1
- package/dist/chart_types/heatmap/layout/viewmodel/viewmodel.js +5 -7
- package/dist/chart_types/heatmap/layout/viewmodel/viewmodel.js.map +1 -1
- package/dist/chart_types/heatmap/state/selectors/get_heatmap_config.js +1 -3
- package/dist/chart_types/heatmap/state/selectors/get_heatmap_config.js.map +1 -1
- package/dist/chart_types/heatmap/state/selectors/get_x_axis_right_overflow.js +10 -19
- package/dist/chart_types/heatmap/state/selectors/get_x_axis_right_overflow.js.map +1 -1
- package/dist/chart_types/heatmap/state/selectors/scenegraph.js +1 -1
- package/dist/chart_types/heatmap/state/selectors/scenegraph.js.map +1 -1
- package/dist/chart_types/partition_chart/layout/config.js +1 -1
- package/dist/chart_types/partition_chart/layout/config.js.map +1 -1
- package/dist/chart_types/partition_chart/layout/viewmodel/fill_text_layout.js +5 -4
- package/dist/chart_types/partition_chart/layout/viewmodel/fill_text_layout.js.map +1 -1
- package/dist/chart_types/partition_chart/layout/viewmodel/scenegraph.js +1 -1
- package/dist/chart_types/partition_chart/layout/viewmodel/scenegraph.js.map +1 -1
- package/dist/chart_types/wordcloud/state/selectors/scenegraph.js +1 -4
- package/dist/chart_types/wordcloud/state/selectors/scenegraph.js.map +1 -1
- package/dist/chart_types/xy_chart/annotations/line/dimensions.js +14 -13
- package/dist/chart_types/xy_chart/annotations/line/dimensions.js.map +1 -1
- package/dist/chart_types/xy_chart/annotations/rect/dimensions.js +11 -13
- package/dist/chart_types/xy_chart/annotations/rect/dimensions.js.map +1 -1
- package/dist/chart_types/xy_chart/annotations/utils.js +5 -7
- package/dist/chart_types/xy_chart/annotations/utils.js.map +1 -1
- package/dist/chart_types/xy_chart/axes/axes_sizes.js +80 -35
- package/dist/chart_types/xy_chart/axes/axes_sizes.js.map +1 -1
- package/dist/chart_types/xy_chart/crosshair/crosshair_utils.js +2 -2
- package/dist/chart_types/xy_chart/crosshair/crosshair_utils.js.map +1 -1
- package/dist/chart_types/xy_chart/domains/x_domain.js +1 -1
- package/dist/chart_types/xy_chart/domains/x_domain.js.map +1 -1
- package/dist/chart_types/xy_chart/legend/legend.js +10 -19
- package/dist/chart_types/xy_chart/legend/legend.js.map +1 -1
- package/dist/chart_types/xy_chart/renderer/canvas/axes/tick_label.js +1 -1
- package/dist/chart_types/xy_chart/renderer/canvas/axes/tick_label.js.map +1 -1
- package/dist/chart_types/xy_chart/renderer/canvas/panels/title.js +4 -2
- package/dist/chart_types/xy_chart/renderer/canvas/panels/title.js.map +1 -1
- package/dist/chart_types/xy_chart/renderer/canvas/renderers.js +2 -2
- package/dist/chart_types/xy_chart/renderer/canvas/renderers.js.map +1 -1
- package/dist/chart_types/xy_chart/renderer/canvas/xy_chart.js +2 -2
- package/dist/chart_types/xy_chart/renderer/canvas/xy_chart.js.map +1 -1
- package/dist/chart_types/xy_chart/renderer/dom/cursor_band.d.ts +2 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_band.d.ts.map +1 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_band.js +87 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_band.js.map +1 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_crossline.d.ts +2 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_crossline.d.ts.map +1 -0
- package/dist/chart_types/xy_chart/renderer/dom/{crosshair.js → cursor_crossline.js} +11 -37
- package/dist/chart_types/xy_chart/renderer/dom/cursor_crossline.js.map +1 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_line.d.ts +2 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_line.d.ts.map +1 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_line.js +89 -0
- package/dist/chart_types/xy_chart/renderer/dom/cursor_line.js.map +1 -0
- package/dist/chart_types/xy_chart/rendering/area.js +11 -33
- package/dist/chart_types/xy_chart/rendering/area.js.map +1 -1
- package/dist/chart_types/xy_chart/rendering/bars.js +8 -9
- package/dist/chart_types/xy_chart/rendering/bars.js.map +1 -1
- package/dist/chart_types/xy_chart/rendering/line.js +4 -13
- package/dist/chart_types/xy_chart/rendering/line.js.map +1 -1
- package/dist/chart_types/xy_chart/rendering/point_style.js +2 -4
- package/dist/chart_types/xy_chart/rendering/point_style.js.map +1 -1
- package/dist/chart_types/xy_chart/rendering/points.js +9 -24
- package/dist/chart_types/xy_chart/rendering/points.js.map +1 -1
- package/dist/chart_types/xy_chart/rendering/utils.js +20 -31
- package/dist/chart_types/xy_chart/rendering/utils.js.map +1 -1
- package/dist/chart_types/xy_chart/specs/axis.d.ts +2 -2
- package/dist/chart_types/xy_chart/specs/axis.d.ts.map +1 -1
- package/dist/chart_types/xy_chart/specs/axis.js +2 -3
- package/dist/chart_types/xy_chart/specs/axis.js.map +1 -1
- package/dist/chart_types/xy_chart/state/chart_state.js +6 -2
- package/dist/chart_types/xy_chart/state/chart_state.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_annotations.js +10 -12
- package/dist/chart_types/xy_chart/state/selectors/compute_annotations.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_axes_geometries.js +5 -20
- package/dist/chart_types/xy_chart/state/selectors/compute_axes_geometries.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_axis_ticks_dimensions.js +75 -40
- package/dist/chart_types/xy_chart/state/selectors/compute_axis_ticks_dimensions.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_chart_dimensions.js +2 -4
- package/dist/chart_types/xy_chart/state/selectors/compute_chart_dimensions.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_legend.js +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_legend.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_series_domains.js +2 -4
- package/dist/chart_types/xy_chart/state/selectors/compute_series_domains.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_series_geometries.js +4 -4
- package/dist/chart_types/xy_chart/state/selectors/compute_series_geometries.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_axis_styles.js +4 -15
- package/dist/chart_types/xy_chart/state/selectors/get_axis_styles.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_brush_area.js +2 -3
- package/dist/chart_types/xy_chart/state/selectors/get_brush_area.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_chart_type_description.js +1 -2
- package/dist/chart_types/xy_chart/state/selectors/get_chart_type_description.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_cursor_band.js +6 -6
- package/dist/chart_types/xy_chart/state/selectors/get_cursor_band.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_debug_state.js +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_debug_state.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_elements_at_cursor_pos.js +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_elements_at_cursor_pos.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_grid_lines.js +2 -4
- package/dist/chart_types/xy_chart/state/selectors/get_grid_lines.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_projected_scaled_values.js +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_projected_scaled_values.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_series_color_map.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_specs.js +2 -1
- package/dist/chart_types/xy_chart/state/selectors/get_specs.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_position.js +2 -3
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_position.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_snap.js +1 -4
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_snap.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_values_highlighted_geoms.js +5 -7
- package/dist/chart_types/xy_chart/state/selectors/get_tooltip_values_highlighted_geoms.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/is_brush_available.js +1 -6
- package/dist/chart_types/xy_chart/state/selectors/is_brush_available.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/is_brushing.js +1 -6
- package/dist/chart_types/xy_chart/state/selectors/is_brushing.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/is_tooltip_snap_enabled.js +1 -4
- package/dist/chart_types/xy_chart/state/selectors/is_tooltip_snap_enabled.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/is_tooltip_visible.js +2 -2
- package/dist/chart_types/xy_chart/state/selectors/on_brush_end_caller.js +10 -6
- package/dist/chart_types/xy_chart/state/selectors/on_brush_end_caller.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/on_click_caller.js +4 -5
- package/dist/chart_types/xy_chart/state/selectors/on_click_caller.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/on_element_out_caller.js +7 -12
- package/dist/chart_types/xy_chart/state/selectors/on_element_out_caller.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/on_element_over_caller.js +10 -16
- package/dist/chart_types/xy_chart/state/selectors/on_element_over_caller.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/on_pointer_move_caller.js +10 -33
- package/dist/chart_types/xy_chart/state/selectors/on_pointer_move_caller.js.map +1 -1
- package/dist/chart_types/xy_chart/state/selectors/visible_ticks.d.ts +2 -0
- package/dist/chart_types/xy_chart/state/selectors/visible_ticks.d.ts.map +1 -0
- package/dist/chart_types/xy_chart/state/selectors/visible_ticks.js +223 -0
- package/dist/chart_types/xy_chart/state/selectors/visible_ticks.js.map +1 -0
- package/dist/chart_types/xy_chart/state/utils/spec.js +5 -4
- package/dist/chart_types/xy_chart/state/utils/spec.js.map +1 -1
- package/dist/chart_types/xy_chart/state/utils/utils.js +32 -51
- package/dist/chart_types/xy_chart/state/utils/utils.js.map +1 -1
- package/dist/chart_types/xy_chart/tooltip/tooltip.js +3 -4
- package/dist/chart_types/xy_chart/tooltip/tooltip.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/axis_utils.js +43 -130
- package/dist/chart_types/xy_chart/utils/axis_utils.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/dimensions.js +27 -23
- package/dist/chart_types/xy_chart/utils/dimensions.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/fill_series.js +3 -1
- package/dist/chart_types/xy_chart/utils/fill_series.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/get_linear_ticks.d.ts +2 -0
- package/dist/chart_types/xy_chart/utils/get_linear_ticks.d.ts.map +1 -0
- package/dist/chart_types/xy_chart/utils/get_linear_ticks.js +99 -0
- package/dist/chart_types/xy_chart/utils/get_linear_ticks.js.map +1 -0
- package/dist/chart_types/xy_chart/utils/grid_lines.js +3 -4
- package/dist/chart_types/xy_chart/utils/grid_lines.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/panel_utils.js +2 -3
- package/dist/chart_types/xy_chart/utils/panel_utils.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/scales.js +1 -2
- package/dist/chart_types/xy_chart/utils/scales.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/series.js +8 -12
- package/dist/chart_types/xy_chart/utils/series.js.map +1 -1
- package/dist/chart_types/xy_chart/utils/specs.d.ts +2 -3
- package/dist/chart_types/xy_chart/utils/specs.d.ts.map +1 -1
- package/dist/chart_types/xy_chart/utils/specs.js.map +1 -1
- package/dist/components/legend/legend.js.map +1 -1
- package/dist/components/legend/position_style.js +2 -2
- package/dist/components/legend/position_style.js.map +1 -1
- package/dist/components/legend/style_utils.js.map +1 -1
- package/dist/components/portal/tooltip_portal.js +1 -1
- package/dist/components/portal/tooltip_portal.js.map +1 -1
- package/dist/components/portal/utils.js +1 -1
- package/dist/components/portal/utils.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/dist/scales/constants.d.ts +4 -0
- package/dist/scales/constants.d.ts.map +1 -1
- package/dist/scales/constants.js +1 -0
- package/dist/scales/constants.js.map +1 -1
- package/dist/scales/index.d.ts +2 -2
- package/dist/scales/index.d.ts.map +1 -1
- package/dist/scales/index.js +1 -3
- package/dist/scales/index.js.map +1 -1
- package/dist/scales/scale_band.js +3 -16
- package/dist/scales/scale_band.js.map +1 -1
- package/dist/scales/scale_continuous.d.ts +1 -40
- package/dist/scales/scale_continuous.d.ts.map +1 -1
- package/dist/scales/scale_continuous.js +150 -225
- package/dist/scales/scale_continuous.js.map +1 -1
- package/dist/scales/types.d.ts +19 -1
- package/dist/scales/types.d.ts.map +1 -1
- package/dist/specs/constants.d.ts.map +1 -1
- package/dist/specs/constants.js +1 -1
- package/dist/specs/constants.js.map +1 -1
- package/dist/specs/settings.d.ts +4 -11
- package/dist/specs/settings.d.ts.map +1 -1
- package/dist/specs/settings.js +7 -14
- package/dist/specs/settings.js.map +1 -1
- package/dist/state/selectors/get_chart_theme.js +4 -4
- package/dist/state/selectors/get_chart_theme.js.map +1 -1
- package/dist/state/selectors/get_legend_size.js.map +1 -1
- package/dist/state/selectors/is_external_tooltip_visible.js +1 -1
- package/dist/state/selectors/is_external_tooltip_visible.js.map +1 -1
- package/dist/state/utils.js +3 -19
- package/dist/state/utils.js.map +1 -1
- package/dist/theme.scss +24 -3
- package/dist/theme_dark.css +1 -1
- package/dist/theme_light.css +1 -1
- package/dist/theme_only_dark.css +1 -1
- package/dist/theme_only_light.css +1 -1
- package/dist/utils/bbox/canvas_text_bbox_calculator.js +0 -2
- package/dist/utils/bbox/canvas_text_bbox_calculator.js.map +1 -1
- package/dist/utils/common.d.ts.map +1 -1
- package/dist/utils/common.js +17 -42
- package/dist/utils/common.js.map +1 -1
- package/dist/utils/data/formatters.d.ts.map +1 -1
- package/dist/utils/data/formatters.js +3 -6
- package/dist/utils/data/formatters.js.map +1 -1
- package/dist/utils/series_sort.d.ts.map +1 -1
- package/dist/utils/series_sort.js +13 -21
- package/dist/utils/series_sort.js.map +1 -1
- package/dist/utils/themes/merge_utils.d.ts +3 -2
- package/dist/utils/themes/merge_utils.d.ts.map +1 -1
- package/dist/utils/themes/merge_utils.js +3 -3
- package/dist/utils/themes/merge_utils.js.map +1 -1
- package/package.json +1 -1
- package/dist/chart_types/xy_chart/renderer/dom/crosshair.d.ts +0 -2
- package/dist/chart_types/xy_chart/renderer/dom/crosshair.d.ts.map +0 -1
- package/dist/chart_types/xy_chart/renderer/dom/crosshair.js.map +0 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_grid_lines.d.ts +0 -2
- package/dist/chart_types/xy_chart/state/selectors/compute_grid_lines.d.ts.map +0 -1
- package/dist/chart_types/xy_chart/state/selectors/compute_grid_lines.js +0 -13
- package/dist/chart_types/xy_chart/state/selectors/compute_grid_lines.js.map +0 -1
- package/dist/chart_types/xy_chart/state/selectors/is_chart_animatable.d.ts +0 -2
- package/dist/chart_types/xy_chart/state/selectors/is_chart_animatable.d.ts.map +0 -1
- package/dist/chart_types/xy_chart/state/selectors/is_chart_animatable.js +0 -10
- package/dist/chart_types/xy_chart/state/selectors/is_chart_animatable.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../src/specs/settings.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../src/specs/settings.tsx"],"names":[],"mappings":"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"}
|
package/dist/specs/settings.js
CHANGED
|
@@ -31,34 +31,27 @@ exports.isFollowTooltipType = isFollowTooltipType;
|
|
|
31
31
|
function getTooltipType(settings, externalTooltip) {
|
|
32
32
|
if (externalTooltip === void 0) { externalTooltip = false; }
|
|
33
33
|
var defaultType = constants_1.TooltipType.VerticalCursor;
|
|
34
|
-
if (externalTooltip)
|
|
34
|
+
if (externalTooltip)
|
|
35
35
|
return getExternalTooltipType(settings);
|
|
36
|
-
}
|
|
37
36
|
var tooltip = settings.tooltip;
|
|
38
|
-
if (tooltip === undefined || tooltip === null)
|
|
37
|
+
if (tooltip === undefined || tooltip === null)
|
|
39
38
|
return defaultType;
|
|
40
|
-
|
|
41
|
-
if (isTooltipType(tooltip)) {
|
|
39
|
+
if (isTooltipType(tooltip))
|
|
42
40
|
return tooltip;
|
|
43
|
-
|
|
44
|
-
if (isTooltipProps(tooltip)) {
|
|
41
|
+
if (isTooltipProps(tooltip))
|
|
45
42
|
return tooltip.type || defaultType;
|
|
46
|
-
}
|
|
47
43
|
return defaultType;
|
|
48
44
|
}
|
|
49
45
|
exports.getTooltipType = getTooltipType;
|
|
50
46
|
function getShowNullValues(settings) {
|
|
51
47
|
var _a;
|
|
52
48
|
var tooltip = settings.tooltip;
|
|
53
|
-
if (tooltip === undefined || tooltip === null)
|
|
49
|
+
if (tooltip === undefined || tooltip === null)
|
|
54
50
|
return constants_1.DEFAULT_TOOLTIP_CONFIG.showNullValues;
|
|
55
|
-
|
|
56
|
-
if (isTooltipType(tooltip)) {
|
|
51
|
+
if (isTooltipType(tooltip))
|
|
57
52
|
return constants_1.DEFAULT_TOOLTIP_CONFIG.showNullValues;
|
|
58
|
-
|
|
59
|
-
if (isTooltipProps(tooltip)) {
|
|
53
|
+
if (isTooltipProps(tooltip))
|
|
60
54
|
return (_a = tooltip.showNullValues) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_TOOLTIP_CONFIG.showNullValues;
|
|
61
|
-
}
|
|
62
55
|
}
|
|
63
56
|
exports.getShowNullValues = getShowNullValues;
|
|
64
57
|
function getExternalTooltipType(_a) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/specs/settings.tsx"],"names":[],"mappings":";;;AAuBA,sDAAyE;AAczE,yCASqB;
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../src/specs/settings.tsx"],"names":[],"mappings":";;;AAuBA,sDAAyE;AAczE,yCASqB;AAipBR,QAAA,QAAQ,GAA+C,IAAA,yBAAU,GAAE,CAC9E,IAAA,mCAAoB,EAAqC,iCAAqB,CAAC,CAChF,CAAC;AAGF,SAAgB,iBAAiB,CAAC,KAAsC;IACtE,OAAO,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,IAAI,MAAK,4BAAgB,CAAC,GAAG,CAAC;AAC9C,CAAC;AAFD,8CAEC;AAGD,SAAgB,kBAAkB,CAAC,KAAsC;IACvE,OAAO,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,IAAI,MAAK,4BAAgB,CAAC,IAAI,CAAC;AAC/C,CAAC;AAFD,gDAEC;AAGD,SAAgB,cAAc,CAAC,MAAkC;IAC/D,OAAO,OAAO,MAAM,KAAK,QAAQ,CAAC;AACpC,CAAC;AAFD,wCAEC;AAGD,SAAgB,aAAa,CAAC,MAAkC;IAC9D,OAAO,OAAO,MAAM,KAAK,QAAQ,CAAC;AACpC,CAAC;AAFD,sCAEC;AAGD,SAAgB,sBAAsB,CAAC,IAAiB;IACtD,OAAO,IAAI,KAAK,uBAAW,CAAC,cAAc,IAAI,IAAI,KAAK,uBAAW,CAAC,UAAU,CAAC;AAChF,CAAC;AAFD,wDAEC;AAGD,SAAgB,mBAAmB,CAAC,IAAiB;IACnD,OAAO,IAAI,KAAK,uBAAW,CAAC,MAAM,CAAC;AACrC,CAAC;AAFD,kDAEC;AAGD,SAAgB,cAAc,CAAC,QAAsB,EAAE,eAAuB;IAAvB,gCAAA,EAAA,uBAAuB;IAC5E,IAAM,WAAW,GAAG,uBAAW,CAAC,cAAc,CAAC;IAC/C,IAAI,eAAe;QAAE,OAAO,sBAAsB,CAAC,QAAQ,CAAC,CAAC;IAErD,IAAA,OAAO,GAAK,QAAQ,QAAb,CAAc;IAC7B,IAAI,OAAO,KAAK,SAAS,IAAI,OAAO,KAAK,IAAI;QAAE,OAAO,WAAW,CAAC;IAClE,IAAI,aAAa,CAAC,OAAO,CAAC;QAAE,OAAO,OAAO,CAAC;IAC3C,IAAI,cAAc,CAAC,OAAO,CAAC;QAAE,OAAO,OAAO,CAAC,IAAI,IAAI,WAAW,CAAC;IAChE,OAAO,WAAW,CAAC;AACrB,CAAC;AATD,wCASC;AAMD,SAAgB,iBAAiB,CAAC,QAAsB;;IAC9C,IAAA,OAAO,GAAK,QAAQ,QAAb,CAAc;IAC7B,IAAI,OAAO,KAAK,SAAS,IAAI,OAAO,KAAK,IAAI;QAAE,OAAO,kCAAsB,CAAC,cAAc,CAAC;IAC5F,IAAI,aAAa,CAAC,OAAO,CAAC;QAAE,OAAO,kCAAsB,CAAC,cAAc,CAAC;IACzE,IAAI,cAAc,CAAC,OAAO,CAAC;QAAE,OAAO,MAAA,OAAO,CAAC,cAAc,mCAAI,kCAAsB,CAAC,cAAc,CAAC;AACtG,CAAC;AALD,8CAKC;AAOD,SAAgB,sBAAsB,CAAC,EAIxB;QAFA,OAAO,2CAAA;IAGpB,OAAO,OAAO,CAAC,CAAC,CAAC,uBAAW,CAAC,cAAc,CAAC,CAAC,CAAC,uBAAW,CAAC,IAAI,CAAC;AACjE,CAAC;AAND,wDAMC"}
|
|
@@ -17,17 +17,17 @@ var __read = (this && this.__read) || function (o, n) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.getChartThemeSelector = void 0;
|
|
20
|
+
var common_1 = require("../../utils/common");
|
|
20
21
|
var light_theme_1 = require("../../utils/themes/light_theme");
|
|
21
|
-
var merge_utils_1 = require("../../utils/themes/merge_utils");
|
|
22
22
|
var create_selector_1 = require("../create_selector");
|
|
23
23
|
var get_settings_specs_1 = require("./get_settings_specs");
|
|
24
24
|
exports.getChartThemeSelector = (0, create_selector_1.createCustomCachedSelector)([get_settings_specs_1.getSettingsSpecSelector], function (settingsSpec) { return getTheme(settingsSpec.baseTheme, settingsSpec.theme); });
|
|
25
25
|
function getTheme(baseTheme, theme) {
|
|
26
|
-
var base = baseTheme
|
|
26
|
+
var base = baseTheme !== null && baseTheme !== void 0 ? baseTheme : light_theme_1.LIGHT_THEME;
|
|
27
27
|
if (Array.isArray(theme)) {
|
|
28
28
|
var _a = __read(theme), firstTheme = _a[0], axillaryThemes = _a.slice(1);
|
|
29
|
-
return (0,
|
|
29
|
+
return (0, common_1.mergePartial)(base, firstTheme, {}, axillaryThemes);
|
|
30
30
|
}
|
|
31
|
-
return theme ? (0,
|
|
31
|
+
return theme ? (0, common_1.mergePartial)(base, theme) : base;
|
|
32
32
|
}
|
|
33
33
|
//# sourceMappingURL=get_chart_theme.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get_chart_theme.js","sourceRoot":"","sources":["../../../src/state/selectors/get_chart_theme.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAQA,
|
|
1
|
+
{"version":3,"file":"get_chart_theme.js","sourceRoot":"","sources":["../../../src/state/selectors/get_chart_theme.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAQA,6CAAkD;AAClD,8DAA6D;AAE7D,sDAAgE;AAChE,2DAA+D;AAGlD,QAAA,qBAAqB,GAAG,IAAA,4CAA0B,EAC7D,CAAC,4CAAuB,CAAC,EACzB,UAAC,YAAY,IAAY,OAAA,QAAQ,CAAC,YAAY,CAAC,SAAS,EAAE,YAAY,CAAC,KAAK,CAAC,EAApD,CAAoD,CAC9E,CAAC;AAEF,SAAS,QAAQ,CAAC,SAAiB,EAAE,KAAqC;IACxE,IAAM,IAAI,GAAG,SAAS,aAAT,SAAS,cAAT,SAAS,GAAI,yBAAW,CAAC;IAEtC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;QAClB,IAAA,KAAA,OAAkC,KAAK,CAAA,EAAtC,UAAU,QAAA,EAAK,cAAc,cAAS,CAAC;QAC9C,OAAO,IAAA,qBAAY,EAAC,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE,cAAc,CAAC,CAAC;KAC3D;IAED,OAAO,KAAK,CAAC,CAAC,CAAC,IAAA,qBAAY,EAAC,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;AAClD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get_legend_size.js","sourceRoot":"","sources":["../../../src/state/selectors/get_legend_size.ts"],"names":[],"mappings":";;;AAQA,mEAA8E;AAC9E,yEAA+E;AAE/E,
|
|
1
|
+
{"version":3,"file":"get_legend_size.js","sourceRoot":"","sources":["../../../src/state/selectors/get_legend_size.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,7 +26,7 @@ exports.isExternalTooltipVisibleSelector = (0, create_selector_1.createCustomCac
|
|
|
26
26
|
return false;
|
|
27
27
|
}
|
|
28
28
|
var x = xScale.pureScale(pointer.x);
|
|
29
|
-
if (x
|
|
29
|
+
if (Number.isNaN(x) || x > chartDimensions.width + chartDimensions.left || x < 0) {
|
|
30
30
|
return false;
|
|
31
31
|
}
|
|
32
32
|
return Boolean(hasExternalEvent && ((_e = externalPointerEvents.tooltip) === null || _e === void 0 ? void 0 : _e.visible));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is_external_tooltip_visible.js","sourceRoot":"","sources":["../../../src/state/selectors/is_external_tooltip_visible.ts"],"names":[],"mappings":";;;AAQA,gHAAqH;AACrH,sGAA2G;AAC3G,qCAA+C;AAE/C,sDAAgE;AAChE,2DAA+D;AAC/D,2EAAwE;AAExE,IAAM,uBAAuB,GAAG,UAAC,EAAiD;QAA7B,OAAO,4BAAA;IAA2B,OAAA,OAAO;AAAP,CAAO,CAAC;AAGlF,QAAA,gCAAgC,GAAG,IAAA,4CAA0B,EACxE;IACE,4CAAuB;IACvB,qDAAwB;IACxB,uBAAuB;IACvB,+CAAyB;IACzB,yDAA8B;CAC/B,EACD,UAAC,EAAyB,EAAE,gBAAgB,EAAE,OAAO,EAAE,EAAU,EAAE,EAAmB;;QAAnF,qBAAqB,2BAAA;QAAiC,MAAM,YAAA;QAAM,eAAe,qBAAA;IAClF,IAAI,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,KAAK,wBAAgB,CAAC,IAAI,IAAI,CAAA,MAAA,qBAAqB,CAAC,OAAO,0CAAE,OAAO,MAAK,KAAK,EAAE;QAC1G,OAAO,KAAK,CAAC;KACd;IACD,IAAM,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAEtC,IAAI,CAAC,KAAK,
|
|
1
|
+
{"version":3,"file":"is_external_tooltip_visible.js","sourceRoot":"","sources":["../../../src/state/selectors/is_external_tooltip_visible.ts"],"names":[],"mappings":";;;AAQA,gHAAqH;AACrH,sGAA2G;AAC3G,qCAA+C;AAE/C,sDAAgE;AAChE,2DAA+D;AAC/D,2EAAwE;AAExE,IAAM,uBAAuB,GAAG,UAAC,EAAiD;QAA7B,OAAO,4BAAA;IAA2B,OAAA,OAAO;AAAP,CAAO,CAAC;AAGlF,QAAA,gCAAgC,GAAG,IAAA,4CAA0B,EACxE;IACE,4CAAuB;IACvB,qDAAwB;IACxB,uBAAuB;IACvB,+CAAyB;IACzB,yDAA8B;CAC/B,EACD,UAAC,EAAyB,EAAE,gBAAgB,EAAE,OAAO,EAAE,EAAU,EAAE,EAAmB;;QAAnF,qBAAqB,2BAAA;QAAiC,MAAM,YAAA;QAAM,eAAe,qBAAA;IAClF,IAAI,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,KAAK,wBAAgB,CAAC,IAAI,IAAI,CAAA,MAAA,qBAAqB,CAAC,OAAO,0CAAE,OAAO,MAAK,KAAK,EAAE;QAC1G,OAAO,KAAK,CAAC;KACd;IACD,IAAM,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;IAEtC,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,eAAe,CAAC,KAAK,GAAG,eAAe,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE;QAChF,OAAO,KAAK,CAAC;KACd;IACD,OAAO,OAAO,CAAC,gBAAgB,KAAI,MAAA,qBAAqB,CAAC,OAAO,0CAAE,OAAO,CAAA,CAAC,CAAC;AAC7E,CAAC,CACF,CAAC"}
|
package/dist/state/utils.js
CHANGED
|
@@ -2,32 +2,16 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getInitialPointerState = exports.isClicking = exports.getSpecsFromStore = void 0;
|
|
4
4
|
function getSpecsFromStore(specs, chartType, specType) {
|
|
5
|
-
return Object.
|
|
6
|
-
.filter(function (specId) {
|
|
7
|
-
var currentSpec = specs[specId];
|
|
8
|
-
var sameChartType = currentSpec.chartType === chartType;
|
|
9
|
-
var sameSpecType = specType ? currentSpec.specType === specType : true;
|
|
10
|
-
return sameChartType && sameSpecType;
|
|
11
|
-
})
|
|
12
|
-
.map(function (specId) { return specs[specId]; });
|
|
5
|
+
return Object.values(specs).filter(function (spec) { return spec.chartType === chartType && spec.specType === specType; });
|
|
13
6
|
}
|
|
14
7
|
exports.getSpecsFromStore = getSpecsFromStore;
|
|
15
8
|
function isClicking(prevClick, lastClick) {
|
|
16
|
-
|
|
17
|
-
return true;
|
|
18
|
-
}
|
|
19
|
-
return prevClick !== null && lastClick !== null && prevClick.time !== lastClick.time;
|
|
9
|
+
return lastClick && (!prevClick || prevClick.time !== lastClick.time);
|
|
20
10
|
}
|
|
21
11
|
exports.isClicking = isClicking;
|
|
22
12
|
var getInitialPointerState = function () { return ({
|
|
23
13
|
dragging: false,
|
|
24
|
-
current: {
|
|
25
|
-
position: {
|
|
26
|
-
x: -1,
|
|
27
|
-
y: -1,
|
|
28
|
-
},
|
|
29
|
-
time: 0,
|
|
30
|
-
},
|
|
14
|
+
current: { position: { x: -1, y: -1 }, time: 0 },
|
|
31
15
|
down: null,
|
|
32
16
|
up: null,
|
|
33
17
|
lastDrag: null,
|
package/dist/state/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/state/utils.ts"],"names":[],"mappings":";;;AAaA,SAAgB,iBAAiB,CAAiB,KAAe,EAAE,SAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/state/utils.ts"],"names":[],"mappings":";;;AAaA,SAAgB,iBAAiB,CAAiB,KAAe,EAAE,SAAoB,EAAE,QAAgB;IACvG,OAAO,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,UAAC,IAAI,IAAK,OAAA,IAAI,CAAC,SAAS,KAAK,SAAS,IAAI,IAAI,CAAC,QAAQ,KAAK,QAAQ,EAA1D,CAA0D,CAAQ,CAAC;AAClH,CAAC;AAFD,8CAEC;AAGD,SAAgB,UAAU,CAAC,SAA8B,EAAE,SAA8B;IACvF,OAAO,SAAS,IAAI,CAAC,CAAC,SAAS,IAAI,SAAS,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,CAAC;AACxE,CAAC;AAFD,gCAEC;AAGM,IAAM,sBAAsB,GAAG,cAAqB,OAAA,CAAC;IAC1D,QAAQ,EAAE,KAAK;IACf,OAAO,EAAE,EAAE,QAAQ,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE;IAChD,IAAI,EAAE,IAAI;IACV,EAAE,EAAE,IAAI;IACR,QAAQ,EAAE,IAAI;IACd,SAAS,EAAE,IAAI;CAChB,CAAC,EAPyD,CAOzD,CAAC;AAPU,QAAA,sBAAsB,0BAOhC"}
|
package/dist/theme.scss
CHANGED
|
@@ -62,6 +62,17 @@
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
|
|
65
|
+
@mixin wrapText {
|
|
66
|
+
overflow-wrap: break-word;
|
|
67
|
+
word-wrap: break-word;
|
|
68
|
+
word-break: break-all;
|
|
69
|
+
word-break: break-word;
|
|
70
|
+
hyphens: auto;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
min-width: 1px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
|
|
65
76
|
.echTooltip {
|
|
66
77
|
@include euiToolTipStyle;
|
|
67
78
|
@include euiFontSizeXS;
|
|
@@ -110,7 +121,7 @@
|
|
|
110
121
|
}
|
|
111
122
|
|
|
112
123
|
&__label {
|
|
113
|
-
|
|
124
|
+
@include wrapText;
|
|
114
125
|
min-width: 1px;
|
|
115
126
|
flex: 1 1 auto;
|
|
116
127
|
}
|
|
@@ -213,6 +224,17 @@ $echLegendColumnGap: 24px;
|
|
|
213
224
|
}
|
|
214
225
|
}
|
|
215
226
|
|
|
227
|
+
@mixin wrapText {
|
|
228
|
+
overflow-wrap: break-word;
|
|
229
|
+
word-wrap: break-word;
|
|
230
|
+
word-break: break-all;
|
|
231
|
+
word-break: break-word;
|
|
232
|
+
hyphens: auto;
|
|
233
|
+
overflow: hidden;
|
|
234
|
+
min-width: 1px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
216
238
|
$legendItemVerticalPadding: $echLegendRowGap / 2;
|
|
217
239
|
$legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
|
|
218
240
|
|
|
@@ -288,6 +310,7 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
|
|
|
288
310
|
vertical-align: baseline;
|
|
289
311
|
letter-spacing: unset;
|
|
290
312
|
align-items: center;
|
|
313
|
+
@include wrapText;
|
|
291
314
|
|
|
292
315
|
&--singleline {
|
|
293
316
|
@include euiTextTruncate;
|
|
@@ -295,8 +318,6 @@ $legendItemHeight: #{$euiFontSizeXS * $euiLineHeight};
|
|
|
295
318
|
|
|
296
319
|
// div to prevent changing to button
|
|
297
320
|
&--multiline:is(div) {
|
|
298
|
-
hyphens: auto;
|
|
299
|
-
overflow: hidden;
|
|
300
321
|
display: -webkit-box;
|
|
301
322
|
-webkit-box-orient: vertical;
|
|
302
323
|
-webkit-line-clamp: 2; // number of lines to show, overridden in element styles
|
package/dist/theme_dark.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#DFE5EF;height:100%;background-color:#141519}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#1BA9F5}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(152,162,179,0.5) #242529}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:4px solid #242529}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#242529}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
|
1
|
+
*,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#DFE5EF;height:100%;background-color:#141519}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#1BA9F5}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(152,162,179,0.5) #242529}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:4px solid #242529}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#242529}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
package/dist/theme_light.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#343741;height:100%;background-color:#fafbfd}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#006BB4}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(105,112,125,0.5) #f3f3f5}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:4px solid #f3f3f5}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#f3f3f5}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
|
1
|
+
*,*:before,*:after{-webkit-box-sizing:border-box;box-sizing:border-box}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:none;vertical-align:baseline}code,pre,kbd,samp{font-family:"Roboto Mono",Consolas,Menlo,Courier,monospace}h1,h2,h3,h4,h5,h6,p{font-family:inherit;font-weight:inherit;font-size:inherit}input,textarea,select,button{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"}em{font-style:italic}strong{font-weight:700}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html{font-family:"Inter UI",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;letter-spacing:-.005em;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-kerning:normal;font-kerning:normal;font-size:16px;color:#343741;height:100%;background-color:#fafbfd}body{line-height:1}*:focus{outline:none}*:focus::-moz-focus-inner{border:none}*:focus:-moz-focusring{outline:none}a{text-decoration:none;color:#006BB4}a:hover{text-decoration:none}a:focus{text-decoration:none;outline:none}a:hover,button,[role='button']{cursor:pointer}input{margin:0;padding:0}input:disabled{opacity:1}button{background:none;border:none;padding:0;margin:0;outline:none;font-size:inherit;color:inherit;border-radius:0}button:hover{cursor:pointer}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}hr{margin:0}fieldset{min-inline-size:auto}svg text{letter-spacing:normal !important}html{scrollbar-color:rgba(105,112,125,0.5) #f3f3f5}html::-webkit-scrollbar{width:16px;height:16px}html::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:4px solid #f3f3f5}html::-webkit-scrollbar-corner,html::-webkit-scrollbar-track{background-color:#f3f3f5}.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
package/dist/theme_only_dark.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){
|
|
1
|
+
.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#052231}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(152,162,179,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(152,162,179,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#052231;border-radius:2px}.echLegendItem{color:#DFE5EF;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#25262E}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#98A2B3}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#98A2B3}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(29,30,36,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#000;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #333;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){
|
|
1
|
+
.echChartStatus{visibility:hidden;pointer-events:none;z-index:-100000;width:0;height:0;position:absolute}.echChartBackground{position:absolute;top:0;bottom:0;left:0;right:0}.echChart{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.echChart--column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.echContainer{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.echChartPointerContainer{position:absolute;top:0;bottom:0;right:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.echChartResizer{z-index:-10000000;position:absolute;bottom:0;top:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box}.echBrushTool{position:absolute;top:0;left:0;margin:0;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;pointer-events:none}.echTooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echTooltip__list{padding:4px}.echTooltip__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;margin-bottom:0;padding:4px 8px}.echTooltip__item{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:1px}.echTooltip__item--container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:3px;padding-left:0;min-width:1px}.echTooltip__item--backgroundColor{position:relative;width:4px;margin-right:3px;-ms-flex-negative:0;flex-shrink:0}.echTooltip__item--color{position:absolute;top:0;left:0;right:0;bottom:0}.echTooltip__label{overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px;min-width:1px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.echTooltip__value{font-weight:700;text-align:right;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';margin-left:8px}.echTooltip__rowHighlighted{background-color:rgba(255,255,255,0.1)}.echTooltip--hidden{opacity:0}[id^='echTooltipPortal']{pointer-events:none}[id^='echAnchor']{position:absolute;pointer-events:none}.echTooltipPortal__invisible{position:fixed;visibility:hidden;width:0;height:0}.echIcon{-ms-flex-negative:0;flex-shrink:0;display:inline-block;vertical-align:middle;fill:currentColor}.echIcon svg{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.echIcon:focus{opacity:1;background:#e6f0f8}.echLegend .echLegendList{display:grid;grid-template-columns:minmax(0, 1fr)}.echLegend--horizontal .echLegendList{grid-column-gap:24px;grid-row-gap:8px;margin-top:8px;margin-bottom:8px}.echLegend--top,.echLegend--left{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.echLegend--bottom,.echLegend--right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.echLegend--debug{background:rgba(238,130,238,0.2);position:relative}.echLegend .echLegendListContainer{scrollbar-color:rgba(105,112,125,0.5) rgba(0,0,0,0);scrollbar-width:thin;height:100%;overflow-y:auto;overflow-x:hidden;-webkit-mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);mask-image:linear-gradient(to bottom, rgba(255,0,0,0.1) 0%,red 7.5px,red calc(100% - 7.5px),rgba(255,0,0,0.1) 100%);width:100%;overflow-y:auto;overflow-x:hidden}.echLegend .echLegendListContainer::-webkit-scrollbar{width:16px;height:16px}.echLegend .echLegendListContainer::-webkit-scrollbar-thumb{background-color:rgba(105,112,125,0.5);background-clip:content-box;border-radius:16px;border:6px solid rgba(0,0,0,0)}.echLegend .echLegendListContainer::-webkit-scrollbar-corner,.echLegend .echLegendListContainer::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.echLegend .echLegendListContainer:focus{outline:none}.echLegend .echLegendListContainer[tabindex='0']:focus:focus-visible{outline-style:auto}.echLegend .echLegendListContainer :focus{-webkit-animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;animation:350ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards focusRingAnimate !important;background-color:#e6f0f8;border-radius:2px}.echLegendItem{color:#343741;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:relative}.echLegendItem .colorWrapper>*:first-of-type{height:18px}.echLegendItem>*:not(.background){margin-left:4px}.echLegendItem>*:not(.background):last-child:not(.echLegendItem__extra){margin-right:4px}.echLegendItem:not(.echLegendItem--hidden) .echLegendItem__color--changable{cursor:pointer}.echLegendItem:hover .background{background-color:#F5F7FA}.echLegendItem .background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.echLegendItem__action{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:18px;max-width:calc(18px + 8px)}.echLegendItem__action .euiPopover,.echLegendItem__action .euiPopover__anchor,.echLegendItem__action .euiPopover__anchor>*:first-child{height:100%;width:100%}.echLegendItem__color{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.5;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.echLegendItem__label{font-size:12px;font-size:.75rem;line-height:1.5;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:left;vertical-align:baseline;letter-spacing:unset;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;word-break:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;overflow:hidden;min-width:1px}.echLegendItem__label--singleline{max-width:100%;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;word-wrap:normal !important}.echLegendItem__label--multiline:is(div){display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.echLegendItem__label--clickable:hover{cursor:pointer;text-decoration:underline}.echLegendItem__extra{font-size:12px;font-size:.75rem;line-height:1.5;text-align:right;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:4px;-webkit-font-feature-settings:'tnum';font-feature-settings:'tnum';letter-spacing:unset}.echLegendItem--vertical{padding-top:2px;padding-bottom:2px}.echLegendItem--vertical:first-of-type{margin-top:2px}.echLegendItem--vertical .background{margin-top:2px;margin-bottom:2px}.echLegendItem--hidden{color:#69707D}.echReactiveChart_noResults{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;font-size:12px;font-size:.75rem;line-height:1.5;color:#69707D}.echHighlighter{position:absolute;pointer-events:none;top:0;bottom:0;left:0;right:0;width:100%;height:100%}.echHighlighterOverlay__fill{fill:rgba(255,255,255,0.2)}.echHighlighterOverlay__stroke{stroke:rgba(255,255,255,0.2)}.echHighlighter__mask{fill:rgba(255,255,255,0.5)}.echCrosshair,.echCrosshair__cursor,.echCrosshair__crossLine{position:absolute;top:0;left:0;pointer-events:none}.echScreenReaderOnly{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}.echScreenReaderOnlyDebug{left:0 !important;top:0 !important;right:0 !important;bottom:0 !important;width:100% !important;height:100% !important;overflow:auto !important;background:rgba(255,255,255,0.8)}.echScreenReaderOnlyDebug table,.echScreenReaderOnlyDebug td,.echScreenReaderOnlyDebug th{border:1px solid black;font-size:12px}.echScreenReaderTable{overflow-x:auto;text-align:left}.echAnnotation{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-weight:700}.echAnnotation__tooltip{-webkit-box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);box-shadow:0 12px 24px 0 rgba(0,0,0,0.1),0 6px 12px 0 rgba(0,0,0,0.1),0 4px 4px 0 rgba(0,0,0,0.1),0 2px 2px 0 rgba(0,0,0,0.1);border-radius:4px;background-color:#404040;color:#fff;z-index:9000;max-width:256px;overflow-wrap:break-word;font-size:14px;font-size:.875rem;line-height:1.5;padding:12px;font-size:12px;font-size:.75rem;line-height:1.5;padding:0;-webkit-transition:opacity 250ms;transition:opacity 250ms;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:256px}.echAnnotation__header{font-weight:700;border-bottom:solid 1px #595959;padding-bottom:4px;margin-bottom:4px;padding:4px 8px}.echAnnotation__details{padding:4px 8px}.echAnnotation__icon{position:relative}.echAnnotation__body{white-space:nowrap}.echCanvasRenderer{position:absolute;top:0;left:0;padding:0;margin:0;border:0;background:transparent}
|
|
@@ -9,8 +9,6 @@ var withTextMeasure = function (fun) {
|
|
|
9
9
|
root.appendChild(canvas);
|
|
10
10
|
var textMeasure = ctx
|
|
11
11
|
? function (text, padding, fontSize, fontFamily, lineHeight, fontWeight) {
|
|
12
|
-
if (fontSize === void 0) { fontSize = 16; }
|
|
13
|
-
if (fontFamily === void 0) { fontFamily = 'Arial'; }
|
|
14
12
|
if (lineHeight === void 0) { lineHeight = 1; }
|
|
15
13
|
if (fontWeight === void 0) { fontWeight = 400; }
|
|
16
14
|
ctx.font = fontWeight + " " + fontSize + "px " + fontFamily;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"canvas_text_bbox_calculator.js","sourceRoot":"","sources":["../../../src/utils/bbox/canvas_text_bbox_calculator.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"canvas_text_bbox_calculator.js","sourceRoot":"","sources":["../../../src/utils/bbox/canvas_text_bbox_calculator.ts"],"names":[],"mappings":";;;AAqBO,IAAM,eAAe,GAAG,UAAI,GAAoC;IACrE,IAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;IAChD,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC;IAC9B,IAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;IACpC,IAAM,IAAI,GAAG,QAAQ,CAAC,eAAe,CAAC;IACtC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACzB,IAAM,WAAW,GAAgB,GAAG;QAClC,CAAC,CAAC,UAAC,IAAY,EAAE,OAAe,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAc,EAAE,UAAgB;YAAhC,2BAAA,EAAA,cAAc;YAAE,2BAAA,EAAA,gBAAgB;YACpF,GAAG,CAAC,IAAI,GAAM,UAAU,SAAI,QAAQ,WAAM,UAAY,CAAC;YACvD,IAAM,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;YACtC,OAAO,EAAE,KAAK,EAAE,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,QAAQ,GAAG,UAAU,EAAE,CAAC;QACxF,CAAC;QACH,CAAC,CAAC,cAAM,OAAA,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,EAAzB,CAAyB,CAAC;IACpC,IAAM,MAAM,GAAM,GAAG,CAAC,WAAW,CAAC,CAAC;IACnC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACzB,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAhBW,QAAA,eAAe,mBAgB1B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/utils/common.
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/utils/common.ts"],"names":[],"mappings":"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"}
|