@tscircuit/props 0.0.213 → 0.0.215

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
@@ -44,6 +44,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput)
44
44
  | `<resistor />` | [`ResistorProps`](#resistorprops-resistor) |
45
45
  | `<resonator />` | [`ResonatorProps`](#resonatorprops-resonator) |
46
46
  | `<smtpad />` | [`RectSmtPadProps`](#rectsmtpadprops-smtpad) |
47
+ | `<solderjumper />` | [`SolderJumperProps`](#solderjumperprops-solderjumper) |
47
48
  | `<solderpaste />` | [`RectSolderPasteProps`](#rectsolderpasteprops-solderpaste) |
48
49
  | `<stampboard />` | [`StampboardProps`](#stampboardprops-stampboard) |
49
50
  | `<switch />` | [`SwitchProps`](#switchprops-switch) |
@@ -601,6 +602,20 @@ export interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
601
602
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/smtpad.ts)
602
603
 
603
604
 
605
+ ### SolderJumperProps `<solderjumper />`
606
+
607
+ ```ts
608
+ export interface SolderJumperProps extends JumperProps {
609
+ /**
610
+ * Pins that are bridged with solder by default
611
+ */
612
+ bridgedPins?: string[][]
613
+ }
614
+ ```
615
+
616
+ [Source](https://github.com/tscircuit/props/blob/main/lib/components/solderjumper.ts)
617
+
618
+
604
619
  ### RectSolderPasteProps `<solderpaste />`
605
620
 
606
621
  ```ts