@tscircuit/props 0.0.304 → 0.0.306
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 +5 -0
- package/dist/index.d.ts +12 -2
- package/dist/index.js +185 -175
- package/dist/index.js.map +1 -1
- package/lib/common/pcbOrientation.ts +12 -0
- package/lib/components/pin-header.ts +10 -0
- package/lib/generated/kicad-autocomplete.ts +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -674,6 +674,11 @@ export interface PinHeaderProps extends CommonComponentProps {
|
|
|
674
674
|
*/
|
|
675
675
|
rightAngle?: boolean;
|
|
676
676
|
|
|
677
|
+
/**
|
|
678
|
+
* Orientation of the header on the PCB
|
|
679
|
+
*/
|
|
680
|
+
pcbOrientation?: PcbOrientation;
|
|
681
|
+
|
|
677
682
|
/**
|
|
678
683
|
* Diameter of the through-hole for each pin
|
|
679
684
|
*/
|