datastake-daf 0.6.357 → 0.6.358
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/components/index.js
CHANGED
|
@@ -51745,20 +51745,12 @@ function ToolTipEdge({
|
|
|
51745
51745
|
data,
|
|
51746
51746
|
targetPosition
|
|
51747
51747
|
}) {
|
|
51748
|
-
console.log({
|
|
51749
|
-
sourcePosition,
|
|
51750
|
-
sourceX,
|
|
51751
|
-
sourceY,
|
|
51752
|
-
targetX,
|
|
51753
|
-
targetY,
|
|
51754
|
-
targetPosition
|
|
51755
|
-
});
|
|
51756
51748
|
const [smoothPath] = react.getSmoothStepPath({
|
|
51757
51749
|
sourceX,
|
|
51758
51750
|
sourceY,
|
|
51759
51751
|
sourcePosition,
|
|
51760
51752
|
targetX,
|
|
51761
|
-
targetY
|
|
51753
|
+
targetY,
|
|
51762
51754
|
targetPosition,
|
|
51763
51755
|
borderRadius: 15
|
|
51764
51756
|
});
|
package/package.json
CHANGED
|
@@ -30,13 +30,12 @@ export default function ToolTipEdge({
|
|
|
30
30
|
data,
|
|
31
31
|
targetPosition,
|
|
32
32
|
}) {
|
|
33
|
-
console.log({sourcePosition, sourceX, sourceY, targetX, targetY, targetPosition})
|
|
34
33
|
const [smoothPath] = getSmoothStepPath({
|
|
35
34
|
sourceX,
|
|
36
35
|
sourceY,
|
|
37
36
|
sourcePosition,
|
|
38
37
|
targetX,
|
|
39
|
-
targetY
|
|
38
|
+
targetY,
|
|
40
39
|
targetPosition,
|
|
41
40
|
borderRadius: 15,
|
|
42
41
|
});
|