47.0.0 (2022-07-22)
Bug Fixes
- deps: update dependency @elastic/eui to ^60.3.0 (#1755) (623b19f)
Features
BREAKING CHANGES
- tooltip:
Settings.tooltip is deprecated in favor of the new Tooltip spec. Type changes related to TooltipProps, TooltipSettings and others see #1725. Changes to tooltip styles from dark to light theme. The Annotation tooltip class .echAnnotation used to target the icon, but now refers to the tooltip itself similar to .echTooltip and now .echAnnotation__marker refers to the icon itself.
const tooltipProps = {...};
<Chart>
- <Settings tooltip={tooltipProps} />
+ <Tooltip {...tooltipProps} />
</Chart>