Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

- Updated `testenv` mock for `EuiFlyout` to include default `aria-label` on the close button ([#5702](https://github.com/elastic/eui/pull/5702))

**Bug fixes**

- Fixed type of `SharedRenderCellElementProps.schema` to be optional ([#5704](https://github.com/elastic/eui/pull/5704))
- Fixed generated type definition file referencing nonexistant Jest util ([#5704](https://github.com/elastic/eui/pull/5704))

**Breaking changes**

- Changed the I18n token `euiDataGridToolbar.fullScreenButton` to `euiFullscreenSelector.fullscreenButton`, and its text to `Enter fullscreen` (with no space) ([#5680](https://github.com/elastic/eui/pull/5680))
Expand Down
2 changes: 1 addition & 1 deletion src/components/datagrid/data_grid_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ interface SharedRenderCellElementProps {
/**
* The schema type of the column being rendered
*/
schema: string | undefined | null;
schema?: string | null;
}

export type EuiDataGridSetCellProps = CommonProps &
Expand Down
1 change: 0 additions & 1 deletion src/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ export {
stopThrowingReactWarnings,
} from './react_warnings';
export { sleep } from './sleep';
export { IS_JEST_ENVIRONMENT } from '../utils/is_jest';