@tscircuit/props 0.0.550 → 0.0.551

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.
@@ -8,12 +8,12 @@ import { z } from "zod"
8
8
 
9
9
  export interface FiducialProps extends CommonComponentProps {
10
10
  soldermaskPullback?: Distance
11
- padDiameter?: Distance
11
+ padDiameter: Distance
12
12
  }
13
13
 
14
14
  export const fiducialProps = commonComponentProps.extend({
15
15
  soldermaskPullback: distance.optional(),
16
- padDiameter: distance.optional(),
16
+ padDiameter: distance,
17
17
  })
18
18
 
19
19
  type InferredFiducialProps = z.input<typeof fiducialProps>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.550",
3
+ "version": "0.0.551",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",