@pandacss/token-dictionary 0.0.0-dev-20230605211225 → 0.0.0-dev-20230607103128

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/index.d.ts CHANGED
@@ -149,4 +149,4 @@ declare class TokenDictionary extends TokenDictionary$1 {
149
149
  getTokenVar(path: string): any;
150
150
  }
151
151
 
152
- export { TokenDictionary };
152
+ export { Token, TokenDictionary };
package/dist/index.js CHANGED
@@ -20,6 +20,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/index.ts
21
21
  var src_exports = {};
22
22
  __export(src_exports, {
23
+ Token: () => Token,
23
24
  TokenDictionary: () => TokenDictionary2
24
25
  });
25
26
  module.exports = __toCommonJS(src_exports);
@@ -866,5 +867,6 @@ var TokenDictionary2 = class extends TokenDictionary {
866
867
  };
867
868
  // Annotate the CommonJS export names for ESM import in node:
868
869
  0 && (module.exports = {
870
+ Token,
869
871
  TokenDictionary
870
872
  });
package/dist/index.mjs CHANGED
@@ -839,5 +839,6 @@ var TokenDictionary2 = class extends TokenDictionary {
839
839
  }
840
840
  };
841
841
  export {
842
+ Token,
842
843
  TokenDictionary2 as TokenDictionary
843
844
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/token-dictionary",
3
- "version": "0.0.0-dev-20230605211225",
3
+ "version": "0.0.0-dev-20230607103128",
4
4
  "description": "Common error messages for css panda",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -15,11 +15,11 @@
15
15
  ],
16
16
  "dependencies": {
17
17
  "ts-pattern": "4.3.0",
18
- "@pandacss/types": "0.0.0-dev-20230605211225",
19
- "@pandacss/shared": "0.0.0-dev-20230605211225"
18
+ "@pandacss/types": "0.0.0-dev-20230607103128",
19
+ "@pandacss/shared": "0.0.0-dev-20230607103128"
20
20
  },
21
21
  "devDependencies": {
22
- "@pandacss/fixture": "0.0.0-dev-20230605211225"
22
+ "@pandacss/fixture": "0.0.0-dev-20230607103128"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsup src/index.ts --format=esm,cjs --dts",