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 +8 -1
- package/lib/util/dataTypes.js +2 -1
- package/package.json +1 -1
- package/src/util/dataTypes.js +2 -0
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.
|
|
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
|
package/lib/util/dataTypes.js
CHANGED
|
@@ -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
package/src/util/dataTypes.js
CHANGED