@tscircuit/props 0.0.613 → 0.0.614
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 +10 -2
- package/package.json +1 -1
package/lib/components/group.ts
CHANGED
|
@@ -492,7 +492,15 @@ export interface SubcircuitGroupProps
|
|
|
492
492
|
|
|
493
493
|
autorouter?: AutorouterProp
|
|
494
494
|
autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x"
|
|
495
|
-
autorouterVersion?:
|
|
495
|
+
autorouterVersion?:
|
|
496
|
+
| "v1"
|
|
497
|
+
| "v2"
|
|
498
|
+
| "v3"
|
|
499
|
+
| "v4"
|
|
500
|
+
| "v5"
|
|
501
|
+
| "v6"
|
|
502
|
+
| "beta_pipeline9"
|
|
503
|
+
| "latest"
|
|
496
504
|
|
|
497
505
|
/**
|
|
498
506
|
* Serialized circuit JSON describing a precompiled subcircuit
|
|
@@ -670,7 +678,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
|
|
|
670
678
|
autorouter: autorouterProp.optional(),
|
|
671
679
|
autorouterEffortLevel: autorouterEffortLevel.optional(),
|
|
672
680
|
autorouterVersion: z
|
|
673
|
-
.enum(["v1", "v2", "v3", "v4", "v5", "v6", "latest"])
|
|
681
|
+
.enum(["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"])
|
|
674
682
|
.optional(),
|
|
675
683
|
square: z.boolean().optional(),
|
|
676
684
|
emptyArea: z.string().optional(),
|