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 v95.9.0 #190752

Merged
merged 25 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bc35445
Upgrade EUI to v95.8.0
cee-chen Aug 19, 2024
8d9b5fd
i18n updates
cee-chen Aug 19, 2024
0fa43c7
Fix Enzyme tests that require more specific selectors
cee-chen Aug 20, 2024
9673ce2
Update Enzyme snapshots from EuiFormRow class->function component mig…
cee-chen Aug 20, 2024
010cc30
Update type from EuiFormRow class->function component migration
cee-chen Aug 20, 2024
9a3f1d3
Fix test failures due to EuiFormRow switching from `htmlIdGenerator` …
cee-chen Aug 21, 2024
b30436a
Update DOM snapshots from DOM changes/Emotion classNames
cee-chen Aug 20, 2024
71f670b
Fix test DOM selectors to account for updated DOM
cee-chen Aug 20, 2024
ccf1274
Delete/Update references to removed modifier classes
cee-chen Aug 20, 2024
2dc43b0
Replace deprecated `@euiFormLabel` mixin
cee-chen Aug 23, 2024
caf092e
Delete unused `$euiSwitchWidth` CSS
cee-chen Aug 23, 2024
ce7bd2f
Fix CSS selector
cee-chen Aug 23, 2024
4e5d2bd
Replace direct className usage of several deprecated Emotion conversi…
cee-chen Aug 23, 2024
99d6b0d
[Unified Search] Remove direct className usage in favor of component
cee-chen Aug 23, 2024
a368861
Remove direct form control append/prepend classNames
cee-chen Aug 23, 2024
6766709
Replace EuiSwitch `--mini` direct className usage with prop
cee-chen Aug 23, 2024
50bed3e
Remove unnecessary `hasEmptyLabelSpace` prop within `EuiDescribedForm…
cee-chen Aug 23, 2024
5a7f61d
Merge branch 'main' into eui/v95.8.0
cee-chen Aug 26, 2024
24c8fb5
Upgrade to latest release
cee-chen Aug 27, 2024
ebce0ce
Fix Dashboard controls custom CSS
cee-chen Aug 27, 2024
6872b4f
Merge branch 'main' into eui/v95.8.0
mbondyra Aug 28, 2024
db96596
[PR feedback] Fix visual regression by removing unnecessary EuiFormRow
cee-chen Aug 28, 2024
1e5cc70
Merge branch 'main' into eui/v95.8.0
cee-chen Aug 30, 2024
b75ee85
update test from latest main
cee-chen Aug 30, 2024
035a5c1
Merge remote-tracking branch 'upstream/main' into eui/v95.8.0
cee-chen Aug 30, 2024
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 @@ -115,7 +115,7 @@
"@elastic/ecs": "^8.11.1",
"@elastic/elasticsearch": "^8.15.0",
"@elastic/ems-client": "8.5.3",
"@elastic/eui": "95.7.0",
"@elastic/eui": "95.9.0",
"@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.

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 @@ -725,6 +725,10 @@ export const getEuiContextMapping = (): EuiTokensObject => {
'euiFieldPassword.maskPassword': i18n.translate('core.euiFieldPassword.maskPassword', {
defaultMessage: 'Mask password',
}),
'euiFieldSearch.clearSearchButtonLabel': i18n.translate(
'core.euiFieldSearch.clearSearchButtonLabel',
{ defaultMessage: 'Clear search input' }
),
'euiFilePicker.removeSelectedAriaLabel': i18n.translate(
'core.euiFilePicker.removeSelectedAriaLabel',
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export function ColorRangeItem({
append={getAppend(rangeType, mode)}
onBlur={onLeaveFocus}
data-test-subj={`lnsPalettePanel_dynamicColoring_range_value_${index}`}
prepend={<span className="euiFormLabel">{isLast ? '\u2264' : '\u2265'}</span>}
prepend={isLast ? '\u2264' : '\u2265'}
aria-label={i18n.translate('coloring.dynamicColoring.customPalette.rangeAriaLabel', {
defaultMessage: 'Range {index}',
values: {
Expand Down

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

Loading