tailwindcss 4.0.0-alpha.16 → 4.0.0-alpha.18
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/lib.d.mts +41 -35
- package/dist/lib.d.ts +41 -35
- package/dist/lib.js +9 -9
- package/dist/lib.mjs +9 -9
- package/index.css +2 -0
- package/package.json +2 -2
- package/theme.css +2 -0
package/index.css
CHANGED
@@ -295,6 +295,7 @@
|
|
295
295
|
--radius-xl: 0.75rem;
|
296
296
|
--radius-2xl: 1rem;
|
297
297
|
--radius-3xl: 1.5rem;
|
298
|
+
--radius-4xl: 2rem;
|
298
299
|
|
299
300
|
/* Shadows */
|
300
301
|
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
@@ -321,6 +322,7 @@
|
|
321
322
|
--drop-shadow-lg: 0 10px 8px rgb(0 0 0 / 0.04), 0 4px 3px rgb(0 0 0 / 0.1);
|
322
323
|
--drop-shadow-xl: 0 20px 13px rgb(0 0 0 / 0.03), 0 8px 5px rgb(0 0 0 / 0.08);
|
323
324
|
--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
|
325
|
+
--drop-shadow-none: 0 0 #0000;
|
324
326
|
|
325
327
|
/* Spacing */
|
326
328
|
--spacing-px: 1px;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "tailwindcss",
|
3
|
-
"version": "4.0.0-alpha.
|
3
|
+
"version": "4.0.0-alpha.18",
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"devDependencies": {
|
43
43
|
"@types/node": "^20.12.12",
|
44
44
|
"lightningcss": "^1.25.1",
|
45
|
-
"@tailwindcss/oxide": "4.0.0-alpha.
|
45
|
+
"@tailwindcss/oxide": "4.0.0-alpha.18"
|
46
46
|
},
|
47
47
|
"scripts": {
|
48
48
|
"lint": "tsc --noEmit",
|
package/theme.css
CHANGED
@@ -285,6 +285,7 @@
|
|
285
285
|
--radius-xl: 0.75rem;
|
286
286
|
--radius-2xl: 1rem;
|
287
287
|
--radius-3xl: 1.5rem;
|
288
|
+
--radius-4xl: 2rem;
|
288
289
|
|
289
290
|
/* Shadows */
|
290
291
|
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
@@ -308,6 +309,7 @@
|
|
308
309
|
--drop-shadow-lg: 0 10px 8px rgb(0 0 0 / 0.04), 0 4px 3px rgb(0 0 0 / 0.1);
|
309
310
|
--drop-shadow-xl: 0 20px 13px rgb(0 0 0 / 0.03), 0 8px 5px rgb(0 0 0 / 0.08);
|
310
311
|
--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
|
312
|
+
--drop-shadow-none: 0 0 #0000;
|
311
313
|
|
312
314
|
/* Spacing */
|
313
315
|
--spacing-px: 1px;
|