react-grid-layout-enhancement
v1.0.10
Published
A draggable and resizable grid layout with responsive breakpoints, for React.
Downloads
5
Maintainers
Readme
React-Grid-Layout-Enhancement
React-Grid-Layout-Enhancement is a grid layout system modified by React-Grid-Layout, for React.
change log:
1.add layout change reason
add ChangeReason in utils.js:
export const ChangeReason = {
didMount: "didMount",
didUpdate: "didUpdate",
dropItem: "dropItem",
containerWidthChange: "containerWidthChange",
itemMove: "itemMove",
itemResize: "itemResize"
};
modify onLayoutChange func:
onLayoutChange(changeReason, layout, newLayouts)
so that developer can know the reason why onLayoutChange fired
- lock width and height radio for ResponsiveReactGridLayout when window size changed
u can add isLockWidthAndHeightRadio={false} props to ResponsiveReactGridLayout to disable this function