Skip to content

Commit 69b94cd

Browse files
Cleanup & changelog entry
1 parent ad45c77 commit 69b94cd

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- Ensure that file system watchers created when using the CLI are always cleaned up ([#18905](https://github.com/tailwindlabs/tailwindcss/pull/18905))
2020
- Do not generate `grid-column` utilities when configuring `grid-column-start` or `grid-column-end` ([#18907](https://github.com/tailwindlabs/tailwindcss/pull/18907))
2121
- Do not generate `grid-row` utilities when configuring `grid-row-start` or `grid-row-end` ([#18907](https://github.com/tailwindlabs/tailwindcss/pull/18907))
22+
- Prevent duplicate CSS when overwriting a static utility with a theme key ([#18056](https://github.com/tailwindlabs/tailwindcss/pull/18056))
2223

2324
## [4.1.13] - 2025-09-03
2425

packages/tailwindcss/src/utilities.ts

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,6 @@ export function createUtilities(theme: Theme) {
659659
})
660660

661661
suggest('z', () => [
662-
{ values: ['auto'], valueThemeKeys: ['--z-index'] },
663662
{
664663
supportsNegative: true,
665664
values: ['0', '10', '20', '30', '40', '50'],
@@ -685,7 +684,6 @@ export function createUtilities(theme: Theme) {
685684
})
686685

687686
suggest('order', () => [
688-
{ values: ['first', 'last'], valueThemeKeys: ['--order'] },
689687
{
690688
supportsNegative: true,
691689
values: Array.from({ length: 12 }, (_, i) => `${i + 1}`),
@@ -4579,13 +4577,6 @@ export function createUtilities(theme: Theme) {
45794577
},
45804578
})
45814579

4582-
suggest('transition', () => [
4583-
{
4584-
values: ['none', 'all', 'colors', 'opacity', 'shadow', 'transform'],
4585-
valueThemeKeys: ['--transition-property'],
4586-
},
4587-
])
4588-
45894580
staticUtility('transition-discrete', [['transition-behavior', 'allow-discrete']])
45904581
staticUtility('transition-normal', [['transition-behavior', 'normal']])
45914582

@@ -4675,13 +4666,6 @@ export function createUtilities(theme: Theme) {
46754666
],
46764667
},
46774668
})
4678-
4679-
suggest('ease', () => [
4680-
{
4681-
values: ['initial', 'linear'],
4682-
valueThemeKeys: ['--ease'],
4683-
},
4684-
])
46854669
}
46864670

46874671
staticUtility('will-change-auto', [['will-change', 'auto']])
@@ -4777,6 +4761,7 @@ export function createUtilities(theme: Theme) {
47774761
decl('line-height', '1'),
47784762
],
47794763
},
4764+
Fv,
47804765
},
47814766
)
47824767

0 commit comments

Comments
 (0)