@pandacss/studio 0.0.0-dev-20230614183248 → 0.3.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
"react": "18.2.0",
|
|
33
33
|
"react-dom": "18.2.0",
|
|
34
34
|
"vite": "4.3.9",
|
|
35
|
-
"@pandacss/types": "0.
|
|
36
|
-
"@pandacss/config": "0.
|
|
37
|
-
"@pandacss/shared": "0.
|
|
38
|
-
"@pandacss/token-dictionary": "0.
|
|
39
|
-
"@pandacss/logger": "0.
|
|
40
|
-
"@pandacss/node": "0.
|
|
35
|
+
"@pandacss/types": "0.3.0",
|
|
36
|
+
"@pandacss/config": "0.3.0",
|
|
37
|
+
"@pandacss/shared": "0.3.0",
|
|
38
|
+
"@pandacss/token-dictionary": "0.3.0",
|
|
39
|
+
"@pandacss/logger": "0.3.0",
|
|
40
|
+
"@pandacss/node": "0.3.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/react": "18.2.12",
|
|
44
44
|
"@types/react-dom": "18.2.5",
|
|
45
45
|
"@vitejs/plugin-react": "4.0.0",
|
|
46
46
|
"execa": "7.1.1",
|
|
47
|
-
"@pandacss/dev": "0.
|
|
47
|
+
"@pandacss/dev": "0.3.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"codegen": "panda",
|
|
@@ -213,16 +213,13 @@ const classNameMap = {
|
|
|
213
213
|
transitionProperty: 'transition',
|
|
214
214
|
animation: 'animation',
|
|
215
215
|
animationDelay: 'animation-delay',
|
|
216
|
-
transform: 'transform',
|
|
217
216
|
transformOrigin: 'origin',
|
|
218
217
|
scale: 'scale',
|
|
219
218
|
scaleX: 'scale-x',
|
|
220
219
|
scaleY: 'scale-y',
|
|
221
|
-
|
|
220
|
+
translate: 'translate',
|
|
222
221
|
translateX: 'translate-x',
|
|
223
222
|
translateY: 'translate-y',
|
|
224
|
-
skewX: 'skew-x',
|
|
225
|
-
skewY: 'skew-y',
|
|
226
223
|
accentColor: 'accent',
|
|
227
224
|
caretColor: 'caret',
|
|
228
225
|
scrollBehavior: 'scroll',
|
|
@@ -296,16 +296,13 @@ var userGenerated = [
|
|
|
296
296
|
'transitionProperty',
|
|
297
297
|
'animation',
|
|
298
298
|
'animationDelay',
|
|
299
|
-
'transform',
|
|
300
299
|
'transformOrigin',
|
|
301
300
|
'scale',
|
|
302
301
|
'scaleX',
|
|
303
302
|
'scaleY',
|
|
304
|
-
'
|
|
303
|
+
'translate',
|
|
305
304
|
'translateX',
|
|
306
305
|
'translateY',
|
|
307
|
-
'skewX',
|
|
308
|
-
'skewY',
|
|
309
306
|
'accentColor',
|
|
310
307
|
'caretColor',
|
|
311
308
|
'scrollBehavior',
|
|
@@ -152,7 +152,8 @@ type PropertyValueTypes = {
|
|
|
152
152
|
transitionProperty: "all" | "none" | "opacity" | "shadow" | "transform" | "base" | "background" | "colors";
|
|
153
153
|
animation: Tokens["animations"];
|
|
154
154
|
animationDelay: Tokens["durations"];
|
|
155
|
-
|
|
155
|
+
scale: "auto" | CssProperties["scale"];
|
|
156
|
+
translate: "auto" | CssProperties["translate"];
|
|
156
157
|
translateX: Tokens["spacing"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "full";
|
|
157
158
|
translateY: Tokens["spacing"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "full";
|
|
158
159
|
accentColor: Tokens["colors"];
|
|
@@ -666,8 +666,6 @@ export type SystemProperties = {
|
|
|
666
666
|
scaleY?: PropertyValue<'scaleY'>
|
|
667
667
|
translateX?: PropertyValue<'translateX'>
|
|
668
668
|
translateY?: PropertyValue<'translateY'>
|
|
669
|
-
skewX?: PropertyValue<'skewX'>
|
|
670
|
-
skewY?: PropertyValue<'skewY'>
|
|
671
669
|
scrollbar?: PropertyValue<'scrollbar'>
|
|
672
670
|
scrollMarginX?: PropertyValue<'scrollMarginX'>
|
|
673
671
|
scrollMarginY?: PropertyValue<'scrollMarginY'>
|