@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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29106,7 +29106,7 @@ function buildGraph(dsl, agentNameMap) {
|
|
|
29106
29106
|
if (groupNode) {
|
|
29107
29107
|
const childCount = group.childIds.length;
|
|
29108
29108
|
groupNode.width = childCount * NODE_WIDTH + (childCount - 1) * NODE_GAP + 40;
|
|
29109
|
-
groupNode.height = NODE_HEIGHT +
|
|
29109
|
+
groupNode.height = NODE_HEIGHT + 100;
|
|
29110
29110
|
}
|
|
29111
29111
|
}
|
|
29112
29112
|
const layoutNodes = canvasNodes.filter((n) => !childNodeIds.has(n.id));
|
|
@@ -29202,7 +29202,7 @@ function buildRuntimeGraph(dsl, steps, _unused, agentNameMap) {
|
|
|
29202
29202
|
if (groupNode) {
|
|
29203
29203
|
const childCount = group.childIds.length;
|
|
29204
29204
|
groupNode.width = childCount * NODE_WIDTH + (childCount - 1) * NODE_GAP + 40;
|
|
29205
|
-
groupNode.height = NODE_HEIGHT +
|
|
29205
|
+
groupNode.height = NODE_HEIGHT + 100;
|
|
29206
29206
|
}
|
|
29207
29207
|
}
|
|
29208
29208
|
const layoutNodes = canvasNodes.filter((n) => !childNodeIds.has(n.id));
|