UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

22 lines 941 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 // When updating the list of key codes, don't forget // to modify corresponding list in test-utils // to avoid failing unit tests export var KeyCode; (function (KeyCode) { KeyCode[KeyCode["pageUp"] = 33] = "pageUp"; KeyCode[KeyCode["pageDown"] = 34] = "pageDown"; KeyCode[KeyCode["end"] = 35] = "end"; KeyCode[KeyCode["home"] = 36] = "home"; 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 = {})); //# sourceMappingURL=keycode.js.map