next-style 2.2.5 → 2.2.6
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/dist/index.d.ts
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
import { Properties, Pseudos } from 'csstype';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* The compiled representation of a single `css({})` call.
|
|
5
|
-
* Produced by `StyleCollector` and consumed by the PostCSS plugin.
|
|
6
|
-
*/
|
|
7
3
|
interface CompiledStyle {
|
|
8
|
-
/** Scoped class name, e.g. `"ns-1x2y3z"`. */
|
|
9
4
|
className: string;
|
|
10
|
-
/** Base CSS rule block for this class. */
|
|
11
5
|
css: string;
|
|
12
|
-
/** Map of normalized media query string → CSS rule block. */
|
|
13
6
|
mediaQueries: Record<string, string>;
|
|
14
|
-
/** Map of pseudo selector (e.g. `":hover"`) → CSS rule block. */
|
|
15
7
|
pseudoClasses: Record<string, string>;
|
|
16
|
-
/** Concatenated `@keyframes` blocks referenced by this style. */
|
|
17
8
|
keyframes: string;
|
|
18
|
-
/** Map of `@supports` condition → CSS rule block. */
|
|
19
9
|
supports: Record<string, string>;
|
|
20
|
-
/** Map of `@layer` name → CSS rule block. */
|
|
21
10
|
layers: Record<string, string>;
|
|
22
11
|
}
|
|
23
12
|
/**
|