@pandacss/types 0.0.0-dev-20230404101731 → 0.0.0-dev-20230404214415

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.
@@ -5,12 +5,6 @@ import type { SystemProperties } from './style-props'
5
5
  type String = string & {}
6
6
  type Number = number & {}
7
7
 
8
- type ContainerProperties = {
9
- container?: string
10
- containerType?: 'size' | 'inline-size' | String
11
- containerName?: string
12
- }
13
-
14
8
  /* -----------------------------------------------------------------------------
15
9
  * Native css properties
16
10
  * -----------------------------------------------------------------------------*/
@@ -19,7 +13,7 @@ type CssVarProperties = {
19
13
  [key in `--${string}`]?: string | number
20
14
  }
21
15
 
22
- export type NativeCssProperties = PropertiesFallback<String | Number> & ContainerProperties
16
+ export type NativeCssProperties = PropertiesFallback<String | Number>
23
17
 
24
18
  export type NativeCssProperty = keyof NativeCssProperties
25
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20230404101731",
3
+ "version": "0.0.0-dev-20230404214415",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",