tailwindcss 4.1.1 → 4.1.3
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/dist/chunk-3NGYYP5F.mjs +36 -0
- package/dist/{chunk-PGUMDM6Y.mjs → chunk-HTB5LLOP.mjs} +1 -1
- package/dist/{chunk-JT3OR7HW.mjs → chunk-P5FH2LZE.mjs} +1 -1
- package/dist/colors.js +1 -1
- package/dist/colors.mjs +1 -1
- package/dist/default-theme.js +1 -1
- package/dist/default-theme.mjs +1 -1
- package/dist/flatten-color-palette.js +2 -2
- package/dist/flatten-color-palette.mjs +1 -1
- package/dist/lib.js +16 -13
- package/dist/lib.mjs +1 -1
- package/index.css +2 -2
- package/package.json +2 -2
- package/preflight.css +2 -2
- package/dist/chunk-UR7WNMYR.mjs +0 -33
package/dist/lib.mjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
import{a,b,c,d,e,f}from"./chunk-
|
1
|
+
import{a,b,c,d,e,f}from"./chunk-3NGYYP5F.mjs";import"./chunk-P5FH2LZE.mjs";import"./chunk-HTB5LLOP.mjs";export{b as Features,a as Polyfills,e as __unstable__loadDesignSystem,d as compile,c as compileAst,f as default};
|
package/index.css
CHANGED
@@ -783,13 +783,13 @@
|
|
783
783
|
|
784
784
|
/*
|
785
785
|
Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
|
786
|
-
crash when using `color-mix(…)` with `
|
786
|
+
crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
|
787
787
|
*/
|
788
788
|
|
789
789
|
@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
|
790
790
|
(contain-intrinsic-size: 1px) /* Safari 17+ */ {
|
791
791
|
::placeholder {
|
792
|
-
color: color-mix(in oklab,
|
792
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
793
793
|
}
|
794
794
|
}
|
795
795
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "tailwindcss",
|
3
|
-
"version": "4.1.
|
3
|
+
"version": "4.1.3",
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -75,7 +75,7 @@
|
|
75
75
|
"@types/node": "^20.14.8",
|
76
76
|
"lightningcss": "1.29.2",
|
77
77
|
"dedent": "1.5.3",
|
78
|
-
"@tailwindcss/oxide": "^4.1.
|
78
|
+
"@tailwindcss/oxide": "^4.1.3"
|
79
79
|
},
|
80
80
|
"scripts": {
|
81
81
|
"lint": "tsc --noEmit",
|
package/preflight.css
CHANGED
@@ -285,13 +285,13 @@ textarea,
|
|
285
285
|
|
286
286
|
/*
|
287
287
|
Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
|
288
|
-
crash when using `color-mix(…)` with `
|
288
|
+
crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
|
289
289
|
*/
|
290
290
|
|
291
291
|
@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
|
292
292
|
(contain-intrinsic-size: 1px) /* Safari 17+ */ {
|
293
293
|
::placeholder {
|
294
|
-
color: color-mix(in oklab,
|
294
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
295
295
|
}
|
296
296
|
}
|
297
297
|
|