@pandacss/studio 0.0.0-dev-20230708140509 → 0.0.0-dev-20230709235215

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.0.0-dev-20230708140509",
3
+ "version": "0.0.0-dev-20230709235215",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,19 +33,19 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.3.9",
36
- "@pandacss/types": "0.0.0-dev-20230708140509",
37
- "@pandacss/config": "0.0.0-dev-20230708140509",
38
- "@pandacss/shared": "0.0.0-dev-20230708140509",
39
- "@pandacss/token-dictionary": "0.0.0-dev-20230708140509",
40
- "@pandacss/logger": "0.0.0-dev-20230708140509",
41
- "@pandacss/node": "0.0.0-dev-20230708140509"
36
+ "@pandacss/types": "0.0.0-dev-20230709235215",
37
+ "@pandacss/config": "0.0.0-dev-20230709235215",
38
+ "@pandacss/shared": "0.0.0-dev-20230709235215",
39
+ "@pandacss/token-dictionary": "0.0.0-dev-20230709235215",
40
+ "@pandacss/logger": "0.0.0-dev-20230709235215",
41
+ "@pandacss/node": "0.0.0-dev-20230709235215"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.14",
45
45
  "@types/react-dom": "18.2.6",
46
46
  "@vitejs/plugin-react": "4.0.1",
47
47
  "execa": "7.1.1",
48
- "@pandacss/dev": "0.0.0-dev-20230708140509"
48
+ "@pandacss/dev": "0.0.0-dev-20230709235215"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -210,7 +210,8 @@ const classNameMap = {
210
210
  transitionTimingFunction: 'ease',
211
211
  transitionDelay: 'delay',
212
212
  transitionDuration: 'duration',
213
- transitionProperty: 'transition',
213
+ transitionProperty: 'transition-prop',
214
+ transition: 'transition',
214
215
  animation: 'animation',
215
216
  animationDelay: 'animation-delay',
216
217
  transformOrigin: 'origin',
@@ -294,6 +294,7 @@ var userGenerated = [
294
294
  'transitionDelay',
295
295
  'transitionDuration',
296
296
  'transitionProperty',
297
+ 'transition',
297
298
  'animation',
298
299
  'animationDelay',
299
300
  'transformOrigin',
@@ -150,7 +150,7 @@ type PropertyValueTypes = {
150
150
  transitionTimingFunction: Tokens["easings"];
151
151
  transitionDelay: Tokens["durations"];
152
152
  transitionDuration: Tokens["durations"];
153
- transitionProperty: "all" | "none" | "opacity" | "shadow" | "transform" | "base" | "background" | "colors";
153
+ transition: "all" | "common" | "background" | "colors" | "opacity" | "shadow" | "transform";
154
154
  animation: Tokens["animations"];
155
155
  animationDelay: Tokens["durations"];
156
156
  scale: "auto" | CssProperties["scale"];