@tscircuit/core 0.0.1456 → 0.0.1457
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/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -39066,7 +39066,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
39066
39066
|
_getSchematicPortArrangement(): _tscircuit_props.SchematicPortArrangement;
|
|
39067
39067
|
doInitialSourceRender(): void;
|
|
39068
39068
|
doInitialPcbComponentRender(): void;
|
|
39069
|
-
|
|
39069
|
+
doInitialPcbPortAttachment(): void;
|
|
39070
39070
|
}
|
|
39071
39071
|
|
|
39072
39072
|
declare class Interconnect extends NormalComponent<typeof interconnectProps> {
|
|
@@ -48585,7 +48585,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
48585
48585
|
_getSchematicPortArrangement(): _tscircuit_props.SchematicPortArrangement;
|
|
48586
48586
|
doInitialSourceRender(): void;
|
|
48587
48587
|
doInitialPcbComponentRender(): void;
|
|
48588
|
-
|
|
48588
|
+
doInitialPcbPortAttachment(): void;
|
|
48589
48589
|
}
|
|
48590
48590
|
|
|
48591
48591
|
declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts> {
|
package/dist/index.js
CHANGED
|
@@ -22812,7 +22812,7 @@ function Group_getRoutingPhasePlans(group) {
|
|
|
22812
22812
|
var package_default = {
|
|
22813
22813
|
name: "@tscircuit/core",
|
|
22814
22814
|
type: "module",
|
|
22815
|
-
version: "0.0.
|
|
22815
|
+
version: "0.0.1456",
|
|
22816
22816
|
types: "dist/index.d.ts",
|
|
22817
22817
|
main: "dist/index.js",
|
|
22818
22818
|
module: "dist/index.js",
|
|
@@ -28544,7 +28544,7 @@ var Jumper = class extends NormalComponent3 {
|
|
|
28544
28544
|
});
|
|
28545
28545
|
this.pcb_component_id = pcb_component.pcb_component_id;
|
|
28546
28546
|
}
|
|
28547
|
-
|
|
28547
|
+
doInitialPcbPortAttachment() {
|
|
28548
28548
|
const { db } = this.root;
|
|
28549
28549
|
const pcb_ports = db.pcb_port.list({
|
|
28550
28550
|
pcb_component_id: this.pcb_component_id
|
|
@@ -28826,7 +28826,7 @@ var SolderJumper = class extends NormalComponent3 {
|
|
|
28826
28826
|
});
|
|
28827
28827
|
this.pcb_component_id = pcb_component.pcb_component_id;
|
|
28828
28828
|
}
|
|
28829
|
-
|
|
28829
|
+
doInitialPcbPortAttachment() {
|
|
28830
28830
|
const { db } = this.root;
|
|
28831
28831
|
const pcb_ports = db.pcb_port.list({
|
|
28832
28832
|
pcb_component_id: this.pcb_component_id
|