@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
14 lines (13 loc) • 700 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 where the dragged item is dropped relative to the drop target item.
*/
export var DropPosition;
(function (DropPosition) {
DropPosition[DropPosition["Over"] = 0] = "Over";
DropPosition[DropPosition["Before"] = 1] = "Before";
DropPosition[DropPosition["After"] = 2] = "After";
})(DropPosition || (DropPosition = {}));