Skip to content

Commit

Permalink
Merge pull request #371 from dcastil/bugfix/370/fix-stroke-width-merg…
Browse files Browse the repository at this point in the history
…ed-with-stroke-color

Fix stroke-color being incorrectly detected as stroke-width
  • Loading branch information
dcastil committed Jan 22, 2024
2 parents ee02ebe + 1ca9250 commit c4adf5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const stringLengths = new Set(['px', 'full', 'screen'])
const tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/
const lengthUnitRegex =
/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/
const colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/
// Shadow always begins with x and y offset separated by underscore
const shadowRegex = /^-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/
const imageRegex =
Expand Down Expand Up @@ -84,7 +85,10 @@ function getIsArbitraryValue(
}

function isLengthOnly(value: string) {
return lengthUnitRegex.test(value)
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
return lengthUnitRegex.test(value) && !colorFunctionRegex.test(value)
}

function isNever() {
Expand Down
3 changes: 3 additions & 0 deletions tests/colors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ import { twMerge } from '../src'
test('handles color conflicts properly', () => {
expect(twMerge('bg-grey-5 bg-hotpink')).toBe('bg-hotpink')
expect(twMerge('hover:bg-grey-5 hover:bg-hotpink')).toBe('hover:bg-hotpink')
expect(twMerge('stroke-[hsl(350_80%_0%)] stroke-[10px]')).toBe(
'stroke-[hsl(350_80%_0%)] stroke-[10px]',
)
})

0 comments on commit c4adf5d

Please sign in to comment.