@pandacss/studio 0.0.0-dev-20231019182845 → 0.0.0-dev-20231019215914

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.js CHANGED
@@ -33,10 +33,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
33
  ));
34
34
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
35
35
 
36
- // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js
36
+ // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.31_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js
37
37
  var getImportMetaUrl, importMetaUrl;
38
38
  var init_cjs_shims = __esm({
39
- "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js"() {
39
+ "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.31_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js"() {
40
40
  "use strict";
41
41
  getImportMetaUrl = () => typeof document === "undefined" ? new URL("file:" + __filename).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
42
42
  importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
package/dist/studio.mjs CHANGED
@@ -34,12 +34,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
34
34
  mod
35
35
  ));
36
36
 
37
- // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js
37
+ // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.31_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js
38
38
  import { fileURLToPath } from "url";
39
39
  import path from "path";
40
40
  var getFilename, getDirname, __dirname;
41
41
  var init_esm_shims = __esm({
42
- "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js"() {
42
+ "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.31_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js"() {
43
43
  "use strict";
44
44
  getFilename = () => fileURLToPath(import.meta.url);
45
45
  getDirname = () => path.dirname(getFilename());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/studio",
3
- "version": "0.0.0-dev-20231019182845",
3
+ "version": "0.0.0-dev-20231019215914",
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.4.11",
36
- "@pandacss/config": "0.0.0-dev-20231019182845",
37
- "@pandacss/logger": "0.0.0-dev-20231019182845",
38
- "@pandacss/node": "0.0.0-dev-20231019182845",
39
- "@pandacss/shared": "0.0.0-dev-20231019182845",
40
- "@pandacss/token-dictionary": "0.0.0-dev-20231019182845",
41
- "@pandacss/types": "0.0.0-dev-20231019182845"
36
+ "@pandacss/config": "0.0.0-dev-20231019215914",
37
+ "@pandacss/logger": "0.0.0-dev-20231019215914",
38
+ "@pandacss/node": "0.0.0-dev-20231019215914",
39
+ "@pandacss/shared": "0.0.0-dev-20231019215914",
40
+ "@pandacss/token-dictionary": "0.0.0-dev-20231019215914",
41
+ "@pandacss/types": "0.0.0-dev-20231019215914"
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
47
  "execa": "7.2.0",
48
- "@pandacss/dev": "0.0.0-dev-20231019182845"
48
+ "@pandacss/dev": "0.0.0-dev-20231019215914"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -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
  * -----------------------------------------------------------------------------*/