graflow: subflow reference nodes & exit subflow

This commit is contained in:
STEINNI
2026-02-25 18:25:33 +00:00
parent e5bd91cd9f
commit 0b4b7e2a2f
16 changed files with 5687 additions and 761 deletions
+18
View File
@@ -96,6 +96,12 @@
.bzgf-node[data-nodetype="input"] .title,
.bzgf-node[data-nodetype="console"] .title{ background: #555; }
.bzgf-node[data-nodetype="refnodein"] .body, .bzgf-node[data-nodetype="refnodeout"] body{
border-radius: 50%;
}
.bzgf-node[data-nodetype="refnodein"] .body{ background: #0F0; }
.bzgf-node[data-nodetype="refnodeout"] .body{ background: #FF0; }
.bzgf-wire{ stroke: #0AF; stroke-width: 2; }
</style>
@@ -170,4 +176,16 @@
<label>Value:</label><input name="value" type="text" value="1">
</div>
</div>
</template>
<template>
<div class="bzgf-node" data-nodetype="refnodein">
<div class="body">{parentport}</div>
</div>
</template>
<template>
<div class="bzgf-node" data-nodetype="refnodeout">
<div class="body">{parentport}</div>
</div>
</template>