@tscircuit/props 0.0.526 → 0.0.527
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
|
@@ -344,6 +344,7 @@ export interface AutorouterConfig {
|
|
|
344
344
|
| "auto_cloud"
|
|
345
345
|
| "auto_jumper"
|
|
346
346
|
| "tscircuit_beta"
|
|
347
|
+
| "krt"
|
|
347
348
|
| "freerouting"
|
|
348
349
|
| "laser_prefab" // Prefabricated PCB with laser copper ablation
|
|
349
350
|
| /** @deprecated Use "auto_jumper" */ "auto-jumper"
|
|
@@ -360,6 +361,7 @@ export type AutorouterPreset =
|
|
|
360
361
|
| "auto_cloud"
|
|
361
362
|
| "auto_jumper"
|
|
362
363
|
| "tscircuit_beta"
|
|
364
|
+
| "krt"
|
|
363
365
|
| "freerouting"
|
|
364
366
|
| "laser_prefab"
|
|
365
367
|
| "auto-jumper"
|
|
@@ -412,6 +414,7 @@ export const autorouterConfig = z.object({
|
|
|
412
414
|
"auto_cloud",
|
|
413
415
|
"auto_jumper",
|
|
414
416
|
"tscircuit_beta",
|
|
417
|
+
"krt",
|
|
415
418
|
"freerouting",
|
|
416
419
|
"laser_prefab",
|
|
417
420
|
"auto-jumper",
|
|
@@ -431,6 +434,7 @@ export const autorouterPreset = z.union([
|
|
|
431
434
|
z.literal("auto_cloud"),
|
|
432
435
|
z.literal("auto_jumper"),
|
|
433
436
|
z.literal("tscircuit_beta"),
|
|
437
|
+
z.literal("krt"),
|
|
434
438
|
z.literal("freerouting"),
|
|
435
439
|
z.literal("laser_prefab"), // Prefabricated PCB with laser copper ablation
|
|
436
440
|
z.literal("auto-jumper"),
|