@pandacss/types 0.0.0-dev-20230630222130 → 0.0.0-dev-20230701113453

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.
@@ -17,10 +17,12 @@ type CssRule = {
17
17
  responsive?: boolean
18
18
  }
19
19
 
20
- type RecipeRule = {
21
- conditions?: string[]
22
- responsive?: boolean
23
- } & { [variant: string]: boolean | string[] }
20
+ type RecipeRule =
21
+ | '*'
22
+ | ({
23
+ conditions?: string[]
24
+ responsive?: boolean
25
+ } & { [variant: string]: boolean | string[] })
24
26
 
25
27
  export type StaticCssOptions = {
26
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230630222130",
3
+ "version": "0.0.0-dev-20230701113453",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -16,8 +16,8 @@
16
16
  "csstype": "3.1.2",
17
17
  "hookable": "5.5.3",
18
18
  "pkg-types": "1.0.3",
19
- "@pandacss/extractor": "0.0.0-dev-20230630222130",
20
- "@pandacss/token-dictionary": "0.0.0-dev-20230630222130"
19
+ "@pandacss/extractor": "0.0.0-dev-20230701113453",
20
+ "@pandacss/token-dictionary": "0.0.0-dev-20230701113453"
21
21
  },
22
22
  "scripts": {
23
23
  "build": "tsx scripts/build.ts",