circuit-to-svg 0.0.251 → 0.0.252

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.js CHANGED
@@ -3339,7 +3339,7 @@ function getSoftwareUsedString(circuitJson) {
3339
3339
  var package_default = {
3340
3340
  name: "circuit-to-svg",
3341
3341
  type: "module",
3342
- version: "0.0.250",
3342
+ version: "0.0.251",
3343
3343
  description: "Convert Circuit JSON to SVG",
3344
3344
  main: "dist/index.js",
3345
3345
  files: [
@@ -9869,7 +9869,7 @@ svg { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; }
9869
9869
  .legend-label { fill: rgba(0, 0, 0, 0.75); font-size: 11px; }
9870
9870
  .legend-line { stroke-width: 3; }
9871
9871
  .simulation-line { fill: none; stroke-width: 2.5; }
9872
- .simulation-point { stroke-width: 1.5; fill: #ffffff; }
9872
+ .simulation-point { stroke-width: 0; }
9873
9873
  .chart-title { fill: rgba(0, 0, 0, 0.85); font-size: 18px; font-weight: 600; }
9874
9874
  `;
9875
9875
  return svgElement("style", {}, [textNode(content)]);
@@ -10159,9 +10159,8 @@ function createDataGroup(graphs, clipPathId, scaleX, scaleY) {
10159
10159
  class: "simulation-point",
10160
10160
  cx,
10161
10161
  cy,
10162
- r: "3.5",
10163
- stroke: entry.color,
10164
- fill: "#ffffff",
10162
+ r: "2.5",
10163
+ fill: entry.color,
10165
10164
  "clip-path": `url(#${clipPathId})`
10166
10165
  });
10167
10166
  });