@pandacss/types 0.0.0-dev-20230623115344 → 0.0.0-dev-20230625171447
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 +5 -0
- package/dist/parser.d.ts +2 -2
- package/package.json +3 -3
package/dist/config.d.ts
CHANGED
|
@@ -161,6 +161,11 @@ type CssgenOptions = {
|
|
|
161
161
|
* Used to generate css utility classes for your project.
|
|
162
162
|
*/
|
|
163
163
|
staticCss?: StaticCssOptions
|
|
164
|
+
/**
|
|
165
|
+
* The css syntax kind to use
|
|
166
|
+
* @default 'object-literal'
|
|
167
|
+
*/
|
|
168
|
+
syntax?: 'template-literal' | 'object-literal'
|
|
164
169
|
}
|
|
165
170
|
|
|
166
171
|
type CodegenOptions = {
|
package/dist/parser.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { BoxNodeMap, Unboxed } from '@pandacss/extractor'
|
|
1
|
+
import type { BoxNodeMap, BoxNodeLiteral, Unboxed } from '@pandacss/extractor'
|
|
2
2
|
|
|
3
3
|
export type ResultItem = {
|
|
4
4
|
name?: string
|
|
5
5
|
data: Array<Unboxed['raw']>
|
|
6
6
|
type?: 'object' | 'cva' | 'pattern' | 'recipe' | 'jsx-factory' | 'jsx-pattern' | 'jsx-recipe' | 'jsx'
|
|
7
|
-
box: BoxNodeMap
|
|
7
|
+
box: BoxNodeMap | BoxNodeLiteral
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export type ParserResultType = {
|
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-20230625171447",
|
|
4
4
|
"description": "The types for css panda",
|
|
5
5
|
"main": "dist/index.d.ts",
|
|
6
6
|
"author": "Segun Adebayo <joseshegs@gmail.com>",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"chokidar-cli": "^3.0.0",
|
|
16
16
|
"csstype": "3.1.2",
|
|
17
17
|
"hookable": "5.5.3",
|
|
18
|
-
"@pandacss/extractor": "0.0.0-dev-
|
|
19
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
18
|
+
"@pandacss/extractor": "0.0.0-dev-20230625171447",
|
|
19
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230625171447"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsx scripts/build.ts",
|