tailwindcss-patch 9.3.6 → 9.3.7

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/src/v4/types.ts CHANGED
@@ -47,6 +47,11 @@ export interface TailwindV4GenerateOptions {
47
47
  scanSources?: boolean | TailwindV4SourcePattern[]
48
48
  }
49
49
 
50
+ export type TailwindV4CompiledSourceRoot = null | 'none' | {
51
+ base: string
52
+ pattern: string
53
+ }
54
+
50
55
  export interface TailwindV4SourcePattern {
51
56
  base: string
52
57
  pattern: string
@@ -59,10 +64,7 @@ export interface TailwindV4GenerateResult {
59
64
  rawCandidates: Set<string>
60
65
  dependencies: string[]
61
66
  sources: TailwindV4SourcePattern[]
62
- root: null | 'none' | {
63
- base: string
64
- pattern: string
65
- }
67
+ root: TailwindV4CompiledSourceRoot
66
68
  }
67
69
 
68
70
  export interface TailwindV4DesignSystem {