react-shortcuts icon indicating copy to clipboard operation
react-shortcuts copied to clipboard

Manage keyboard shortcuts from one place

Results 52 react-shortcuts issues
Sort by recently updated
recently updated
newest added

This pull request improves the test suite's structure, readability and coverage. # Changes ## Testing dependencies * Upgrade test dependencies to the latest versions to take advantage of the latest...

Hello! Thanks for putting this together, I'm playing with it in my project and it's working nicely. For anyone interested, I wrote some quick TS defs. They could eventually be...

This pull request includes, imho, a bunch of improvements to the project's readme. I gathered this information by: * Using and experimenting with the package (master - not the latest...

I have a component on which I have Shortcuts implemented for arrow keys. Then I have another component parallel to that which uses onKeyPress event. The issue is the keyPress...

Hey, thanks for the great package. I have been looking around for something that will allow me to easily define keyboard shortcuts in React apps for a while. Unfortunately, the...

I use this structure to create shorcuts: DELETE: { osx: ['command+backspace', 'k'], windows: 'delete', linux: 'delete', }, UNDO: { osx: ['command+z', 'k'], windows: 'ctrl+z', linux: 'ctrl+z', }, It work fine...

It looks like combokeys is expecting a `keypress` event but only seeing `keydown` and `keyup` https://github.com/avocode/combokeys/blob/master/Combokeys/prototype/getMatches.js#L58 I can use `eventType='keyup'` but then combinations like `command+z` don't work :( Is there...

I have a handler, and in a child component I have a form that handles a keyDown event and calls e.stopPropagation(). I didn't expect to receive the events but it...

**CustomEvent** is not available in IE11 which causes the Shortcuts component to malfunction by throwing an unhandled exception on **each keypress**, leading to a massive slowdown when typing (as well...

Bumps [css-what](https://github.com/fb55/css-what) from 2.1.0 to 2.1.3. Commits 2db00ca 2.1.3 dc51092 fix(css-selectors): extend regex to include superscript in range, fix #27 (#28) a5f1991 Test on node LTS b2a2117 2.1.2 e9ef3f1 Run...

dependencies