@pandacss/studio 0.47.1 → 0.48.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/dist/studio.mjs CHANGED
@@ -1,4 +1,4 @@
1
- // ../../node_modules/.pnpm/tsup@8.0.2_@swc+core@1.7.6_postcss@8.4.47_typescript@5.3.3/node_modules/tsup/assets/esm_shims.js
1
+ // ../../node_modules/.pnpm/tsup@8.0.2_@swc+core@1.9.2_postcss@8.4.49_typescript@5.3.3/node_modules/tsup/assets/esm_shims.js
2
2
  import { fileURLToPath } from "url";
3
3
  import path from "path";
4
4
  var getFilename = () => fileURLToPath(import.meta.url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/studio",
3
- "version": "0.47.1",
3
+ "version": "0.48.0",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -43,17 +43,17 @@
43
43
  "author": "Segun Adebayo <joseshegs@gmail.com>",
44
44
  "license": "MIT",
45
45
  "dependencies": {
46
- "@astrojs/react": "3.0.10",
47
- "astro": "4.16.6",
46
+ "@astrojs/react": "3.6.2",
47
+ "astro": "4.16.12",
48
48
  "react": "18.2.0",
49
49
  "react-dom": "18.2.0",
50
- "vite": "5.4.9",
51
- "@pandacss/config": "0.47.1",
52
- "@pandacss/logger": "0.47.1",
53
- "@pandacss/shared": "0.47.1",
54
- "@pandacss/token-dictionary": "0.47.1",
55
- "@pandacss/types": "0.47.1",
56
- "@pandacss/astro-plugin-studio": "0.47.1"
50
+ "vite": "5.4.11",
51
+ "@pandacss/config": "0.48.0",
52
+ "@pandacss/logger": "0.48.0",
53
+ "@pandacss/shared": "0.48.0",
54
+ "@pandacss/token-dictionary": "0.48.0",
55
+ "@pandacss/types": "0.48.0",
56
+ "@pandacss/astro-plugin-studio": "0.48.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/react": "18.2.55",
@@ -21,10 +21,6 @@ export interface UtilityValues {
21
21
  hideBelow: Tokens["breakpoints"];
22
22
  flexBasis: Tokens["sizes"] | "1/2" | "1/3" | "2/3" | "1/4" | "2/4" | "3/4" | "1/5" | "2/5" | "3/5" | "4/5" | "1/6" | "2/6" | "3/6" | "4/6" | "5/6" | "1/12" | "2/12" | "3/12" | "4/12" | "5/12" | "6/12" | "7/12" | "8/12" | "9/12" | "10/12" | "11/12" | "full";
23
23
  flex: "1" | "auto" | "initial" | "none";
24
- gridTemplateColumns: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
25
- gridTemplateRows: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
26
- gridColumn: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "full";
27
- gridRow: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "full";
28
24
  gridAutoColumns: "min" | "max" | "fr";
29
25
  gridAutoRows: "min" | "max" | "fr";
30
26
  gap: Tokens["spacing"];
@@ -2793,7 +2793,7 @@ gridAutoRows?: ConditionalValue<UtilityValues["gridAutoRows"] | CssVars | CssPro
2793
2793
  *
2794
2794
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-column
2795
2795
  */
2796
- gridColumn?: ConditionalValue<UtilityValues["gridColumn"] | CssVars | CssProperties["gridColumn"] | AnyString>
2796
+ gridColumn?: ConditionalValue<CssProperties["gridColumn"] | AnyString>
2797
2797
  /**
2798
2798
  * The **`grid-column-end`** CSS property specifies a grid item's end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
2799
2799
  *
@@ -2835,7 +2835,7 @@ gridColumnStart?: ConditionalValue<CssProperties["gridColumnStart"] | AnyString>
2835
2835
  *
2836
2836
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-row
2837
2837
  */
2838
- gridRow?: ConditionalValue<UtilityValues["gridRow"] | CssVars | CssProperties["gridRow"] | AnyString>
2838
+ gridRow?: ConditionalValue<CssProperties["gridRow"] | AnyString>
2839
2839
  /**
2840
2840
  * The **`grid-row-end`** CSS property specifies a grid item's end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
2841
2841
  *
@@ -2904,7 +2904,7 @@ gridTemplateAreas?: ConditionalValue<CssProperties["gridTemplateAreas"] | AnyStr
2904
2904
  *
2905
2905
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
2906
2906
  */
2907
- gridTemplateColumns?: ConditionalValue<UtilityValues["gridTemplateColumns"] | CssVars | CssProperties["gridTemplateColumns"] | AnyString>
2907
+ gridTemplateColumns?: ConditionalValue<CssProperties["gridTemplateColumns"] | AnyString>
2908
2908
  /**
2909
2909
  * The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
2910
2910
  *
@@ -2918,7 +2918,7 @@ gridTemplateColumns?: ConditionalValue<UtilityValues["gridTemplateColumns"] | Cs
2918
2918
  *
2919
2919
  * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
2920
2920
  */
2921
- gridTemplateRows?: ConditionalValue<UtilityValues["gridTemplateRows"] | CssVars | CssProperties["gridTemplateRows"] | AnyString>
2921
+ gridTemplateRows?: ConditionalValue<CssProperties["gridTemplateRows"] | AnyString>
2922
2922
  /**
2923
2923
  * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
2924
2924
  *