web
web copied to clipboard
chore(docs): update EdgeChange types documentation.
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';
};
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 |
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.