@pandacss/types 0.0.0-dev-20221130100250 → 0.0.0-dev-20221130173625

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/index.d.ts CHANGED
@@ -7,3 +7,4 @@ export type { RecipeConfig, RecipeVariant } from './recipe'
7
7
  export type { Composition, TextStyles, LayerStyles } from './composition'
8
8
  export type { Token, TokenCategory, TokenDataTypes, Tokens, SemanticToken, SemanticTokens } from './tokens'
9
9
  export type { Dict, RequiredBy, AnyFunction } from './shared'
10
+ export type { Parts, Part } from './parts'
@@ -0,0 +1,5 @@
1
+ export interface Part {
2
+ selector: string
3
+ }
4
+
5
+ export type Parts = Part[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20221130100250",
3
+ "version": "0.0.0-dev-20221130173625",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",