@wire-dsl/engine 0.2.1 → 0.2.2

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.cjs CHANGED
@@ -3678,7 +3678,7 @@ var SVGRenderer = class {
3678
3678
  }
3679
3679
  }
3680
3680
  }
3681
- return Math.max(maxY + 40, this.options.height);
3681
+ return Math.max(maxY, this.options.height);
3682
3682
  }
3683
3683
  renderNode(nodeId, output) {
3684
3684
  const node = this.ir.project.nodes[nodeId];
package/dist/index.js CHANGED
@@ -3629,7 +3629,7 @@ var SVGRenderer = class {
3629
3629
  }
3630
3630
  }
3631
3631
  }
3632
- return Math.max(maxY + 40, this.options.height);
3632
+ return Math.max(maxY, this.options.height);
3633
3633
  }
3634
3634
  renderNode(nodeId, output) {
3635
3635
  const node = this.ir.project.nodes[nodeId];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wire-dsl/engine",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "WireDSL engine - Parser, IR generator, layout engine, and SVG renderer (browser-safe, pure JS/TS)",
5
5
  "type": "module",
6
6
  "exports": {