UNPKG

rsuite

Version:

A suite of react components

24 lines (22 loc) 749 B
'use client'; /** * Tree Node Drag Type */ export var TREE_NODE_DROP_POSITION = /*#__PURE__*/function (TREE_NODE_DROP_POSITION) { TREE_NODE_DROP_POSITION[TREE_NODE_DROP_POSITION["DRAG_OVER"] = 0] = "DRAG_OVER"; TREE_NODE_DROP_POSITION[TREE_NODE_DROP_POSITION["DRAG_OVER_TOP"] = 1] = "DRAG_OVER_TOP"; TREE_NODE_DROP_POSITION[TREE_NODE_DROP_POSITION["DRAG_OVER_BOTTOM"] = 2] = "DRAG_OVER_BOTTOM"; return TREE_NODE_DROP_POSITION; }({}); /** * Represents the drag-related props for the Tree component. */ /** * Represents the base props for the Tree component. * * @template V - The type of the value associated with each tree node. * @template T - The type of the tree node. */ /** * Represents the props for the Tree component. */