@tscircuit/props 0.0.584 → 0.0.585
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 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/lib/components/differentialpair.ts +2 -2
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export interface DifferentialPairProps {
|
|
|
11
11
|
positiveConnection: string
|
|
12
12
|
/** Name of the trace or pin carrying the negative signal. */
|
|
13
13
|
negativeConnection: string
|
|
14
|
-
/** Maximum permitted routed-length skew
|
|
14
|
+
/** Maximum permitted routed-length skew in millimeters. */
|
|
15
15
|
maxLengthSkew?: number
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ export const differentialPairProps = z.object({
|
|
|
19
19
|
name: z.string().optional(),
|
|
20
20
|
positiveConnection: z.string(),
|
|
21
21
|
negativeConnection: z.string(),
|
|
22
|
-
maxLengthSkew: z.number().min(0).
|
|
22
|
+
maxLengthSkew: z.number().min(0).finite().optional(),
|
|
23
23
|
})
|
|
24
24
|
|
|
25
25
|
type InferredDifferentialPairProps = z.input<typeof differentialPairProps>
|