@unocss/core
Advanced tools
Comparing version 0.65.0-beta.2 to 0.65.0-beta.3
@@ -144,2 +144,3 @@ import MagicString from 'magic-string'; | ||
parentOrders: Map<string, number>; | ||
activatedRules: Set<Rule<Theme>>; | ||
events: Emitter<{ | ||
@@ -306,3 +307,3 @@ config: (config: ResolvedConfig<Theme>) => void; | ||
} | ||
interface PreflightContext<Theme extends object = object> { | ||
interface BaseContext<Theme extends object = object> { | ||
/** | ||
@@ -317,4 +318,6 @@ * UnoCSS generator instance | ||
} | ||
interface SafeListContext<Theme extends object = object> extends PreflightContext<Theme> { | ||
interface PreflightContext<Theme extends object = object> extends BaseContext<Theme> { | ||
} | ||
interface SafeListContext<Theme extends object = object> extends BaseContext<Theme> { | ||
} | ||
interface Extractor { | ||
@@ -365,2 +368,6 @@ name: string; | ||
__hash?: string; | ||
/** | ||
* Custom metadata | ||
*/ | ||
custom?: Record<string, any>; | ||
} | ||
@@ -930,4 +937,5 @@ type CSSValue = CSSObject | CSSEntries; | ||
rulesSize: number; | ||
rulesDynamic: [number, ...DynamicRule<Theme>][]; | ||
rulesStaticMap: Record<string, [number, CSSObject | CSSEntries, RuleMeta | undefined, Rule<Theme>] | undefined>; | ||
rules: readonly Rule<Theme>[]; | ||
rulesDynamic: readonly DynamicRule<Theme>[]; | ||
rulesStaticMap: Record<string, StaticRule | undefined>; | ||
autocomplete: { | ||
@@ -934,0 +942,0 @@ templates: (AutoCompleteFunction | AutoCompleteTemplate)[]; |
{ | ||
"name": "@unocss/core", | ||
"type": "module", | ||
"version": "0.65.0-beta.2", | ||
"version": "0.65.0-beta.3", | ||
"description": "The instant on-demand Atomic CSS engine.", | ||
@@ -6,0 +6,0 @@ "author": "Anthony Fu <anthonyfu117@hotmail.com>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
124510
2371