tailwindcss 4.0.0-alpha.12 → 4.0.0-alpha.13

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 CHANGED
@@ -201,7 +201,7 @@ declare class Theme {
201
201
  }>);
202
202
  add(key: string, value: string, isReference?: boolean): void;
203
203
  keysInNamespaces(themeKeys: ThemeKey[]): string[];
204
- get(themeKeys: ThemeKey[]): string | null;
204
+ get(themeKeys: (ThemeKey | `${ThemeKey}-${string}`)[]): string | null;
205
205
  entries(): IterableIterator<[string, {
206
206
  value: string;
207
207
  isReference: boolean;
package/dist/lib.d.ts CHANGED
@@ -201,7 +201,7 @@ declare class Theme {
201
201
  }>);
202
202
  add(key: string, value: string, isReference?: boolean): void;
203
203
  keysInNamespaces(themeKeys: ThemeKey[]): string[];
204
- get(themeKeys: ThemeKey[]): string | null;
204
+ get(themeKeys: (ThemeKey | `${ThemeKey}-${string}`)[]): string | null;
205
205
  entries(): IterableIterator<[string, {
206
206
  value: string;
207
207
  isReference: boolean;