react-grid-layout
react-grid-layout copied to clipboard
A draggable and resizable grid layout with responsive breakpoints, for React.
I noticed that the "Drag from Outside" example had an issue in Firefox. If you tried to drop the item over the placeholder it would not invoke the onDrop function....
It implements [#758 ](https://github.com/STRML/react-grid-layout/issues/758), allows resizable handles on other corner. It passes `resizeHandles` props to [react-resizable](https://github.com/STRML/react-resizable)
It implements [#206](https://github.com/STRML/react-grid-layout/issues/206). Added ability to limit movement by x/y axes
Moved onDrop/onDragOver from the React event model, to a plain vanilla JS event model -- hopefully this clashes less with containing elements that may also have drag/drop events. Added datatransfer...
Thanks for submitting a pull request to RGL! Please reference an open issue. If one has not been created, please create one along with a failing example or test case....
#784 This fixes the issue where dragging could cause the layout to reorder over and over rapidly.
Hi, in some cases we need to pass additional props to react-resizable package. This PR allows to do that.
Added isEditable property to support disabling dragging without rerendering In addition: * added windows bat file so that make is not needed. * modified no-drag example to show how the...
Hello! I need to get the viewport width instead of the component in my app. So I've add some optional props. Readme and example are also updated. Please take a...