@tscircuit/props 0.0.568 → 0.0.569
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 +6 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/components/autoroutingphase.ts +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -122000,6 +122000,7 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
122000
122000
|
|
|
122001
122001
|
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
122002
122002
|
key?: any;
|
|
122003
|
+
name?: string;
|
|
122003
122004
|
autorouter?: AutorouterProp;
|
|
122004
122005
|
phaseIndex?: number;
|
|
122005
122006
|
region?: {
|
|
@@ -122046,10 +122047,12 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122046
122047
|
minViaHoleDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122047
122048
|
minViaPadDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122048
122049
|
key: z.ZodOptional<z.ZodAny>;
|
|
122050
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122049
122051
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
122050
122052
|
phaseIndex: z.ZodOptional<z.ZodNumber>;
|
|
122051
122053
|
}, "strip", z.ZodTypeAny, {
|
|
122052
122054
|
key?: any;
|
|
122055
|
+
name?: string | undefined;
|
|
122053
122056
|
connections?: string[] | undefined;
|
|
122054
122057
|
minTraceWidth?: number | undefined;
|
|
122055
122058
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122073,6 +122076,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122073
122076
|
reroute?: boolean | undefined;
|
|
122074
122077
|
}, {
|
|
122075
122078
|
key?: any;
|
|
122079
|
+
name?: string | undefined;
|
|
122076
122080
|
connections?: string[] | undefined;
|
|
122077
122081
|
minTraceWidth?: string | number | undefined;
|
|
122078
122082
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
|
@@ -122096,6 +122100,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122096
122100
|
reroute?: boolean | undefined;
|
|
122097
122101
|
}>, {
|
|
122098
122102
|
key?: any;
|
|
122103
|
+
name?: string | undefined;
|
|
122099
122104
|
connections?: string[] | undefined;
|
|
122100
122105
|
minTraceWidth?: number | undefined;
|
|
122101
122106
|
minViaHoleEdgeToViaHoleEdgeClearance?: number | undefined;
|
|
@@ -122119,6 +122124,7 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
122119
122124
|
reroute?: boolean | undefined;
|
|
122120
122125
|
}, {
|
|
122121
122126
|
key?: any;
|
|
122127
|
+
name?: string | undefined;
|
|
122122
122128
|
connections?: string[] | undefined;
|
|
122123
122129
|
minTraceWidth?: string | number | undefined;
|
|
122124
122130
|
minViaHoleEdgeToViaHoleEdgeClearance?: string | number | undefined;
|
package/dist/index.js
CHANGED
|
@@ -17426,6 +17426,7 @@ expectTypesMatch(
|
|
|
17426
17426
|
import { z as z75 } from "zod";
|
|
17427
17427
|
var autoroutingPhaseProps = z75.object({
|
|
17428
17428
|
key: z75.any().optional(),
|
|
17429
|
+
name: z75.string().optional(),
|
|
17429
17430
|
autorouter: autorouterProp.optional(),
|
|
17430
17431
|
phaseIndex: z75.number().optional(),
|
|
17431
17432
|
...routingTolerances.shape,
|