1.0.0 • Published 3 years ago

react-grid-layout-refine v1.0.0

Weekly downloads
84
License
MIT
Repository
github
Last release
3 years ago

React-Grid-Layout-Refine

React-Grid-Layout-Refine is a grid layout system modified by React-Grid-Layout, for React.

change log:

1. add ChangeReason in utils.js:
export const ChangeReason = {
  didMount: "didMount",
  didUpdate: "didUpdate",
  dropItem: "dropItem",
  containerWidthChange: "containerWidthChange",
  itemMove: "itemMove",
  itemResize: "itemResize"
};

2. modify onLayoutChange func:
onLayoutChange(changeReason, layout, newLayouts)

so that developer can know the reason why onLayoutChange fired