@tscircuit/props 0.0.336 → 0.0.338
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 +10 -0
- package/dist/index.d.ts +635 -165
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +16 -0
- package/lib/components/port.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -478,6 +478,16 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
478
478
|
*/
|
|
479
479
|
schPinArrangement?: SchematicPinArrangement;
|
|
480
480
|
|
|
481
|
+
/**
|
|
482
|
+
* Spacing between pins when rendered as a schematic box
|
|
483
|
+
*/
|
|
484
|
+
schPinSpacing?: Distance;
|
|
485
|
+
|
|
486
|
+
/**
|
|
487
|
+
* Styles to apply to individual pins in the schematic box representation
|
|
488
|
+
*/
|
|
489
|
+
schPinStyle?: SchematicPinStyle;
|
|
490
|
+
|
|
481
491
|
pcbWidth?: Distance;
|
|
482
492
|
pcbHeight?: Distance;
|
|
483
493
|
schWidth?: Distance;
|