diff --git a/CHANGELOG.md b/CHANGELOG.md index b36489ee2ef..6f02056fb3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ ## [`master`](https://github.com/elastic/eui/tree/master) -No public interface changes since `5.5.0`. +**Bug fixes** + +- Fixed TypeScript definitions in `eui.d.ts` ([#1359](https://github.com/elastic/eui/pull/1359)) ## [`5.5.0`](https://github.com/elastic/eui/tree/v5.5.0) +**Note: this release broke the exported TypeScript definitions. This is fixed in `5.5.1`.** + - Altered functionality of `truncate` on `EuiBreadcrumbs` and added `truncate` ability on breadcrumb item ([#1346](https://github.com/elastic/eui/pull/1346)) - Altered `EuiHeader`'s location of `EuiHeaderBreadcrumbs` based on the new `truncate` ability ([#1346](https://github.com/elastic/eui/pull/1346)) - Added support for `href` and `target` props in `EuiBasicTable` actions ([#1347](https://github.com/elastic/eui/pull/1347)) diff --git a/src/components/badge/index.d.ts b/src/components/badge/index.d.ts index 7c34681fd93..7f47aa83c4a 100644 --- a/src/components/badge/index.d.ts +++ b/src/components/badge/index.d.ts @@ -34,16 +34,4 @@ declare module '@elastic/eui' { export const EuiBetaBadge: SFC< CommonProps & HTMLAttributes & EuiBetaBadgeProps >; - - export interface EuiNotificationBadgeProps { - iconType?: IconType; - label: ReactNode; - tooltipContent?: ReactNode; - tooltipPosition?: ToolTipPositions; - title?: string; - } - - export const EuiNotificationBadge: SFC< - CommonProps & HTMLAttributes - >; }