@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
23 lines (22 loc) • 891 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies where a dragged item is dropped relative to the target item.
*/
export var DropPosition;
(function (DropPosition) {
/**
* The item is dropped over the target item.
*/
DropPosition[DropPosition["Over"] = 0] = "Over";
/**
* The item is dropped before the target item.
*/
DropPosition[DropPosition["Before"] = 1] = "Before";
/**
* The item is dropped after the target item.
*/
DropPosition[DropPosition["After"] = 2] = "After";
})(DropPosition || (DropPosition = {}));