1- # gridstack v13.2 .0
1+ # gridstack v13.3 .0
22
33## Classes
44
@@ -115,7 +115,7 @@ Construct a grid item from the given element and options
115115protected _updateResizeEvent(forceRemove): GridStack;
116116```
117117
118- Defined in: [gridstack.ts:2190 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2190 )
118+ Defined in: [gridstack.ts:2191 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2191 )
119119
120120add or remove the grid element size event handler
121121
@@ -429,7 +429,7 @@ Destroys a grid instance. DO NOT CALL any methods or access any vars after this
429429disable(recurse): GridStack;
430430```
431431
432- Defined in: [gridstack.ts:2392 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2392 )
432+ Defined in: [gridstack.ts:2393 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2393 )
433433
434434Temporarily disables widgets moving/resizing.
435435If you want a more permanent way (which freezes up resources) use `setStatic(true)` instead.
@@ -470,7 +470,7 @@ grid.disable(false);
470470enable(recurse): GridStack;
471471```
472472
473- Defined in: [gridstack.ts:2419 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2419 )
473+ Defined in: [gridstack.ts:2420 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2420 )
474474
475475Re-enables widgets moving/resizing - see disable().
476476Note: This is a no-op for static grids.
@@ -509,7 +509,7 @@ grid.enable(false);
509509enableMove(doEnable, recurse): GridStack;
510510```
511511
512- Defined in: [gridstack.ts:2445 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2445 )
512+ Defined in: [gridstack.ts:2446 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2446 )
513513
514514Enables/disables widget moving for all widgets. No-op for static grids.
515515Note: locally defined items (with noMove property) still override this setting.
@@ -546,7 +546,7 @@ grid.enableMove(true, false);
546546enableResize(doEnable, recurse): GridStack;
547547```
548548
549- Defined in: [gridstack.ts:2473 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2473 )
549+ Defined in: [gridstack.ts:2474 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2474 )
550550
551551Enables/disables widget resizing for all widgets. No-op for static grids.
552552Note: locally defined items (with noResize property) still override this setting.
@@ -688,7 +688,7 @@ const columnCount = grid.getColumn(); // returns 12 by default
688688static getDD(): DDGridStack;
689689```
690690
691- Defined in: [gridstack.ts:2289 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2289 )
691+ Defined in: [gridstack.ts:2290 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2290 )
692692
693693Get the global drag & drop implementation instance.
694694This provides access to the underlying drag & drop functionality.
@@ -1096,7 +1096,7 @@ grid.margin('5px 10px 15px 20px'); // Different for each side
10961096movable(els, val): GridStack;
10971097```
10981098
1099- Defined in: [gridstack.ts:2333 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2333 )
1099+ Defined in: [gridstack.ts:2334 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2334 )
11001100
11011101Enables/Disables dragging by the user for specific grid elements.
11021102For all items and future items, use enableMove() instead. No-op for static grids.
@@ -1432,7 +1432,7 @@ grid.on('added', (event, items) => {
14321432onResize(clientWidth): GridStack;
14331433```
14341434
1435- Defined in: [gridstack.ts:2128 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2128 )
1435+ Defined in: [gridstack.ts:2129 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2129 )
14361436
14371437called when we are being resized - check if the one Column Mode needs to be turned on/off
14381438and remember the prev columns we used, or get our count from parent, as well as check for cellHeight==='auto' (square)
@@ -1454,7 +1454,7 @@ or `sizeToContent` gridItem options.
14541454prepareDragDrop(el, force?): GridStack;
14551455```
14561456
1457- Defined in: [gridstack.ts:2862 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2862 )
1457+ Defined in: [gridstack.ts:2863 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2863 )
14581458
14591459prepares the element for drag&drop - this is normally called by makeWidget() unless are are delay loading
14601460
@@ -1475,7 +1475,7 @@ prepares the element for drag&drop - this is normally called by makeWidget() unl
14751475refreshDragHandles(els): GridStack;
14761476```
14771477
1478- Defined in: [gridstack.ts:2850 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2850 )
1478+ Defined in: [gridstack.ts:2851 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2851 )
14791479
14801480Re-scans one or more widget elements for drag handle elements after delayed content
14811481(React portal, Angular component, etc.) has been rendered inside the item.
@@ -1596,7 +1596,7 @@ Removes widget from the grid.
15961596resizable(els, val): GridStack;
15971597```
15981598
1599- Defined in: [gridstack.ts:2359 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2359 )
1599+ Defined in: [gridstack.ts:2360 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2360 )
16001600
16011601Enables/Disables user resizing for specific grid elements.
16021602For all items and future items, use enableResize() instead. No-op for static grids.
@@ -1783,7 +1783,7 @@ static setupDragIn(
17831783 root?): void;
17841784```
17851785
1786- Defined in: [gridstack.ts:2302 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2302 )
1786+ Defined in: [gridstack.ts:2303 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2303 )
17871787
17881788call to setup dragging in from the outside (say toolbar), by specifying the class selection and options.
17891789Called during GridStack.init() as options, but can also be called directly (last param are used) in case the toolbar
@@ -1808,7 +1808,7 @@ is dynamically create and needs to be set later.
18081808protected triggerEvent(event, target): void;
18091809```
18101810
1811- Defined in: [gridstack.ts:3124 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L3124 )
1811+ Defined in: [gridstack.ts:3125 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L3125 )
18121812
18131813call given event callback on our main top-most grid (if we're nested)
18141814
0 commit comments