chore(types): cleanup #5420
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
---
|
---
|
||||||
'@xyflow/react': patch
|
'@xyflow/react': patch
|
||||||
'@xyflow/svelte': patch
|
|
||||||
---
|
---
|
||||||
|
|
||||||
Omit `defaultValue` from `Node`'s and `Edge`'s `domAttributes` to fix type incompatibility when using `WritableDraft`
|
Omit `defaultValue` from `Node`'s `domAttributes` to fix type incompatibility when using `WritableDraft`
|
||||||
|
|||||||
@@ -72,10 +72,7 @@ export type Edge<
|
|||||||
/**
|
/**
|
||||||
* General escape hatch for adding custom attributes to the edge's DOM element.
|
* General escape hatch for adding custom attributes to the edge's DOM element.
|
||||||
*/
|
*/
|
||||||
domAttributes?: Omit<
|
domAttributes?: Omit<SVGAttributes<SVGGElement>, 'id' | 'style' | 'className' | 'role' | 'aria-label'>;
|
||||||
SVGAttributes<SVGGElement>,
|
|
||||||
'id' | 'style' | 'className' | 'role' | 'aria-label' | 'defaultValue'
|
|
||||||
>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type SmoothStepEdge<EdgeData extends Record<string, unknown> = Record<string, unknown>> = Edge<
|
type SmoothStepEdge<EdgeData extends Record<string, unknown> = Record<string, unknown>> = Edge<
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export type Edge<
|
|||||||
*/
|
*/
|
||||||
domAttributes?: Omit<
|
domAttributes?: Omit<
|
||||||
SVGAttributes<SVGGElement>,
|
SVGAttributes<SVGGElement>,
|
||||||
'id' | 'style' | 'class' | 'role' | 'aria-label' | 'defaultValue'
|
'id' | 'style' | 'class' | 'role' | 'aria-label'
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ export type Node<
|
|||||||
| 'draggable'
|
| 'draggable'
|
||||||
| 'role'
|
| 'role'
|
||||||
| 'aria-label'
|
| 'aria-label'
|
||||||
| 'defaultValue'
|
|
||||||
| keyof DOMAttributes<HTMLDivElement>
|
| keyof DOMAttributes<HTMLDivElement>
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user