@uipath/apollo-react 3.63.0-pr431.329c320 → 3.63.0-pr431.3e8713c
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.
|
@@ -146,9 +146,9 @@ function StageEdgeComponent({ sourceX, sourceY, targetX, targetY, sourcePosition
|
|
|
146
146
|
const targetNode = state.nodeLookup.get(rest.target);
|
|
147
147
|
return {
|
|
148
148
|
sourceX: sourceNode ? sourceNode.position.x + (sourceNode.measured?.width ?? 0) : sourceX,
|
|
149
|
-
sourceY: sourceNode
|
|
149
|
+
sourceY: sourceNode ? sourceNode.position.y + 32 : sourceY,
|
|
150
150
|
targetX: targetNode?.position.x ?? targetX,
|
|
151
|
-
targetY: targetNode
|
|
151
|
+
targetY: targetNode ? targetNode.position.y + 32 : targetY
|
|
152
152
|
};
|
|
153
153
|
}, stageEdgeGeometryEquality);
|
|
154
154
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StageEdgeInnerMemo, {
|
|
@@ -107,9 +107,9 @@ function StageEdgeComponent({ sourceX, sourceY, targetX, targetY, sourcePosition
|
|
|
107
107
|
const targetNode = state.nodeLookup.get(rest.target);
|
|
108
108
|
return {
|
|
109
109
|
sourceX: sourceNode ? sourceNode.position.x + (sourceNode.measured?.width ?? 0) : sourceX,
|
|
110
|
-
sourceY: sourceNode
|
|
110
|
+
sourceY: sourceNode ? sourceNode.position.y + 32 : sourceY,
|
|
111
111
|
targetX: targetNode?.position.x ?? targetX,
|
|
112
|
-
targetY: targetNode
|
|
112
|
+
targetY: targetNode ? targetNode.position.y + 32 : targetY
|
|
113
113
|
};
|
|
114
114
|
}, stageEdgeGeometryEquality);
|
|
115
115
|
return /*#__PURE__*/ jsx(StageEdgeInnerMemo, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/apollo-react",
|
|
3
|
-
"version": "3.63.0-pr431.
|
|
3
|
+
"version": "3.63.0-pr431.3e8713c",
|
|
4
4
|
"description": "Apollo Design System - React component library with Material UI theming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -200,8 +200,8 @@
|
|
|
200
200
|
"use-sync-external-store": "^1.2.0",
|
|
201
201
|
"zod": "^4.3.5",
|
|
202
202
|
"zustand": "^5.0.9",
|
|
203
|
-
"@uipath/apollo-
|
|
204
|
-
"@uipath/apollo-
|
|
203
|
+
"@uipath/apollo-core": "5.9.0",
|
|
204
|
+
"@uipath/apollo-wind": "1.5.0"
|
|
205
205
|
},
|
|
206
206
|
"devDependencies": {
|
|
207
207
|
"@lingui/cli": "^5.6.1",
|