@html-graph/html-graph 3.19.0 → 3.20.0
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/html-graph.d.ts +8 -2
- package/dist/html-graph.js +531 -453
- package/dist/html-graph.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/html-graph.d.ts
CHANGED
|
@@ -638,6 +638,10 @@ export declare interface HorizontalEdgeParams {
|
|
|
638
638
|
readonly cycleSquareSide?: number | undefined;
|
|
639
639
|
readonly roundness?: number | undefined;
|
|
640
640
|
readonly detourDistance?: number | undefined;
|
|
641
|
+
/**
|
|
642
|
+
* @deprecated
|
|
643
|
+
* do not use
|
|
644
|
+
*/
|
|
641
645
|
readonly detourDirection?: number | undefined;
|
|
642
646
|
}
|
|
643
647
|
|
|
@@ -653,7 +657,6 @@ export declare class HorizontalEdgeShape implements StructuredEdgeShape {
|
|
|
653
657
|
private readonly arrowOffset;
|
|
654
658
|
private readonly roundness;
|
|
655
659
|
private readonly cycleSquareSide;
|
|
656
|
-
private readonly detourDirection;
|
|
657
660
|
private readonly detourDistance;
|
|
658
661
|
private readonly hasSourceArrow;
|
|
659
662
|
private readonly hasTargetArrow;
|
|
@@ -977,6 +980,10 @@ export declare interface VerticalEdgeParams {
|
|
|
977
980
|
readonly cycleSquareSide?: number | undefined;
|
|
978
981
|
readonly roundness?: number | undefined;
|
|
979
982
|
readonly detourDistance?: number | undefined;
|
|
983
|
+
/**
|
|
984
|
+
* @deprecated
|
|
985
|
+
* do not use
|
|
986
|
+
*/
|
|
980
987
|
readonly detourDirection?: number | undefined;
|
|
981
988
|
}
|
|
982
989
|
|
|
@@ -992,7 +999,6 @@ export declare class VerticalEdgeShape implements StructuredEdgeShape {
|
|
|
992
999
|
private readonly arrowOffset;
|
|
993
1000
|
private readonly roundness;
|
|
994
1001
|
private readonly cycleSquareSide;
|
|
995
|
-
private readonly detourDirection;
|
|
996
1002
|
private readonly detourDistance;
|
|
997
1003
|
private readonly hasSourceArrow;
|
|
998
1004
|
private readonly hasTargetArrow;
|