@pandacss/types 0.0.0-dev-20240227104754 → 0.0.0-dev-20240227110217

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/utility.d.ts +32 -0
  2. package/package.json +2 -2
package/dist/utility.d.ts CHANGED
@@ -60,8 +60,40 @@ export interface PropertyConfig {
60
60
  * The shorthand of the property.
61
61
  */
62
62
  shorthand?: string | string[]
63
+ /**
64
+ * The CSS semantic group this property belongs
65
+ */
66
+ group?: CssSemanticGroup
63
67
  }
64
68
 
69
+ export type CssSemanticGroup =
70
+ | 'System'
71
+ | 'Container'
72
+ | 'Display'
73
+ | 'Visibility'
74
+ | 'Position'
75
+ | 'Transform'
76
+ | 'Flex Layout'
77
+ | 'Grid Layout'
78
+ | 'Layout'
79
+ | 'Border'
80
+ | 'Border Radius'
81
+ | 'Width'
82
+ | 'Height'
83
+ | 'Margin'
84
+ | 'Padding'
85
+ | 'Color'
86
+ | 'Typography'
87
+ | 'Background'
88
+ | 'Shadow'
89
+ | 'Table'
90
+ | 'List'
91
+ | 'Scroll'
92
+ | 'Interactivity'
93
+ | 'Transition'
94
+ | 'Effect'
95
+ | 'Other'
96
+
65
97
  export type UtilityConfig = {
66
98
  [property in LiteralUnion<CssProperty>]?: PropertyConfig
67
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20240227104754",
3
+ "version": "0.0.0-dev-20240227110217",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "microdiff": "1.3.2",
31
31
  "ncp": "2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.0.0-dev-20240227104754"
33
+ "@pandacss/extractor": "0.0.0-dev-20240227110217"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",