@tscircuit/props 0.0.524 → 0.0.525
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/README.md +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/autoroutingphase.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -121483,6 +121483,7 @@ interface AutoroutingPhaseProps {
|
|
|
121483
121483
|
autorouter?: AutorouterProp;
|
|
121484
121484
|
phaseIndex?: number;
|
|
121485
121485
|
region?: {
|
|
121486
|
+
shape?: "rect";
|
|
121486
121487
|
minX: number;
|
|
121487
121488
|
maxX: number;
|
|
121488
121489
|
minY: number;
|
|
@@ -121495,6 +121496,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121495
121496
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
121496
121497
|
phaseIndex: z.ZodOptional<z.ZodNumber>;
|
|
121497
121498
|
region: z.ZodOptional<z.ZodObject<{
|
|
121499
|
+
shape: z.ZodOptional<z.ZodLiteral<"rect">>;
|
|
121498
121500
|
minX: z.ZodNumber;
|
|
121499
121501
|
maxX: z.ZodNumber;
|
|
121500
121502
|
minY: z.ZodNumber;
|
|
@@ -121504,11 +121506,13 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121504
121506
|
maxX: number;
|
|
121505
121507
|
minY: number;
|
|
121506
121508
|
maxY: number;
|
|
121509
|
+
shape?: "rect" | undefined;
|
|
121507
121510
|
}, {
|
|
121508
121511
|
minX: number;
|
|
121509
121512
|
maxX: number;
|
|
121510
121513
|
minY: number;
|
|
121511
121514
|
maxY: number;
|
|
121515
|
+
shape?: "rect" | undefined;
|
|
121512
121516
|
}>>;
|
|
121513
121517
|
reroute: z.ZodOptional<z.ZodBoolean>;
|
|
121514
121518
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -121520,6 +121524,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121520
121524
|
maxX: number;
|
|
121521
121525
|
minY: number;
|
|
121522
121526
|
maxY: number;
|
|
121527
|
+
shape?: "rect" | undefined;
|
|
121523
121528
|
} | undefined;
|
|
121524
121529
|
reroute?: boolean | undefined;
|
|
121525
121530
|
}, {
|
|
@@ -121531,6 +121536,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121531
121536
|
maxX: number;
|
|
121532
121537
|
minY: number;
|
|
121533
121538
|
maxY: number;
|
|
121539
|
+
shape?: "rect" | undefined;
|
|
121534
121540
|
} | undefined;
|
|
121535
121541
|
reroute?: boolean | undefined;
|
|
121536
121542
|
}>, {
|
|
@@ -121542,6 +121548,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121542
121548
|
maxX: number;
|
|
121543
121549
|
minY: number;
|
|
121544
121550
|
maxY: number;
|
|
121551
|
+
shape?: "rect" | undefined;
|
|
121545
121552
|
} | undefined;
|
|
121546
121553
|
reroute?: boolean | undefined;
|
|
121547
121554
|
}, {
|
|
@@ -121553,6 +121560,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
121553
121560
|
maxX: number;
|
|
121554
121561
|
minY: number;
|
|
121555
121562
|
maxY: number;
|
|
121563
|
+
shape?: "rect" | undefined;
|
|
121556
121564
|
} | undefined;
|
|
121557
121565
|
reroute?: boolean | undefined;
|
|
121558
121566
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -17353,6 +17353,7 @@ var autoroutingPhaseProps = z73.object({
|
|
|
17353
17353
|
autorouter: autorouterProp.optional(),
|
|
17354
17354
|
phaseIndex: z73.number().optional(),
|
|
17355
17355
|
region: z73.object({
|
|
17356
|
+
shape: z73.literal("rect").optional(),
|
|
17356
17357
|
minX: z73.number(),
|
|
17357
17358
|
maxX: z73.number(),
|
|
17358
17359
|
minY: z73.number(),
|