mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-02 22:37:58 +00:00
10 lines
446 B
TypeScript
10 lines
446 B
TypeScript
![]() |
// these relationships trigger a link where the source is to the right of the sink
|
||
|
export const FORWARD_RELATIONSHIPS = ['DownstreamOf', 'Consumes', 'Contains', 'TrainedBy'];
|
||
|
// these relationships trigger a link where the source is to the left of the sink
|
||
|
export const INVERSE_RELATIONSHIPS = ['Produces', 'MemberOf'];
|
||
|
|
||
|
export const VERTICAL_SPACE_PER_NODE = 120;
|
||
|
export const HORIZONTAL_SPACE_PER_LAYER = 400;
|
||
|
|
||
|
export const CURVE_PADDING = 75;
|