@tscircuit/props 0.0.261 → 0.0.262

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 CHANGED
@@ -93,6 +93,7 @@ Below are the TypeScript interface definitions for all component props:
93
93
  export interface CommonComponentProps extends CommonLayoutProps {
94
94
  key?: any;
95
95
  name: string;
96
+ pinAttributes?: Record<PinLabel, PinAttributeMap>;
96
97
  supplierPartNumbers?: SupplierPartNumbers;
97
98
  cadModel?: CadModelProp;
98
99
  children?: any;
@@ -845,6 +846,7 @@ export interface TestpointProps extends CommonComponentProps {
845
846
  export interface TransistorProps<PinLabel extends string = string>
846
847
  extends CommonComponentProps<PinLabel> {
847
848
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
849
+ connections?: Connections<transistorPinsLabels>;
848
850
  }
849
851
  ```
850
852