zss-engine 2.2.2 → 2.2.3
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.
|
@@ -32,11 +32,11 @@ interface CommonProperties extends BaseCSSProperties {
|
|
|
32
32
|
}
|
|
33
33
|
type ArrayString = `[${string}`;
|
|
34
34
|
type ArraySelector = {
|
|
35
|
-
[key in ArrayString]: CommonProperties;
|
|
35
|
+
[key in ArrayString]: CommonProperties | CSSVariableProperty;
|
|
36
36
|
};
|
|
37
37
|
type ColonString = `:${string}`;
|
|
38
38
|
type ColonSelector = {
|
|
39
|
-
[key in ColonString]: CommonProperties;
|
|
39
|
+
[key in ColonString]: CommonProperties | CSSVariableProperty;
|
|
40
40
|
};
|
|
41
41
|
export type Query = `@media ${string}` | `@container ${string}`;
|
|
42
42
|
type QuerySelector = {
|