Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade EUI to v62.0.3 #136865

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c28d802
Upgrade to v62.0.3
cee-chen Jul 21, 2022
622e76f
Update EUI i18n tokens
cee-chen Jul 27, 2022
85d605e
Update html string snapshots
cee-chen Jul 27, 2022
23a1922
[EuiIcon] Update instances of `keyboardShortcut` icons to `keyboard`
cee-chen Jul 21, 2022
8c9639f
[EuiErrorBoundary] Update snapshots from Emotion conversion
cee-chen Jul 28, 2022
bfc763e
[EuiImage] Update snapshots, tests, and CSS to account for Emotion co…
cee-chen Jul 27, 2022
7bb1ea8
[EuiImage][RTL] Fix test failures caused by EuiImage changes
cee-chen Aug 3, 2022
00a7904
[EuiCommentList] Deprecate EuiCommentProps.type
cee-chen Jul 21, 2022
0f5fe13
[EuiCommentList] Rename `timelineIcon` prop to `timelineAvatar`
cee-chen Jul 27, 2022
f5d923c
[EuiCommentList] Fix selectors deprecated by Emotion conversion
cee-chen Aug 2, 2022
169f8c9
[EuiPopover][EuiCommentEvent][Enzyme] Fix mounted test failures cause…
cee-chen Aug 3, 2022
3f7d556
[EuiPopover] Deprecate `initialFocus={false}` as an option
cee-chen Jul 27, 2022
bf35bbc
[EuiPopover] Rename `display=inlineBlock` to `inline-block`
cee-chen Jul 27, 2022
7a27c58
[EuiPopover] Update snapshots from Emotion conversion
cee-chen Jul 27, 2022
717233f
[EuiPopover] Replace deprecated `.euiPopover__panel-isOpen` class wit…
cee-chen Jul 28, 2022
732c6a4
[EuiPopover][RTL] Fix test failures caused by not waiting for EuiPopo…
cee-chen Aug 2, 2022
5a0b293
Skip failing a11y tests
cee-chen Aug 3, 2022
0c42a27
Fix failing Security Cypress tests
cee-chen Aug 8, 2022
d279fd6
Fix FTR Add/Save Filter failures
cee-chen Aug 4, 2022
4694139
Merge branch 'main' into eui/61.0.0
kibanamachine Aug 9, 2022
634043e
???????
cee-chen Aug 9, 2022
820281f
Merge branch 'main' into eui/61.0.0
kibanamachine Aug 9, 2022
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: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@elastic/datemath": "5.0.3",
"@elastic/elasticsearch": "npm:@elastic/[email protected]",
"@elastic/ems-client": "8.3.3",
"@elastic/eui": "60.3.0",
"@elastic/eui": "62.0.3",
"@elastic/filesaver": "1.1.2",
"@elastic/node-crypto": "1.2.1",
"@elastic/numeral": "^2.5.1",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,41 @@ export const getEuiContextMapping = (): EuiTokensObject => {
'euiDataGridHeaderCell.headerActions': i18n.translate(
'core.euiDataGridHeaderCell.headerActions',
{
defaultMessage: 'Header actions',
defaultMessage: 'Click to view column header actions',
}
),
'euiDataGridHeaderCell.sortedByAscendingSingle': i18n.translate(
'core.euiDataGridHeaderCell.sortedByAscendingSingle',
{
defaultMessage: 'Sorted ascending',
}
),
'euiDataGridHeaderCell.sortedByDescendingSingle': i18n.translate(
'core.euiDataGridHeaderCell.sortedByDescendingSingle',
{
defaultMessage: 'Sorted descending',
}
),
'euiDataGridHeaderCell.sortedByAscendingFirst': ({ columnId }: EuiValues) =>
i18n.translate('core.euiDataGridHeaderCell.sortedByAscendingFirst', {
defaultMessage: 'Sorted by {columnId}, ascending',
values: { columnId },
}),
'euiDataGridHeaderCell.sortedByDescendingFirst': ({ columnId }: EuiValues) =>
i18n.translate('core.euiDataGridHeaderCell.sortedByDescendingFirst', {
defaultMessage: 'Sorted by {columnId}, descending',
values: { columnId },
}),
'euiDataGridHeaderCell.sortedByAscendingMultiple': ({ columnId }: EuiValues) =>
i18n.translate('core.euiDataGridHeaderCell.sortedByAscendingMultiple', {
defaultMessage: ', then sorted by {columnId}, ascending',
values: { columnId },
}),
'euiDataGridHeaderCell.sortedByDescendingMultiple': ({ columnId }: EuiValues) =>
i18n.translate('core.euiDataGridHeaderCell.sortedByDescendingMultiple', {
defaultMessage: ', then sorted by {columnId}, descending',
values: { columnId },
}),
'euiDataGridHeaderCell.actionsPopoverScreenReaderText': i18n.translate(
'core.euiDataGridHeaderCell.actionsPopoverScreenReaderText',
{
Expand Down Expand Up @@ -612,16 +644,12 @@ export const getEuiContextMapping = (): EuiTokensObject => {
'euiHue.label': i18n.translate('core.euiHue.label', {
defaultMessage: 'Select the HSV color mode "hue" value',
}),
'euiImage.closeImage': ({ alt }: EuiValues) =>
i18n.translate('core.euiImage.closeImage', {
defaultMessage: 'Close fullscreen {alt} image',
values: { alt },
}),
'euiImage.openImage': ({ alt }: EuiValues) =>
i18n.translate('core.euiImage.openImage', {
defaultMessage: 'Open fullscreen {alt} image',
values: { alt },
}),
'euiImageButton.openFullScreen': i18n.translate('core.euiImageButton.openFullScreen', {
defaultMessage: 'Click to open this image in fullscreen mode',
}),
'euiImageButton.closeFullScreen': i18n.translate('core.euiImageButton.closeFullScreen', {
defaultMessage: 'Press Escape or click to close image fullscreen mode',
}),
'euiLink.external.ariaLabel': i18n.translate('core.euiLink.external.ariaLabel', {
defaultMessage: 'External link',
}),
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe('UserProfilesPopover', () => {
</button>
}
closePopover={[MockFunction]}
display="inlineBlock"
display="inline-block"
hasArrow={true}
isOpen={false}
ownFocus={true}
Expand Down
Loading