@pandacss/token-dictionary 0.0.0-dev-20240227001356 → 0.0.0-dev-20240227104754
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 +4 -4
package/dist/index.js
CHANGED
|
@@ -1018,7 +1018,7 @@ var TokenDictionaryView = class {
|
|
|
1018
1018
|
byCategory.set(category, /* @__PURE__ */ new Map());
|
|
1019
1019
|
const value = isNegative ? token.isConditional ? token.originalValue : token.value : varRef;
|
|
1020
1020
|
byCategory.get(category).set(prop, value);
|
|
1021
|
-
flat.set(
|
|
1021
|
+
flat.set(token.name, value);
|
|
1022
1022
|
}
|
|
1023
1023
|
processVars(token, group) {
|
|
1024
1024
|
const { condition, isNegative, isVirtual, var: varName } = token.extensions;
|
package/dist/index.mjs
CHANGED
|
@@ -998,7 +998,7 @@ var TokenDictionaryView = class {
|
|
|
998
998
|
byCategory.set(category, /* @__PURE__ */ new Map());
|
|
999
999
|
const value = isNegative ? token.isConditional ? token.originalValue : token.value : varRef;
|
|
1000
1000
|
byCategory.get(category).set(prop, value);
|
|
1001
|
-
flat.set(
|
|
1001
|
+
flat.set(token.name, value);
|
|
1002
1002
|
}
|
|
1003
1003
|
processVars(token, group) {
|
|
1004
1004
|
const { condition, isNegative, isVirtual, var: varName } = token.extensions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/token-dictionary",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20240227104754",
|
|
4
4
|
"description": "Common error messages for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ts-pattern": "5.0.8",
|
|
36
|
-
"@pandacss/logger": "^0.0.0-dev-
|
|
37
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
38
|
-
"@pandacss/types": "0.0.0-dev-
|
|
36
|
+
"@pandacss/logger": "^0.0.0-dev-20240227104754",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20240227104754",
|
|
38
|
+
"@pandacss/types": "0.0.0-dev-20240227104754"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsup src/index.ts --format=esm,cjs --dts",
|