@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/dist/index.js
CHANGED
|
@@ -621,6 +621,7 @@ var baseGroupProps = commonLayoutProps.extend({
|
|
|
621
621
|
schMatchAdapt: z28.boolean().optional(),
|
|
622
622
|
pcbWidth: length2.optional(),
|
|
623
623
|
pcbHeight: length2.optional(),
|
|
624
|
+
minTraceWidth: length2.optional(),
|
|
624
625
|
schWidth: length2.optional(),
|
|
625
626
|
schHeight: length2.optional(),
|
|
626
627
|
pcbLayout: layoutConfig.optional(),
|
|
@@ -1739,6 +1740,7 @@ var copperPourProps = z78.object({
|
|
|
1739
1740
|
traceMargin: distance.optional(),
|
|
1740
1741
|
clearance: distance.optional(),
|
|
1741
1742
|
boardEdgeMargin: distance.optional(),
|
|
1743
|
+
cutoutMargin: distance.optional(),
|
|
1742
1744
|
coveredWithSolderMask: z78.boolean().optional().default(true)
|
|
1743
1745
|
});
|
|
1744
1746
|
expectTypesMatch(true);
|