@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
18 lines (17 loc) • 994 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Describes 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 var DropAction;
(function (DropAction) {
DropAction[DropAction["Add"] = 0] = "Add";
DropAction[DropAction["InsertTop"] = 1] = "InsertTop";
DropAction[DropAction["InsertBottom"] = 2] = "InsertBottom";
DropAction[DropAction["InsertMiddle"] = 3] = "InsertMiddle";
DropAction[DropAction["Invalid"] = 4] = "Invalid";
})(DropAction || (DropAction = {}));