@tscircuit/props 0.0.545 → 0.0.546
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 +25 -25
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +2 -2
- package/package.json +1 -1
package/lib/components/group.ts
CHANGED
|
@@ -468,7 +468,7 @@ export interface SubcircuitGroupProps
|
|
|
468
468
|
|
|
469
469
|
autorouter?: AutorouterProp
|
|
470
470
|
autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x"
|
|
471
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "latest"
|
|
471
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest"
|
|
472
472
|
|
|
473
473
|
/**
|
|
474
474
|
* Serialized circuit JSON describing a precompiled subcircuit
|
|
@@ -632,7 +632,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
|
|
|
632
632
|
autorouter: autorouterProp.optional(),
|
|
633
633
|
autorouterEffortLevel: autorouterEffortLevel.optional(),
|
|
634
634
|
autorouterVersion: z
|
|
635
|
-
.enum(["v1", "v2", "v3", "v4", "v5", "latest"])
|
|
635
|
+
.enum(["v1", "v2", "v3", "v4", "v5", "v6", "latest"])
|
|
636
636
|
.optional(),
|
|
637
637
|
square: z.boolean().optional(),
|
|
638
638
|
emptyArea: z.string().optional(),
|