@synergenius/flow-weaver 0.9.5 → 0.10.0
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/cli/flow-weaver.mjs +399 -97
- package/dist/diagram/html-viewer.d.ts +2 -1
- package/dist/diagram/html-viewer.js +401 -99
- package/dist/diagram/renderer.js +8 -0
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* HTML Viewer — wraps an SVG diagram in a self-contained interactive HTML page.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* The SVG element itself is the canvas: zoom and pan are driven by viewBox
|
|
5
|
+
* manipulation, so nodes can be dragged anywhere without hitting a boundary.
|
|
5
6
|
* No external dependencies — works standalone or inside an iframe.
|
|
6
7
|
*/
|
|
7
8
|
export interface HtmlViewerOptions {
|