@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
package/README.md
CHANGED
|
@@ -624,7 +624,7 @@ export interface DifferentialPairProps {
|
|
|
624
624
|
positiveConnection: string;
|
|
625
625
|
/** Name of the trace or pin carrying the negative signal. */
|
|
626
626
|
negativeConnection: string;
|
|
627
|
-
/** Maximum permitted routed-length skew
|
|
627
|
+
/** Maximum permitted routed-length skew in millimeters. */
|
|
628
628
|
maxLengthSkew?: number;
|
|
629
629
|
}
|
|
630
630
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -104658,7 +104658,7 @@ interface DifferentialPairProps {
|
|
|
104658
104658
|
positiveConnection: string;
|
|
104659
104659
|
/** Name of the trace or pin carrying the negative signal. */
|
|
104660
104660
|
negativeConnection: string;
|
|
104661
|
-
/** Maximum permitted routed-length skew
|
|
104661
|
+
/** Maximum permitted routed-length skew in millimeters. */
|
|
104662
104662
|
maxLengthSkew?: number;
|
|
104663
104663
|
}
|
|
104664
104664
|
declare const differentialPairProps: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -17339,7 +17339,7 @@ var differentialPairProps = z69.object({
|
|
|
17339
17339
|
name: z69.string().optional(),
|
|
17340
17340
|
positiveConnection: z69.string(),
|
|
17341
17341
|
negativeConnection: z69.string(),
|
|
17342
|
-
maxLengthSkew: z69.number().min(0).
|
|
17342
|
+
maxLengthSkew: z69.number().min(0).finite().optional()
|
|
17343
17343
|
});
|
|
17344
17344
|
expectTypesMatch(true);
|
|
17345
17345
|
|