UNPKG

@progress/kendo-angular-treeview

Version:
25 lines (24 loc) 920 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Arguments for the TreeView [`nodeDrag`](slug:api_treeview_treeviewcomponent#nodedrag) and * [`nodeDragEnd`](slug:api_treeview_treeviewcomponent#nodedragend) events. */ export class TreeItemDragEvent { /** @hidden */ constructor() { } /** * Lookup information for the dragged item. */ sourceItem; /** * Lookup information for the item currently under the dragged node, if any. */ destinationItem; /** * The original pointer event containing details about the pointer position. */ originalEvent; }