zss-engine 0.2.43 → 0.2.44
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.
package/package.json
CHANGED
|
@@ -31,16 +31,16 @@ interface CommonProperties extends BaseCSSProperties {
|
|
|
31
31
|
columnRuleColor?: CSSColorProperty;
|
|
32
32
|
}
|
|
33
33
|
type AndString = `&${string}`;
|
|
34
|
-
type
|
|
34
|
+
type AndSelector = {
|
|
35
35
|
[key in AndString]: CommonProperties;
|
|
36
36
|
};
|
|
37
|
-
type
|
|
38
|
-
type
|
|
39
|
-
[key in
|
|
37
|
+
type ColonString = `:${string}`;
|
|
38
|
+
type ColonSelector = {
|
|
39
|
+
[key in ColonString]: CommonProperties;
|
|
40
40
|
};
|
|
41
41
|
export type MediaQuery = `@media ${string}`;
|
|
42
|
-
type
|
|
43
|
-
[K in MediaQuery]: CommonProperties |
|
|
42
|
+
type MediaQuerySelector = {
|
|
43
|
+
[K in MediaQuery]: CommonProperties | ColonSelector | AndSelector;
|
|
44
44
|
};
|
|
45
|
-
export type CSSProperties = CommonProperties |
|
|
45
|
+
export type CSSProperties = CommonProperties | AndSelector | ColonSelector | MediaQuerySelector | CSSVariableProperty;
|
|
46
46
|
export {};
|