diff --git a/CHANGELOG.md b/CHANGELOG.md index 25edaad623a8..1ffb83c947f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing yet! +## [3.4.14] - 2024-10-15 + +### Fixed + +- Don't set `display: none` on elements that use `hidden="until-found"` ([#14625](https://github.com/tailwindlabs/tailwindcss/pull/14625)) + ## [3.4.13] - 2024-09-23 ### Fixed @@ -2449,7 +2455,8 @@ No release notes - Everything! -[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.13...HEAD +[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.14...HEAD +[3.4.14]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.13...v3.4.14 [3.4.13]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.12...v3.4.13 [3.4.12]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.11...v3.4.12 [3.4.11]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...v3.4.11 diff --git a/package-lock.json b/package-lock.json index 2c0c92cd36da..27568e102ee7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tailwindcss", - "version": "3.4.13", + "version": "3.4.14", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tailwindcss", - "version": "3.4.13", + "version": "3.4.14", "license": "MIT", "dependencies": { "@alloc/quick-lru": "^5.2.0", diff --git a/package.json b/package.json index 673e36db1e6c..e08c5dfc5e24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tailwindcss", - "version": "3.4.13", + "version": "3.4.14", "description": "A utility-first CSS framework for rapidly building custom user interfaces.", "license": "MIT", "main": "lib/index.js", diff --git a/src/css/preflight.css b/src/css/preflight.css index 7a0d82d46e04..04b9d1424a32 100644 --- a/src/css/preflight.css +++ b/src/css/preflight.css @@ -381,6 +381,6 @@ video { } /* Make elements with the HTML hidden attribute stay hidden by default */ -[hidden] { +[hidden]:where(:not([hidden="until-found"])) { display: none; }