ts-key-enum
Advanced tools
Comparing version
@@ -9,4 +9,6 @@ /** | ||
/** | ||
* The user agent wasn't able to map the event's virtual keycode to a specific key value. | ||
* This can happen due to hardware or software constraints, or because of constraints around the platform on which the user agent is running. | ||
* The user agent wasn't able to map the event's virtual keycode to a | ||
* specific key value. | ||
* This can happen due to hardware or software constraints, or because of | ||
* constraints around the platform on which the user agent is running. | ||
*/ | ||
@@ -16,21 +18,54 @@ Unidentified = "Unidentified", | ||
Alt = "Alt", | ||
/** The AltGr or AltGraph (Alternate Graphics) key. Enables the ISO Level 3 shift modifier (where Shift is the level 2 modifier). */ | ||
/** | ||
* The AltGr or AltGraph (Alternate Graphics) key. | ||
* Enables the ISO Level 3 shift modifier (where Shift is the | ||
* level 2 modifier). | ||
*/ | ||
AltGraph = "AltGraph", | ||
/** The Caps Lock key. Toggles the capital character lock on and off for subsequent input. */ | ||
/** | ||
* The Caps Lock key. Toggles the capital character lock on and | ||
* off for subsequent input. | ||
*/ | ||
CapsLock = "CapsLock", | ||
/** The Control, Ctrl, or Ctl key. Allows typing control characters. */ | ||
/** | ||
* The Control, Ctrl, or Ctl key. Allows | ||
* typing control characters. | ||
*/ | ||
Control = "Control", | ||
/** The Fn (Function modifier) key. Used to allow generating function key (F1–F15, for instance) characters on keyboards without a dedicated function key area. Often handled in hardware so that events aren't generated for this key. */ | ||
/** | ||
* The Fn (Function modifier) key. Used to allow generating | ||
* function key (F1–F15, for instance) characters on | ||
* keyboards without a dedicated function key area. Often handled in | ||
* hardware so that events aren't generated for this key. | ||
*/ | ||
Fn = "Fn", | ||
/** The FnLock or F-Lock (Function Lock) key.Toggles the function key mode described by "Fn" on and off. Often handled in hardware so that events aren't generated for this key. */ | ||
/** | ||
* The FnLock or F-Lock (Function Lock) key.Toggles | ||
* the function key mode described by "Fn" on and off. Often | ||
* handled in hardware so that events aren't generated for this key. | ||
*/ | ||
FnLock = "FnLock", | ||
/** The Hyper key. */ | ||
Hyper = "Hyper", | ||
/** The Meta key. Allows issuing special command inputs. This is the Windows logo key, or the Command or ⌘ key on Mac keyboards. */ | ||
/** | ||
* The Meta key. Allows issuing special command inputs. This is | ||
* the Windows logo key, or the Command or | ||
* ⌘ key on Mac keyboards. | ||
*/ | ||
Meta = "Meta", | ||
/** The NumLock (Number Lock) key. Toggles the numeric keypad between number entry some other mode (often directional arrows). */ | ||
/** | ||
* The NumLock (Number Lock) key. Toggles the numeric keypad | ||
* between number entry some other mode (often directional arrows). | ||
*/ | ||
NumLock = "NumLock", | ||
/** The Scroll Lock key. Toggles between scrolling and cursor movement modes. */ | ||
/** | ||
* The Scroll Lock key. Toggles between scrolling and cursor | ||
* movement modes. | ||
*/ | ||
ScrollLock = "ScrollLock", | ||
/** The Shift key. Modifies keystrokes to allow typing upper (or other) case letters, and to support typing punctuation and other special characters. */ | ||
/** | ||
* The Shift key. Modifies keystrokes to allow typing upper (or | ||
* other) case letters, and to support typing punctuation and other special | ||
* characters. | ||
*/ | ||
Shift = "Shift", | ||
@@ -43,3 +78,6 @@ /** The Super key. */ | ||
SymbolLock = "SymbolLock", | ||
/** The Enter or ↵ key (sometimes labeled Return). */ | ||
/** | ||
* The Enter or ↵ key (sometimes labeled | ||
* Return). | ||
*/ | ||
Enter = "Enter", | ||
@@ -60,7 +98,16 @@ /** The Horizontal Tab key, Tab. */ | ||
Home = "Home", | ||
/** The Page Down (or PgDn) key. Scrolls down or displays the next page of content. */ | ||
/** | ||
* The Page Down (or PgDn) key. Scrolls down or | ||
* displays the next page of content. | ||
*/ | ||
PageDown = "PageDown", | ||
/** The Page Up (or PgUp) key. Scrolls up or displays the previous page of content. */ | ||
/** | ||
* The Page Up (or PgUp) key. Scrolls up or displays | ||
* the previous page of content. | ||
*/ | ||
PageUp = "PageUp", | ||
/** The Backspace key. This key is labeled Delete on Mac keyboards. */ | ||
/** | ||
* The Backspace key. This key is labeled Delete on | ||
* Mac keyboards. | ||
*/ | ||
Backspace = "Backspace", | ||
@@ -77,7 +124,13 @@ /** The Clear key. Removes the currently selected input. */ | ||
Delete = "Delete", | ||
/** Erase to End of Field. Deletes all characters from the current cursor position to the end of the current field. */ | ||
/** | ||
* Erase to End of Field. Deletes all characters from the current cursor | ||
* position to the end of the current field. | ||
*/ | ||
EraseEof = "EraseEof", | ||
/** The ExSel (Extend Selection) key. */ | ||
ExSel = "ExSel", | ||
/** The Insert key, Ins. Toggles between inserting and overwriting text. */ | ||
/** | ||
* The Insert key, Ins. Toggles between inserting and | ||
* overwriting text. | ||
*/ | ||
Insert = "Insert", | ||
@@ -90,3 +143,7 @@ /** Paste from the clipboard. */ | ||
Undo = "Undo", | ||
/** The Accept, Commit, or OK key or button. Accepts the currently selected option or input method sequence conversion. */ | ||
/** | ||
* The Accept, Commit, or OK key or | ||
* button. Accepts the currently selected option or input method sequence | ||
* conversion. | ||
*/ | ||
Accept = "Accept", | ||
@@ -99,22 +156,43 @@ /** The Again key. Redoes or repeats a previous action. */ | ||
Cancel = "Cancel", | ||
/** Shows the context menu. Typically found between the Windows (or OS) key and the Control key on the right side of the keyboard. */ | ||
/** | ||
* Shows the context menu. Typically found between the | ||
* Windows (or OS) key and the Control key | ||
* on the right side of the keyboard. | ||
*/ | ||
ContextMenu = "ContextMenu", | ||
/** The Esc (Escape) key. Typically used as an exit, cancel, or "escape this operation" button. Historically, the Escape character was used to signal the start of a special control sequence of characters called an "escape sequence." */ | ||
/** | ||
* The Esc (Escape) key. Typically used as an exit, cancel, or | ||
* "escape this operation" button. Historically, the Escape character was | ||
* used to signal the start of a special control sequence of characters | ||
* called an "escape sequence." | ||
*/ | ||
Escape = "Escape", | ||
/** The Execute key. */ | ||
Execute = "Execute", | ||
/** The Find key. Opens an interface (typically a dialog box) for performing a find/search operation. */ | ||
/** | ||
* The Find key. Opens an interface (typically a dialog box) for | ||
* performing a find/search operation. | ||
*/ | ||
Find = "Find", | ||
/** The Finish key. */ | ||
Finish = "Finish", | ||
/** The Help key. Opens or toggles the display of help information. */ | ||
/** | ||
* The Help key. Opens or toggles the display of help | ||
* information. | ||
*/ | ||
Help = "Help", | ||
/** | ||
* The Pause key. Pauses the current application or state, if applicable. | ||
* Note: This shouldn't be confused with the "MediaPause" key value, which is used for media controllers, rather than to control applications and processes. | ||
* The Pause key. Pauses the current application or state, if | ||
* applicable. | ||
* Note: This shouldn't be confused with the | ||
* "MediaPause" key value, which is used for media | ||
* controllers, rather than to control applications and processes. | ||
*/ | ||
Pause = "Pause", | ||
/** | ||
* The Play key. Resumes a previously paused application, if applicable. | ||
* Note: This shouldn't be confused with the "MediaPlay" key value, which is used for media controllers, rather than to control applications and processes. | ||
* The Play key. Resumes a previously paused application, if | ||
* applicable. | ||
* Note: This shouldn't be confused with the | ||
* "MediaPlay" key value, which is used for media | ||
* controllers, rather than to control applications and processes. | ||
*/ | ||
@@ -130,7 +208,16 @@ Play = "Play", | ||
ZoomOut = "ZoomOut", | ||
/** The Brightness Down key. Typically used to reduce the brightness of the display. */ | ||
/** | ||
* The Brightness Down key. Typically used to reduce the brightness of the | ||
* display. | ||
*/ | ||
BrightnessDown = "BrightnessDown", | ||
/** The Brightness Up key. Typically increases the brightness of the display. */ | ||
/** | ||
* The Brightness Up key. Typically increases the brightness of the | ||
* display. | ||
*/ | ||
BrightnessUp = "BrightnessUp", | ||
/** The Eject key. Ejects removable media (or toggles an optical storage device tray open and closed). */ | ||
/** | ||
* The Eject key. Ejects removable media (or toggles an optical | ||
* storage device tray open and closed). | ||
*/ | ||
Eject = "Eject", | ||
@@ -141,59 +228,137 @@ /** The LogOff key. */ | ||
* The Power button or key, to toggle power on and off. | ||
* Note: Not all systems pass this key through to the user agent. | ||
* Note: Not all systems pass this key through to the | ||
* user agent. | ||
*/ | ||
Power = "Power", | ||
/** The PowerOff or PowerDown key. Shuts off the system. */ | ||
/** | ||
* The PowerOff or PowerDown key. Shuts off the | ||
* system. | ||
*/ | ||
PowerOff = "PowerOff", | ||
/** The PrintScreen or PrtScr key. Sometimes SnapShot. Captures the screen and prints it or saves it to disk. */ | ||
/** | ||
* The PrintScreen or PrtScr key. Sometimes | ||
* SnapShot. Captures the screen and prints it or saves it to | ||
* disk. | ||
*/ | ||
PrintScreen = "PrintScreen", | ||
/** The Hibernate key. This saves the state of the computer to disk and then shuts down; the computer can be returned to its previous state by restoring the saved state information. */ | ||
/** | ||
* The Hibernate key. This saves the state of the computer to | ||
* disk and then shuts down; the computer can be returned to its previous | ||
* state by restoring the saved state information. | ||
*/ | ||
Hibernate = "Hibernate", | ||
/** The Standby key. (Also known as Suspend or Sleep.) This turns off the display and puts the computer in a low power consumption mode, without completely powering off. */ | ||
/** | ||
* The Standby key. (Also known as Suspend or | ||
* Sleep.) This turns off the display and puts the computer in a | ||
* low power consumption mode, without completely powering off. | ||
*/ | ||
Standby = "Standby", | ||
/** The WakeUp key. Used to wake the computer from the hibernation or standby modes. */ | ||
/** | ||
* The WakeUp key. Used to wake the computer from the | ||
* hibernation or standby modes. | ||
*/ | ||
WakeUp = "WakeUp", | ||
/** The All Candidates key, which starts multi-candidate mode, in which multiple candidates are displayed for the ongoing input. */ | ||
/** | ||
* The All Candidates key, which starts multi-candidate mode, in | ||
* which multiple candidates are displayed for the ongoing input. | ||
*/ | ||
AllCandidates = "AllCandidates", | ||
/** The Alphanumeric key. */ | ||
Alphanumeric = "Alphanumeric", | ||
/** The Code Input key, which enables code input mode, which lets the user enter characters by typing their code points (their Unicode character numbers, typically). */ | ||
/** | ||
* The Code Input key, which enables code input mode, which lets | ||
* the user enter characters by typing their code points (their Unicode | ||
* character numbers, typically). | ||
*/ | ||
CodeInput = "CodeInput", | ||
/** The Compose key. */ | ||
Compose = "Compose", | ||
/** The Convert key, which instructs the IME to convert the current input method sequence into the resulting character. */ | ||
/** | ||
* The Convert key, which instructs the IME to convert the | ||
* current input method sequence into the resulting character. | ||
*/ | ||
Convert = "Convert", | ||
/** | ||
* A dead "combining" key; that is, a key which is used in tandem with other keys to generate accented and other modified characters. If pressed by itself, it doesn't generate a character. | ||
* If you wish to identify which specific dead key was pressed (in cases where more than one exists), you can do so by examining the KeyboardEvent's associated compositionupdate event's data property. | ||
* A dead "combining" key; that is, a key which is used in tandem with | ||
* other keys to generate accented and other modified characters. If | ||
* pressed by itself, it doesn't generate a character. | ||
* If you wish to identify which specific dead key was pressed (in cases | ||
* where more than one exists), you can do so by examining the | ||
* KeyboardEvent's associated | ||
* compositionupdate event's | ||
* data property. | ||
*/ | ||
Dead = "Dead", | ||
/** The Final (Final Mode) key is used on some Asian keyboards to enter final mode when using IMEs. */ | ||
/** | ||
* The Final (Final Mode) key is used on some Asian keyboards to | ||
* enter final mode when using IMEs. | ||
*/ | ||
FinalMode = "FinalMode", | ||
/** Switches to the first character group on an ISO/IEC 9995 keyboard. Each key may have multiple groups of characters, each in its own column. Pressing this key instructs the device to interpret keypresses as coming from the first column on subsequent keystrokes. */ | ||
/** | ||
* Switches to the first character group on an | ||
* ISO/IEC 9995 keyboard. Each key may have multiple groups of characters, each in its own | ||
* column. Pressing this key instructs the device to interpret keypresses | ||
* as coming from the first column on subsequent keystrokes. | ||
*/ | ||
GroupFirst = "GroupFirst", | ||
/** Switches to the last character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the last character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
GroupLast = "GroupLast", | ||
/** Switches to the next character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the next character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
GroupNext = "GroupNext", | ||
/** Switches to the previous character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the previous character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
GroupPrevious = "GroupPrevious", | ||
/** The Mode Change key. Toggles or cycles among input modes of IMEs. */ | ||
ModeChange = "ModeChange", | ||
/** The Next Candidate function key. Selects the next possible match for the ongoing input. */ | ||
/** | ||
* The Next Candidate function key. Selects the next possible match for the | ||
* ongoing input. | ||
*/ | ||
NextCandidate = "NextCandidate", | ||
/** The NonConvert ("Don't convert") key. This accepts the current input method sequence without running conversion when using an IME. */ | ||
/** | ||
* The NonConvert ("Don't convert") key. This accepts the | ||
* current input method sequence without running conversion when using an | ||
* IME. | ||
*/ | ||
NonConvert = "NonConvert", | ||
/** The Previous Candidate key. Selects the previous possible match for the ongoing input. */ | ||
/** | ||
* The Previous Candidate key. Selects the previous possible match for the | ||
* ongoing input. | ||
*/ | ||
PreviousCandidate = "PreviousCandidate", | ||
/** The Process key. Instructs the IME to process the conversion. */ | ||
Process = "Process", | ||
/** The Single Candidate key. Enables single candidate mode (as opposed to multi-candidate mode); in this mode, only one candidate is displayed at a time. */ | ||
/** | ||
* The Single Candidate key. Enables single candidate mode (as opposed to | ||
* multi-candidate mode); in this mode, only one candidate is displayed at | ||
* a time. | ||
*/ | ||
SingleCandidate = "SingleCandidate", | ||
/** The Hangul (Korean character set) mode key, which toggles between Hangul and English entry modes. */ | ||
/** | ||
* The Hangul (Korean character set) mode key, which toggles | ||
* between Hangul and English entry modes. | ||
*/ | ||
HangulMode = "HangulMode", | ||
/** Selects the Hanja mode, for converting Hangul characters to the more specific Hanja characters. */ | ||
/** | ||
* Selects the Hanja mode, for converting Hangul characters to the more | ||
* specific Hanja characters. | ||
*/ | ||
HanjaMode = "HanjaMode", | ||
/** Selects the Junja mode, in which Korean is represented using single-byte Latin characters. */ | ||
/** | ||
* Selects the Junja mode, in which Korean is represented using single-byte | ||
* Latin characters. | ||
*/ | ||
JunjaMode = "JunjaMode", | ||
/** The Eisu key. This key's purpose is defined by the IME, but may be used to close the IME. */ | ||
/** | ||
* The Eisu key. This key's purpose is defined by the IME, but | ||
* may be used to close the IME. | ||
*/ | ||
Eisu = "Eisu", | ||
@@ -208,3 +373,6 @@ /** The Hankaku (half-width characters) key. */ | ||
KanaMode = "KanaMode", | ||
/** The Kanji Mode key. Enables entering Japanese text using the ideographic characters of Chinese origin. */ | ||
/** | ||
* The Kanji Mode key. Enables entering Japanese text using the | ||
* ideographic characters of Chinese origin. | ||
*/ | ||
KanjiMode = "KanjiMode", | ||
@@ -267,3 +435,6 @@ /** The Katakana key. */ | ||
Soft4 = "Soft4", | ||
/** Presents a list of recently-used applications which lets the user change apps quickly. */ | ||
/** | ||
* Presents a list of recently-used applications which lets the user change | ||
* apps quickly. | ||
*/ | ||
AppSwitch = "AppSwitch", | ||
@@ -280,5 +451,11 @@ /** The Call key. Dials the number which has been entered. */ | ||
GoBack = "GoBack", | ||
/** The Home button. Returns the user to the phone's main screen (usually an application launcher). */ | ||
/** | ||
* The Home button. Returns the user to the phone's main screen | ||
* (usually an application launcher). | ||
*/ | ||
GoHome = "GoHome", | ||
/** The Headset Hook key. This is typically actually a button on the headset which is used to hang up calls and play or pause media. */ | ||
/** | ||
* The Headset Hook key. This is typically actually a button on | ||
* the headset which is used to hang up calls and play or pause media. | ||
*/ | ||
HeadsetHook = "HeadsetHook", | ||
@@ -289,3 +466,6 @@ /** The Redial button. Redials the last-called number. */ | ||
Notification = "Notification", | ||
/** A button which cycles among the notification modes: silent, vibrate, ring, and so forth. */ | ||
/** | ||
* A button which cycles among the notification modes: silent, vibrate, | ||
* ring, and so forth. | ||
*/ | ||
MannerMode = "MannerMode", | ||
@@ -302,6 +482,10 @@ /** The Voice Dial key. Initiates voice dialing. */ | ||
* Pauses the currently playing media. | ||
* Note: Some older applications use "Pause", but this is not correct. | ||
* Note: Some older applications use | ||
* "Pause", but this is not correct. | ||
*/ | ||
MediaPause = "MediaPause", | ||
/** Starts or continues playing media at normal speed, if not already doing so. Has no effect otherwise. */ | ||
/** | ||
* Starts or continues playing media at normal speed, if not already doing | ||
* so. Has no effect otherwise. | ||
*/ | ||
MediaPlay = "MediaPlay", | ||
@@ -314,3 +498,7 @@ /** Toggles between playing and pausing the current media. */ | ||
MediaRewind = "MediaRewind", | ||
/** Stops the current media activity (such as playing, recording, pausing, forwarding, or rewinding). Has no effect if the media is currently stopped already. */ | ||
/** | ||
* Stops the current media activity (such as playing, recording, pausing, | ||
* forwarding, or rewinding). Has no effect if the media is currently | ||
* stopped already. | ||
*/ | ||
MediaStop = "MediaStop", | ||
@@ -327,7 +515,13 @@ /** Seeks to the next media or program track. */ | ||
AudioBassDown = "AudioBassDown", | ||
/** Reduces bass boosting or cycles downward through bass boost modes or states. */ | ||
/** | ||
* Reduces bass boosting or cycles downward through bass boost modes or | ||
* states. | ||
*/ | ||
AudioBassBoostDown = "AudioBassBoostDown", | ||
/** Toggles bass boosting on and off. */ | ||
AudioBassBoostToggle = "AudioBassBoostToggle", | ||
/** Increases the amoung of bass boosting, or cycles upward through a set of bass boost modes or states. */ | ||
/** | ||
* Increases the amoung of bass boosting, or cycles upward through a set of | ||
* bass boost modes or states. | ||
*/ | ||
AudioBassBoostUp = "AudioBassBoostUp", | ||
@@ -368,7 +562,17 @@ /** Increases the amount of bass. */ | ||
TVAudioDescription = "TVAudioDescription", | ||
/** Decreases trhe audio description's mixing volume; reduces the volume of the audio descriptions relative to the program sound. */ | ||
/** | ||
* Decreases trhe audio description's mixing volume; reduces the volume of | ||
* the audio descriptions relative to the program sound. | ||
*/ | ||
TVAudioDescriptionMixDown = "TVAudioDescriptionMixDown", | ||
/** Increases the audio description's mixing volume; increases the volume of the audio descriptions relative to the program sound. */ | ||
/** | ||
* Increases the audio description's mixing volume; increases the volume of | ||
* the audio descriptions relative to the program sound. | ||
*/ | ||
TVAudioDescriptionMixUp = "TVAudioDescriptionMixUp", | ||
/** Displays or hides the media contents available for playback (this may be a channel guide showing the currently airing programs, or a list of media files to play). */ | ||
/** | ||
* Displays or hides the media contents available for playback (this may be | ||
* a channel guide showing the currently airing programs, or a list of | ||
* media files to play). | ||
*/ | ||
TVContentsMenu = "TVContentsMenu", | ||
@@ -415,5 +619,11 @@ /** Displays or hides the TV's data service menu. */ | ||
TVSatelliteToggle = "TVSatelliteToggle", | ||
/** Selects analog terrestrial television service (analog cable or antenna reception). */ | ||
/** | ||
* Selects analog terrestrial television service (analog cable or antenna | ||
* reception). | ||
*/ | ||
TVTerrestrialAnalog = "TVTerrestrialAnalog", | ||
/** Selects digital terrestrial television service (digital cable or antenna receiption). */ | ||
/** | ||
* Selects digital terrestrial television service (digital cable or antenna | ||
* receiption). | ||
*/ | ||
TVTerrestrialDigital = "TVTerrestrialDigital", | ||
@@ -426,17 +636,38 @@ /** Timer programming button. */ | ||
AVRPower = "AVRPower", | ||
/** General-purpose media function key, color-coded red. This has index 0 among the colored keys. */ | ||
/** | ||
* General-purpose media function key, color-coded red. This has index | ||
* 0 among the colored keys. | ||
*/ | ||
ColorF0Red = "ColorF0Red", | ||
/** General-purpose media funciton key, color-coded green. This has index 1 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded green. This has index | ||
* 1 among the colored keys. | ||
*/ | ||
ColorF1Green = "ColorF1Green", | ||
/** General-purpose media funciton key, color-coded yellow. This has index 2 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded yellow. This has index | ||
* 2 among the colored keys. | ||
*/ | ||
ColorF2Yellow = "ColorF2Yellow", | ||
/** General-purpose media funciton key, color-coded blue. This has index 3 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded blue. This has index | ||
* 3 among the colored keys. | ||
*/ | ||
ColorF3Blue = "ColorF3Blue", | ||
/** General-purpose media funciton key, color-coded grey. This has index 4 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded grey. This has index | ||
* 4 among the colored keys. | ||
*/ | ||
ColorF4Grey = "ColorF4Grey", | ||
/** General-purpose media funciton key, color-coded brown. This has index 5 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded brown. This has index | ||
* 5 among the colored keys. | ||
*/ | ||
ColorF5Brown = "ColorF5Brown", | ||
/** Toggles closed captioning on and off. */ | ||
ClosedCaptionToggle = "ClosedCaptionToggle", | ||
/** Adjusts the brightness of the device by toggling between two brightness levels or by cycling among multiple brightness levels. */ | ||
/** | ||
* Adjusts the brightness of the device by toggling between two brightness | ||
* levels or by cycling among multiple brightness levels. | ||
*/ | ||
Dimmer = "Dimmer", | ||
@@ -457,27 +688,64 @@ /** Cycles among video sources. */ | ||
FavoriteClear3 = "FavoriteClear3", | ||
/** Selects (recalls) the program or content stored in the first favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the first favorites | ||
* list slot. | ||
*/ | ||
FavoriteRecall0 = "FavoriteRecall0", | ||
/** Selects (recalls) the program or content stored in the second favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the second favorites | ||
* list slot. | ||
*/ | ||
FavoriteRecall1 = "FavoriteRecall1", | ||
/** Selects (recalls) the program or content stored in the third favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the third favorites | ||
* list slot. | ||
*/ | ||
FavoriteRecall2 = "FavoriteRecall2", | ||
/** Selects (recalls) the program or content stored in the fourth favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the fourth favorites | ||
* list slot. | ||
*/ | ||
FavoriteRecall3 = "FavoriteRecall3", | ||
/** Stores the current program or content into the first favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the first favorites list | ||
* slot. | ||
*/ | ||
FavoriteStore0 = "FavoriteStore0", | ||
/** Stores the current program or content into the second favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the second favorites list | ||
* slot. | ||
*/ | ||
FavoriteStore1 = "FavoriteStore1", | ||
/** Stores the current program or content into the third favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the third favorites list | ||
* slot. | ||
*/ | ||
FavoriteStore2 = "FavoriteStore2", | ||
/** Stores the current program or content into the fourth favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the fourth favorites list | ||
* slot. | ||
*/ | ||
FavoriteStore3 = "FavoriteStore3", | ||
/** Toggles the display of the program or content guide. */ | ||
Guide = "Guide", | ||
/** If the guide is currently displayed, this button tells the guide to display the next day's content. */ | ||
/** | ||
* If the guide is currently displayed, this button tells the guide to | ||
* display the next day's content. | ||
*/ | ||
GuideNextDay = "GuideNextDay", | ||
/** If the guide is currently displayed, this button tells the guide to display the previous day's content. */ | ||
/** | ||
* If the guide is currently displayed, this button tells the guide to | ||
* display the previous day's content. | ||
*/ | ||
GuidePreviousDay = "GuidePreviousDay", | ||
/** Toggles the display of information about the currently selected content, program, or media. */ | ||
/** | ||
* Toggles the display of information about the currently selected content, | ||
* program, or media. | ||
*/ | ||
Info = "Info", | ||
/** Tells the device to perform an instant replay (typically some form of jumping back a short amount of time then playing it again, possibly but not usually in slow motion). */ | ||
/** | ||
* Tells the device to perform an instant replay (typically some form of | ||
* jumping back a short amount of time then playing it again, possibly but | ||
* not usually in slow motion). | ||
*/ | ||
InstantReplay = "InstantReplay", | ||
@@ -492,3 +760,6 @@ /** Opens content liniked to the current program, if available and possible. */ | ||
Lock = "Lock", | ||
/** Presents a list of media applications, such as photo viewers, audio and video players, and games. [1] */ | ||
/** | ||
* Presents a list of media applications, such as photo viewers, audio and | ||
* video players, and games. [1] | ||
*/ | ||
MediaApps = "MediaApps", | ||
@@ -507,3 +778,6 @@ /** The Audio Track key. */ | ||
MediaStepForward = "MediaStepForward", | ||
/** Top Menu button. Opens the media's main menu (e.g., for a DVD or Blu-Ray disc). */ | ||
/** | ||
* Top Menu button. Opens the media's main menu (e.g., for a DVD or Blu-Ray | ||
* disc). | ||
*/ | ||
MediaTopMenu = "MediaTopMenu", | ||
@@ -520,5 +794,11 @@ /** Navigates into a submenu or option. */ | ||
NextFavoriteChannel = "NextFavoriteChannel", | ||
/** Cycles to the next saved user profile, if this feature is supported and multiple profiles exist. */ | ||
/** | ||
* Cycles to the next saved user profile, if this feature is supported and | ||
* multiple profiles exist. | ||
*/ | ||
NextUserProfile = "NextUserProfile", | ||
/** Opens the user interface for selecting on demand content or programs to watch. */ | ||
/** | ||
* Opens the user interface for selecting on demand content or programs to | ||
* watch. | ||
*/ | ||
OnDemand = "OnDemand", | ||
@@ -543,9 +823,19 @@ /** Starts the process of pairing the remote with a device to be controlled. */ | ||
RandomToggle = "RandomToggle", | ||
/** A code sent when the remote control's battery is low. This doesn't actually correspond to a physical key at all. */ | ||
/** | ||
* A code sent when the remote control's battery is low. This doesn't | ||
* actually correspond to a physical key at all. | ||
*/ | ||
RcLowBattery = "RcLowBattery", | ||
/** Cycles among the available media recording speeds. */ | ||
RecordSpeedNext = "RecordSpeedNext", | ||
/** Toggles radio frequency (RF) input bypass mode on and off. RF bypass mode passes RF input directly to the RF output without any processing or filtering. */ | ||
/** | ||
* Toggles radio frequency (RF) input bypass mode on and off. RF bypass | ||
* mode passes RF input directly to the RF output without any processing or | ||
* filtering. | ||
*/ | ||
RfBypass = "RfBypass", | ||
/** Toggles the channel scan mode on and off. This is a mode which flips through channels automatically until the user stops the scan. */ | ||
/** | ||
* Toggles the channel scan mode on and off. This is a mode which flips | ||
* through channels automatically until the user stops the scan. | ||
*/ | ||
ScanChannelsToggle = "ScanChannelsToggle", | ||
@@ -564,13 +854,30 @@ /** Cycles through the available screen display modes. */ | ||
Subtitle = "Subtitle", | ||
/** Toggles display of teletext, if available. */ | ||
/** | ||
* Toggles display of teletext, | ||
* if available. | ||
*/ | ||
Teletext = "Teletext", | ||
/** Cycles through the available video modes. */ | ||
VideoModeNext = "VideoModeNext", | ||
/** Causes the device to identify itself in some fashion, such as by flashing a light, briefly changing the brightness of indicator lights, or emitting a tone. */ | ||
/** | ||
* Causes the device to identify itself in some fashion, such as by | ||
* flashing a light, briefly changing the brightness of indicator lights, | ||
* or emitting a tone. | ||
*/ | ||
Wink = "Wink", | ||
/** Toggles between full-screen and scaled content display, or otherwise change the magnification level. */ | ||
/** | ||
* Toggles between full-screen and scaled content display, or otherwise | ||
* change the magnification level. | ||
*/ | ||
ZoomToggle = "ZoomToggle", | ||
/** Presents a list of possible corrections for a word which was incorrectly identified. */ | ||
/** | ||
* Presents a list of possible corrections for a word which was incorrectly | ||
* identified. | ||
*/ | ||
SpeechCorrectionList = "SpeechCorrectionList", | ||
/** Toggles between dictation mode and command/control mode. This lets the speech engine know whether to interpret spoken words as input text or as commands. */ | ||
/** | ||
* Toggles between dictation mode and command/control mode. This lets the | ||
* speech engine know whether to interpret spoken words as input text or as | ||
* commands. | ||
*/ | ||
SpeechInputToggle = "SpeechInputToggle", | ||
@@ -595,3 +902,7 @@ /** Closes the current document or message. Must not exit the application. */ | ||
MailSend = "MailSend", | ||
/** The Calculator key, often labeled with an icon. This is often used as a generic application launcher key (APPCOMMAND_LAUNCH_APP2). */ | ||
/** | ||
* The Calculator key, often labeled with an icon. This is often | ||
* used as a generic application launcher key | ||
* (APPCOMMAND_LAUNCH_APP2). | ||
*/ | ||
LaunchCalculator = "LaunchCalculator", | ||
@@ -608,5 +919,12 @@ /** The Calendar key. Often labeled with an icon. */ | ||
LaunchMusicPlayer = "LaunchMusicPlayer", | ||
/** The My Computer key on Windows keyboards. This is often used as a generic application launcher key (APPCOMMAND_LAUNCH_APP1). */ | ||
/** | ||
* The My Computer key on Windows keyboards. This is often used | ||
* as a generic application launcher key | ||
* (APPCOMMAND_LAUNCH_APP1). | ||
*/ | ||
LaunchMyComputer = "LaunchMyComputer", | ||
/** The Phone key. Opens the phone dialer application (if one is present). */ | ||
/** | ||
* The Phone key. Opens the phone dialer application (if one is | ||
* present). | ||
*/ | ||
LaunchPhone = "LaunchPhone", | ||
@@ -617,7 +935,13 @@ /** The Screen Saver key. */ | ||
LaunchSpreadsheet = "LaunchSpreadsheet", | ||
/** The Web Browser key. This key is frequently labeled with an icon. */ | ||
/** | ||
* The Web Browser key. This key is frequently labeled with an | ||
* icon. | ||
*/ | ||
LaunchWebBrowser = "LaunchWebBrowser", | ||
/** The WebCam key. Opens the webcam application. */ | ||
LaunchWebCam = "LaunchWebCam", | ||
/** The Word Processor key. This may be an icon of a specific word processor application, or a generic document icon. */ | ||
/** | ||
* The Word Processor key. This may be an icon of a specific | ||
* word processor application, or a generic document icon. | ||
*/ | ||
LaunchWordProcessor = "LaunchWordProcessor", | ||
@@ -656,3 +980,6 @@ /** The first generic application launcher button. */ | ||
LaunchApplication16 = "LaunchApplication16", | ||
/** Navigates to the previous content or page in the current Web view's history. */ | ||
/** | ||
* Navigates to the previous content or page in the current Web view's | ||
* history. | ||
*/ | ||
BrowserBack = "BrowserBack", | ||
@@ -667,3 +994,6 @@ /** Opens the user's list of bookmarks/favorites. */ | ||
BrowserRefresh = "BrowserRefresh", | ||
/** Activates the user's preferred search engine or the search interface within their browser. */ | ||
/** | ||
* Activates the user's preferred search engine or the search interface | ||
* within their browser. | ||
*/ | ||
BrowserSearch = "BrowserSearch", | ||
@@ -673,4 +1003,6 @@ /** Stops loading the currently displayed Web view or content. */ | ||
/** | ||
* The decimal point key (typically . or , depending on the region). | ||
* In newer browsers, this value to be the character generated by the decimal key (one of those two characters). [1] | ||
* The decimal point key (typically . or | ||
* , depending on the region). | ||
* In newer browsers, this value to be the character generated by the | ||
* decimal key (one of those two characters). [1] | ||
*/ | ||
@@ -692,5 +1024,6 @@ Decimal = "Decimal", | ||
* The numeric keypad's places separator character. | ||
* (In the United States this is a comma, but elsewhere it is frequently a period.) | ||
* (In the United States this is a comma, but elsewhere it is frequently | ||
* a period.) | ||
*/ | ||
Separator = "Separator" | ||
} |
@@ -12,4 +12,6 @@ "use strict"; | ||
/** | ||
* The user agent wasn't able to map the event's virtual keycode to a specific key value. | ||
* This can happen due to hardware or software constraints, or because of constraints around the platform on which the user agent is running. | ||
* The user agent wasn't able to map the event's virtual keycode to a | ||
* specific key value. | ||
* This can happen due to hardware or software constraints, or because of | ||
* constraints around the platform on which the user agent is running. | ||
*/ | ||
@@ -19,21 +21,54 @@ Key["Unidentified"] = "Unidentified"; | ||
Key["Alt"] = "Alt"; | ||
/** The AltGr or AltGraph (Alternate Graphics) key. Enables the ISO Level 3 shift modifier (where Shift is the level 2 modifier). */ | ||
/** | ||
* The AltGr or AltGraph (Alternate Graphics) key. | ||
* Enables the ISO Level 3 shift modifier (where Shift is the | ||
* level 2 modifier). | ||
*/ | ||
Key["AltGraph"] = "AltGraph"; | ||
/** The Caps Lock key. Toggles the capital character lock on and off for subsequent input. */ | ||
/** | ||
* The Caps Lock key. Toggles the capital character lock on and | ||
* off for subsequent input. | ||
*/ | ||
Key["CapsLock"] = "CapsLock"; | ||
/** The Control, Ctrl, or Ctl key. Allows typing control characters. */ | ||
/** | ||
* The Control, Ctrl, or Ctl key. Allows | ||
* typing control characters. | ||
*/ | ||
Key["Control"] = "Control"; | ||
/** The Fn (Function modifier) key. Used to allow generating function key (F1–F15, for instance) characters on keyboards without a dedicated function key area. Often handled in hardware so that events aren't generated for this key. */ | ||
/** | ||
* The Fn (Function modifier) key. Used to allow generating | ||
* function key (F1–F15, for instance) characters on | ||
* keyboards without a dedicated function key area. Often handled in | ||
* hardware so that events aren't generated for this key. | ||
*/ | ||
Key["Fn"] = "Fn"; | ||
/** The FnLock or F-Lock (Function Lock) key.Toggles the function key mode described by "Fn" on and off. Often handled in hardware so that events aren't generated for this key. */ | ||
/** | ||
* The FnLock or F-Lock (Function Lock) key.Toggles | ||
* the function key mode described by "Fn" on and off. Often | ||
* handled in hardware so that events aren't generated for this key. | ||
*/ | ||
Key["FnLock"] = "FnLock"; | ||
/** The Hyper key. */ | ||
Key["Hyper"] = "Hyper"; | ||
/** The Meta key. Allows issuing special command inputs. This is the Windows logo key, or the Command or ⌘ key on Mac keyboards. */ | ||
/** | ||
* The Meta key. Allows issuing special command inputs. This is | ||
* the Windows logo key, or the Command or | ||
* ⌘ key on Mac keyboards. | ||
*/ | ||
Key["Meta"] = "Meta"; | ||
/** The NumLock (Number Lock) key. Toggles the numeric keypad between number entry some other mode (often directional arrows). */ | ||
/** | ||
* The NumLock (Number Lock) key. Toggles the numeric keypad | ||
* between number entry some other mode (often directional arrows). | ||
*/ | ||
Key["NumLock"] = "NumLock"; | ||
/** The Scroll Lock key. Toggles between scrolling and cursor movement modes. */ | ||
/** | ||
* The Scroll Lock key. Toggles between scrolling and cursor | ||
* movement modes. | ||
*/ | ||
Key["ScrollLock"] = "ScrollLock"; | ||
/** The Shift key. Modifies keystrokes to allow typing upper (or other) case letters, and to support typing punctuation and other special characters. */ | ||
/** | ||
* The Shift key. Modifies keystrokes to allow typing upper (or | ||
* other) case letters, and to support typing punctuation and other special | ||
* characters. | ||
*/ | ||
Key["Shift"] = "Shift"; | ||
@@ -46,3 +81,6 @@ /** The Super key. */ | ||
Key["SymbolLock"] = "SymbolLock"; | ||
/** The Enter or ↵ key (sometimes labeled Return). */ | ||
/** | ||
* The Enter or ↵ key (sometimes labeled | ||
* Return). | ||
*/ | ||
Key["Enter"] = "Enter"; | ||
@@ -63,7 +101,16 @@ /** The Horizontal Tab key, Tab. */ | ||
Key["Home"] = "Home"; | ||
/** The Page Down (or PgDn) key. Scrolls down or displays the next page of content. */ | ||
/** | ||
* The Page Down (or PgDn) key. Scrolls down or | ||
* displays the next page of content. | ||
*/ | ||
Key["PageDown"] = "PageDown"; | ||
/** The Page Up (or PgUp) key. Scrolls up or displays the previous page of content. */ | ||
/** | ||
* The Page Up (or PgUp) key. Scrolls up or displays | ||
* the previous page of content. | ||
*/ | ||
Key["PageUp"] = "PageUp"; | ||
/** The Backspace key. This key is labeled Delete on Mac keyboards. */ | ||
/** | ||
* The Backspace key. This key is labeled Delete on | ||
* Mac keyboards. | ||
*/ | ||
Key["Backspace"] = "Backspace"; | ||
@@ -80,7 +127,13 @@ /** The Clear key. Removes the currently selected input. */ | ||
Key["Delete"] = "Delete"; | ||
/** Erase to End of Field. Deletes all characters from the current cursor position to the end of the current field. */ | ||
/** | ||
* Erase to End of Field. Deletes all characters from the current cursor | ||
* position to the end of the current field. | ||
*/ | ||
Key["EraseEof"] = "EraseEof"; | ||
/** The ExSel (Extend Selection) key. */ | ||
Key["ExSel"] = "ExSel"; | ||
/** The Insert key, Ins. Toggles between inserting and overwriting text. */ | ||
/** | ||
* The Insert key, Ins. Toggles between inserting and | ||
* overwriting text. | ||
*/ | ||
Key["Insert"] = "Insert"; | ||
@@ -93,3 +146,7 @@ /** Paste from the clipboard. */ | ||
Key["Undo"] = "Undo"; | ||
/** The Accept, Commit, or OK key or button. Accepts the currently selected option or input method sequence conversion. */ | ||
/** | ||
* The Accept, Commit, or OK key or | ||
* button. Accepts the currently selected option or input method sequence | ||
* conversion. | ||
*/ | ||
Key["Accept"] = "Accept"; | ||
@@ -102,22 +159,43 @@ /** The Again key. Redoes or repeats a previous action. */ | ||
Key["Cancel"] = "Cancel"; | ||
/** Shows the context menu. Typically found between the Windows (or OS) key and the Control key on the right side of the keyboard. */ | ||
/** | ||
* Shows the context menu. Typically found between the | ||
* Windows (or OS) key and the Control key | ||
* on the right side of the keyboard. | ||
*/ | ||
Key["ContextMenu"] = "ContextMenu"; | ||
/** The Esc (Escape) key. Typically used as an exit, cancel, or "escape this operation" button. Historically, the Escape character was used to signal the start of a special control sequence of characters called an "escape sequence." */ | ||
/** | ||
* The Esc (Escape) key. Typically used as an exit, cancel, or | ||
* "escape this operation" button. Historically, the Escape character was | ||
* used to signal the start of a special control sequence of characters | ||
* called an "escape sequence." | ||
*/ | ||
Key["Escape"] = "Escape"; | ||
/** The Execute key. */ | ||
Key["Execute"] = "Execute"; | ||
/** The Find key. Opens an interface (typically a dialog box) for performing a find/search operation. */ | ||
/** | ||
* The Find key. Opens an interface (typically a dialog box) for | ||
* performing a find/search operation. | ||
*/ | ||
Key["Find"] = "Find"; | ||
/** The Finish key. */ | ||
Key["Finish"] = "Finish"; | ||
/** The Help key. Opens or toggles the display of help information. */ | ||
/** | ||
* The Help key. Opens or toggles the display of help | ||
* information. | ||
*/ | ||
Key["Help"] = "Help"; | ||
/** | ||
* The Pause key. Pauses the current application or state, if applicable. | ||
* Note: This shouldn't be confused with the "MediaPause" key value, which is used for media controllers, rather than to control applications and processes. | ||
* The Pause key. Pauses the current application or state, if | ||
* applicable. | ||
* Note: This shouldn't be confused with the | ||
* "MediaPause" key value, which is used for media | ||
* controllers, rather than to control applications and processes. | ||
*/ | ||
Key["Pause"] = "Pause"; | ||
/** | ||
* The Play key. Resumes a previously paused application, if applicable. | ||
* Note: This shouldn't be confused with the "MediaPlay" key value, which is used for media controllers, rather than to control applications and processes. | ||
* The Play key. Resumes a previously paused application, if | ||
* applicable. | ||
* Note: This shouldn't be confused with the | ||
* "MediaPlay" key value, which is used for media | ||
* controllers, rather than to control applications and processes. | ||
*/ | ||
@@ -133,7 +211,16 @@ Key["Play"] = "Play"; | ||
Key["ZoomOut"] = "ZoomOut"; | ||
/** The Brightness Down key. Typically used to reduce the brightness of the display. */ | ||
/** | ||
* The Brightness Down key. Typically used to reduce the brightness of the | ||
* display. | ||
*/ | ||
Key["BrightnessDown"] = "BrightnessDown"; | ||
/** The Brightness Up key. Typically increases the brightness of the display. */ | ||
/** | ||
* The Brightness Up key. Typically increases the brightness of the | ||
* display. | ||
*/ | ||
Key["BrightnessUp"] = "BrightnessUp"; | ||
/** The Eject key. Ejects removable media (or toggles an optical storage device tray open and closed). */ | ||
/** | ||
* The Eject key. Ejects removable media (or toggles an optical | ||
* storage device tray open and closed). | ||
*/ | ||
Key["Eject"] = "Eject"; | ||
@@ -144,59 +231,137 @@ /** The LogOff key. */ | ||
* The Power button or key, to toggle power on and off. | ||
* Note: Not all systems pass this key through to the user agent. | ||
* Note: Not all systems pass this key through to the | ||
* user agent. | ||
*/ | ||
Key["Power"] = "Power"; | ||
/** The PowerOff or PowerDown key. Shuts off the system. */ | ||
/** | ||
* The PowerOff or PowerDown key. Shuts off the | ||
* system. | ||
*/ | ||
Key["PowerOff"] = "PowerOff"; | ||
/** The PrintScreen or PrtScr key. Sometimes SnapShot. Captures the screen and prints it or saves it to disk. */ | ||
/** | ||
* The PrintScreen or PrtScr key. Sometimes | ||
* SnapShot. Captures the screen and prints it or saves it to | ||
* disk. | ||
*/ | ||
Key["PrintScreen"] = "PrintScreen"; | ||
/** The Hibernate key. This saves the state of the computer to disk and then shuts down; the computer can be returned to its previous state by restoring the saved state information. */ | ||
/** | ||
* The Hibernate key. This saves the state of the computer to | ||
* disk and then shuts down; the computer can be returned to its previous | ||
* state by restoring the saved state information. | ||
*/ | ||
Key["Hibernate"] = "Hibernate"; | ||
/** The Standby key. (Also known as Suspend or Sleep.) This turns off the display and puts the computer in a low power consumption mode, without completely powering off. */ | ||
/** | ||
* The Standby key. (Also known as Suspend or | ||
* Sleep.) This turns off the display and puts the computer in a | ||
* low power consumption mode, without completely powering off. | ||
*/ | ||
Key["Standby"] = "Standby"; | ||
/** The WakeUp key. Used to wake the computer from the hibernation or standby modes. */ | ||
/** | ||
* The WakeUp key. Used to wake the computer from the | ||
* hibernation or standby modes. | ||
*/ | ||
Key["WakeUp"] = "WakeUp"; | ||
/** The All Candidates key, which starts multi-candidate mode, in which multiple candidates are displayed for the ongoing input. */ | ||
/** | ||
* The All Candidates key, which starts multi-candidate mode, in | ||
* which multiple candidates are displayed for the ongoing input. | ||
*/ | ||
Key["AllCandidates"] = "AllCandidates"; | ||
/** The Alphanumeric key. */ | ||
Key["Alphanumeric"] = "Alphanumeric"; | ||
/** The Code Input key, which enables code input mode, which lets the user enter characters by typing their code points (their Unicode character numbers, typically). */ | ||
/** | ||
* The Code Input key, which enables code input mode, which lets | ||
* the user enter characters by typing their code points (their Unicode | ||
* character numbers, typically). | ||
*/ | ||
Key["CodeInput"] = "CodeInput"; | ||
/** The Compose key. */ | ||
Key["Compose"] = "Compose"; | ||
/** The Convert key, which instructs the IME to convert the current input method sequence into the resulting character. */ | ||
/** | ||
* The Convert key, which instructs the IME to convert the | ||
* current input method sequence into the resulting character. | ||
*/ | ||
Key["Convert"] = "Convert"; | ||
/** | ||
* A dead "combining" key; that is, a key which is used in tandem with other keys to generate accented and other modified characters. If pressed by itself, it doesn't generate a character. | ||
* If you wish to identify which specific dead key was pressed (in cases where more than one exists), you can do so by examining the KeyboardEvent's associated compositionupdate event's data property. | ||
* A dead "combining" key; that is, a key which is used in tandem with | ||
* other keys to generate accented and other modified characters. If | ||
* pressed by itself, it doesn't generate a character. | ||
* If you wish to identify which specific dead key was pressed (in cases | ||
* where more than one exists), you can do so by examining the | ||
* KeyboardEvent's associated | ||
* compositionupdate event's | ||
* data property. | ||
*/ | ||
Key["Dead"] = "Dead"; | ||
/** The Final (Final Mode) key is used on some Asian keyboards to enter final mode when using IMEs. */ | ||
/** | ||
* The Final (Final Mode) key is used on some Asian keyboards to | ||
* enter final mode when using IMEs. | ||
*/ | ||
Key["FinalMode"] = "FinalMode"; | ||
/** Switches to the first character group on an ISO/IEC 9995 keyboard. Each key may have multiple groups of characters, each in its own column. Pressing this key instructs the device to interpret keypresses as coming from the first column on subsequent keystrokes. */ | ||
/** | ||
* Switches to the first character group on an | ||
* ISO/IEC 9995 keyboard. Each key may have multiple groups of characters, each in its own | ||
* column. Pressing this key instructs the device to interpret keypresses | ||
* as coming from the first column on subsequent keystrokes. | ||
*/ | ||
Key["GroupFirst"] = "GroupFirst"; | ||
/** Switches to the last character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the last character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
Key["GroupLast"] = "GroupLast"; | ||
/** Switches to the next character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the next character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
Key["GroupNext"] = "GroupNext"; | ||
/** Switches to the previous character group on an ISO/IEC 9995 keyboard. */ | ||
/** | ||
* Switches to the previous character group on an | ||
* ISO/IEC 9995 keyboard. | ||
*/ | ||
Key["GroupPrevious"] = "GroupPrevious"; | ||
/** The Mode Change key. Toggles or cycles among input modes of IMEs. */ | ||
Key["ModeChange"] = "ModeChange"; | ||
/** The Next Candidate function key. Selects the next possible match for the ongoing input. */ | ||
/** | ||
* The Next Candidate function key. Selects the next possible match for the | ||
* ongoing input. | ||
*/ | ||
Key["NextCandidate"] = "NextCandidate"; | ||
/** The NonConvert ("Don't convert") key. This accepts the current input method sequence without running conversion when using an IME. */ | ||
/** | ||
* The NonConvert ("Don't convert") key. This accepts the | ||
* current input method sequence without running conversion when using an | ||
* IME. | ||
*/ | ||
Key["NonConvert"] = "NonConvert"; | ||
/** The Previous Candidate key. Selects the previous possible match for the ongoing input. */ | ||
/** | ||
* The Previous Candidate key. Selects the previous possible match for the | ||
* ongoing input. | ||
*/ | ||
Key["PreviousCandidate"] = "PreviousCandidate"; | ||
/** The Process key. Instructs the IME to process the conversion. */ | ||
Key["Process"] = "Process"; | ||
/** The Single Candidate key. Enables single candidate mode (as opposed to multi-candidate mode); in this mode, only one candidate is displayed at a time. */ | ||
/** | ||
* The Single Candidate key. Enables single candidate mode (as opposed to | ||
* multi-candidate mode); in this mode, only one candidate is displayed at | ||
* a time. | ||
*/ | ||
Key["SingleCandidate"] = "SingleCandidate"; | ||
/** The Hangul (Korean character set) mode key, which toggles between Hangul and English entry modes. */ | ||
/** | ||
* The Hangul (Korean character set) mode key, which toggles | ||
* between Hangul and English entry modes. | ||
*/ | ||
Key["HangulMode"] = "HangulMode"; | ||
/** Selects the Hanja mode, for converting Hangul characters to the more specific Hanja characters. */ | ||
/** | ||
* Selects the Hanja mode, for converting Hangul characters to the more | ||
* specific Hanja characters. | ||
*/ | ||
Key["HanjaMode"] = "HanjaMode"; | ||
/** Selects the Junja mode, in which Korean is represented using single-byte Latin characters. */ | ||
/** | ||
* Selects the Junja mode, in which Korean is represented using single-byte | ||
* Latin characters. | ||
*/ | ||
Key["JunjaMode"] = "JunjaMode"; | ||
/** The Eisu key. This key's purpose is defined by the IME, but may be used to close the IME. */ | ||
/** | ||
* The Eisu key. This key's purpose is defined by the IME, but | ||
* may be used to close the IME. | ||
*/ | ||
Key["Eisu"] = "Eisu"; | ||
@@ -211,3 +376,6 @@ /** The Hankaku (half-width characters) key. */ | ||
Key["KanaMode"] = "KanaMode"; | ||
/** The Kanji Mode key. Enables entering Japanese text using the ideographic characters of Chinese origin. */ | ||
/** | ||
* The Kanji Mode key. Enables entering Japanese text using the | ||
* ideographic characters of Chinese origin. | ||
*/ | ||
Key["KanjiMode"] = "KanjiMode"; | ||
@@ -270,3 +438,6 @@ /** The Katakana key. */ | ||
Key["Soft4"] = "Soft4"; | ||
/** Presents a list of recently-used applications which lets the user change apps quickly. */ | ||
/** | ||
* Presents a list of recently-used applications which lets the user change | ||
* apps quickly. | ||
*/ | ||
Key["AppSwitch"] = "AppSwitch"; | ||
@@ -283,5 +454,11 @@ /** The Call key. Dials the number which has been entered. */ | ||
Key["GoBack"] = "GoBack"; | ||
/** The Home button. Returns the user to the phone's main screen (usually an application launcher). */ | ||
/** | ||
* The Home button. Returns the user to the phone's main screen | ||
* (usually an application launcher). | ||
*/ | ||
Key["GoHome"] = "GoHome"; | ||
/** The Headset Hook key. This is typically actually a button on the headset which is used to hang up calls and play or pause media. */ | ||
/** | ||
* The Headset Hook key. This is typically actually a button on | ||
* the headset which is used to hang up calls and play or pause media. | ||
*/ | ||
Key["HeadsetHook"] = "HeadsetHook"; | ||
@@ -292,3 +469,6 @@ /** The Redial button. Redials the last-called number. */ | ||
Key["Notification"] = "Notification"; | ||
/** A button which cycles among the notification modes: silent, vibrate, ring, and so forth. */ | ||
/** | ||
* A button which cycles among the notification modes: silent, vibrate, | ||
* ring, and so forth. | ||
*/ | ||
Key["MannerMode"] = "MannerMode"; | ||
@@ -305,6 +485,10 @@ /** The Voice Dial key. Initiates voice dialing. */ | ||
* Pauses the currently playing media. | ||
* Note: Some older applications use "Pause", but this is not correct. | ||
* Note: Some older applications use | ||
* "Pause", but this is not correct. | ||
*/ | ||
Key["MediaPause"] = "MediaPause"; | ||
/** Starts or continues playing media at normal speed, if not already doing so. Has no effect otherwise. */ | ||
/** | ||
* Starts or continues playing media at normal speed, if not already doing | ||
* so. Has no effect otherwise. | ||
*/ | ||
Key["MediaPlay"] = "MediaPlay"; | ||
@@ -317,3 +501,7 @@ /** Toggles between playing and pausing the current media. */ | ||
Key["MediaRewind"] = "MediaRewind"; | ||
/** Stops the current media activity (such as playing, recording, pausing, forwarding, or rewinding). Has no effect if the media is currently stopped already. */ | ||
/** | ||
* Stops the current media activity (such as playing, recording, pausing, | ||
* forwarding, or rewinding). Has no effect if the media is currently | ||
* stopped already. | ||
*/ | ||
Key["MediaStop"] = "MediaStop"; | ||
@@ -330,7 +518,13 @@ /** Seeks to the next media or program track. */ | ||
Key["AudioBassDown"] = "AudioBassDown"; | ||
/** Reduces bass boosting or cycles downward through bass boost modes or states. */ | ||
/** | ||
* Reduces bass boosting or cycles downward through bass boost modes or | ||
* states. | ||
*/ | ||
Key["AudioBassBoostDown"] = "AudioBassBoostDown"; | ||
/** Toggles bass boosting on and off. */ | ||
Key["AudioBassBoostToggle"] = "AudioBassBoostToggle"; | ||
/** Increases the amoung of bass boosting, or cycles upward through a set of bass boost modes or states. */ | ||
/** | ||
* Increases the amoung of bass boosting, or cycles upward through a set of | ||
* bass boost modes or states. | ||
*/ | ||
Key["AudioBassBoostUp"] = "AudioBassBoostUp"; | ||
@@ -371,7 +565,17 @@ /** Increases the amount of bass. */ | ||
Key["TVAudioDescription"] = "TVAudioDescription"; | ||
/** Decreases trhe audio description's mixing volume; reduces the volume of the audio descriptions relative to the program sound. */ | ||
/** | ||
* Decreases trhe audio description's mixing volume; reduces the volume of | ||
* the audio descriptions relative to the program sound. | ||
*/ | ||
Key["TVAudioDescriptionMixDown"] = "TVAudioDescriptionMixDown"; | ||
/** Increases the audio description's mixing volume; increases the volume of the audio descriptions relative to the program sound. */ | ||
/** | ||
* Increases the audio description's mixing volume; increases the volume of | ||
* the audio descriptions relative to the program sound. | ||
*/ | ||
Key["TVAudioDescriptionMixUp"] = "TVAudioDescriptionMixUp"; | ||
/** Displays or hides the media contents available for playback (this may be a channel guide showing the currently airing programs, or a list of media files to play). */ | ||
/** | ||
* Displays or hides the media contents available for playback (this may be | ||
* a channel guide showing the currently airing programs, or a list of | ||
* media files to play). | ||
*/ | ||
Key["TVContentsMenu"] = "TVContentsMenu"; | ||
@@ -418,5 +622,11 @@ /** Displays or hides the TV's data service menu. */ | ||
Key["TVSatelliteToggle"] = "TVSatelliteToggle"; | ||
/** Selects analog terrestrial television service (analog cable or antenna reception). */ | ||
/** | ||
* Selects analog terrestrial television service (analog cable or antenna | ||
* reception). | ||
*/ | ||
Key["TVTerrestrialAnalog"] = "TVTerrestrialAnalog"; | ||
/** Selects digital terrestrial television service (digital cable or antenna receiption). */ | ||
/** | ||
* Selects digital terrestrial television service (digital cable or antenna | ||
* receiption). | ||
*/ | ||
Key["TVTerrestrialDigital"] = "TVTerrestrialDigital"; | ||
@@ -429,17 +639,38 @@ /** Timer programming button. */ | ||
Key["AVRPower"] = "AVRPower"; | ||
/** General-purpose media function key, color-coded red. This has index 0 among the colored keys. */ | ||
/** | ||
* General-purpose media function key, color-coded red. This has index | ||
* 0 among the colored keys. | ||
*/ | ||
Key["ColorF0Red"] = "ColorF0Red"; | ||
/** General-purpose media funciton key, color-coded green. This has index 1 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded green. This has index | ||
* 1 among the colored keys. | ||
*/ | ||
Key["ColorF1Green"] = "ColorF1Green"; | ||
/** General-purpose media funciton key, color-coded yellow. This has index 2 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded yellow. This has index | ||
* 2 among the colored keys. | ||
*/ | ||
Key["ColorF2Yellow"] = "ColorF2Yellow"; | ||
/** General-purpose media funciton key, color-coded blue. This has index 3 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded blue. This has index | ||
* 3 among the colored keys. | ||
*/ | ||
Key["ColorF3Blue"] = "ColorF3Blue"; | ||
/** General-purpose media funciton key, color-coded grey. This has index 4 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded grey. This has index | ||
* 4 among the colored keys. | ||
*/ | ||
Key["ColorF4Grey"] = "ColorF4Grey"; | ||
/** General-purpose media funciton key, color-coded brown. This has index 5 among the colored keys. */ | ||
/** | ||
* General-purpose media funciton key, color-coded brown. This has index | ||
* 5 among the colored keys. | ||
*/ | ||
Key["ColorF5Brown"] = "ColorF5Brown"; | ||
/** Toggles closed captioning on and off. */ | ||
Key["ClosedCaptionToggle"] = "ClosedCaptionToggle"; | ||
/** Adjusts the brightness of the device by toggling between two brightness levels or by cycling among multiple brightness levels. */ | ||
/** | ||
* Adjusts the brightness of the device by toggling between two brightness | ||
* levels or by cycling among multiple brightness levels. | ||
*/ | ||
Key["Dimmer"] = "Dimmer"; | ||
@@ -460,27 +691,64 @@ /** Cycles among video sources. */ | ||
Key["FavoriteClear3"] = "FavoriteClear3"; | ||
/** Selects (recalls) the program or content stored in the first favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the first favorites | ||
* list slot. | ||
*/ | ||
Key["FavoriteRecall0"] = "FavoriteRecall0"; | ||
/** Selects (recalls) the program or content stored in the second favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the second favorites | ||
* list slot. | ||
*/ | ||
Key["FavoriteRecall1"] = "FavoriteRecall1"; | ||
/** Selects (recalls) the program or content stored in the third favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the third favorites | ||
* list slot. | ||
*/ | ||
Key["FavoriteRecall2"] = "FavoriteRecall2"; | ||
/** Selects (recalls) the program or content stored in the fourth favorites list slot. */ | ||
/** | ||
* Selects (recalls) the program or content stored in the fourth favorites | ||
* list slot. | ||
*/ | ||
Key["FavoriteRecall3"] = "FavoriteRecall3"; | ||
/** Stores the current program or content into the first favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the first favorites list | ||
* slot. | ||
*/ | ||
Key["FavoriteStore0"] = "FavoriteStore0"; | ||
/** Stores the current program or content into the second favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the second favorites list | ||
* slot. | ||
*/ | ||
Key["FavoriteStore1"] = "FavoriteStore1"; | ||
/** Stores the current program or content into the third favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the third favorites list | ||
* slot. | ||
*/ | ||
Key["FavoriteStore2"] = "FavoriteStore2"; | ||
/** Stores the current program or content into the fourth favorites list slot. */ | ||
/** | ||
* Stores the current program or content into the fourth favorites list | ||
* slot. | ||
*/ | ||
Key["FavoriteStore3"] = "FavoriteStore3"; | ||
/** Toggles the display of the program or content guide. */ | ||
Key["Guide"] = "Guide"; | ||
/** If the guide is currently displayed, this button tells the guide to display the next day's content. */ | ||
/** | ||
* If the guide is currently displayed, this button tells the guide to | ||
* display the next day's content. | ||
*/ | ||
Key["GuideNextDay"] = "GuideNextDay"; | ||
/** If the guide is currently displayed, this button tells the guide to display the previous day's content. */ | ||
/** | ||
* If the guide is currently displayed, this button tells the guide to | ||
* display the previous day's content. | ||
*/ | ||
Key["GuidePreviousDay"] = "GuidePreviousDay"; | ||
/** Toggles the display of information about the currently selected content, program, or media. */ | ||
/** | ||
* Toggles the display of information about the currently selected content, | ||
* program, or media. | ||
*/ | ||
Key["Info"] = "Info"; | ||
/** Tells the device to perform an instant replay (typically some form of jumping back a short amount of time then playing it again, possibly but not usually in slow motion). */ | ||
/** | ||
* Tells the device to perform an instant replay (typically some form of | ||
* jumping back a short amount of time then playing it again, possibly but | ||
* not usually in slow motion). | ||
*/ | ||
Key["InstantReplay"] = "InstantReplay"; | ||
@@ -495,3 +763,6 @@ /** Opens content liniked to the current program, if available and possible. */ | ||
Key["Lock"] = "Lock"; | ||
/** Presents a list of media applications, such as photo viewers, audio and video players, and games. [1] */ | ||
/** | ||
* Presents a list of media applications, such as photo viewers, audio and | ||
* video players, and games. [1] | ||
*/ | ||
Key["MediaApps"] = "MediaApps"; | ||
@@ -510,3 +781,6 @@ /** The Audio Track key. */ | ||
Key["MediaStepForward"] = "MediaStepForward"; | ||
/** Top Menu button. Opens the media's main menu (e.g., for a DVD or Blu-Ray disc). */ | ||
/** | ||
* Top Menu button. Opens the media's main menu (e.g., for a DVD or Blu-Ray | ||
* disc). | ||
*/ | ||
Key["MediaTopMenu"] = "MediaTopMenu"; | ||
@@ -523,5 +797,11 @@ /** Navigates into a submenu or option. */ | ||
Key["NextFavoriteChannel"] = "NextFavoriteChannel"; | ||
/** Cycles to the next saved user profile, if this feature is supported and multiple profiles exist. */ | ||
/** | ||
* Cycles to the next saved user profile, if this feature is supported and | ||
* multiple profiles exist. | ||
*/ | ||
Key["NextUserProfile"] = "NextUserProfile"; | ||
/** Opens the user interface for selecting on demand content or programs to watch. */ | ||
/** | ||
* Opens the user interface for selecting on demand content or programs to | ||
* watch. | ||
*/ | ||
Key["OnDemand"] = "OnDemand"; | ||
@@ -546,9 +826,19 @@ /** Starts the process of pairing the remote with a device to be controlled. */ | ||
Key["RandomToggle"] = "RandomToggle"; | ||
/** A code sent when the remote control's battery is low. This doesn't actually correspond to a physical key at all. */ | ||
/** | ||
* A code sent when the remote control's battery is low. This doesn't | ||
* actually correspond to a physical key at all. | ||
*/ | ||
Key["RcLowBattery"] = "RcLowBattery"; | ||
/** Cycles among the available media recording speeds. */ | ||
Key["RecordSpeedNext"] = "RecordSpeedNext"; | ||
/** Toggles radio frequency (RF) input bypass mode on and off. RF bypass mode passes RF input directly to the RF output without any processing or filtering. */ | ||
/** | ||
* Toggles radio frequency (RF) input bypass mode on and off. RF bypass | ||
* mode passes RF input directly to the RF output without any processing or | ||
* filtering. | ||
*/ | ||
Key["RfBypass"] = "RfBypass"; | ||
/** Toggles the channel scan mode on and off. This is a mode which flips through channels automatically until the user stops the scan. */ | ||
/** | ||
* Toggles the channel scan mode on and off. This is a mode which flips | ||
* through channels automatically until the user stops the scan. | ||
*/ | ||
Key["ScanChannelsToggle"] = "ScanChannelsToggle"; | ||
@@ -567,13 +857,30 @@ /** Cycles through the available screen display modes. */ | ||
Key["Subtitle"] = "Subtitle"; | ||
/** Toggles display of teletext, if available. */ | ||
/** | ||
* Toggles display of teletext, | ||
* if available. | ||
*/ | ||
Key["Teletext"] = "Teletext"; | ||
/** Cycles through the available video modes. */ | ||
Key["VideoModeNext"] = "VideoModeNext"; | ||
/** Causes the device to identify itself in some fashion, such as by flashing a light, briefly changing the brightness of indicator lights, or emitting a tone. */ | ||
/** | ||
* Causes the device to identify itself in some fashion, such as by | ||
* flashing a light, briefly changing the brightness of indicator lights, | ||
* or emitting a tone. | ||
*/ | ||
Key["Wink"] = "Wink"; | ||
/** Toggles between full-screen and scaled content display, or otherwise change the magnification level. */ | ||
/** | ||
* Toggles between full-screen and scaled content display, or otherwise | ||
* change the magnification level. | ||
*/ | ||
Key["ZoomToggle"] = "ZoomToggle"; | ||
/** Presents a list of possible corrections for a word which was incorrectly identified. */ | ||
/** | ||
* Presents a list of possible corrections for a word which was incorrectly | ||
* identified. | ||
*/ | ||
Key["SpeechCorrectionList"] = "SpeechCorrectionList"; | ||
/** Toggles between dictation mode and command/control mode. This lets the speech engine know whether to interpret spoken words as input text or as commands. */ | ||
/** | ||
* Toggles between dictation mode and command/control mode. This lets the | ||
* speech engine know whether to interpret spoken words as input text or as | ||
* commands. | ||
*/ | ||
Key["SpeechInputToggle"] = "SpeechInputToggle"; | ||
@@ -598,3 +905,7 @@ /** Closes the current document or message. Must not exit the application. */ | ||
Key["MailSend"] = "MailSend"; | ||
/** The Calculator key, often labeled with an icon. This is often used as a generic application launcher key (APPCOMMAND_LAUNCH_APP2). */ | ||
/** | ||
* The Calculator key, often labeled with an icon. This is often | ||
* used as a generic application launcher key | ||
* (APPCOMMAND_LAUNCH_APP2). | ||
*/ | ||
Key["LaunchCalculator"] = "LaunchCalculator"; | ||
@@ -611,5 +922,12 @@ /** The Calendar key. Often labeled with an icon. */ | ||
Key["LaunchMusicPlayer"] = "LaunchMusicPlayer"; | ||
/** The My Computer key on Windows keyboards. This is often used as a generic application launcher key (APPCOMMAND_LAUNCH_APP1). */ | ||
/** | ||
* The My Computer key on Windows keyboards. This is often used | ||
* as a generic application launcher key | ||
* (APPCOMMAND_LAUNCH_APP1). | ||
*/ | ||
Key["LaunchMyComputer"] = "LaunchMyComputer"; | ||
/** The Phone key. Opens the phone dialer application (if one is present). */ | ||
/** | ||
* The Phone key. Opens the phone dialer application (if one is | ||
* present). | ||
*/ | ||
Key["LaunchPhone"] = "LaunchPhone"; | ||
@@ -620,7 +938,13 @@ /** The Screen Saver key. */ | ||
Key["LaunchSpreadsheet"] = "LaunchSpreadsheet"; | ||
/** The Web Browser key. This key is frequently labeled with an icon. */ | ||
/** | ||
* The Web Browser key. This key is frequently labeled with an | ||
* icon. | ||
*/ | ||
Key["LaunchWebBrowser"] = "LaunchWebBrowser"; | ||
/** The WebCam key. Opens the webcam application. */ | ||
Key["LaunchWebCam"] = "LaunchWebCam"; | ||
/** The Word Processor key. This may be an icon of a specific word processor application, or a generic document icon. */ | ||
/** | ||
* The Word Processor key. This may be an icon of a specific | ||
* word processor application, or a generic document icon. | ||
*/ | ||
Key["LaunchWordProcessor"] = "LaunchWordProcessor"; | ||
@@ -659,3 +983,6 @@ /** The first generic application launcher button. */ | ||
Key["LaunchApplication16"] = "LaunchApplication16"; | ||
/** Navigates to the previous content or page in the current Web view's history. */ | ||
/** | ||
* Navigates to the previous content or page in the current Web view's | ||
* history. | ||
*/ | ||
Key["BrowserBack"] = "BrowserBack"; | ||
@@ -670,3 +997,6 @@ /** Opens the user's list of bookmarks/favorites. */ | ||
Key["BrowserRefresh"] = "BrowserRefresh"; | ||
/** Activates the user's preferred search engine or the search interface within their browser. */ | ||
/** | ||
* Activates the user's preferred search engine or the search interface | ||
* within their browser. | ||
*/ | ||
Key["BrowserSearch"] = "BrowserSearch"; | ||
@@ -676,4 +1006,6 @@ /** Stops loading the currently displayed Web view or content. */ | ||
/** | ||
* The decimal point key (typically . or , depending on the region). | ||
* In newer browsers, this value to be the character generated by the decimal key (one of those two characters). [1] | ||
* The decimal point key (typically . or | ||
* , depending on the region). | ||
* In newer browsers, this value to be the character generated by the | ||
* decimal key (one of those two characters). [1] | ||
*/ | ||
@@ -695,5 +1027,6 @@ Key["Decimal"] = "Decimal"; | ||
* The numeric keypad's places separator character. | ||
* (In the United States this is a comma, but elsewhere it is frequently a period.) | ||
* (In the United States this is a comma, but elsewhere it is frequently | ||
* a period.) | ||
*/ | ||
Key["Separator"] = "Separator"; | ||
})(Key = exports.Key || (exports.Key = {})); |
{ | ||
"name": "ts-key-enum", | ||
"version": "2.0.7", | ||
"version": "2.0.8", | ||
"description": "A TypeScript string enum for compile-time safety when working with event.key", | ||
@@ -5,0 +5,0 @@ "main": "dist/js/Key.enum.js", |
81715
5.52%1997
50.04%