@pandacss/types 0.0.0-dev-20230609134615 → 0.0.0-dev-20230611160609

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/config.d.ts +10 -1
  2. package/package.json +2 -2
package/dist/config.d.ts CHANGED
@@ -12,8 +12,17 @@ type StudioOptions = {
12
12
  * @default { title: 'Panda', logo: '🐼' }
13
13
  */
14
14
  studio?: {
15
- title?: string
15
+ /**
16
+ * The logo url for the design system studio.
17
+ */
16
18
  logo?: string
19
+ /**
20
+ * Used to inject custom html into the head or body of the studio
21
+ */
22
+ inject?: {
23
+ head?: string
24
+ body?: string
25
+ }
17
26
  }
18
27
  }
19
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230609134615",
3
+ "version": "0.0.0-dev-20230611160609",
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-20230609134615"
19
+ "@pandacss/extractor": "0.0.0-dev-20230611160609"
20
20
  },
21
21
  "scripts": {
22
22
  "build": "tsx scripts/build.ts",