@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
17 lines (16 loc) • 663 B
JavaScript
export var KeyCode;
(function (KeyCode) {
KeyCode[KeyCode["backspace"] = 8] = "backspace";
KeyCode[KeyCode["space"] = 32] = "space";
KeyCode[KeyCode["down"] = 40] = "down";
KeyCode[KeyCode["left"] = 37] = "left";
KeyCode[KeyCode["right"] = 39] = "right";
KeyCode[KeyCode["up"] = 38] = "up";
KeyCode[KeyCode["escape"] = 27] = "escape";
KeyCode[KeyCode["enter"] = 13] = "enter";
KeyCode[KeyCode["tab"] = 9] = "tab";
KeyCode[KeyCode["shift"] = 16] = "shift";
KeyCode[KeyCode["control"] = 17] = "control";
KeyCode[KeyCode["alt"] = 18] = "alt";
KeyCode[KeyCode["meta"] = 91] = "meta";
})(KeyCode || (KeyCode = {}));