diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index b72692eb116d1d..cc06857398fb6c 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -21,6 +21,8 @@ ### Bug Fix - Use `Object.assign` instead of `{ ...spread }` syntax to avoid errors in the code generated by TypeScript ([#39932](https://github.com/WordPress/gutenberg/pull/39932)). +- `ItemGroup`: Ensure that the Item's text color is not overriden by the user agent's button color ([#40055](https://github.com/WordPress/gutenberg/pull/40055)). +- `Surface`: Use updated UI text color `#1e1e1e` instead of `#000` ([#40055](https://github.com/WordPress/gutenberg/pull/40055)). - `CustomSelectControl`: Make chevron consistent with `SelectControl` ([#40049](https://github.com/WordPress/gutenberg/pull/40049)). ## 19.7.0 (2022-03-23) diff --git a/packages/components/src/card/test/__snapshots__/index.js.snap b/packages/components/src/card/test/__snapshots__/index.js.snap index eea876b0cffe56..f36ceca8dcc7f8 100644 --- a/packages/components/src/card/test/__snapshots__/index.js.snap +++ b/packages/components/src/card/test/__snapshots__/index.js.snap @@ -124,7 +124,7 @@ Snapshot Diff: "background-color": "#fff", - "border-radius": "calc(2px - 1px)", "box-shadow": "0 0 0 1px rgba(0, 0, 0, 0.1)", - "color": "#000", + "color": "#1e1e1e", "outline": "none", "position": "relative", }, @@ -174,8 +174,8 @@ Snapshot Diff: @@ -1,30 +1,30 @@