@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.d.ts +8 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20221121163943",
3
+ "version": "0.0.0-dev-20221121175259",
4
4
  "description": "The types for css panda",
5
5
  "main": "src/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
package/src/config.d.ts CHANGED
@@ -52,19 +52,14 @@ export type Config<
52
52
  */
53
53
  outdir?: string
54
54
  /**
55
- * The css variable options for the generated design tokens
56
- */
57
- cssVar?: {
58
- /**
59
- * The prefix for the css variables.
60
- */
61
- prefix?: string
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
  */