@pandacss/studio 0.12.2 → 0.13.0
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.
|
|
3
|
+
"version": "0.13.0",
|
|
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/types": "0.
|
|
37
|
-
"@pandacss/config": "0.
|
|
38
|
-
"@pandacss/shared": "0.
|
|
39
|
-
"@pandacss/token-dictionary": "0.
|
|
40
|
-
"@pandacss/logger": "0.
|
|
41
|
-
"@pandacss/node": "0.
|
|
36
|
+
"@pandacss/types": "0.13.0",
|
|
37
|
+
"@pandacss/config": "0.13.0",
|
|
38
|
+
"@pandacss/shared": "0.13.0",
|
|
39
|
+
"@pandacss/token-dictionary": "0.13.0",
|
|
40
|
+
"@pandacss/logger": "0.13.0",
|
|
41
|
+
"@pandacss/node": "0.13.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/react": "18.2.18",
|
|
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.
|
|
48
|
+
"@pandacss/dev": "0.13.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"codegen": "panda",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
import type { TextStyles, LayerStyles } from '@pandacss/dev'
|
|
2
3
|
import type { RecipeVariantRecord, RecipeConfig, SlotRecipeVariantRecord, SlotRecipeConfig } from './recipe'
|
|
3
4
|
import type { Parts } from './parts'
|
|
4
5
|
import type { PatternConfig, PatternProperties } from './pattern'
|
|
@@ -10,8 +11,8 @@ declare module '@pandacss/dev' {
|
|
|
10
11
|
export function defineSlotRecipe<S extends string, V extends SlotRecipeVariantRecord<S>>(config: SlotRecipeConfig<S, V>): SlotRecipeConfig
|
|
11
12
|
export function defineStyles(definition: SystemStyleObject): SystemStyleObject
|
|
12
13
|
export function defineGlobalStyles(definition: GlobalStyleObject): GlobalStyleObject
|
|
13
|
-
export function defineTextStyles(definition: CompositionStyles['textStyles']):
|
|
14
|
-
export function defineLayerStyles(definition: CompositionStyles['layerStyles']):
|
|
14
|
+
export function defineTextStyles(definition: CompositionStyles['textStyles']): TextStyles
|
|
15
|
+
export function defineLayerStyles(definition: CompositionStyles['layerStyles']): LayerStyles
|
|
15
16
|
export function definePattern<T extends PatternProperties>(config: PatternConfig<T>): PatternConfig
|
|
16
17
|
export function defineParts<T extends Parts>(parts: T): (config: Partial<Record<keyof T, SystemStyleObject>>) => Partial<Record<keyof T, SystemStyleObject>>
|
|
17
18
|
}
|