@pandacss/types 0.0.0-dev-20230613112708 → 0.0.0-dev-20230613150904
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/config.d.ts +2 -2
- package/package.json +2 -2
package/dist/config.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ type CssgenOptions = {
|
|
|
130
130
|
* The namespace prefix for the generated css classes and css variables.
|
|
131
131
|
* @default ''
|
|
132
132
|
*/
|
|
133
|
-
prefix?: string
|
|
133
|
+
prefix?: string | { cssVar: string; className: string }
|
|
134
134
|
/**
|
|
135
135
|
* The value separator used in the generated class names.
|
|
136
136
|
* @default '_'
|
|
@@ -174,7 +174,7 @@ type CodegenOptions = {
|
|
|
174
174
|
* This is useful if want to shorten the class names.
|
|
175
175
|
* @default false
|
|
176
176
|
*/
|
|
177
|
-
hash?: boolean
|
|
177
|
+
hash?: boolean | { cssVar: boolean; className: boolean }
|
|
178
178
|
/**
|
|
179
179
|
* Options for the generated typescript definitions.
|
|
180
180
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/types",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230613150904",
|
|
4
4
|
"description": "The types for css panda",
|
|
5
5
|
"main": "dist/index.d.ts",
|
|
6
6
|
"author": "Segun Adebayo <joseshegs@gmail.com>",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"csstype": "3.1.2"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@pandacss/extractor": "0.0.0-dev-
|
|
19
|
+
"@pandacss/extractor": "0.0.0-dev-20230613150904"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsx scripts/build.ts",
|