@pandacss/parser 0.0.0-dev-20230413141731 → 0.0.0-dev-20230413153538

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,5 +1,5 @@
1
1
  import * as _pandacss_types from '@pandacss/types';
2
- import { RecipeConfig } from '@pandacss/types';
2
+ import { AnyRecipeConfig } from '@pandacss/types';
3
3
  import * as ts_morph from 'ts-morph';
4
4
  import { ProjectOptions as ProjectOptions$1 } from 'ts-morph';
5
5
 
@@ -14,7 +14,7 @@ type ParserRecipeNode = {
14
14
  type: 'recipe';
15
15
  props: string[];
16
16
  baseName: string;
17
- jsx: RecipeConfig['jsx'];
17
+ jsx: AnyRecipeConfig['jsx'];
18
18
  };
19
19
  type ParserNodeOptions = ParserPatternNode | ParserRecipeNode;
20
20
  type ParserOptions = {
@@ -25,7 +25,7 @@ type ParserOptions = {
25
25
  isStyleProp: (prop: string) => boolean;
26
26
  };
27
27
  getRecipeName: (tagName: string) => string;
28
- getRecipeByName: (name: string) => RecipeConfig | undefined;
28
+ getRecipeByName: (name: string) => AnyRecipeConfig | undefined;
29
29
  };
30
30
 
31
31
  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-20230413141731",
3
+ "version": "0.0.0-dev-20230413153538",
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.2.2",
17
- "@pandacss/extractor": "0.0.0-dev-20230413141731",
18
- "@pandacss/is-valid-prop": "0.0.0-dev-20230413141731",
19
- "@pandacss/logger": "0.0.0-dev-20230413141731",
20
- "@pandacss/shared": "0.0.0-dev-20230413141731",
21
- "@pandacss/types": "0.0.0-dev-20230413141731"
17
+ "@pandacss/extractor": "0.0.0-dev-20230413153538",
18
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230413153538",
19
+ "@pandacss/logger": "0.0.0-dev-20230413153538",
20
+ "@pandacss/shared": "0.0.0-dev-20230413153538",
21
+ "@pandacss/types": "0.0.0-dev-20230413153538"
22
22
  },
23
23
  "devDependencies": {
24
- "@pandacss/fixture": "0.0.0-dev-20230413141731",
25
- "@pandacss/generator": "0.0.0-dev-20230413141731"
24
+ "@pandacss/fixture": "0.0.0-dev-20230413153538",
25
+ "@pandacss/generator": "0.0.0-dev-20230413153538"
26
26
  },
27
27
  "files": [
28
28
  "dist"