web icon indicating copy to clipboard operation
web copied to clipboard

chore(docs): update EdgeChange types documentation.

Open diaz-camilo opened this issue 1 year ago • 1 comments

based on changes.ts

export type EdgeSelectionChange = NodeSelectionChange;
export type EdgeRemoveChange = NodeRemoveChange;
export type EdgeAddChange<EdgeType extends EdgeBase = EdgeBase> = {
    item: EdgeType;
    type: 'add';
    index?: number;
};
export type EdgeReplaceChange<EdgeType extends EdgeBase = EdgeBase> = {
    id: string;
    item: EdgeType;
    type: 'replace';
};

diaz-camilo avatar Sep 26 '24 11:09 diaz-camilo

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
reactflow-website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 26, 2024 11:16am
svelteflow-website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 26, 2024 11:16am
xyflow-svelte-examples ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 26, 2024 11:16am
xyflow-website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 26, 2024 11:16am

vercel[bot] avatar Sep 26 '24 11:09 vercel[bot]

Thanks @diaz-camilo for catching this. It's been a little while and some larger changes were made to the repo so I'm going to check these changes in in a fresh branch.

printerscanner avatar Feb 13 '25 09:02 printerscanner