circuit-to-svg 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
@@ -91,7 +91,7 @@ const pcbSvg = convertCircuitJsonToPcbSvg(circuitJson, {
91
91
  })
92
92
  ```
93
93
 
94
- ![PCB default snapshot](./tests/pcb/__snapshots__/default.snap.svg)
94
+ ![PCB default snapshot](https://api.tscircuit.com/packages/images/seveibar/led-water-accelerometer/pcb.svg)
95
95
 
96
96
  ### Options
97
97
 
package/dist/index.d.ts CHANGED
@@ -101,6 +101,7 @@ interface PinoutSvgContext {
101
101
  maxX: number;
102
102
  maxY: number;
103
103
  };
104
+ styleScale: number;
104
105
  label_positions: Map<string, LabelPosition>;
105
106
  }
106
107
  declare function convertCircuitJsonToPinoutSvg(soup: AnyCircuitElement[], options?: Options$2): string;