@pandacss/types 0.0.0-dev-20230417181739 → 0.0.0-dev-20230418111141

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 +2 -1
  2. package/package.json +2 -2
package/dist/parser.d.ts CHANGED
@@ -8,7 +8,6 @@ export type ResultItem = {
8
8
  }
9
9
 
10
10
  export type ParserResult = {
11
- all: Set<ResultItem>
12
11
  jsx: Set<ResultItem>
13
12
  css: Set<ResultItem>
14
13
  cva: Set<ResultItem>
@@ -16,7 +15,9 @@ export type ParserResult = {
16
15
  pattern: Map<string, Set<ResultItem>>
17
16
  set: (name: 'cva' | 'css', result: ResultItem) => void
18
17
  setCva: (result: ResultItem) => void
18
+ setJsx: (result: ResultItem) => void
19
19
  setRecipe: (name: string, result: ResultItem) => void
20
20
  setPattern: (name: string, result: ResultItem) => void
21
21
  isEmpty: () => boolean
22
+ getAll: () => Array<ResultItem>
22
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230417181739",
3
+ "version": "0.0.0-dev-20230418111141",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -16,7 +16,7 @@
16
16
  "csstype": "3.1.2"
17
17
  },
18
18
  "dependencies": {
19
- "@pandacss/extractor": "0.0.0-dev-20230417181739"
19
+ "@pandacss/extractor": "0.0.0-dev-20230418111141"
20
20
  },
21
21
  "scripts": {
22
22
  "build": "tsx scripts/build.ts",