footprint-explainable-ui 0.14.8 → 0.14.10
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/flowchart.cjs +8 -8
- package/dist/flowchart.cjs.map +1 -1
- package/dist/flowchart.js +8 -8
- package/dist/flowchart.js.map +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/flowchart.cjs
CHANGED
|
@@ -561,8 +561,8 @@ var StageNode = (0, import_react3.memo)(function StageNode2({
|
|
|
561
561
|
{
|
|
562
562
|
id: "loop-source",
|
|
563
563
|
type: "source",
|
|
564
|
-
position: import_react4.Position.
|
|
565
|
-
style: { background: "transparent", border: "none", width: 6, height: 6 }
|
|
564
|
+
position: import_react4.Position.Bottom,
|
|
565
|
+
style: { background: "transparent", border: "none", width: 6, height: 6, left: "75%" }
|
|
566
566
|
}
|
|
567
567
|
),
|
|
568
568
|
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
@@ -853,15 +853,15 @@ function applyOverlay(layout, overlay, colors) {
|
|
|
853
853
|
targetHandle: "loop-target",
|
|
854
854
|
label: le.label ?? "loop",
|
|
855
855
|
type: "smoothstep",
|
|
856
|
-
pathOptions: { offset:
|
|
857
|
-
markerEnd: { type: import_react7.MarkerType.ArrowClosed, color: c.edgeLoop, width: 16, height: 16 },
|
|
856
|
+
pathOptions: { offset: 60, borderRadius: 20 },
|
|
857
|
+
markerEnd: { type: import_react7.MarkerType.ArrowClosed, color: loopExecuted ? c.edgeActive : c.edgeLoop, width: 16, height: 16 },
|
|
858
858
|
style: {
|
|
859
|
-
stroke: c.edgeLoop,
|
|
860
|
-
strokeWidth: loopExecuted ?
|
|
861
|
-
strokeDasharray: "6 3",
|
|
859
|
+
stroke: loopExecuted ? c.edgeActive : c.edgeLoop,
|
|
860
|
+
strokeWidth: loopExecuted ? 4 : 2,
|
|
861
|
+
strokeDasharray: loopExecuted ? void 0 : "6 3",
|
|
862
862
|
opacity: o && !loopExecuted ? 0.35 : 1
|
|
863
863
|
},
|
|
864
|
-
labelStyle: { fontSize: 10, fontWeight: 700, fill: c.labelLoop },
|
|
864
|
+
labelStyle: { fontSize: 10, fontWeight: 700, fill: loopExecuted ? c.edgeActive : c.labelLoop },
|
|
865
865
|
animated: loopExecuted,
|
|
866
866
|
zIndex: 2
|
|
867
867
|
});
|