Skip to content

Releases: gridstack/gridstack.js

v0.6.0

24 Dec 16:59
10766ec
Compare
Choose a tag to compare
  • add float(val) to set/get the grid float mode, which will relayout #1088
  • add compact() to reclaim any empty space and relayout grid items #1101
  • add options.dragOut to let user drag nested grid items out of a parent or not (default false) and jQuery UI draggable.containment can now be specified in options. You can now drag&drop between 2 nested grids #1105
  • add % as a valid unit for height #1093. thank you @trevisanweb @aureality @ZoolWay
  • fix callbacks to get either added, removed, change or combination if adding a node require also to change its (x,y) for example. Also you can now call batchUpdate() before calling a bunch of addWidget() and get a single event callback (more efficient). #1096
    NOTE BREAKING: if your code expected to always get change callback to do something you may have to listen to added|removed events as well.
  • removeAll() is now much faster (no relayout) and calls removed event just once with a list #1097
  • setColumn() complete re-write and is no longer "Experimental". We now do a reasonable job at sizing/position the widgets (especially 1 column) and also now cache each column layout so you can go back to say 12 column and not loose original layout. #1098
  • fix addWidget(el) (no data) would not render item at correct location, and overlap item at (0,0) #1098
  • you can now pre-define size of dragable elements from a sidebar using standard data-gs-width and data-gs-height - fix #413, #914, #918, #922, #933 thanks @ermcgrat and others for pointing out code issue.

v0.5.5

28 Nov 00:28
10715f2
Compare
Choose a tag to compare

no code change, just packing issues

  • min files include rev number/license #1075
  • npm package fix to exclude more temporary content #1078
  • removed jquery-ui/* requirements from AMD packing in gridstack.jQueryUI.js as it was causing App compile missing errors now that we include a subset of jquery-ui

v0.5.4

26 Nov 17:47
99bbe16
Compare
Choose a tag to compare
  • fix for griditems with x=0 placement wrong order (introduced by #1017) (#1054).
  • fix cellHeight(val) not working due to style change (introduced by #937) (#1068).
  • add gridstack.poly.js for IE and older browsers, removed core-js lib from samples (<1k vs 85k), and all IE8 mentions (#1061).
  • add jquery-ui.js (and min.js) as minimal subset we need (55k vs 248k), which is now part of gridstack.all.js. Include individual parts if you need your own lib instead of all.js
    (#1064).
  • changed jquery dependency to lowest we can use (>=1.8) (#629).

v0.5.3

20 Nov 16:43
3b11834
Compare
Choose a tag to compare
  • grid options width is now column, height now maxRow, and setGridWidth() now setColumn() to match what they are. Old names are still supported (console warnings). Various fixes for custom # of column and re-wrote entire doc section (#1053).
  • fix widgets not animating when animate: true is used. on every move, styles were recreated-fix should slightly improve gridstack.js speed (#937).
  • fix moving widgets when having multiple grids. jquery-ui workaround (#1043).
  • switch to eslint (#763) thanks @rwstoneback.
  • fix null values addWidget() options (#1042).

v0.5.2

13 Nov 21:58
fef7f6f
Compare
Choose a tag to compare
  • undefined x,y position messes up grid (#1017).
  • changed code to 2 spaces.
  • fix minHeight during onStartMoving() (#999).
  • TypeScript definition file now included - no need to include @types/gridstack, easier to update (#1036).
  • new addWidget(el, options) to pass object so you don't have to spell 10 params. (#907).

v0.5.1

07 Nov 19:53
ef934a0
Compare
Choose a tag to compare
  • just an npm package reduction size (from 672k to 324k) and some API doc fixes

v0.5.0

06 Nov 19:11
50ab44e
Compare
Choose a tag to compare
  • emit dropped event when a widget is dropped from one grid into another (#823).
  • don't throw error if no bounding scroll element is found (#891).
  • don't push locked widgets even if they are at the top of the grid (#882).
  • RequireJS and CommonJS now export on the exports module fix (#643).
  • automatically scroll page when widget is moving beyond viewport (#827).
  • removed lodash dependencies (#693).
  • don't overwrite globals jQuery when in a modular environment (#974).
  • removed z-index from .grid-stack-item-content causing child modal dialog clipping (#984).
  • convert project to use yarn (#983).

v0.4.0

11 May 15:01
7b6df18
Compare
Choose a tag to compare
  • widgets can have their own resize handles. Use data-gs-resize-handles element attribute to use. For example, data-gs-resize-handles="e,w" will make the particular widget only resize west and east. (#494).
  • enable sidebar items to be duplicated properly. Pass helper: 'clone' in draggable options. (#661, (#396, (#499).
  • fix staticGrid grid option (#743)
  • preserve inline styles when moving/cloning items (thanks @silverwind)
  • fix bug causing heights not to get set (#744)
  • allow grid to have min-height, fixes (#628) (thanks @adumesny)
  • widget x and y are now ints (thanks @DonnchaC)
  • allow all droppable options (thanks @vigor-vlad)
  • properly track mouse position in getCellFromPixel (thanks @aletorrado)
  • remove instance of !important (thanks @krilllind)
  • scroll when moving widget up or down out of viewport (#827)

v0.3.0

22 Apr 01:02
Compare
Choose a tag to compare
  • remove placeholder when dragging widget below grid (already worked when dragging left, above, and to the right of grid).
  • prevent extra checks for removing widget when dragging off grid.
  • trigger added when a widget is added via dropping from one grid to another.
  • trigger removed when a widget is removed via dropping from one grid to another.
  • trigger removed when a widget is removed via dropping on a removable zone (#607 and [#550])(#550)).
  • trigger custom event for resizestop called gsresizestop (#577 and #398).
  • prevent dragging/resizing in oneColumnMode (#593).
  • add oneColumnModeClass option to grid.
  • remove 768px CSS styles, moved to grid-stack-one-column-mode class.
  • add max-width override on grid-stck-one-column-mode (#462).
  • add internal functionisNodeChangedPosition, minor optimization to move/drag.
  • drag'n'drop plugin system. Move jQuery UI dependencies to separate plugin file.

v0.2.6

17 Aug 16:31
Compare
Choose a tag to compare
  • update requirements to the latest versions of jQuery (v3.1.0+) and jquery-ui (v1.12.0+).
  • fix jQuery size() (#486).
  • update destroy([detachGrid]) call (#422).
  • don't mutate options when calling draggable and resizable. (#505).
  • update _notify to allow detach (#411).
  • fix code that checks for jquery-ui (#481).
  • fix cellWidth calculation on empty grid