@master/css.compiler
Advanced tools
Comparing version 2.0.0-beta.43 to 2.0.0-beta.44
@@ -6,2 +6,5 @@ import Rules from './rules'; | ||
export default config; | ||
type Classes = { | ||
[key: string]: string | Classes; | ||
}; | ||
type Colors = { | ||
@@ -13,2 +16,5 @@ [key: string]: string | Colors; | ||
}; | ||
type MediaQueries = { | ||
[key: string]: string | MediaQueries; | ||
}; | ||
type Selectors = { | ||
@@ -24,6 +30,6 @@ [key: string]: string | string[] | Selectors; | ||
export interface Config { | ||
classes?: Record<string, string>; | ||
classes?: Classes; | ||
colors?: Colors; | ||
breakpoints?: Breakpoints; | ||
mediaQueries?: Record<string, string>; | ||
mediaQueries?: MediaQueries; | ||
selectors?: Selectors; | ||
@@ -36,4 +42,4 @@ semantics?: Semantics; | ||
themes?: Record<string, { | ||
classes?: Record<string, string>; | ||
colors?: Record<string, string | Record<string, string>>; | ||
classes?: Classes; | ||
colors?: Colors; | ||
}> | string[]; | ||
@@ -40,0 +46,0 @@ rootSize?: number; |
@@ -40,2 +40,3 @@ import type { Config } from './config'; | ||
breakpoints: Record<string, number>; | ||
mediaQueries: Record<string, string>; | ||
private schemeMQL; | ||
@@ -42,0 +43,0 @@ constructor(options?: Options); |
@@ -54,3 +54,3 @@ { | ||
}, | ||
"version": "2.0.0-beta.43" | ||
"version": "2.0.0-beta.44" | ||
} |
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
305351
2153