tailwindcss 3.4.10 → 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,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.11] - 2024-09-11
13
+
14
+ ### Fixed
15
+
16
+ - Allow `anchor-size(…)` in arbitrary values ([#14393](https://github.com/tailwindlabs/tailwindcss/pull/14393))
17
+
12
18
  ## [3.4.10] - 2024-08-13
13
19
 
14
20
  ### Fixed
@@ -2431,7 +2437,8 @@ No release notes
2431
2437
 
2432
2438
  - Everything!
2433
2439
 
2434
- [unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...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
2435
2442
  [3.4.10]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.9...v3.4.10
2436
2443
  [3.4.9]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.8...v3.4.9
2437
2444
  [3.4.8]: https://github.com/tailwindlabs/tailwindcss/compare/v3.4.7...v3.4.8
@@ -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.10",
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) => {