tailwindcss 3.4.9 → 3.4.11

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,18 @@ 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.11] - 2024-09-11
13
+
14
+ ### Fixed
15
+
16
+ - Allow `anchor-size(…)` in arbitrary values ([#14393](https://github.com/tailwindlabs/tailwindcss/pull/14393))
17
+
18
+ ## [3.4.10] - 2024-08-13
19
+
20
+ ### Fixed
21
+
22
+ - Bump versions of plugins in the Standalone CLI ([#14185](https://github.com/tailwindlabs/tailwindcss/pull/14185))
23
+
12
24
  ## [3.4.9] - 2024-08-08
13
25
 
14
26
  ### Fixed
@@ -2425,7 +2437,9 @@ No release notes
2425
2437
 
2426
2438
  - Everything!
2427
2439
 
2428
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...HEAD
2440
+ [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.11...HEAD
2441
+ [3.4.11]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...v3.4.11
2442
+ [3.4.10]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...v3.4.10
2429
2443
  [3.4.9]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...v3.4.9
2430
2444
  [3.4.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8
2431
2445
  [3.4.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.6...v3.4.7
@@ -174,7 +174,8 @@ function normalizeAttributeSelectors(value) {
174
174
  "conic-gradient",
175
175
  "repeating-radial-gradient",
176
176
  "repeating-linear-gradient",
177
- "repeating-conic-gradient"
177
+ "repeating-conic-gradient",
178
+ "anchor-size"
178
179
  ];
179
180
  return value.replace(/(calc|min|max|clamp)\(.+\)/g, (match)=>{
180
181
  let result = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "3.4.9",
3
+ "version": "3.4.11",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -147,6 +147,8 @@ function normalizeMathOperatorSpacing(value) {
147
147
  'repeating-radial-gradient',
148
148
  'repeating-linear-gradient',
149
149
  'repeating-conic-gradient',
150
+
151
+ 'anchor-size',
150
152
  ]
151
153
 
152
154
  return value.replace(/(calc|min|max|clamp)\(.+\)/g, (match) => {