Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ No public interface changes since `26.0.1`.

## [`26.0.1`](https://github.com/elastic/eui/tree/v26.0.1)

- Exported `EuiCardProps` in the `EuiCard` Typesrcipt types and `EuiCheckableCardProps` in `EuiCheckableCard` Typescript types([#3640](https://github.com/elastic/eui/pull/3640))

**Bug fixes**

- Fixed fullscreen render issue in `EuiCode` ([#3633](https://github.com/elastic/eui/pull/3633))
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const displayToClassNameMap: { [display in CardDisplay]: string } = {

export const DISPLAYS = keysOf(displayToClassNameMap);

type EuiCardProps = Omit<CommonProps, 'aria-label'> & {
export type EuiCardProps = Omit<CommonProps, 'aria-label'> & {
/**
* Card's are required to have at least a title and description
*/
Expand Down
4 changes: 2 additions & 2 deletions src/components/card/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
* under the License.
*/

export { EuiCard } from './card';
export { EuiCheckableCard } from './checkable_card';
export { EuiCard, EuiCardProps } from './card';
export { EuiCheckableCard, EuiCheckableCardProps } from './checkable_card';