@pandacss/studio 0.0.0-dev-20230926160532 → 0.0.0-dev-20230927123747

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/studio",
3
- "version": "0.0.0-dev-20230926160532",
3
+ "version": "0.0.0-dev-20230927123747",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,19 +33,19 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.4.9",
36
- "@pandacss/logger": "0.0.0-dev-20230926160532",
37
- "@pandacss/node": "0.0.0-dev-20230926160532",
38
- "@pandacss/config": "0.0.0-dev-20230926160532",
39
- "@pandacss/shared": "0.0.0-dev-20230926160532",
40
- "@pandacss/token-dictionary": "0.0.0-dev-20230926160532",
41
- "@pandacss/types": "0.0.0-dev-20230926160532"
36
+ "@pandacss/config": "0.0.0-dev-20230927123747",
37
+ "@pandacss/logger": "0.0.0-dev-20230927123747",
38
+ "@pandacss/node": "0.0.0-dev-20230927123747",
39
+ "@pandacss/shared": "0.0.0-dev-20230927123747",
40
+ "@pandacss/token-dictionary": "0.0.0-dev-20230927123747",
41
+ "@pandacss/types": "0.0.0-dev-20230927123747"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/react": "18.2.22",
45
45
  "@types/react-dom": "18.2.7",
46
46
  "@vitejs/plugin-react": "4.0.4",
47
47
  "execa": "7.2.0",
48
- "@pandacss/dev": "0.0.0-dev-20230926160532"
48
+ "@pandacss/dev": "0.0.0-dev-20230927123747"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -1,6 +1,8 @@
1
1
  /* eslint-disable */
2
2
  import './global.d.ts'
3
- export type { ConditionalValue } from './conditions';
4
- export type { PatternConfig, PatternProperties } from './pattern';
5
- export type { RecipeVariantRecord, RecipeConfig, SlotRecipeVariantRecord, SlotRecipeConfig } from './recipe';
6
- export type { GlobalStyleObject, JsxStyleProps, SystemStyleObject } from './system-types';
3
+ export * from './conditions';
4
+ export * from './pattern';
5
+ export * from './recipe';
6
+ export * from './system-types';
7
+ export * from './jsx';
8
+ export * from './style-props';
@@ -5,7 +5,7 @@ import type { RecipeDefinition, RecipeSelection, RecipeVariantRecord } from './r
5
5
 
6
6
  type Dict = Record<string, unknown>
7
7
 
8
- type ComponentProps<T extends ElementType> = DistributiveOmit<ComponentPropsWithoutRef<T>, 'ref'> & {
8
+ export type ComponentProps<T extends ElementType> = DistributiveOmit<ComponentPropsWithoutRef<T>, 'ref'> & {
9
9
  ref?: Ref<ElementRef<T>>
10
10
  }
11
11