@pandacss/types 0.0.0-dev-20240107164218 → 0.0.0-dev-20240107203500

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
@@ -305,11 +305,6 @@ interface PresetOptions {
305
305
  * Used to create reusable config presets for your project or team.
306
306
  */
307
307
  presets?: (string | Preset | Promise<Preset>)[]
308
- /**
309
- * Whether to opt-out of the defaults config presets: [`@pandacss/preset-base`, `@pandacss/preset-panda`]
310
- * @default 'false'
311
- */
312
- eject?: boolean
313
308
  }
314
309
 
315
310
  interface HooksOptions {
@@ -324,7 +319,13 @@ export interface Config
324
319
  FileSystemOptions,
325
320
  JsxOptions,
326
321
  PresetOptions,
327
- HooksOptions {}
322
+ HooksOptions {
323
+ /**
324
+ * Whether to opt-out of the defaults config presets: [`@pandacss/preset-base`, `@pandacss/preset-panda`]
325
+ * @default 'false'
326
+ */
327
+ eject?: boolean
328
+ }
328
329
 
329
330
  export interface Preset extends ExtendableOptions, PresetOptions {}
330
331
 
package/dist/tokens.d.ts CHANGED
@@ -88,6 +88,7 @@ export interface TokenDataTypes {
88
88
  blurs: string
89
89
  gradients: string | Gradient
90
90
  assets: string | Asset
91
+ borderWidths: string
91
92
  }
92
93
 
93
94
  export type Tokens = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20240107164218",
3
+ "version": "0.0.0-dev-20240107203500",
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.0.0-dev-20240107164218"
33
+ "@pandacss/extractor": "0.0.0-dev-20240107203500"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",