@pandacss/types 0.0.0-dev-20221121163943 → 0.0.0-dev-20221121175259
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 +1 -1
- package/src/config.d.ts +8 -13
package/package.json
CHANGED
package/src/config.d.ts
CHANGED
|
@@ -52,19 +52,14 @@ export type Config<
|
|
|
52
52
|
*/
|
|
53
53
|
outdir?: string
|
|
54
54
|
/**
|
|
55
|
-
* The
|
|
56
|
-
*/
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
* The root selector for the css variables.
|
|
64
|
-
* @default ':where(:host, :root)'
|
|
65
|
-
*/
|
|
66
|
-
root?: string
|
|
67
|
-
}
|
|
55
|
+
* The prefix for the css variables.
|
|
56
|
+
*/
|
|
57
|
+
cssVarPrefix?: string
|
|
58
|
+
/**
|
|
59
|
+
* The root selector for the css variables.
|
|
60
|
+
* @default ':where(:host, :root)'
|
|
61
|
+
*/
|
|
62
|
+
cssVarRoot?: string
|
|
68
63
|
/**
|
|
69
64
|
* Files to watch for changes.
|
|
70
65
|
*/
|