tailwindcss 3.4.13 → 3.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  - Nothing yet!
11
11
 
12
+ ## [3.4.14] - 2024-10-15
13
+
14
+ ### Fixed
15
+
16
+ - Don't set `display: none` on elements that use `hidden="until-found"` ([#14625](https://github.com/tailwindlabs/tailwindcss/pull/14625))
17
+
12
18
  ## [3.4.13] - 2024-09-23
13
19
 
14
20
  ### Fixed
@@ -2449,7 +2455,8 @@ No release notes
2449
2455
 
2450
2456
  - Everything!
2451
2457
 
2452
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.13...HEAD
2458
+ [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.14...HEAD
2459
+ [3.4.14]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.13...v3.4.14
2453
2460
  [3.4.13]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.12...v3.4.13
2454
2461
  [3.4.12]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.11...v3.4.12
2455
2462
  [3.4.11]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...v3.4.11
@@ -381,6 +381,6 @@ video {
381
381
  }
382
382
 
383
383
  /* Make elements with the HTML hidden attribute stay hidden by default */
384
- [hidden] {
384
+ [hidden]:where(:not([hidden="until-found"])) {
385
385
  display: none;
386
386
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "3.4.13",
3
+ "version": "3.4.14",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -381,6 +381,6 @@ video {
381
381
  }
382
382
 
383
383
  /* Make elements with the HTML hidden attribute stay hidden by default */
384
- [hidden] {
384
+ [hidden]:where(:not([hidden="until-found"])) {
385
385
  display: none;
386
386
  }