@pandacss/types 0.26.2 → 0.27.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/dist/config.d.ts CHANGED
@@ -256,6 +256,16 @@ interface CssgenOptions {
256
256
  * @default 'object-literal'
257
257
  */
258
258
  syntax?: 'template-literal' | 'object-literal'
259
+ /**
260
+ * Whether to use `lightningcss` instead of `postcss` for css optimization.
261
+ * @default false
262
+ */
263
+ lightningcss?: boolean
264
+ /**
265
+ * Browserslist query to target specific browsers.
266
+ * @see https://www.npmjs.com/package/browserslist
267
+ */
268
+ browserslist?: string[]
259
269
  }
260
270
 
261
271
  interface CodegenOptions {
package/dist/tokens.d.ts CHANGED
@@ -89,6 +89,7 @@ export interface TokenDataTypes {
89
89
  gradients: string | Gradient
90
90
  assets: string | Asset
91
91
  borderWidths: string
92
+ aspectRatios: string
92
93
  }
93
94
 
94
95
  export type Tokens = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.26.2",
3
+ "version": "0.27.0",
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
  "hookable": "5.5.3",
31
31
  "ncp": "^2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.26.2"
33
+ "@pandacss/extractor": "0.27.0"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",