@tscircuit/props 0.0.542 → 0.0.543

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.
@@ -1,4 +1,4 @@
1
- import { distance, point, rotation } from "circuit-json"
1
+ import { distance, rotation } from "circuit-json"
2
2
  import { z } from "zod"
3
3
  import { expectTypesMatch } from "lib/typecheck"
4
4
  import type { Distance } from "lib/common/distance"
@@ -14,7 +14,6 @@ export const schematicRectProps = z.object({
14
14
  isFilled: z.boolean().optional().default(false),
15
15
  fillColor: z.string().optional(),
16
16
  isDashed: z.boolean().optional().default(false),
17
- cornerRadius: distance.optional(),
18
17
  })
19
18
 
20
19
  export interface SchematicRectProps {
@@ -28,7 +27,6 @@ export interface SchematicRectProps {
28
27
  isFilled?: boolean
29
28
  fillColor?: string
30
29
  isDashed?: boolean
31
- cornerRadius?: Distance
32
30
  }
33
31
 
34
32
  export type InferredSchematicRectProps = z.input<typeof schematicRectProps>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.542",
3
+ "version": "0.0.543",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",