@pandacss/node 0.0.0-dev-20230104123837 → 0.0.0-dev-20230104133247
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.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -1082,7 +1082,7 @@ function generateRecipes(ctx) {
|
|
|
1082
1082
|
return;
|
|
1083
1083
|
const js = [
|
|
1084
1084
|
import_outdent20.outdent`
|
|
1085
|
-
import { createCss, withoutSpace } from "../helpers"
|
|
1085
|
+
import { createCss, withoutSpace, compact } from "../helpers"
|
|
1086
1086
|
|
|
1087
1087
|
const createRecipe = (name, defaultVariants) => {
|
|
1088
1088
|
return (variants) => {
|
|
@@ -1107,7 +1107,7 @@ function generateRecipes(ctx) {
|
|
|
1107
1107
|
return css({
|
|
1108
1108
|
[name]: '__ignore__',
|
|
1109
1109
|
...defaultVariants,
|
|
1110
|
-
...variants
|
|
1110
|
+
...compact(variants)
|
|
1111
1111
|
})
|
|
1112
1112
|
}
|
|
1113
1113
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -1036,7 +1036,7 @@ function generateRecipes(ctx) {
|
|
|
1036
1036
|
return;
|
|
1037
1037
|
const js = [
|
|
1038
1038
|
outdent20`
|
|
1039
|
-
import { createCss, withoutSpace } from "../helpers"
|
|
1039
|
+
import { createCss, withoutSpace, compact } from "../helpers"
|
|
1040
1040
|
|
|
1041
1041
|
const createRecipe = (name, defaultVariants) => {
|
|
1042
1042
|
return (variants) => {
|
|
@@ -1061,7 +1061,7 @@ function generateRecipes(ctx) {
|
|
|
1061
1061
|
return css({
|
|
1062
1062
|
[name]: '__ignore__',
|
|
1063
1063
|
...defaultVariants,
|
|
1064
|
-
...variants
|
|
1064
|
+
...compact(variants)
|
|
1065
1065
|
})
|
|
1066
1066
|
}
|
|
1067
1067
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/node",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230104133247",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"telejson": "7.0.4",
|
|
31
31
|
"ts-pattern": "4.0.6",
|
|
32
32
|
"ts-morph": "17.0.1",
|
|
33
|
-
"@pandacss/types": "0.0.0-dev-
|
|
34
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
35
|
-
"@pandacss/error": "0.0.0-dev-
|
|
36
|
-
"@pandacss/parser": "0.0.0-dev-
|
|
37
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
38
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
39
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
40
|
-
"@pandacss/core": "0.0.0-dev-
|
|
41
|
-
"@pandacss/config": "0.0.0-dev-
|
|
33
|
+
"@pandacss/types": "0.0.0-dev-20230104133247",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230104133247",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20230104133247",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20230104133247",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20230104133247",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230104133247",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20230104133247",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20230104133247",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20230104133247"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/fs-extra": "9.0.13",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@types/glob-parent": "^5.1.1",
|
|
47
47
|
"@types/pluralize": "0.0.29",
|
|
48
48
|
"@types/lodash.merge": "4.6.7",
|
|
49
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
49
|
+
"@pandacss/fixture": "0.0.0-dev-20230104133247"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|