@tscircuit/props 0.0.524 → 0.0.525

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.
@@ -7,6 +7,7 @@ export interface AutoroutingPhaseProps {
7
7
  autorouter?: AutorouterProp
8
8
  phaseIndex?: number
9
9
  region?: {
10
+ shape?: "rect"
10
11
  minX: number
11
12
  maxX: number
12
13
  minY: number
@@ -22,6 +23,7 @@ export const autoroutingPhaseProps = z
22
23
  phaseIndex: z.number().optional(),
23
24
  region: z
24
25
  .object({
26
+ shape: z.literal("rect").optional(),
25
27
  minX: z.number(),
26
28
  maxX: z.number(),
27
29
  minY: z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.524",
3
+ "version": "0.0.525",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",