Skip to content

Releases: gridstack/gridstack.js

v11.1.1

26 Nov 21:28
5d3c786
Compare
Choose a tag to compare
  • fix: #2878 make sure sub-grid inherit parent opts by default, with subgrid defaults.
  • fix: #2879 sub-grid item sizeToContent:true now handle content above/below sub grid.

v11.1.0

18 Nov 05:33
2c8ad98
Compare
Choose a tag to compare
  • feat: #2864 added GridStackOptions.layout for nested grid reflow during resize. default to 'list'.
  • fix: #2859 re-enabled tests and fix numerous issues found (see CL). Also thank you lmartorella for getting me going and starting it.
  • fix: #2851 added support for custom max layout saving - Thank you lmartorella
  • fix: #2492 loading same layout with overlapping widget fix. v10.3.0 regression.

v11.0.1

21 Oct 21:51
819b750
Compare
Choose a tag to compare
  • fix: #2834 v11 angular missing package.json
  • fix: #2835 make sure we have unique USER id

v11.0.0

20 Oct 19:11
3f5d803
Compare
Choose a tag to compare
  • feat: #2826 Lazy loading of widget content until visible (GridStackOptions.lazyLoad and GridStackWidget.lazyLoad)
  • feat: #2818 support for Angular Component hosting true sub-grids (that size according to parent) without requring them to be only child of grid-item-content.
  • fix: #2231,#1840,#2354 big overall to how we do sidepanel drag&drop helper. see migrate to v11 notes.
  • fix: #2736 safe practices around GridStackWidget.content no longer setting innerHTML

v10.3.1

21 Jul 21:28
a1ee04a
Compare
Choose a tag to compare
  • fix: #2734 rotate() JS error (regression)
  • fix: #2741 resizeToContent JS error with nested grid
  • fix: #2740 nested grid drag fix (regression)
  • fix: #2730 resizing left from right most item works
  • fix: #2327 remove dataTransfer mention as not supported

v10.3.0

26 Jun 23:12
7ad0139
Compare
Choose a tag to compare
  • fix: #2720 load() now creates widgets in order (used to be reverse due to old collision code)

v10.2.1

24 Jun 02:45
d50433a
Compare
Choose a tag to compare
  • feat: #2709 support for multiple drag targets - Thank you nickfulcher
  • fix: #2683 check for fixed grid maxRow during resize
  • fix: #2694 prevent 'r' rotation to items that can't resize (locked, noResize, fixed sizes)
  • fix: #2669 load() sometimes restore incorrectly

v10.2.0

02 Jun 18:28
cf60875
Compare
Choose a tag to compare
  • feat: #2682 You can now press 'Esc' to cancel a move|resize, 'r' to rotate during a drag. added GridStack.rotate() as well - Thank you John B. for this feature sponsor.
  • fix: #2672 dropping into full grid JS error
  • fix: #2676 handle minW resizing when column count is less
  • fix: #2677 allow button as handle dragging

v10.1.1

03 Mar 19:16
c8163a4
Compare
Choose a tag to compare
  • fix: #2620 allow resizing with sizeToContent:NUMBER is uses

v10.1.0

04 Feb 17:38
f326a93
Compare
Choose a tag to compare
  • feat: #2574 Allow cell height in cm and mm units
  • feat: #2578 allow different scaling between drag toolbar and grid
  • fix: #2577 ui-resizable-s/-n style fix
  • fix: #2576 column('none') now ignores layouts
  • fix: #2560 nested grid fix (enter can call leave which can call enter again) - Thank you v1talii-dev
  • fix: #2596 prevent SSR crash
  • fix: #2610 using passive:true for mousemove events
  • fix: #2612 restrict vertical resize if sizeToContent:true
  • demo: nested.htm now has nested create and drag&drop example - Thank you fredericrous