@industry-theme/principal-view-panels 0.12.48 → 0.12.49

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.
@@ -87306,6 +87306,8 @@ function convertToXYFlowEdges(edges, configuration, violations = []) {
87306
87306
  sourceHandle,
87307
87307
  targetHandle,
87308
87308
  type: "custom",
87309
+ // Edges should render above groups (zIndex: 1) but below regular nodes (zIndex: 100)
87310
+ zIndex: 50,
87309
87311
  animated: (typeDefinition == null ? void 0 : typeDefinition.style) === "animated",
87310
87312
  markerEnd,
87311
87313
  data: {
@@ -88320,8 +88322,9 @@ const GraphRendererInner = ({ configuration, nodes: propNodes, edges: propEdges,
88320
88322
  animationDirection: animation.direction
88321
88323
  } : {}
88322
88324
  },
88323
- // Add z-index to help with stacking (selected edges get higher values)
88324
- zIndex: isSelected ? 1e3 : 0
88325
+ // Preserve edge zIndex from converter (50 = above groups, below nodes)
88326
+ // Selected edges get elevated to 1000
88327
+ zIndex: isSelected ? 1e3 : edge.zIndex
88325
88328
  };
88326
88329
  });
88327
88330
  return mappedEdges.sort((a, b) => {
@@ -99702,7 +99705,7 @@ const StoryboardListPanel = ({
99702
99705
  }, [canvasTypeFilter, otelCount, staticCount]);
99703
99706
  const fileTreeSlice = context2.fileTree;
99704
99707
  const fileTreeData = fileTreeSlice == null ? void 0 : fileTreeSlice.data;
99705
- const gitSlice = context2.git;
99708
+ const gitSlice = context2.gitStatusWithFiles;
99706
99709
  const gitStatusData = useMemo(() => {
99707
99710
  const gitStatus = gitSlice == null ? void 0 : gitSlice.data;
99708
99711
  if (!gitStatus || !fileTreeData) {