diff --git a/changelogs/CHANGELOG_2024.md b/changelogs/CHANGELOG_2024.md index 5c260266da26..39916877f6ec 100644 --- a/changelogs/CHANGELOG_2024.md +++ b/changelogs/CHANGELOG_2024.md @@ -4,6 +4,7 @@ - This change should have no impact on your applications since the updated types only affect properties that exclusively accept object values. - Added a new `EuiFlyoutResizable` component ([#7439](https://github.com/elastic/eui/pull/7439)) - Updated `EuiTextArea` to accept `isClearable` and `icon` as props ([#7449](https://github.com/elastic/eui/pull/7449)) +- Added support for showing `EuiTooltip` for `EuiButtonGroup` button titles ([#7461](https://github.com/elastic/eui/pull/7461)) **Bug fixes** diff --git a/src/components/button/button_group/button_group.tsx b/src/components/button/button_group/button_group.tsx index ed86bf05138f..cca1d4ee9578 100644 --- a/src/components/button/button_group/button_group.tsx +++ b/src/components/button/button_group/button_group.tsx @@ -48,10 +48,12 @@ export interface EuiButtonGroupOptionProps title?: EuiToolTipProps['content']; /** * Custom title delay + * @default 'long' */ titleDelay?: EuiToolTipProps['delay']; /** * Custom title position + * @default 'top' */ titlePosition?: EuiToolTipProps['position']; }