mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
refactor(compiler)!: move component generation to core
This commit is contained in:
@@ -78,7 +78,7 @@ export interface TailwindOptions {
|
||||
* Inline matching CSS custom properties into their consumers, dropping
|
||||
* the matching declarations. Same shape as `EmitCssOptions['inlineVars']`:
|
||||
*
|
||||
* - `true` — inline `--tw-*` (Tailwind's internal slots).
|
||||
* - `true` — inline `--tw-*` (Tailwind's internal registered variables).
|
||||
* - `RegExp` — inline any `--name` matching.
|
||||
* - omitted — no inlining.
|
||||
*
|
||||
@@ -86,7 +86,7 @@ export interface TailwindOptions {
|
||||
*/
|
||||
inlineVars?: true | RegExp;
|
||||
/**
|
||||
* Handle Tailwind's `@property`-registered slots (`--tw-content`, etc.) that
|
||||
* Handle Tailwind's `@property`-registered variables (`--tw-content`, etc.) that
|
||||
* are referenced but never set, so the output isn't broken (e.g.
|
||||
* `content: var(--tw-content)`). See `RegisteredPropertiesOptions` — choose
|
||||
* `'emit'` (ship `@property` rules) or `'inline'` (bake initial-values in),
|
||||
|
||||
Reference in New Issue
Block a user