tailwindcss 4.2.4 → 4.3.1
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-5JIJA4QV.mjs +1 -0
- package/dist/chunk-XVOTX5KS.mjs +1 -0
- package/dist/default-theme.mjs +1 -1
- package/dist/flatten-color-palette.js +1 -3
- package/dist/flatten-color-palette.mjs +1 -1
- package/dist/lib.d.mts +6 -5
- package/dist/lib.js +25 -25
- package/dist/lib.mjs +38 -1
- package/dist/plugin.d.mts +3 -3
- package/dist/{types-CJYAW1ql.d.mts → types-DWdTiksJ.d.mts} +1 -1
- package/package.json +4 -4
- package/dist/chunk-3IR7ZFJX.mjs +0 -38
- package/dist/chunk-TDNFF6A4.mjs +0 -1
package/dist/plugin.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { P as PluginUtils } from './resolve-config-QUZ9b-Gn.mjs';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
2
|
+
import { b as PluginFn, C as Config, c as PluginWithConfig, d as PluginWithOptions } from './types-DWdTiksJ.mjs';
|
|
3
|
+
export { a as PluginAPI, P as PluginsConfig, T as ThemeConfig } from './types-DWdTiksJ.mjs';
|
|
4
4
|
import './colors.mjs';
|
|
5
5
|
|
|
6
6
|
declare function createPlugin(handler: PluginFn, config?: Partial<Config>): PluginWithConfig;
|
|
@@ -8,4 +8,4 @@ declare namespace createPlugin {
|
|
|
8
8
|
var withOptions: <T>(pluginFunction: (options?: T) => PluginFn, configFunction?: (options?: T) => Partial<Config>) => PluginWithOptions<T>;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
export { Config, PluginFn as PluginCreator, createPlugin as default };
|
|
11
|
+
export { Config, PluginFn as PluginCreator, PluginWithConfig, createPlugin as default };
|
|
@@ -125,4 +125,4 @@ interface UserConfig {
|
|
|
125
125
|
experimental?: 'all' | Record<string, boolean>;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
export type { Config as C, Plugin as P, SourceLocation as S, ThemeConfig as T, UserConfig as U,
|
|
128
|
+
export type { Config as C, Plugin as P, SourceLocation as S, ThemeConfig as T, UserConfig as U, PluginAPI as a, PluginFn as b, PluginWithConfig as c, PluginWithOptions as d };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwindcss",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -73,12 +73,12 @@
|
|
|
73
73
|
],
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@jridgewell/remapping": "^2.3.5",
|
|
76
|
-
"@types/node": "
|
|
77
|
-
"dedent": "1.7.
|
|
76
|
+
"@types/node": "22.19.19",
|
|
77
|
+
"dedent": "1.7.2",
|
|
78
78
|
"lightningcss": "1.32.0",
|
|
79
79
|
"magic-string": "^0.30.21",
|
|
80
80
|
"source-map-js": "^1.2.1",
|
|
81
|
-
"@tailwindcss/oxide": "^4.
|
|
81
|
+
"@tailwindcss/oxide": "^4.3.1"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"lint": "tsc --noEmit",
|