Rename bg-round -> bg-repeat-round, bg-space -> bg-repeat-space (#15462)

When we were porting all of the utilities from v3 to v4 we accidentally
used the wrong names for these two classes, so this PR fixes that and
corrects them back to the names used in v3.

| Before | After |
| --- | --- |
| `bg-round` | `bg-repeat-round` |
| `bg-space` | `bg-repeat-space` |

---------

Co-authored-by: Adam Wathan <adam.wathan@gmail.com>
This commit is contained in:
Robin Malfait 2024-12-20 15:54:40 +01:00 committed by GitHub
parent 00ccbdc937
commit 36dfe1f574
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 15 deletions

View File

@ -11,12 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Use the correct property value for `place-content-between`, `place-content-around`, and `place-content-evenly` utilities ([#15440](https://github.com/tailwindlabs/tailwindcss/pull/15440))
- Dont detect arbitrary properties when preceded by an escape ([#15456](https://github.com/tailwindlabs/tailwindcss/pull/15456))
- Fix incorrectly named `bg-round` and `bg-space` utilities to `bg-repeat-round` to `bg-repeat-space` ([#15462](https://github.com/tailwindlabs/tailwindcss/pull/15462))
### Changed
- Removed `--container-prose` in favor of a deprecated `--max-width-prose` theme variable so that `*-prose` is only available for max-width utilities and only for backward compatibility ([#15439](https://github.com/tailwindlabs/tailwindcss/pull/15439))
## [4.0.0-beta.8] - 2024-12-17
### Fixed

View File

@ -2179,14 +2179,14 @@ exports[`getClassList 1`] = `
"bg-radial/increasing",
"bg-radial/decreasing",
"bg-repeat",
"bg-repeat-round",
"bg-repeat-space",
"bg-repeat-x",
"bg-repeat-y",
"bg-right",
"bg-right-bottom",
"bg-right-top",
"bg-round",
"bg-scroll",
"bg-space",
"bg-top",
"bg-transparent",
"bg-transparent/0",

View File

@ -10499,8 +10499,8 @@ test('bg', async () => {
'bg-no-repeat',
'bg-repeat-x',
'bg-repeat-y',
'bg-round',
'bg-space',
'bg-repeat-round',
'bg-repeat-space',
],
),
).toMatchInlineSnapshot(`
@ -10935,20 +10935,20 @@ test('bg', async () => {
background-repeat: repeat;
}
.bg-repeat-round {
background-repeat: round;
}
.bg-repeat-space {
background-repeat: space;
}
.bg-repeat-x {
background-repeat: repeat-x;
}
.bg-repeat-y {
background-repeat: repeat-y;
}
.bg-round {
background-repeat: round;
}
.bg-space {
background-repeat: space;
}"
`)
expect(

View File

@ -2290,8 +2290,8 @@ export function createUtilities(theme: Theme) {
staticUtility('bg-no-repeat', [['background-repeat', 'no-repeat']])
staticUtility('bg-repeat-x', [['background-repeat', 'repeat-x']])
staticUtility('bg-repeat-y', [['background-repeat', 'repeat-y']])
staticUtility('bg-round', [['background-repeat', 'round']])
staticUtility('bg-space', [['background-repeat', 'space']])
staticUtility('bg-repeat-round', [['background-repeat', 'round']])
staticUtility('bg-repeat-space', [['background-repeat', 'space']])
staticUtility('bg-none', [['background-image', 'none']])