@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 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, expressed as a ratio from 0 to 1. */
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, expressed as a ratio from 0 to 1. */
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).max(1).optional()
17342
+ maxLengthSkew: z69.number().min(0).finite().optional()
17343
17343
  });
17344
17344
  expectTypesMatch(true);
17345
17345