@html-graph/html-graph 3.18.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 +15 -4
- package/dist/html-graph.js +542 -457
- package/dist/html-graph.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/html-graph.d.ts
CHANGED
|
@@ -206,7 +206,7 @@ export declare class CanvasBuilder {
|
|
|
206
206
|
private virtualScrollConfig;
|
|
207
207
|
private hasDraggableNode;
|
|
208
208
|
private hasTransformableViewport;
|
|
209
|
-
private
|
|
209
|
+
private hasNodeResizeReactiveEdges;
|
|
210
210
|
private hasBackground;
|
|
211
211
|
private hasUserConnectablePorts;
|
|
212
212
|
private hasUserDraggableEdges;
|
|
@@ -231,9 +231,14 @@ export declare class CanvasBuilder {
|
|
|
231
231
|
*/
|
|
232
232
|
enableUserTransformableViewport(config?: ViewportTransformConfig): CanvasBuilder;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* @deprecated
|
|
235
|
+
* use enableNodeResizeReactiveEdges instead
|
|
235
236
|
*/
|
|
236
237
|
enableResizeReactiveNodes(): CanvasBuilder;
|
|
238
|
+
/**
|
|
239
|
+
* enables automatic edges update on node resize
|
|
240
|
+
*/
|
|
241
|
+
enableNodeResizeReactiveEdges(): CanvasBuilder;
|
|
237
242
|
/**
|
|
238
243
|
* @deprecated
|
|
239
244
|
* do not use
|
|
@@ -633,6 +638,10 @@ export declare interface HorizontalEdgeParams {
|
|
|
633
638
|
readonly cycleSquareSide?: number | undefined;
|
|
634
639
|
readonly roundness?: number | undefined;
|
|
635
640
|
readonly detourDistance?: number | undefined;
|
|
641
|
+
/**
|
|
642
|
+
* @deprecated
|
|
643
|
+
* do not use
|
|
644
|
+
*/
|
|
636
645
|
readonly detourDirection?: number | undefined;
|
|
637
646
|
}
|
|
638
647
|
|
|
@@ -648,7 +657,6 @@ export declare class HorizontalEdgeShape implements StructuredEdgeShape {
|
|
|
648
657
|
private readonly arrowOffset;
|
|
649
658
|
private readonly roundness;
|
|
650
659
|
private readonly cycleSquareSide;
|
|
651
|
-
private readonly detourDirection;
|
|
652
660
|
private readonly detourDistance;
|
|
653
661
|
private readonly hasSourceArrow;
|
|
654
662
|
private readonly hasTargetArrow;
|
|
@@ -972,6 +980,10 @@ export declare interface VerticalEdgeParams {
|
|
|
972
980
|
readonly cycleSquareSide?: number | undefined;
|
|
973
981
|
readonly roundness?: number | undefined;
|
|
974
982
|
readonly detourDistance?: number | undefined;
|
|
983
|
+
/**
|
|
984
|
+
* @deprecated
|
|
985
|
+
* do not use
|
|
986
|
+
*/
|
|
975
987
|
readonly detourDirection?: number | undefined;
|
|
976
988
|
}
|
|
977
989
|
|
|
@@ -987,7 +999,6 @@ export declare class VerticalEdgeShape implements StructuredEdgeShape {
|
|
|
987
999
|
private readonly arrowOffset;
|
|
988
1000
|
private readonly roundness;
|
|
989
1001
|
private readonly cycleSquareSide;
|
|
990
|
-
private readonly detourDirection;
|
|
991
1002
|
private readonly detourDistance;
|
|
992
1003
|
private readonly hasSourceArrow;
|
|
993
1004
|
private readonly hasTargetArrow;
|