@tscircuit/props 0.0.441 → 0.0.442

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.
@@ -421,6 +421,7 @@ export interface SubcircuitGroupProps extends BaseGroupProps {
421
421
 
422
422
  autorouter?: AutorouterProp
423
423
  autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x"
424
+ autorouterVersion?: "v1" | "v2" | "latest"
424
425
 
425
426
  /**
426
427
  * Serialized circuit JSON describing a precompiled subcircuit
@@ -581,6 +582,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
581
582
  pcbRouteCache: z.custom<PcbRouteCache>((v) => true).optional(),
582
583
  autorouter: autorouterProp.optional(),
583
584
  autorouterEffortLevel: autorouterEffortLevel.optional(),
585
+ autorouterVersion: z.enum(["v1", "v2", "latest"]).optional(),
584
586
  square: z.boolean().optional(),
585
587
  emptyArea: z.string().optional(),
586
588
  filledArea: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.441",
3
+ "version": "0.0.442",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",