Skip to content

Commit

Permalink
Upgrade EUI to 83.1.0 (#161490)
Browse files Browse the repository at this point in the history
`[email protected]` ⏩ `83.1.0`

---

## [`83.1.0`](https://github.com/elastic/eui/tree/v83.1.0)

- Added `placeholder` prop to `EuiInlineEdit`
([#6883](elastic/eui#6883))
- Added `sparkles` glyph to `EuiIcon`
([#6898](elastic/eui#6898))

**Bug fixes**

- Fixed Safari-only bug for single-line row `EuiDataGrid`s, where cell
actions on hover would overlap instead of pushing content to the left
([#6881](elastic/eui#6881))
- Fixed `EuiButton` not correctly merging in passed `className`s with
its base `.euiButton` class
([#6887](elastic/eui#6887))
- Fixed `EuiIcon` not correctly passing the `style` prop custom `img`
icons ([#6888](elastic/eui#6888))
- Fixed multiple components with child props (e.g. `buttonProps`,
`iconProps`, etc.) unsetting EUI's Emotion styling if custom `css` was
passed to the child props object
([#6896](elastic/eui#6896))

**CSS-in-JS conversions**

- Converted `EuiHeader` and `EuiHeaderLogo` to Emotion
([#6878](elastic/eui#6878))
- Removed Sass variables `$euiHeaderDarkBackgroundColor`,
`$euiHeaderBorderColor`, and `$euiHeaderBreadcrumbColor`
([#6878](elastic/eui#6878))
- Removed Sass mixin `@euiHeaderDarkTheme`
([#6878](elastic/eui#6878))
  • Loading branch information
1Copenut authored Jul 11, 2023
1 parent 7f83109 commit e58c455
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"@elastic/datemath": "5.0.3",
"@elastic/elasticsearch": "npm:@elastic/[email protected]",
"@elastic/ems-client": "8.4.0",
"@elastic/eui": "83.0.0",
"@elastic/eui": "83.1.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.

2 changes: 1 addition & 1 deletion src/dev/license_checker/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const LICENSE_OVERRIDES = {
'[email protected]': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts
'@mapbox/[email protected]': ['MIT'], // license in readme https://github.com/tmcw/jsonlint
'@elastic/[email protected]': ['Elastic License 2.0'],
'@elastic/eui@83.0.0': ['SSPL-1.0 OR Elastic License 2.0'],
'@elastic/eui@83.1.0': ['SSPL-1.0 OR Elastic License 2.0'],
'[email protected]': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry
'[email protected]': ['MIT'], // license in importing module https://www.npmjs.com/package/binary
};
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('ExpressionRow', () => {
wrapper
.html()
.match(
'<span class="euiExpression__value css-xlzuv8-euiExpression__value">Rate of some.system.field</span>'
'<span class="euiExpression__value css-1lfq7nz-euiExpression__value">Rate of some.system.field</span>'
) ?? [];
expect(valueMatch).toBeTruthy();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe('ExpressionRow', () => {
const [valueMatch] =
wrapper
.html()
.match('<span class="euiExpression__value css-xlzuv8-euiExpression__value">50</span>') ??
.match('<span class="euiExpression__value css-1lfq7nz-euiExpression__value">50</span>') ??
[];
expect(valueMatch).toBeTruthy();
});
Expand All @@ -99,7 +99,7 @@ describe('ExpressionRow', () => {
const [valueMatch] =
wrapper
.html()
.match('<span class="euiExpression__value css-xlzuv8-euiExpression__value">0.5</span>') ??
.match('<span class="euiExpression__value css-1lfq7nz-euiExpression__value">0.5</span>') ??
[];
expect(valueMatch).toBeTruthy();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('ExpressionRow', () => {
const [valueMatch] =
wrapper
.html()
.match('<span class="euiExpression__value css-xlzuv8-euiExpression__value">50</span>') ??
.match('<span class="euiExpression__value css-1lfq7nz-euiExpression__value">50</span>') ??
[];
expect(valueMatch).toBeTruthy();
});
Expand All @@ -92,7 +92,7 @@ describe('ExpressionRow', () => {
const [valueMatch] =
wrapper
.html()
.match('<span class="euiExpression__value css-xlzuv8-euiExpression__value">0.5</span>') ??
.match('<span class="euiExpression__value css-1lfq7nz-euiExpression__value">0.5</span>') ??
[];
expect(valueMatch).toBeTruthy();
});
Expand Down

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

Loading

0 comments on commit e58c455

Please sign in to comment.