{"version":3,"file":"cdk-keycodes.umd.js","sources":["../../../../../src/cdk/keycodes/keycodes.ts","../../../../../src/cdk/keycodes/modifiers.ts","../../../../../src/cdk/keycodes/public-api.ts","../../../../../src/cdk/keycodes/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport const MAC_ENTER = 3;\nexport const BACKSPACE = 8;\nexport const TAB = 9;\nexport const NUM_CENTER = 12;\nexport const ENTER = 13;\nexport const SHIFT = 16;\nexport const CONTROL = 17;\nexport const ALT = 18;\nexport const PAUSE = 19;\nexport const CAPS_LOCK = 20;\nexport const ESCAPE = 27;\nexport const SPACE = 32;\nexport const PAGE_UP = 33;\nexport const PAGE_DOWN = 34;\nexport const END = 35;\nexport const HOME = 36;\nexport const LEFT_ARROW = 37;\nexport const UP_ARROW = 38;\nexport const RIGHT_ARROW = 39;\nexport const DOWN_ARROW = 40;\nexport const PLUS_SIGN = 43;\nexport const PRINT_SCREEN = 44;\nexport const INSERT = 45;\nexport const DELETE = 46;\nexport const ZERO = 48;\nexport const ONE = 49;\nexport const TWO = 50;\nexport const THREE = 51;\nexport const FOUR = 52;\nexport const FIVE = 53;\nexport const SIX = 54;\nexport const SEVEN = 55;\nexport const EIGHT = 56;\nexport const NINE = 57;\nexport const FF_SEMICOLON = 59; // Firefox (Gecko) fires this for semicolon instead of 186\nexport const FF_EQUALS = 61; // Firefox (Gecko) fires this for equals instead of 187\nexport const QUESTION_MARK = 63;\nexport const AT_SIGN = 64;\nexport const A = 65;\nexport const B = 66;\nexport const C = 67;\nexport const D = 68;\nexport const E = 69;\nexport const F = 70;\nexport const G = 71;\nexport const H = 72;\nexport const I = 73;\nexport const J = 74;\nexport const K = 75;\nexport const L = 76;\nexport const M = 77;\nexport const N = 78;\nexport const O = 79;\nexport const P = 80;\nexport const Q = 81;\nexport const R = 82;\nexport const S = 83;\nexport const T = 84;\nexport const U = 85;\nexport const V = 86;\nexport const W = 87;\nexport const X = 88;\nexport const Y = 89;\nexport const Z = 90;\nexport const META = 91; // WIN_KEY_LEFT\nexport const MAC_WK_CMD_LEFT = 91;\nexport const MAC_WK_CMD_RIGHT = 93;\nexport const CONTEXT_MENU = 93;\nexport const NUMPAD_ZERO = 96;\nexport const NUMPAD_ONE = 97;\nexport const NUMPAD_TWO = 98;\nexport const NUMPAD_THREE = 99;\nexport const NUMPAD_FOUR = 100;\nexport const NUMPAD_FIVE = 101;\nexport const NUMPAD_SIX = 102;\nexport const NUMPAD_SEVEN = 103;\nexport const NUMPAD_EIGHT = 104;\nexport const NUMPAD_NINE = 105;\nexport const NUMPAD_MULTIPLY = 106;\nexport const NUMPAD_PLUS = 107;\nexport const NUMPAD_MINUS = 109;\nexport const NUMPAD_PERIOD = 110;\nexport const NUMPAD_DIVIDE = 111;\nexport const F1 = 112;\nexport const F2 = 113;\nexport const F3 = 114;\nexport const F4 = 115;\nexport const F5 = 116;\nexport const F6 = 117;\nexport const F7 = 118;\nexport const F8 = 119;\nexport const F9 = 120;\nexport const F10 = 121;\nexport const F11 = 122;\nexport const F12 = 123;\nexport const NUM_LOCK = 144;\nexport const SCROLL_LOCK = 145;\nexport const FIRST_MEDIA = 166;\nexport const FF_MINUS = 173;\nexport const MUTE = 173; // Firefox (Gecko) fires 181 for MUTE\nexport const VOLUME_DOWN = 174; // Firefox (Gecko) fires 182 for VOLUME_DOWN\nexport const VOLUME_UP = 175; // Firefox (Gecko) fires 183 for VOLUME_UP\nexport const FF_MUTE = 181;\nexport const FF_VOLUME_DOWN = 182;\nexport const LAST_MEDIA = 183;\nexport const FF_VOLUME_UP = 183;\nexport const SEMICOLON = 186; // Firefox (Gecko) fires 59 for SEMICOLON\nexport const EQUALS = 187; // Firefox (Gecko) fires 61 for EQUALS\nexport const COMMA = 188;\nexport const DASH = 189; // Firefox (Gecko) fires 173 for DASH/MINUS\nexport const PERIOD = 190;\nexport const SLASH = 191;\nexport const APOSTROPHE = 192;\nexport const TILDE = 192;\nexport const OPEN_SQUARE_BRACKET = 219;\nexport const BACKSLASH = 220;\nexport const CLOSE_SQUARE_BRACKET = 221;\nexport const SINGLE_QUOTE = 222;\nexport const MAC_META = 224;\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\ntype ModifierKey = 'altKey' | 'shiftKey' | 'ctrlKey' | 'metaKey';\n\n/**\n * Checks whether a modifier key is pressed.\n * @param event Event to be checked.\n */\nexport function hasModifierKey(event: KeyboardEvent, ...modifiers: ModifierKey[]): boolean {\n if (modifiers.length) {\n return modifiers.some(modifier => event[modifier]);\n }\n\n return event.altKey || event.shiftKey || event.ctrlKey || event.metaKey;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nexport * from './keycodes';\nexport * from './modifiers';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}