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 v55.0.1 #130593

Merged
merged 33 commits into from
Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6f9acec
eui to v55.0.0
thompsongl Apr 19, 2022
0d4a983
remove jest polyfill
thompsongl Apr 19, 2022
7c21af6
i18n tokens
thompsongl Apr 19, 2022
78565e5
hasFocus prop
thompsongl Apr 19, 2022
eb4ce7f
Merge branch 'main' into eui/55.0
thompsongl Apr 19, 2022
3abade2
eui to v55.0.1
thompsongl Apr 19, 2022
52ea9e2
removed obsolete mixin arg
thompsongl Apr 19, 2022
b2890c5
Merge branch 'main' into eui/55.0
thompsongl Apr 19, 2022
e868b20
Merge branch 'main' into eui/55.0
thompsongl Apr 19, 2022
55bc1a4
i18n snapshots
thompsongl Apr 19, 2022
64730eb
hasFocus snapshots
thompsongl Apr 20, 2022
19e478e
formRow snapshots
thompsongl Apr 20, 2022
580b80a
euiAvatar snapshots
thompsongl Apr 20, 2022
05927dc
euiContextMenu snapshot
thompsongl Apr 20, 2022
7c7bce9
Merge branch 'main' into eui/55.0
thompsongl Apr 20, 2022
b579ac8
update focus
thompsongl Apr 20, 2022
1150f6d
Merge branch 'main' into eui/55.0
thompsongl Apr 20, 2022
edae992
hasFocus snapshots
thompsongl Apr 20, 2022
6d526ad
Merge branch 'main' into eui/55.0
thompsongl Apr 20, 2022
9400542
[Security] wait for popover panel focus before checking for field inp…
cee-chen Apr 20, 2022
1339896
Merge remote-tracking branch 'upstream/main' into eui/55.0
cee-chen Apr 20, 2022
31c1776
Merge branch 'main' into eui/55.0
kibanamachine Apr 20, 2022
5429aa0
Merge branch 'main' into eui/55.0
kibanamachine Apr 21, 2022
690d557
Merge branch 'main' into eui/55.0
thompsongl Apr 21, 2022
316036c
Merge branch 'main' into eui/55.0
kibanamachine Apr 21, 2022
163b941
Merge branch 'main' into eui/55.0
thompsongl Apr 25, 2022
5a839d6
Merge branch 'eui/55.0' of https://github.com/thompsongl/kibana into …
thompsongl Apr 25, 2022
df16c89
Fix ML focus issue in Filter settings
qn895 Apr 26, 2022
11455c8
Fix jest tests
qn895 Apr 26, 2022
c9b0331
[ML] Fix stale / loading EuiContextMenuPanel item
cee-chen Apr 26, 2022
360f27c
Merge branch 'main' into eui/55.0
kibanamachine Apr 27, 2022
35bd584
Fix ML watched props for EuiContextMenuPanel
qn895 Apr 27, 2022
f017309
Merge branch 'main' into eui/55.0
kibanamachine Apr 27, 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 @@ -108,7 +108,7 @@
"@elastic/datemath": "5.0.3",
"@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.2.0-canary.2",
"@elastic/ems-client": "8.3.0",
"@elastic/eui": "54.0.0",
"@elastic/eui": "55.0.1",
"@elastic/filesaver": "1.1.2",
"@elastic/node-crypto": "1.2.1",
"@elastic/numeral": "^2.5.1",
Expand Down
4 changes: 0 additions & 4 deletions packages/kbn-test/src/jest/setup/polyfills.jsdom.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ require('whatwg-fetch');
if (!global.URL.hasOwnProperty('createObjectURL')) {
Object.defineProperty(global.URL, 'createObjectURL', { value: () => '' });
}

// Will be replaced with a better solution in EUI
// https://github.com/elastic/eui/issues/3713
global._isJest = true;

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

6 changes: 6 additions & 0 deletions src/core/public/i18n/i18n_eui_mapping.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,12 @@ export const getEuiContextMapping = (): EuiTokensObject => {
defaultMessage: '(opens in a new tab or window)',
}
),
'euiMark.highlightStart': i18n.translate('core.euiMark.highlightStart', {
defaultMessage: 'highlight start',
}),
'euiMark.highlightEnd': i18n.translate('core.euiMark.highlightEnd', {
defaultMessage: 'highlight end',
}),
'euiMarkdownEditorFooter.closeButton': i18n.translate(
'core.euiMarkdownEditorFooter.closeButton',
{
Expand Down
2 changes: 1 addition & 1 deletion src/dev/license_checker/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ export const LICENSE_OVERRIDES = {
'jsts@1.6.2': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts
'@mapbox/jsonlint-lines-primitives@2.0.2': ['MIT'], // license in readme https://github.com/tmcw/jsonlint
'@elastic/ems-client@8.3.0': ['Elastic License 2.0'],
'@elastic/eui@54.0.0': ['SSPL-1.0 OR Elastic License 2.0'],
'@elastic/eui@55.0.1': ['SSPL-1.0 OR Elastic License 2.0'],
'language-subtag-registry@0.3.21': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry
};

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.

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 @@ -18,7 +18,7 @@ $kbnTypeaheadTypes: (
}

.kbnTypeahead__popover--bottom {
@include euiBottomShadow($adjustBorders: true);
@include euiBottomShadow;
border-bottom-left-radius: $euiBorderRadius;
border-bottom-right-radius: $euiBorderRadius;
}
Expand Down

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

Loading