@tscircuit/schematic-trace-solver 0.0.56 → 0.0.60

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 CHANGED
@@ -77,6 +77,7 @@ interface InputChip {
77
77
  interface InputDirectConnection {
78
78
  pinIds: [PinId, PinId];
79
79
  netId?: string;
80
+ netLabelWidth?: number;
80
81
  }
81
82
  interface InputNetConnection {
82
83
  netId: string;
@@ -383,6 +384,7 @@ declare class NetLabelPlacementSolver extends BaseSolver {
383
384
  inputTraceMap: Record<MspConnectionPairId, SolvedTracePath>;
384
385
  });
385
386
  computeOverlappingSameNetTraceGroups(): Array<OverlappingSameNetTraceGroup>;
387
+ private getNetLabelWidthForGroup;
386
388
  _step(): void;
387
389
  visualize(): GraphicsObject;
388
390
  }
@@ -603,6 +605,7 @@ type RerouteCandidateResult = {
603
605
  path: Point[];
604
606
  score?: TracePathScore;
605
607
  status: "valid" | "duplicate" | "chip-collision";
608
+ usesHorizontalSegmentPush?: boolean;
606
609
  selected: boolean;
607
610
  };
608
611