@tscircuit/props 0.0.394 → 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.
- package/README.md +2 -0
- package/dist/index.d.ts +168 -154
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/components/copper-pour.ts +2 -0
- package/lib/components/group.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -427,6 +427,7 @@ export interface CopperPourProps {
|
|
|
427
427
|
traceMargin?: Distance;
|
|
428
428
|
clearance?: Distance;
|
|
429
429
|
boardEdgeMargin?: Distance;
|
|
430
|
+
cutoutMargin?: Distance;
|
|
430
431
|
coveredWithSolderMask?: boolean;
|
|
431
432
|
}
|
|
432
433
|
```
|
|
@@ -667,6 +668,7 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
667
668
|
|
|
668
669
|
pcbWidth?: Distance;
|
|
669
670
|
pcbHeight?: Distance;
|
|
671
|
+
minTraceWidth?: Distance;
|
|
670
672
|
schWidth?: Distance;
|
|
671
673
|
schHeight?: Distance;
|
|
672
674
|
|