UNPKG

@progress/kendo-angular-treeview

Version:
32 lines (31 loc) 1.2 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the attempted drop action during dragging. * Passed as `action` value to the [`kendoTreeViewDragClueTemplate`](slug:api_treeview_dragcluetemplatedirective) directive. * By default, this value defines the rendered icon in the drag clue. */ export declare enum DropAction { /** * The dragged item is added as a child to the target node. */ Add = 0, /** * The dragged item is inserted above the target node at the same level. */ InsertTop = 1, /** * The dragged item is inserted below the target node at the same level. */ InsertBottom = 2, /** * The dragged item is inserted in the middle position relative to the target node. */ InsertMiddle = 3, /** * The drop action is not valid for the current target location. */ Invalid = 4 }