@pandacss/studio 0.0.0-dev-20230621130013 → 0.0.0-dev-20230623115344

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-20230621130013",
3
+ "version": "0.0.0-dev-20230623115344",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -32,19 +32,19 @@
32
32
  "react": "18.2.0",
33
33
  "react-dom": "18.2.0",
34
34
  "vite": "4.3.9",
35
- "@pandacss/types": "0.0.0-dev-20230621130013",
36
- "@pandacss/config": "0.0.0-dev-20230621130013",
37
- "@pandacss/shared": "0.0.0-dev-20230621130013",
38
- "@pandacss/token-dictionary": "0.0.0-dev-20230621130013",
39
- "@pandacss/logger": "0.0.0-dev-20230621130013",
40
- "@pandacss/node": "0.0.0-dev-20230621130013"
35
+ "@pandacss/types": "0.0.0-dev-20230623115344",
36
+ "@pandacss/config": "0.0.0-dev-20230623115344",
37
+ "@pandacss/shared": "0.0.0-dev-20230623115344",
38
+ "@pandacss/token-dictionary": "0.0.0-dev-20230623115344",
39
+ "@pandacss/logger": "0.0.0-dev-20230623115344",
40
+ "@pandacss/node": "0.0.0-dev-20230623115344"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "18.2.12",
44
44
  "@types/react-dom": "18.2.5",
45
45
  "@vitejs/plugin-react": "4.0.0",
46
46
  "execa": "7.1.1",
47
- "@pandacss/dev": "0.0.0-dev-20230621130013"
47
+ "@pandacss/dev": "0.0.0-dev-20230623115344"
48
48
  },
49
49
  "scripts": {
50
50
  "codegen": "panda",
@@ -32,7 +32,7 @@ export type PatternConfig<T extends PatternProperties = PatternProperties> = {
32
32
  /**
33
33
  * The properties of the pattern.
34
34
  */
35
- properties: T
35
+ properties?: T
36
36
  /**
37
37
  * The css object this pattern will generate.
38
38
  */
@@ -57,7 +57,7 @@ export type JsxStyleProps = SystemProperties &
57
57
  css?: SystemStyleObject
58
58
  }
59
59
 
60
- type Assign<T, U> = Omit<T, keyof U> & U
60
+ export type Assign<T, U> = Omit<T, keyof U> & U
61
61
 
62
62
  export type PatchedHTMLProps = {
63
63
  htmlSize?: string | number