@pandacss/studio 0.0.0-dev-20240501183327 → 0.0.0-dev-20240501184738
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-
|
|
3
|
+
"version": "0.0.0-dev-20240501184738",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"react": "18.2.0",
|
|
49
49
|
"react-dom": "18.2.0",
|
|
50
50
|
"vite": "5.1.7",
|
|
51
|
-
"@pandacss/config": "0.0.0-dev-
|
|
52
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
53
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
54
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
55
|
-
"@pandacss/types": "0.0.0-dev-
|
|
56
|
-
"@pandacss/astro-plugin-studio": "0.0.0-dev-
|
|
51
|
+
"@pandacss/config": "0.0.0-dev-20240501184738",
|
|
52
|
+
"@pandacss/logger": "0.0.0-dev-20240501184738",
|
|
53
|
+
"@pandacss/shared": "0.0.0-dev-20240501184738",
|
|
54
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20240501184738",
|
|
55
|
+
"@pandacss/types": "0.0.0-dev-20240501184738",
|
|
56
|
+
"@pandacss/astro-plugin-studio": "0.0.0-dev-20240501184738"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/react": "18.2.55",
|
|
@@ -39,8 +39,6 @@ export type AssetToken = "check"
|
|
|
39
39
|
|
|
40
40
|
export type BreakpointToken = "sm" | "md" | "lg" | "xl" | "2xl"
|
|
41
41
|
|
|
42
|
-
export type AnimationName = "spin" | "ping" | "pulse" | "bounce"
|
|
43
|
-
|
|
44
42
|
export type Tokens = {
|
|
45
43
|
aspectRatios: AspectRatioToken
|
|
46
44
|
borders: BorderToken
|
|
@@ -60,7 +58,6 @@ export type Tokens = {
|
|
|
60
58
|
colors: ColorToken
|
|
61
59
|
assets: AssetToken
|
|
62
60
|
breakpoints: BreakpointToken
|
|
63
|
-
animationName: AnimationName
|
|
64
61
|
} & { [token: string]: never }
|
|
65
62
|
|
|
66
63
|
export type TokenCategory = "aspectRatios" | "zIndex" | "opacity" | "colors" | "fonts" | "fontSizes" | "fontWeights" | "lineHeights" | "letterSpacings" | "sizes" | "shadows" | "spacing" | "radii" | "borders" | "borderWidths" | "durations" | "easings" | "animations" | "blurs" | "gradients" | "breakpoints" | "assets"
|
|
@@ -148,6 +148,7 @@ export interface UtilityValues {
|
|
|
148
148
|
transitionDuration: Tokens["durations"];
|
|
149
149
|
transition: "all" | "common" | "background" | "colors" | "opacity" | "shadow" | "transform";
|
|
150
150
|
animation: Tokens["animations"];
|
|
151
|
+
animationName: "spin" | "ping" | "pulse" | "bounce";
|
|
151
152
|
animationTimingFunction: Tokens["easings"];
|
|
152
153
|
animationDuration: Tokens["durations"];
|
|
153
154
|
animationDelay: Tokens["durations"];
|
|
@@ -429,7 +429,7 @@ animationIterationCount?: ConditionalValue<CssProperties["animationIterationCoun
|
|
|
429
429
|
*
|
|
430
430
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-name
|
|
431
431
|
*/
|
|
432
|
-
animationName?: ConditionalValue<CssProperties["animationName"] | AnyString>
|
|
432
|
+
animationName?: ConditionalValue<UtilityValues["animationName"] | CssVars | CssProperties["animationName"] | AnyString>
|
|
433
433
|
/**
|
|
434
434
|
* The **`animation-play-state`** CSS property sets whether an animation is running or paused.
|
|
435
435
|
*
|