Skip to content

Commit

Permalink
feat(esl-utils): added delete, backspace to the keys.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
YanaBr committed Jul 6, 2021
1 parent 73580ec commit 234d433
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/esl-utils/dom/keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const TAB = 'Tab';
export const ENTER = 'Enter';
export const ESC = 'Escape';
export const SPACE = ' ';
export const BACKSPACE = 'Backspace';

export const ALT = 'Alt';
export const SHIFT = 'Shift';
Expand All @@ -10,8 +11,9 @@ export const CONTROL = 'Control';
export const PAUSE = 'Pause';
export const END = 'End';
export const HOME = 'Home';
export const DELETE = 'Delete';

export const PAGE_UP = 'PageUp';
export const PAGE_UP = 'PageUp';
export const PAGE_DOWN = 'PageDown';

export const ARROW_LEFT = 'ArrowLeft';
Expand Down

0 comments on commit 234d433

Please sign in to comment.