@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.
- package/README.md +11 -2
- 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
|
@@ -426,6 +426,7 @@ export interface CopperPourProps {
|
|
|
426
426
|
padMargin?: Distance;
|
|
427
427
|
traceMargin?: Distance;
|
|
428
428
|
clearance?: Distance;
|
|
429
|
+
boardEdgeMargin?: Distance;
|
|
429
430
|
coveredWithSolderMask?: boolean;
|
|
430
431
|
}
|
|
431
432
|
```
|
|
@@ -666,6 +667,7 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
666
667
|
|
|
667
668
|
pcbWidth?: Distance;
|
|
668
669
|
pcbHeight?: Distance;
|
|
670
|
+
minTraceWidth?: Distance;
|
|
669
671
|
schWidth?: Distance;
|
|
670
672
|
schHeight?: Distance;
|
|
671
673
|
|
|
@@ -1598,10 +1600,17 @@ export interface PlatformConfig {
|
|
|
1598
1600
|
|
|
1599
1601
|
footprintLibraryMap?: Record<
|
|
1600
1602
|
string,
|
|
1601
|
-
| ((
|
|
1603
|
+
| ((
|
|
1604
|
+
path: string,
|
|
1605
|
+
options?: { resolvedPcbStyle?: PcbStyle },
|
|
1606
|
+
) => Promise<FootprintLibraryResult>)
|
|
1602
1607
|
| Record<
|
|
1603
1608
|
string,
|
|
1604
|
-
any[]
|
|
1609
|
+
| any[]
|
|
1610
|
+
| ((
|
|
1611
|
+
path: string,
|
|
1612
|
+
options?: { resolvedPcbStyle?: PcbStyle },
|
|
1613
|
+
) => Promise<FootprintLibraryResult>)
|
|
1605
1614
|
>
|
|
1606
1615
|
>;
|
|
1607
1616
|
|