Skip to content

Commit

Permalink
chore(release): 47.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [47.0.0](v46.13.0...v47.0.0) (2022-07-22)

### Bug Fixes

* **deps:** update dependency @elastic/eui to ^60.3.0 ([#1755](#1755)) ([623b19f](623b19f))

### Features

* **tooltip:** composable tooltips - phase 1 ([#1725](#1725)) ([e79fa20](e79fa20))

### 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.

```diff
 const tooltipProps = {...};
 <Chart>
-  <Settings tooltip={tooltipProps} />
+  <Tooltip {...tooltipProps} />
 </Chart>
```
  • Loading branch information
semantic-release-bot committed Jul 22, 2022
1 parent e79fa20 commit 38642e3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# [47.0.0](https://github.com/elastic/elastic-charts/compare/v46.13.0...v47.0.0) (2022-07-22)


### Bug Fixes

* **deps:** update dependency @elastic/eui to ^60.3.0 ([#1755](https://github.com/elastic/elastic-charts/issues/1755)) ([623b19f](https://github.com/elastic/elastic-charts/commit/623b19fd616371b9f8b1b5a3ca474acd1e8956e5))


### Features

* **tooltip:** composable tooltips - phase 1 ([#1725](https://github.com/elastic/elastic-charts/issues/1725)) ([e79fa20](https://github.com/elastic/elastic-charts/commit/e79fa20fa8536186a404de65d23323902d0600e5))


### 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.

```diff
const tooltipProps = {...};
<Chart>
- <Settings tooltip={tooltipProps} />
+ <Tooltip {...tooltipProps} />
</Chart>
```

# [46.13.0](https://github.com/elastic/elastic-charts/compare/v46.12.1...v46.13.0) (2022-07-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@elastic/charts",
"description": "Elastic-Charts data visualization library",
"version": "46.13.0",
"version": "47.0.0",
"author": "Elastic DataVis",
"license": "SEE LICENSE IN LICENSE.txt",
"main": "dist/index.js",
Expand Down

0 comments on commit 38642e3

Please sign in to comment.