@pandacss/node 0.0.0-dev-20221125162640 → 0.0.0-dev-20221125165251
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -1158,7 +1158,7 @@ function generateTokenCss(ctx, varRoot) {
|
|
|
1158
1158
|
${css4};
|
|
1159
1159
|
}`;
|
|
1160
1160
|
}).with({ type: "at-rule" }, (cond2) => {
|
|
1161
|
-
const selector = cond2.rawValue;
|
|
1161
|
+
const selector = cond2.rawValue ?? cond2.raw;
|
|
1162
1162
|
const { css: css4 } = (0, import_core2.toCss)(varsObj);
|
|
1163
1163
|
return `${selector} {
|
|
1164
1164
|
${root} {
|
package/dist/index.mjs
CHANGED
|
@@ -1113,7 +1113,7 @@ function generateTokenCss(ctx, varRoot) {
|
|
|
1113
1113
|
${css4};
|
|
1114
1114
|
}`;
|
|
1115
1115
|
}).with({ type: "at-rule" }, (cond2) => {
|
|
1116
|
-
const selector = cond2.rawValue;
|
|
1116
|
+
const selector = cond2.rawValue ?? cond2.raw;
|
|
1117
1117
|
const { css: css4 } = toCss(varsObj);
|
|
1118
1118
|
return `${selector} {
|
|
1119
1119
|
${root} {
|
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-20221125165251",
|
|
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": "6.0.8",
|
|
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-20221125165251",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20221125165251",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20221125165251",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20221125165251",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20221125165251",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20221125165251",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20221125165251",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20221125165251",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20221125165251"
|
|
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-20221125165251"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|