@pandacss/studio 0.0.0-dev-20231019203811 → 0.0.0-dev-20231019221036

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-20231019203811",
3
+ "version": "0.0.0-dev-20231019221036",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,27 +33,27 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.4.11",
36
- "@pandacss/config": "0.0.0-dev-20231019203811",
37
- "@pandacss/node": "0.0.0-dev-20231019203811",
38
- "@pandacss/logger": "0.0.0-dev-20231019203811",
39
- "@pandacss/shared": "0.0.0-dev-20231019203811",
40
- "@pandacss/token-dictionary": "0.0.0-dev-20231019203811",
41
- "@pandacss/types": "0.0.0-dev-20231019203811"
36
+ "@pandacss/config": "0.0.0-dev-20231019221036",
37
+ "@pandacss/logger": "0.0.0-dev-20231019221036",
38
+ "@pandacss/node": "0.0.0-dev-20231019221036",
39
+ "@pandacss/shared": "0.0.0-dev-20231019221036",
40
+ "@pandacss/token-dictionary": "0.0.0-dev-20231019221036",
41
+ "@pandacss/types": "0.0.0-dev-20231019221036"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.22",
45
45
  "@types/react-dom": "18.2.7",
46
46
  "@vitejs/plugin-react": "4.0.4",
47
- "execa": "7.2.0",
48
- "@pandacss/dev": "0.0.0-dev-20231019203811"
47
+ "execa": "7.2.0"
49
48
  },
50
49
  "scripts": {
51
- "codegen": "panda",
50
+ "panda": "node ../cli/bin.js",
51
+ "codegen": "node ../cli/bin.js codegen",
52
52
  "build": "tsup scripts --format=esm,cjs --dts --no-splitting --shims",
53
- "postbuild": "panda",
53
+ "postbuild": "pnpm panda",
54
54
  "build-fast": "tsup scripts --format=esm,cjs --no-dts --no-splitting --shims",
55
55
  "dev": "pnpm build-fast --watch scripts",
56
- "dev:panda": "panda --clean --watch",
56
+ "dev:panda": "node ../cli/bin.js --clean --watch",
57
57
  "dev:astro": "astro dev",
58
58
  "start": "concurrently \"pnpm dev:panda\" \"pnpm dev:astro\""
59
59
  }
package/panda.config.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { defineConfig } from '@pandacss/dev'
1
+ import type { Config } from '@pandacss/types'
2
2
 
3
- export default defineConfig({
3
+ export default {
4
4
  gitignore: false,
5
5
  preflight: true,
6
6
  include: ['./src/**/*.{tsx,jsx,astro}'],
@@ -107,4 +107,4 @@ export default defineConfig({
107
107
  minHeight: '100vh',
108
108
  },
109
109
  },
110
- })
110
+ } satisfies Config
@@ -1,15 +1,11 @@
1
1
  /* eslint-disable */
2
2
  import type { CompositionStyleObject } from './system-types';
3
+ import type { Token } from '../tokens';
3
4
 
4
5
  interface Recursive<T> {
5
6
  [key: string]: Recursive<T> | T
6
7
  }
7
8
 
8
- export interface Token<Value = any> {
9
- value: Value
10
- description?: string
11
- }
12
-
13
9
  /* -----------------------------------------------------------------------------
14
10
  * Text styles
15
11
  * -----------------------------------------------------------------------------*/