Tailwind-merge

Latest version: v0.2.0

Safety actively analyzes 724329 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 10

1.2.1

Bug Fixes

- Fix isArbitraryWeight incorrectly using `weight:` instead of `number:` for disambiguation for arbitrary values by liuqiang1357 in https://github.com/dcastil/tailwind-merge/pull/85
- Fix typos in README.md by Gri-ffin in https://github.com/dcastil/tailwind-merge/pull/82

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v1.2.0...v1.2.1

Thanks to charkour for sponsoring tailwind-merge! ❤️

1.2.0

New Features

- Add prefix support by dcastil in https://github.com/dcastil/tailwind-merge/pull/78

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v1.1.1...v1.2.0

Thanks to charkour for sponsoring tailwind-merge! ❤️

1.1.1

Bug Fixes

- Fix TypeScript types not being linked correctly in package.json by navin-moorthy and dcastil in https://github.com/dcastil/tailwind-merge/pull/75

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v1.1.0...v1.1.1

1.1.0

New Features

- Fix missing arbitrary value support in some class groups by dcastil in https://github.com/dcastil/tailwind-merge/pull/73
- Adds arbitrary value support for class groups `grayscale`, `invert`, `sepia`, `grow`, `shrink`, `object-position`, `shadow`, `drop-shadow`, `rotate`, `skew` and `transform-origin`
- Fixes `break-inside` classes being merged incorrectly
- Adds missing classes `overline`, `underline-offset`, `content-none`
- Fixes typo in class group name `bg-repeeat` → `bg-repeat`
- Adds `isArbitraryShadow` validator
- Improve tree-shaking by dcastil in https://github.com/dcastil/tailwind-merge/pull/65
- I changed the build output significantly here and removed `"type": "module"` from the package.json. I did test the new npm package output in Node and in the browser, but it's hard to account for every possible build system tailwind-merge is used in. If some issues come up with bundling tailwind-merge, please open an issue!

Bug Fixes

- Fix stroke-color utilities being merged with stroke-width utilities by dcastil in https://github.com/dcastil/tailwind-merge/pull/72
- Fix mix-blend utilities getting merged incorrectly by dcastil in https://github.com/dcastil/tailwind-merge/pull/71

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v1.0.0...v1.1.0

1.0.0

v1! 🎉

Overview

After being 5 months on v0 I think it's time to release a stable version of tailwind-merge. Tailwind v3 was [released](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.0.0) yesterday and it's no coincidence that I'm releasing tailwind-merge v1 today. I added full support for Tailwind v3 so you can update both at once.

There are no breaking changes in the tailwind-merge types and some breaking changes for a small number of users in the return values, so you should get through smoothly.

By the way, you can now [sponsor](https://github.com/sponsors/dcastil) this project. 😊

Breaking Changes

- `twMerge`, `extendTailwindMerge`
- Outline utilities from Tailwind v2 don't get merged anymore since they were replaced by outline width, outline style, outline offset and outline color in Tailwind v3 (https://github.com/dcastil/tailwind-merge/pull/63/commits/55ab167b7167519873c5dd4d258dc62212d1659a, https://github.com/dcastil/tailwind-merge/pull/63)
- The classes `overflow-ellipsis` and `overflow-clip` will not get merged with class `truncate` anymore, but the new Tailwind v3 classes `text-ellipsis` and `text-clip` will. (https://github.com/dcastil/tailwind-merge/pull/63/commits/65b03e48914ac5d7d52eea9ec178b204d30609c9, https://github.com/dcastil/tailwind-merge/pull/63)
- The classes `decoration-slice` and `decoration-clone` won't get merged anymore and `box-decoration-slide` nad `box-decoration-clone` will (https://github.com/dcastil/tailwind-merge/pull/63/commits/bfe2cc9bb221107fa0bf363cc325ddbb04677f43, https://github.com/dcastil/tailwind-merge/pull/63)

- `getDefaultConfig`
- Removed class group `outline` since it was removed in Tailwind v3 (https://github.com/dcastil/tailwind-merge/pull/63/commits/55ab167b7167519873c5dd4d258dc62212d1659a, https://github.com/dcastil/tailwind-merge/pull/63)
- Renamed class group `vertival-alignment` (yes, the typo was in the code) to `vertical-align` (https://github.com/dcastil/tailwind-merge/pull/63/commits/1269ce68ae39807ceadbecc98c0929fdfdb446d0, https://github.com/dcastil/tailwind-merge/pull/63)
- Renamed class groups `flex-basis`, `flex-grow` and `flex-shrink` to `basis`, `grow` and `shrink` to stay consistent with Tailwind v3 (https://github.com/dcastil/tailwind-merge/pull/63/commits/e6d8912e47bf9a89346b9b0cc822fb2bff2af172, https://github.com/dcastil/tailwind-merge/pull/63)

- `validators`
- `isCustomLength` and `isCustomValue` were renamed to `isArbitraryLength` and `isArbitraryValue` to be consistent with naming in Tailwind v3 documentation (https://github.com/dcastil/tailwind-merge/pull/63/commits/adc3c02c7f035069beec1c62777ec008172587ab, https://github.com/dcastil/tailwind-merge/pull/63)

New Features

- Add support for Tailwind v3 by dcastil in https://github.com/dcastil/tailwind-merge/pull/63
- Support for all the new utility classes and variants in Tailwind v3.0.0
- Support for arbitrary properties like `[--my-var:20px]`
- Support for important modifiers in arbitrary properties like `![--my-very-important-var: 21px]`
- Support for new labels for classes with arbitrary value: `size`, `position`, `url`, `weight` and `family`
- New validators `isTshirtSize`, `isArbitrarySize`, `isArbitraryPosition`, `isArbitraryUrl` and `isArbitraryWeight`, check them out in the [documentation](https://github.com/dcastil/tailwind-merge/tree/v1.0.0#validators)! (https://github.com/dcastil/tailwind-merge/pull/63/commits/fec2b18870f6806e602009632b52b9fe89ebfb83, https://github.com/dcastil/tailwind-merge/pull/63/commits/f8acd7ca5be6cc40ad4c1cbdee7522bbc44c7870, https://github.com/dcastil/tailwind-merge/pull/63)

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v0.9.0...v1.0.0

0.9.0

New Features

- Mimic theme from Tailwind config in tailwind-merge config by dcastil in https://github.com/dcastil/tailwind-merge/pull/55
- Adds support for some theme properties like `spacing`, `borderRadius`, etc. More on that in the [theme docs](https://github.com/dcastil/tailwind-merge/tree/v0.9.0#theme).

**Full Changelog**: https://github.com/dcastil/tailwind-merge/compare/v0.8.2...v0.9.0

Page 7 of 10

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.