Polyfills Type — tailwindcss Architecture
Architecture documentation for the Polyfills type/interface in index.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 635999e2_5db7_3966_fc60_e47cb641c988["Polyfills"] 23bd4e2f_c62c_a942_7014_8486569053ee["index.ts"] 635999e2_5db7_3966_fc60_e47cb641c988 -->|defined in| 23bd4e2f_c62c_a942_7014_8486569053ee style 635999e2_5db7_3966_fc60_e47cb641c988 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/tailwindcss/src/index.ts lines 41–52
export const enum Polyfills {
None = 0,
// Control if fallbacks for `@property` rules are emitted
AtProperty = 1 << 0,
// Control if `color-mix(…)` fallbacks are inserted
ColorMix = 1 << 1,
// Enable all
All = AtProperty | ColorMix,
}
Defined In
Source
Frequently Asked Questions
What is the Polyfills type?
Polyfills is a type/interface in the tailwindcss codebase, defined in packages/tailwindcss/src/index.ts.
Where is Polyfills defined?
Polyfills is defined in packages/tailwindcss/src/index.ts at line 41.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free