Something along the way does not support linking to enum values. Fix it.

Signed-off-by: Tomasz Szuba <tszuba@box.com>
This commit is contained in:
Tomasz Szuba
2021-10-04 16:38:57 +02:00
parent 5c42360577
commit d748dea84a
2 changed files with 5 additions and 10 deletions
-5
View File
@@ -305,24 +305,19 @@ export interface DependencyGraphProps<NodeData, EdgeData>
align?: Alignment;
defs?: SVGDefsElement | SVGDefsElement[];
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
direction?: Direction;
edgeMargin?: number;
edgeRanks?: number;
edges: DependencyEdge<EdgeData>[];
edgeWeight?: number;
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
labelOffset?: number;
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
labelPosition?: LabelPosition;
nodeMargin?: number;
nodes: DependencyNode<NodeData>[];
paddingX?: number;
paddingY?: number;
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
// Warning: (ae-unresolved-link) The @link reference could not be resolved: This type of declaration is not supported yet by the resolver
ranker?: Ranker;
rankMargin?: number;
renderLabel?: RenderLabelFunction<EdgeData>;
@@ -56,7 +56,7 @@ export interface DependencyGraphProps<NodeData, EdgeData>
*
* @remarks
*
* Default: {@link DependencyGraphTypes.Direction.TOP_BOTTOM}
* Default: `DependencyGraphTypes.Direction.TOP_BOTTOM`
*/
direction?: Direction;
/**
@@ -112,7 +112,7 @@ export interface DependencyGraphProps<NodeData, EdgeData>
*
* @remarks
*
* Default: {@link DependencyGraphTypes.Ranker.NETWORK_SIMPLEX}
* Default: `DependencyGraphTypes.Ranker.NETWORK_SIMPLEX`
*/
ranker?: Ranker;
/**
@@ -120,7 +120,7 @@ export interface DependencyGraphProps<NodeData, EdgeData>
*
* @remarks
*
* Default: {@link DependencyGraphTypes.LabelPosition.RIGHT}
* Default: `DependencyGraphTypes.LabelPosition.RIGHT`
*/
labelPosition?: LabelPosition;
/**
@@ -128,8 +128,8 @@ export interface DependencyGraphProps<NodeData, EdgeData>
*
* @remarks
*
* Applies only when {@link DependencyGraphProps.labelPosition} is {@link DependencyGraphTypes.LabelPosition.LEFT} or
* {@link DependencyGraphTypes.LabelPosition.RIGHT}
* Applies only when {@link DependencyGraphProps.labelPosition} is `DependencyGraphTypes.LabelPosition.LEFT` or
* `DependencyGraphTypes.LabelPosition.RIGHT`
*/
labelOffset?: number;
/**