next-arch-map 0.1.26 → 0.1.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-arch-map",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Static analyzer that builds a multi-layer architecture graph for Next.js-style apps.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -413,6 +413,7 @@ export function GraphView(props: GraphViewProps) {
413
413
  sourcePosition: Position.Right,
414
414
  targetPosition: Position.Left,
415
415
  selectable: true,
416
+ draggable: isDbTable,
416
417
  style: isDbTable
417
418
  ? {
418
419
  width: nodeWidth,
@@ -550,7 +551,7 @@ export function GraphView(props: GraphViewProps) {
550
551
  onNodeMouseEnter={handleNodeMouseEnter}
551
552
  onNodeMouseLeave={handleNodeMouseLeave}
552
553
  onPaneClick={() => onSelectNode(null)}
553
- nodesDraggable={false}
554
+ nodesDraggable
554
555
  nodesConnectable={false}
555
556
  elementsSelectable
556
557
  proOptions={{ hideAttribution: true }}