react-selectable-fast icon indicating copy to clipboard operation
react-selectable-fast copied to clipboard

Enable React components to be selectable via mouse/touch.

Results 37 react-selectable-fast issues
Sort by recently updated
recently updated
newest added

My use case is, I need to deselect all the selection at some point. The only way to do this right now is a `` button. Is there a function...

how to detect click event instead of onSelectionFinish when click on absolute position div got no response on click

Closes #99 This callback returns all the unselected values, and is called whenever `onSelectionFinish` is called. This allows the user of the component to better keep track of selected state...

First of all - thank you for open sourcing this component! It's saving me a lot of time since I don't need to build this entirely from scratch. ----------------------- Thoughts...

Hello there, Am working with this one and when i unselect the last item, the `onSelect` function is returning me a empty array... Great! is not item but how to...

can we return coordinates of Selection box in onSelectionFinish, having many items causes app to lag, this might help with performance to look your selections by coordinates.

I want to set some items default selected how can I achive that. Thanks!

Hi. I have a situation when i need to be able to select with dragging on a desktop version of my app, and with tap on mobile/tablet, because otherwise i...

Hey! Not sure if this is a proper way to use this. `{this.props.items.map((item, i) => { let selected = this.props.selected.indexOf(item) > -1; return (); })}` This is tied into a...