Merge pull request #5141 from dimaMachina/tsdoc-7
fix: improve TSDoc comments for `Edge`, `BaseEdgeProps` and `ConnectionLineComponentProps`
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'@xyflow/react': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: improve TSDoc comments for `Edge`, `BaseEdgeProps` and `ConnectionLineComponentProps`
|
||||||
@@ -50,6 +50,11 @@ export type Edge<
|
|||||||
EdgeLabelOptions & {
|
EdgeLabelOptions & {
|
||||||
style?: CSSProperties;
|
style?: CSSProperties;
|
||||||
className?: string;
|
className?: string;
|
||||||
|
/**
|
||||||
|
* Determines whether the edge can be updated by dragging the source or target to a new node.
|
||||||
|
* This property will override the default set by the `edgesReconnectable` prop on the
|
||||||
|
* `<ReactFlow />` component.
|
||||||
|
*/
|
||||||
reconnectable?: boolean | HandleType;
|
reconnectable?: boolean | HandleType;
|
||||||
focusable?: boolean;
|
focusable?: boolean;
|
||||||
};
|
};
|
||||||
@@ -109,15 +114,11 @@ export type EdgeWrapperProps<EdgeType extends Edge = Edge> = {
|
|||||||
*/
|
*/
|
||||||
export type DefaultEdgeOptions = DefaultEdgeOptionsBase<Edge>;
|
export type DefaultEdgeOptions = DefaultEdgeOptionsBase<Edge>;
|
||||||
|
|
||||||
export type EdgeTextProps = SVGAttributes<SVGElement> &
|
export type EdgeTextProps = Omit<SVGAttributes<SVGElement>, 'x' | 'y'> &
|
||||||
EdgeLabelOptions & {
|
EdgeLabelOptions & {
|
||||||
/**
|
/** The x position where the label should be rendered. */
|
||||||
* The x position where the label should be rendered.
|
|
||||||
*/
|
|
||||||
x: number;
|
x: number;
|
||||||
/**
|
/** The y position where the label should be rendered. */
|
||||||
* The y position where the label should be rendered.
|
|
||||||
*/
|
|
||||||
y: number;
|
y: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -147,11 +148,12 @@ export type EdgeProps<EdgeType extends Edge = Edge> = Pick<
|
|||||||
* @public
|
* @public
|
||||||
* @expand
|
* @expand
|
||||||
*/
|
*/
|
||||||
export type BaseEdgeProps = Omit<SVGAttributes<SVGPathElement>, 'd'> &
|
export type BaseEdgeProps = Omit<SVGAttributes<SVGPathElement>, 'd' | 'path'> &
|
||||||
EdgeLabelOptions & {
|
EdgeLabelOptions & {
|
||||||
/**
|
/**
|
||||||
* The width of the invisible area around the edge that the user can interact with. This is
|
* The width of the invisible area around the edge that the user can interact with. This is
|
||||||
* useful for making the edge easier to click or hover over.
|
* useful for making the edge easier to click or hover over.
|
||||||
|
* @default 20
|
||||||
*/
|
*/
|
||||||
interactionWidth?: number;
|
interactionWidth?: number;
|
||||||
/** The x position of edge label */
|
/** The x position of edge label */
|
||||||
@@ -233,7 +235,9 @@ export type OnReconnect<EdgeType extends Edge = Edge> = (oldEdge: EdgeType, newC
|
|||||||
export type ConnectionLineComponentProps<NodeType extends Node = Node> = {
|
export type ConnectionLineComponentProps<NodeType extends Node = Node> = {
|
||||||
connectionLineStyle?: CSSProperties;
|
connectionLineStyle?: CSSProperties;
|
||||||
connectionLineType: ConnectionLineType;
|
connectionLineType: ConnectionLineType;
|
||||||
|
/** The node the connection line originates from. */
|
||||||
fromNode: InternalNode<NodeType>;
|
fromNode: InternalNode<NodeType>;
|
||||||
|
/** The handle on the `fromNode` that the connection line originates from. */
|
||||||
fromHandle: Handle;
|
fromHandle: Handle;
|
||||||
fromX: number;
|
fromX: number;
|
||||||
fromY: number;
|
fromY: number;
|
||||||
@@ -241,6 +245,10 @@ export type ConnectionLineComponentProps<NodeType extends Node = Node> = {
|
|||||||
toY: number;
|
toY: number;
|
||||||
fromPosition: Position;
|
fromPosition: Position;
|
||||||
toPosition: Position;
|
toPosition: Position;
|
||||||
|
/**
|
||||||
|
* If there is an `isValidConnection` callback, this prop will be set to `"valid"` or `"invalid"`
|
||||||
|
* based on the return value of that callback. Otherwise, it will be `null`.
|
||||||
|
*/
|
||||||
connectionStatus: 'valid' | 'invalid' | null;
|
connectionStatus: 'valid' | 'invalid' | null;
|
||||||
toNode: InternalNode<NodeType> | null;
|
toNode: InternalNode<NodeType> | null;
|
||||||
toHandle: Handle | null;
|
toHandle: Handle | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user