@pandacss/types 0.0.0-dev-20230110230849 → 0.0.0-dev-20230111183210

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/pattern.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import type { LiteralUnion } from './shared'
1
2
  import type { NativeCssProperty, SystemStyleObject } from './system-types'
2
3
  import type { TokenCategory } from './tokens'
3
4
 
@@ -37,5 +38,5 @@ export type PatternConfig = {
37
38
  * @experimental
38
39
  * Disallow certain css properties for this pattern
39
40
  */
40
- blocklist?: NativeCssProperty[]
41
+ blocklist?: LiteralUnion<NativeCssProperty>[]
41
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230110230849",
3
+ "version": "0.0.0-dev-20230111183210",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",