@pandacss/types 0.0.0-dev-20240310172521 → 0.0.0-dev-20240311011338

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.
Files changed (2) hide show
  1. package/dist/parser.d.ts +7 -0
  2. package/package.json +2 -2
package/dist/parser.d.ts CHANGED
@@ -18,6 +18,13 @@ export interface ParserResultInterface {
18
18
  filePath: string | undefined
19
19
  isEmpty: () => boolean
20
20
  toArray: () => Array<ResultItem>
21
+ set: (name: 'cva' | 'css' | 'sva', result: ResultItem) => void
22
+ setCss: (result: ResultItem) => void
23
+ setCva: (result: ResultItem) => void
24
+ setSva: (result: ResultItem) => void
25
+ setJsx: (result: ResultItem) => void
26
+ setPattern: (name: string, result: ResultItem) => void
27
+ setRecipe: (name: string, result: ResultItem) => void
21
28
  }
22
29
 
23
30
  export interface EncoderJson {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20240310172521",
3
+ "version": "0.0.0-dev-20240311011338",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "microdiff": "1.3.2",
31
31
  "ncp": "2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.0.0-dev-20240310172521"
33
+ "@pandacss/extractor": "0.0.0-dev-20240311011338"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",