@axiom-lattice/react-sdk 2.1.110 → 2.1.111

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/index.mjs CHANGED
@@ -29358,7 +29358,7 @@ function buildGraph(dsl, agentNameMap) {
29358
29358
  if (groupNode) {
29359
29359
  const childCount = group.childIds.length;
29360
29360
  groupNode.width = childCount * NODE_WIDTH + (childCount - 1) * NODE_GAP + 40;
29361
- groupNode.height = NODE_HEIGHT + 56;
29361
+ groupNode.height = NODE_HEIGHT + 100;
29362
29362
  }
29363
29363
  }
29364
29364
  const layoutNodes = canvasNodes.filter((n) => !childNodeIds.has(n.id));
@@ -29454,7 +29454,7 @@ function buildRuntimeGraph(dsl, steps, _unused, agentNameMap) {
29454
29454
  if (groupNode) {
29455
29455
  const childCount = group.childIds.length;
29456
29456
  groupNode.width = childCount * NODE_WIDTH + (childCount - 1) * NODE_GAP + 40;
29457
- groupNode.height = NODE_HEIGHT + 56;
29457
+ groupNode.height = NODE_HEIGHT + 100;
29458
29458
  }
29459
29459
  }
29460
29460
  const layoutNodes = canvasNodes.filter((n) => !childNodeIds.has(n.id));