@tscircuit/props 0.0.412 → 0.0.414
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 +13 -1
- package/dist/index.d.ts +1088 -5
- package/dist/index.js +476 -467
- package/dist/index.js.map +1 -1
- package/lib/components/interconnect.ts +17 -0
- package/lib/components/voltageprobe.ts +4 -2
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
|
|
|
50
50
|
| `<group />` | [`BaseGroupProps`](#basegroupprops-group) |
|
|
51
51
|
| `<hole />` | [`CircleHoleProps`](#circleholeprops-hole) |
|
|
52
52
|
| `<inductor />` | [`InductorProps`](#inductorprops-inductor) |
|
|
53
|
+
| `<interconnect />` | [`InterconnectProps`](#interconnectprops-interconnect) |
|
|
53
54
|
| `<jumper />` | [`JumperProps`](#jumperprops-jumper) |
|
|
54
55
|
| `<led />` | [`LedProps`](#ledprops-led) |
|
|
55
56
|
| `<mosfet />` | [`MosfetProps`](#mosfetprops-mosfet) |
|
|
@@ -793,6 +794,16 @@ export interface InductorProps<PinLabel extends string = string>
|
|
|
793
794
|
|
|
794
795
|
[Source](https://github.com/tscircuit/props/blob/main/lib/components/inductor.ts)
|
|
795
796
|
|
|
797
|
+
### InterconnectProps `<interconnect />`
|
|
798
|
+
|
|
799
|
+
```ts
|
|
800
|
+
export interface InterconnectProps extends CommonComponentProps {
|
|
801
|
+
standard?: "TSC0001_36P_XALT_2025_11";
|
|
802
|
+
}
|
|
803
|
+
```
|
|
804
|
+
|
|
805
|
+
[Source](https://github.com/tscircuit/props/blob/main/lib/components/interconnect.ts)
|
|
806
|
+
|
|
796
807
|
### JumperProps `<jumper />`
|
|
797
808
|
|
|
798
809
|
```ts
|
|
@@ -1557,7 +1568,8 @@ export interface ViaProps extends CommonLayoutProps {
|
|
|
1557
1568
|
```ts
|
|
1558
1569
|
export interface VoltageProbeProps extends Omit<CommonComponentProps, "name"> {
|
|
1559
1570
|
name?: string;
|
|
1560
|
-
connectsTo: string
|
|
1571
|
+
connectsTo: string;
|
|
1572
|
+
referenceTo?: string;
|
|
1561
1573
|
color?: string;
|
|
1562
1574
|
}
|
|
1563
1575
|
```
|