@tscircuit/props 0.0.271 → 0.0.273
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 +7 -0
- package/dist/index.d.ts +305 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +8 -0
- package/lib/components/pin-header.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -425,6 +425,8 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
425
425
|
pcbGridTemplateColumns?: string;
|
|
426
426
|
pcbGridTemplate?: string;
|
|
427
427
|
pcbGridGap?: number | string;
|
|
428
|
+
pcbGridRowGap?: number | string;
|
|
429
|
+
pcbGridColumnGap?: number | string;
|
|
428
430
|
|
|
429
431
|
pcbFlex?: boolean | string;
|
|
430
432
|
pcbFlexDirection?: "row" | "column";
|
|
@@ -600,6 +602,11 @@ export interface PinHeaderProps extends CommonComponentProps {
|
|
|
600
602
|
*/
|
|
601
603
|
doubleRow?: boolean;
|
|
602
604
|
|
|
605
|
+
/**
|
|
606
|
+
* If true, the header is a right-angle style connector
|
|
607
|
+
*/
|
|
608
|
+
rightAngle?: boolean;
|
|
609
|
+
|
|
603
610
|
/**
|
|
604
611
|
* Diameter of the through-hole for each pin
|
|
605
612
|
*/
|