@pandacss/parser 0.0.0-dev-20230605153755 → 0.0.0-dev-20230605211225

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/index.d.ts +3 -3
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as ts_morph from 'ts-morph';
2
2
  import { ProjectOptions as ProjectOptions$1 } from 'ts-morph';
3
- import { ResultItem, AnyRecipeConfig } from '@pandacss/types';
3
+ import { ResultItem, RecipeConfig } from '@pandacss/types';
4
4
 
5
5
  declare class ParserResult {
6
6
  jsx: Set<ResultItem>;
@@ -42,7 +42,7 @@ type ParserRecipeNode = {
42
42
  type: 'recipe';
43
43
  props: string[];
44
44
  baseName: string;
45
- jsx: AnyRecipeConfig['jsx'];
45
+ jsx: RecipeConfig['jsx'];
46
46
  };
47
47
  type ParserNodeOptions = ParserPatternNode | ParserRecipeNode;
48
48
  type ParserOptions = {
@@ -53,7 +53,7 @@ type ParserOptions = {
53
53
  isStyleProp: (prop: string) => boolean;
54
54
  };
55
55
  getRecipeName: (tagName: string) => string;
56
- getRecipeByName: (name: string) => AnyRecipeConfig | undefined;
56
+ getRecipeByName: (name: string) => RecipeConfig | undefined;
57
57
  };
58
58
 
59
59
  type ProjectOptions = Partial<ProjectOptions$1> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/parser",
3
- "version": "0.0.0-dev-20230605153755",
3
+ "version": "0.0.0-dev-20230605211225",
4
4
  "description": "The static parser for panda css",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -14,15 +14,15 @@
14
14
  "lil-fp": "1.4.5",
15
15
  "ts-morph": "18.0.0",
16
16
  "ts-pattern": "4.3.0",
17
- "@pandacss/extractor": "0.0.0-dev-20230605153755",
18
- "@pandacss/is-valid-prop": "0.0.0-dev-20230605153755",
19
- "@pandacss/logger": "0.0.0-dev-20230605153755",
20
- "@pandacss/shared": "0.0.0-dev-20230605153755",
21
- "@pandacss/types": "0.0.0-dev-20230605153755"
17
+ "@pandacss/extractor": "0.0.0-dev-20230605211225",
18
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230605211225",
19
+ "@pandacss/logger": "0.0.0-dev-20230605211225",
20
+ "@pandacss/shared": "0.0.0-dev-20230605211225",
21
+ "@pandacss/types": "0.0.0-dev-20230605211225"
22
22
  },
23
23
  "devDependencies": {
24
- "@pandacss/fixture": "0.0.0-dev-20230605153755",
25
- "@pandacss/generator": "0.0.0-dev-20230605153755"
24
+ "@pandacss/fixture": "0.0.0-dev-20230605211225",
25
+ "@pandacss/generator": "0.0.0-dev-20230605211225"
26
26
  },
27
27
  "files": [
28
28
  "dist"