UNPKG

rsuite

Version:

A suite of react components

26 lines (25 loc) 858 B
'use client'; "use strict"; exports.__esModule = true; exports.TREE_NODE_DROP_POSITION = void 0; /** * Tree Node Drag Type */ var TREE_NODE_DROP_POSITION = exports.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. */