@tscircuit/props 0.0.558 → 0.0.559
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 +6 -6
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +4 -0
- package/package.json +1 -1
package/lib/components/group.ts
CHANGED
|
@@ -339,6 +339,7 @@ export interface AutorouterConfig {
|
|
|
339
339
|
preset?:
|
|
340
340
|
| "sequential_trace"
|
|
341
341
|
| "subcircuit"
|
|
342
|
+
| "default"
|
|
342
343
|
| "auto"
|
|
343
344
|
| "auto_local"
|
|
344
345
|
| "auto_cloud"
|
|
@@ -356,6 +357,7 @@ export interface AutorouterConfig {
|
|
|
356
357
|
export type AutorouterPreset =
|
|
357
358
|
| "sequential_trace"
|
|
358
359
|
| "subcircuit"
|
|
360
|
+
| "default"
|
|
359
361
|
| "auto"
|
|
360
362
|
| "auto_local"
|
|
361
363
|
| "auto_cloud"
|
|
@@ -409,6 +411,7 @@ export const autorouterConfig = z.object({
|
|
|
409
411
|
.enum([
|
|
410
412
|
"sequential_trace",
|
|
411
413
|
"subcircuit",
|
|
414
|
+
"default",
|
|
412
415
|
"auto",
|
|
413
416
|
"auto_local",
|
|
414
417
|
"auto_cloud",
|
|
@@ -429,6 +432,7 @@ export const autorouterConfig = z.object({
|
|
|
429
432
|
export const autorouterPreset = z.union([
|
|
430
433
|
z.literal("sequential_trace"),
|
|
431
434
|
z.literal("subcircuit"),
|
|
435
|
+
z.literal("default"),
|
|
432
436
|
z.literal("auto"),
|
|
433
437
|
z.literal("auto_local"),
|
|
434
438
|
z.literal("auto_cloud"),
|