12345678910111213141516171819202122232425262728293031323334353637 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.82
- */
- export function isActivationKey(key) {
- return key === "Enter" || key === " ";
- }
- export const numberKeys = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
- export const letterKeys = [
- "a",
- "b",
- "c",
- "d",
- "e",
- "f",
- "g",
- "h",
- "i",
- "j",
- "k",
- "l",
- "m",
- "n",
- "o",
- "p",
- "q",
- "r",
- "s",
- "t",
- "u",
- "v",
- "w",
- "x",
- "y",
- "z"
- ];
|