@pandacss/types 0.0.0-dev-20230112151221 → 0.0.0-dev-20230113160423

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
@@ -1,7 +1,7 @@
1
1
  export type { ConditionDetails, ConditionType, Conditions, RawCondition } from './conditions'
2
2
  export type { Config, UserConfig } from './config'
3
3
  export type { PropertyConfig, PropertyTransform, PropertyValues, UtilityConfig } from './utility'
4
- export type { SystemStyleObject, CssKeyframes } from './system-types'
4
+ export type { SystemStyleObject, CssKeyframes, GlobalStyleObject } from './system-types'
5
5
  export type { PatternConfig, PatternProperty, PatternHelpers } from './pattern'
6
6
  export type { RecipeConfig, RecipeVariant } from './recipe'
7
7
  export type { TextStyles, LayerStyles, CompositionStyles } from './composition'
package/dist/utility.d.ts CHANGED
@@ -7,7 +7,7 @@ type ThemeFn = (token: Getter) => Record<string, string>
7
7
 
8
8
  export type PropertyValues = string | string[] | { type: string } | Record<string, string> | ThemeFn
9
9
 
10
- export type PropertyTransform = (value: any, token: Getter) => NestedCssProperties
10
+ export type PropertyTransform = (value: any, token: Getter) => NestedCssProperties | undefined
11
11
 
12
12
  export type PropertyConfig = {
13
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230112151221",
3
+ "version": "0.0.0-dev-20230113160423",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",