diff --git a/CHANGELOG.md b/CHANGELOG.md index 13c4d05a593..d065d5ad916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +## [`89.0.0`](https://github.com/elastic/eui/tree/v89.0.0) + +- Added new `pushAnimation` prop to push `EuiFlyout`s, which enables a slide in animation ([#7239](https://github.com/elastic/eui/pull/7239)) +- Updated `EuiComboBox` to use `EuiInputPopover` under the hood ([#7246](https://github.com/elastic/eui/pull/7246)) +- Added `inputPopoverProps` to `EuiComboBox`, which allows customizing the underlying popover ([#7246](https://github.com/elastic/eui/pull/7246)) +- Added a new beta `EuiTextBlockTruncate` component for multi-line truncation ([#7250](https://github.com/elastic/eui/pull/7250)) +- Updated `EuiBasicTable` and `EuiInMemoryTable` to support multi-line truncation. This can be set via `truncateText.lines` in the `columns` prop. ([#7254](https://github.com/elastic/eui/pull/7254)) + +**Bug fixes** + +- Fixed `EuiFlexGroup` and `EuiFlexGrid's `m` gutter size ([#7251](https://github.com/elastic/eui/pull/7251)) +- Fixed focus trap rerender issues in `EuiFlyout` with memoization ([#7259](https://github.com/elastic/eui/pull/7259)) +- Fixed a visual bug with `EuiContextMenu`'s animation between panels ([#7268](https://github.com/elastic/eui/pull/7268)) + +**Breaking changes** + +- EUI's global body font-size now respects the `font.defaultUnits` token. This means that the global font size will use the `rem` unit by default, instead of `px`. ([#7182](https://github.com/elastic/eui/pull/7182)) +- Removed exported `accessibleClickKeys`, `comboBoxKeys`, and `cascadingMenuKeys` services. Use the generic `keys` service instead ([#7256](https://github.com/elastic/eui/pull/7256)) +- Removed `EuiColorStops` due to low usage ([#7262](https://github.com/elastic/eui/pull/7262)) +- Removed `EuiSuggest`. We recommend using `EuiSelectable` or `EuiComboBox` instead ([#7263](https://github.com/elastic/eui/pull/7263)) +- Removed `euiHeaderAffordForFixed` Sass mixin, and `$euiHeaderHeight` and `$euiHeaderHeightCompensation` Sass variables. Use the CSS variable `--var(euiFixedHeadersOffset, 0)` instead. ([#7264](https://github.com/elastic/eui/pull/7264)) + +**Accessibility** + +- When using `rem` or `em` font units, EUI now respects, instead of ignoring, browser default font sizes set by end users. ([#7182](https://github.com/elastic/eui/pull/7182)) + ## [`88.5.4`](https://github.com/elastic/eui/tree/v88.5.4) - This release contains internal changes to a beta component needed by Kibana. diff --git a/upcoming_changelogs/7182.md b/upcoming_changelogs/7182.md deleted file mode 100644 index aa34dd7ed82..00000000000 --- a/upcoming_changelogs/7182.md +++ /dev/null @@ -1,7 +0,0 @@ -**Breaking changes** - -- EUI's global body font-size now respects the `font.defaultUnits` token. This means that the global font size will use the `rem` unit by default, instead of `px`. - -**Accessibility** - -- When using `rem` or `em` font units, EUI now respects, instead of ignoring, browser default font sizes set by end users. diff --git a/upcoming_changelogs/7239.md b/upcoming_changelogs/7239.md deleted file mode 100644 index 8ef483e31bc..00000000000 --- a/upcoming_changelogs/7239.md +++ /dev/null @@ -1 +0,0 @@ -- Added new `pushAnimation` prop to push `EuiFlyout`s, which enables a slide in animation diff --git a/upcoming_changelogs/7246.md b/upcoming_changelogs/7246.md deleted file mode 100644 index 98cd7e9792f..00000000000 --- a/upcoming_changelogs/7246.md +++ /dev/null @@ -1,2 +0,0 @@ -- Updated `EuiComboBox` to use `EuiInputPopover` under the hood -- Added `inputPopoverProps` to `EuiComboBox`, which allows customizing the underlying popover diff --git a/upcoming_changelogs/7250.md b/upcoming_changelogs/7250.md deleted file mode 100644 index af7320f7e1c..00000000000 --- a/upcoming_changelogs/7250.md +++ /dev/null @@ -1 +0,0 @@ -- Added a new beta `EuiTextBlockTruncate` component for multi-line truncation diff --git a/upcoming_changelogs/7251.md b/upcoming_changelogs/7251.md deleted file mode 100644 index 117da956a9e..00000000000 --- a/upcoming_changelogs/7251.md +++ /dev/null @@ -1,3 +0,0 @@ -**Bug fixes** - -- Fixed `EuiFlexGroup` and `EuiFlexGrid's `m` gutter size diff --git a/upcoming_changelogs/7254.md b/upcoming_changelogs/7254.md deleted file mode 100644 index f381cbf3119..00000000000 --- a/upcoming_changelogs/7254.md +++ /dev/null @@ -1 +0,0 @@ -- Updated `EuiBasicTable` and `EuiInMemoryTable` to support multi-line truncation. This can be set via `truncateText.lines` in the `columns` prop. diff --git a/upcoming_changelogs/7256.md b/upcoming_changelogs/7256.md deleted file mode 100644 index 3159521b9e4..00000000000 --- a/upcoming_changelogs/7256.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed exported `accessibleClickKeys`, `comboBoxKeys`, and `cascadingMenuKeys` services. Use the generic `keys` service instead diff --git a/upcoming_changelogs/7259.md b/upcoming_changelogs/7259.md deleted file mode 100644 index 9beea48791b..00000000000 --- a/upcoming_changelogs/7259.md +++ /dev/null @@ -1,3 +0,0 @@ -**Bug fixes** - -- Fixed focus trap rerender issues in `EuiFlyout` with memoization diff --git a/upcoming_changelogs/7262.md b/upcoming_changelogs/7262.md deleted file mode 100644 index 96dd9760b85..00000000000 --- a/upcoming_changelogs/7262.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed `EuiColorStops` due to low usage diff --git a/upcoming_changelogs/7263.md b/upcoming_changelogs/7263.md deleted file mode 100644 index b4c9f2c4567..00000000000 --- a/upcoming_changelogs/7263.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed `EuiSuggest`. We recommend using `EuiSelectable` or `EuiComboBox` instead diff --git a/upcoming_changelogs/7264.md b/upcoming_changelogs/7264.md deleted file mode 100644 index 0ebd8034aa1..00000000000 --- a/upcoming_changelogs/7264.md +++ /dev/null @@ -1,3 +0,0 @@ -**Breaking changes** - -- Removed `euiHeaderAffordForFixed` Sass mixin, and `$euiHeaderHeight` and `$euiHeaderHeightCompensation` Sass variables. Use the CSS variable `--var(euiFixedHeadersOffset, 0)` instead. diff --git a/upcoming_changelogs/7268.md b/upcoming_changelogs/7268.md deleted file mode 100644 index 2a4f5d5ff56..00000000000 --- a/upcoming_changelogs/7268.md +++ /dev/null @@ -1,3 +0,0 @@ -**Bug fixes** - -- Fixed a visual bug with `EuiContextMenu`'s animation between panels