@pandacss/generator 0.0.0-dev-20231219220132 → 0.0.0-dev-20231220140705
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.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -175,6 +175,7 @@ interface ParserJsxOptions {
|
|
|
175
175
|
interface ParserOptions {
|
|
176
176
|
importMap: ParserImportMap;
|
|
177
177
|
jsx: ParserJsxOptions;
|
|
178
|
+
isTemplateLiteralSyntax: boolean;
|
|
178
179
|
patternKeys: Context['patterns']['keys'];
|
|
179
180
|
recipeKeys: Context['recipes']['keys'];
|
|
180
181
|
getRecipesByJsxName: Context['recipes']['filter'];
|
package/dist/index.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ interface ParserJsxOptions {
|
|
|
175
175
|
interface ParserOptions {
|
|
176
176
|
importMap: ParserImportMap;
|
|
177
177
|
jsx: ParserJsxOptions;
|
|
178
|
+
isTemplateLiteralSyntax: boolean;
|
|
178
179
|
patternKeys: Context['patterns']['keys'];
|
|
179
180
|
recipeKeys: Context['recipes']['keys'];
|
|
180
181
|
getRecipesByJsxName: Context['recipes']['filter'];
|
package/dist/index.js
CHANGED
|
@@ -4217,6 +4217,7 @@ var getParserOptions = (ctx) => {
|
|
|
4217
4217
|
isStyleProp: isValidProperty,
|
|
4218
4218
|
nodes: [...patterns.details, ...recipes.details]
|
|
4219
4219
|
},
|
|
4220
|
+
isTemplateLiteralSyntax: ctx.isTemplateLiteralSyntax,
|
|
4220
4221
|
patternKeys: patterns.keys,
|
|
4221
4222
|
recipeKeys: recipes.keys,
|
|
4222
4223
|
getRecipesByJsxName: recipes.filter,
|
package/dist/index.mjs
CHANGED
|
@@ -4193,6 +4193,7 @@ var getParserOptions = (ctx) => {
|
|
|
4193
4193
|
isStyleProp: isValidProperty,
|
|
4194
4194
|
nodes: [...patterns.details, ...recipes.details]
|
|
4195
4195
|
},
|
|
4196
|
+
isTemplateLiteralSyntax: ctx.isTemplateLiteralSyntax,
|
|
4196
4197
|
patternKeys: patterns.keys,
|
|
4197
4198
|
recipeKeys: recipes.keys,
|
|
4198
4199
|
getRecipesByJsxName: recipes.filter,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/generator",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20231220140705",
|
|
4
4
|
"description": "The css generator for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"pluralize": "8.0.0",
|
|
33
33
|
"postcss": "^8.4.31",
|
|
34
34
|
"ts-pattern": "5.0.5",
|
|
35
|
-
"@pandacss/core": "0.0.0-dev-
|
|
36
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
37
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
38
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
39
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
40
|
-
"@pandacss/types": "0.0.0-dev-
|
|
35
|
+
"@pandacss/core": "0.0.0-dev-20231220140705",
|
|
36
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20231220140705",
|
|
37
|
+
"@pandacss/logger": "0.0.0-dev-20231220140705",
|
|
38
|
+
"@pandacss/shared": "0.0.0-dev-20231220140705",
|
|
39
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20231220140705",
|
|
40
|
+
"@pandacss/types": "0.0.0-dev-20231220140705"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/pluralize": "0.0.33",
|
|
44
44
|
"hookable": "5.5.3",
|
|
45
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
45
|
+
"@pandacss/fixture": "0.0.0-dev-20231220140705"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format=esm,cjs --dts",
|