@itwin/core-react
Version:
A react component library of iTwin.js UI general purpose components
18 lines • 829 B
JavaScript
/** Enum to specify where a [[ContextMenu]] should anchor to its parent element
* @public
* @deprecated in 4.16.0. Enum used in a deprecated {@link ContextMenu} component.
*/
export var ContextMenuDirection;
(function (ContextMenuDirection) {
ContextMenuDirection["None"] = "";
ContextMenuDirection["TopLeft"] = "top left";
ContextMenuDirection["Top"] = "top";
ContextMenuDirection["TopRight"] = "top right";
ContextMenuDirection["Left"] = "left";
ContextMenuDirection["Center"] = "center";
ContextMenuDirection["Right"] = "right";
ContextMenuDirection["BottomLeft"] = "bottom left";
ContextMenuDirection["Bottom"] = "bottom";
ContextMenuDirection["BottomRight"] = "bottom right";
})(ContextMenuDirection || (ContextMenuDirection = {}));
//# sourceMappingURL=ContextMenuDirection.js.map