diff --git a/packages/core-components/api-report.md b/packages/core-components/api-report.md index 1067cd3d02..235e11607f 100644 --- a/packages/core-components/api-report.md +++ b/packages/core-components/api-report.md @@ -305,24 +305,19 @@ export interface DependencyGraphProps 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[]; 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[]; 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; diff --git a/packages/core-components/src/components/DependencyGraph/DependencyGraph.tsx b/packages/core-components/src/components/DependencyGraph/DependencyGraph.tsx index 7a9ef9a9c7..1c3a4fce96 100644 --- a/packages/core-components/src/components/DependencyGraph/DependencyGraph.tsx +++ b/packages/core-components/src/components/DependencyGraph/DependencyGraph.tsx @@ -56,7 +56,7 @@ export interface DependencyGraphProps * * @remarks * - * Default: {@link DependencyGraphTypes.Direction.TOP_BOTTOM} + * Default: `DependencyGraphTypes.Direction.TOP_BOTTOM` */ direction?: Direction; /** @@ -112,7 +112,7 @@ export interface DependencyGraphProps * * @remarks * - * Default: {@link DependencyGraphTypes.Ranker.NETWORK_SIMPLEX} + * Default: `DependencyGraphTypes.Ranker.NETWORK_SIMPLEX` */ ranker?: Ranker; /** @@ -120,7 +120,7 @@ export interface DependencyGraphProps * * @remarks * - * Default: {@link DependencyGraphTypes.LabelPosition.RIGHT} + * Default: `DependencyGraphTypes.LabelPosition.RIGHT` */ labelPosition?: LabelPosition; /** @@ -128,8 +128,8 @@ export interface DependencyGraphProps * * @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; /**