@tscircuit/props 0.0.395 → 0.0.396

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.
@@ -11,6 +11,7 @@ export interface CopperPourProps {
11
11
  traceMargin?: Distance
12
12
  clearance?: Distance
13
13
  boardEdgeMargin?: Distance
14
+ cutoutMargin?: Distance
14
15
  coveredWithSolderMask?: boolean
15
16
  }
16
17
 
@@ -22,6 +23,7 @@ export const copperPourProps = z.object({
22
23
  traceMargin: distance.optional(),
23
24
  clearance: distance.optional(),
24
25
  boardEdgeMargin: distance.optional(),
26
+ cutoutMargin: distance.optional(),
25
27
  coveredWithSolderMask: z.boolean().optional().default(true),
26
28
  })
27
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.395",
3
+ "version": "0.0.396",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",