Skip to content

Type Alias: DropPosition

DropPosition = "before" | "after" | "child"

Defined in: src/tree-editor/drop-position.ts:7

Drop position relative to a target row during drag-and-drop:

  • before — insert as previous sibling of target
  • after — insert as next sibling of target
  • child — reparent under target (append as last child)