@pandacss/types 0.0.0-dev-20231128191244 → 0.0.0-dev-20231128194929

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 +12 -5
  2. package/package.json +2 -2
package/dist/config.d.ts CHANGED
@@ -52,6 +52,10 @@ interface PresetCore {
52
52
  * The global styles for your project.
53
53
  */
54
54
  globalCss: GlobalStyleObject
55
+ /**
56
+ * Used to generate css utility classes for your project.
57
+ */
58
+ staticCss: StaticCssOptions
55
59
  /**
56
60
  * The theme configuration for your project.
57
61
  */
@@ -71,6 +75,10 @@ interface ExtendablePatterns {
71
75
  extend?: Patterns | undefined
72
76
  }
73
77
 
78
+ interface ExtendableStaticCssOptions extends StaticCssOptions {
79
+ extend?: StaticCssOptions | undefined
80
+ }
81
+
74
82
  export interface ExtendableOptions {
75
83
  /**
76
84
  * The css selectors or media queries shortcuts.
@@ -81,6 +89,10 @@ export interface ExtendableOptions {
81
89
  * The global styles for your project.
82
90
  */
83
91
  globalCss?: ExtendableGlobalStyleObject
92
+ /**
93
+ * Used to generate css utility classes for your project.
94
+ */
95
+ staticCss?: ExtendableStaticCssOptions
84
96
  /**
85
97
  * The theme configuration for your project.
86
98
  */
@@ -232,11 +244,6 @@ interface CssgenOptions {
232
244
  * @default ':where(:host, :root)'
233
245
  */
234
246
  cssVarRoot?: string
235
- /**
236
- * @experimental
237
- * Used to generate css utility classes for your project.
238
- */
239
- staticCss?: StaticCssOptions
240
247
  /**
241
248
  * The css syntax kind to use
242
249
  * @default 'object-literal'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20231128191244",
3
+ "version": "0.0.0-dev-20231128194929",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -24,7 +24,7 @@
24
24
  "hookable": "5.5.3",
25
25
  "ncp": "^2.0.0",
26
26
  "pkg-types": "1.0.3",
27
- "@pandacss/extractor": "0.0.0-dev-20231128191244"
27
+ "@pandacss/extractor": "0.0.0-dev-20231128194929"
28
28
  },
29
29
  "scripts": {
30
30
  "dev": "tsx scripts/watch.ts",