@tscircuit/props 0.0.393 → 0.0.395

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.
@@ -10,6 +10,7 @@ export interface CopperPourProps {
10
10
  padMargin?: Distance
11
11
  traceMargin?: Distance
12
12
  clearance?: Distance
13
+ boardEdgeMargin?: Distance
13
14
  coveredWithSolderMask?: boolean
14
15
  }
15
16
 
@@ -20,6 +21,7 @@ export const copperPourProps = z.object({
20
21
  padMargin: distance.optional(),
21
22
  traceMargin: distance.optional(),
22
23
  clearance: distance.optional(),
24
+ boardEdgeMargin: distance.optional(),
23
25
  coveredWithSolderMask: z.boolean().optional().default(true),
24
26
  })
25
27
 
@@ -196,6 +196,7 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
196
196
 
197
197
  pcbWidth?: Distance
198
198
  pcbHeight?: Distance
199
+ minTraceWidth?: Distance
199
200
  schWidth?: Distance
200
201
  schHeight?: Distance
201
202
 
@@ -525,6 +526,7 @@ export const baseGroupProps = commonLayoutProps.extend({
525
526
  schMatchAdapt: z.boolean().optional(),
526
527
  pcbWidth: length.optional(),
527
528
  pcbHeight: length.optional(),
529
+ minTraceWidth: length.optional(),
528
530
  schWidth: length.optional(),
529
531
  schHeight: length.optional(),
530
532
  pcbLayout: layoutConfig.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.393",
3
+ "version": "0.0.395",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",