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

Bumping EUI to v41.2.2 #119205

Merged
merged 33 commits into from
Dec 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6388c3b
Bumping EUI to v41.2.0
1Copenut Nov 19, 2021
709c15f
Updating translations for EUI Super Select.
1Copenut Nov 19, 2021
9a1aae2
Merge branch 'main' into eui/41-2-0
kibanamachine Nov 19, 2021
eda0a98
Merge remote-tracking branch 'upstream/main' into eui/41-2-0
1Copenut Nov 19, 2021
ac7ae09
Bumping to v41.2.1 for an EUI fix.
1Copenut Nov 19, 2021
212c4e8
Merge branch 'eui/41-2-0' of github.com:1Copenut/kibana into eui/41-2-0
1Copenut Nov 19, 2021
25c0177
Updating ten Jest snapshots
1Copenut Nov 22, 2021
514e472
Removing reference to packaged datepicker now in EUI.
1Copenut Nov 22, 2021
68aa202
Final removal of packaged Datepicker reference.
1Copenut Nov 22, 2021
10a75b1
Updating snapshots and datagrid test defaults.
1Copenut Nov 22, 2021
12f31a9
Fixing last functional test for data grid
1Copenut Nov 23, 2021
de5dd89
Reverting data source to upstream example for one test.
1Copenut Nov 23, 2021
bd3ff25
Adding a fix for _data_table.ts test.
1Copenut Nov 23, 2021
2768738
Adding a fix for _data_table)notimeindex_filters.ts
1Copenut Nov 23, 2021
7a08801
Merge remote-tracking branch 'upstream/main' into eui/41-2-0
1Copenut Nov 24, 2021
285ed1b
Bumping to 41.2.2 patch fix
1Copenut Nov 24, 2021
7b9913b
Merge branch 'main' into eui/41-2-0
kibanamachine Nov 25, 2021
bc0c2d4
Merge branch 'main' into eui/41-2-0
kibanamachine Nov 29, 2021
d606dee
Removing unneeded test code and updating comment
1Copenut Nov 29, 2021
6166d16
Merge branch 'main' into eui/41-2-0
kibanamachine Nov 29, 2021
6844780
Merge branch 'main' into eui/41-2-0
kibanamachine Dec 1, 2021
65ba080
Merge branch 'main' into eui/41-2-0
kibanamachine Dec 1, 2021
65290a9
Merge branch 'main' into eui/41-2-0
kibanamachine Dec 1, 2021
e78af33
Merge branch 'main' into eui/41-2-0
kibanamachine Dec 2, 2021
2ffe3ab
Merge branch 'main' into eui/41-2-0
1Copenut Dec 6, 2021
0b3547c
Bumping to 41.2.3 for bug fix.
1Copenut Dec 6, 2021
3738b14
Adding a missed file.
1Copenut Dec 6, 2021
9b02356
Adjusting test for tooltip overlap assertion.
1Copenut Dec 6, 2021
7ce55fb
Merge branch 'main' into eui/41-2-0
1Copenut Dec 7, 2021
182e3b0
Merging upstream main branch.
1Copenut Dec 7, 2021
ca01f37
Resolving merge conflict in lens_page.ts.
1Copenut Dec 7, 2021
de8c73e
Updating two tests in Security Solution Platform.
1Copenut Dec 8, 2021
93d86b8
Merge branch 'main' into eui/41-2-0
1Copenut Dec 8, 2021
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": "link:bazel-bin/packages/elastic-datemath",
"@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@^8.0.0-canary.35",
"@elastic/ems-client": "8.0.0",
"@elastic/eui": "41.0.0",
"@elastic/eui": "41.2.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.

15 changes: 10 additions & 5 deletions src/core/public/i18n/i18n_eui_mapping.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,10 @@ export const getEuiContextMapping = (): EuiTokensObject => {
defaultMessage: '+ {messagesLength} more',
values: { messagesLength },
}),
'euiErrorBoundary.error': i18n.translate('core.euiErrorBoundary.error', {
defaultMessage: 'Error',
description: 'Error boundary for uncaught exceptions when rendering part of the application',
}),
'euiNotificationEventMessages.accordionAriaLabelButtonText': ({
messagesLength,
eventName,
Expand Down Expand Up @@ -1046,12 +1050,13 @@ export const getEuiContextMapping = (): EuiTokensObject => {
description: 'Displayed in a button that shows date picker',
}
),
'euiSuperSelect.screenReaderAnnouncement': ({ optionsCount }: EuiValues) =>
i18n.translate('core.euiSuperSelect.screenReaderAnnouncement', {
'euiSuperSelect.screenReaderAnnouncement': i18n.translate(
'core.euiSuperSelect.screenReaderAnnouncement',
{
defaultMessage:
'You are in a form selector of {optionsCount} items and must select a single option. Use the up and down keys to navigate or escape to close.',
values: { optionsCount },
}),
'You are in a form selector and must select a single option. Use the up and down keys to navigate or escape to close.',
}
),
'euiSuperSelectControl.selectAnOption': ({ selectedValue }: EuiValues) =>
i18n.translate('core.euiSuperSelectControl.selectAnOption', {
defaultMessage: 'Select an option: {selectedValue}, is selected',
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 @@ -76,6 +76,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.0.0': ['Elastic License 2.0'],
'@elastic/eui@41.0.0': ['SSPL-1.0 OR Elastic License 2.0'],
'@elastic/eui@41.2.3': ['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.

Loading