@@ -430,7 +430,7 @@ Destroys a grid instance. DO NOT CALL any methods or access any vars after this
430430disable(recurse): GridStack;
431431```
432432
433- Defined in: [gridstack.ts:2430 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2430 )
433+ Defined in: [gridstack.ts:2443 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2443 )
434434
435435Temporarily disables widgets moving/resizing.
436436If you want a more permanent way (which freezes up resources) use `setStatic(true)` instead.
@@ -471,7 +471,7 @@ grid.disable(false);
471471enable(recurse): GridStack;
472472```
473473
474- Defined in: [gridstack.ts:2457 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2457 )
474+ Defined in: [gridstack.ts:2470 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2470 )
475475
476476Re-enables widgets moving/resizing - see disable().
477477Note: This is a no-op for static grids.
@@ -510,7 +510,7 @@ grid.enable(false);
510510enableMove(doEnable, recurse): GridStack;
511511```
512512
513- Defined in: [gridstack.ts:2483 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2483 )
513+ Defined in: [gridstack.ts:2496 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2496 )
514514
515515Enables/disables widget moving for all widgets. No-op for static grids.
516516Note: locally defined items (with noMove property) still override this setting.
@@ -547,7 +547,7 @@ grid.enableMove(true, false);
547547enableResize(doEnable, recurse): GridStack;
548548```
549549
550- Defined in: [gridstack.ts:2511 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2511 )
550+ Defined in: [gridstack.ts:2524 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2524 )
551551
552552Enables/disables widget resizing for all widgets. No-op for static grids.
553553Note: locally defined items (with noResize property) still override this setting.
@@ -1098,7 +1098,7 @@ grid.mode('list'); // continuous sequential reflow, like a re-orderable list
10981098movable(els, val): GridStack;
10991099```
11001100
1101- Defined in: [gridstack.ts:2371 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2371 )
1101+ Defined in: [gridstack.ts:2384 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2384 )
11021102
11031103Enables/Disables dragging by the user for specific grid elements.
11041104For all items and future items, use enableMove() instead. No-op for static grids.
@@ -1457,7 +1457,7 @@ or `sizeToContent` gridItem options.
14571457prepareDragDrop(el, force?): GridStack;
14581458```
14591459
1460- Defined in: [gridstack.ts:2900 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2900 )
1460+ Defined in: [gridstack.ts:2913 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2913 )
14611461
14621462prepares the element for drag&drop - this is normally called by makeWidget() unless are are delay loading
14631463
@@ -1478,7 +1478,7 @@ prepares the element for drag&drop - this is normally called by makeWidget() unl
14781478refreshDragHandles(els): GridStack;
14791479```
14801480
1481- Defined in: [gridstack.ts:2888 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2888 )
1481+ Defined in: [gridstack.ts:2901 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2901 )
14821482
14831483Re-scans one or more widget elements for drag handle elements after delayed content
14841484(React portal, Angular component, etc.) has been rendered inside the item.
@@ -1599,7 +1599,7 @@ Removes widget from the grid.
15991599resizable(els, val): GridStack;
16001600```
16011601
1602- Defined in: [gridstack.ts:2397 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2397 )
1602+ Defined in: [gridstack.ts:2410 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L2410 )
16031603
16041604Enables/Disables user resizing for specific grid elements.
16051605For all items and future items, use enableResize() instead. No-op for static grids.
@@ -1811,7 +1811,7 @@ is dynamically create and needs to be set later.
18111811protected triggerEvent(event, target): void;
18121812```
18131813
1814- Defined in: [gridstack.ts:3162 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L3162 )
1814+ Defined in: [gridstack.ts:3175 ](https://github.com/adumesny/gridstack.js/blob/master/src/gridstack.ts#L3175 )
18151815
18161816call given event callback on our main top-most grid (if we're nested)
18171817
@@ -4094,7 +4094,7 @@ Defined in: [dd-draggable.ts:70](https://github.com/adumesny/gridstack.js/blob/m
40944094destroy(): void;
40954095```
40964096
4097- Defined in: [dd-draggable.ts:135 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L135 )
4097+ Defined in: [dd-draggable.ts:154 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L154 )
40984098
40994099Destroy this drag & drop implementation and clean up resources.
41004100Removes all event handlers and clears internal state.
@@ -4113,7 +4113,7 @@ Removes all event handlers and clears internal state.
41134113disable(forDestroy): void;
41144114```
41154115
4116- Defined in: [dd-draggable.ts:121 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L121 )
4116+ Defined in: [dd-draggable.ts:140 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L140 )
41174117
41184118Disable this drag & drop implementation.
41194119Subclasses should override to perform additional cleanup.
@@ -4138,7 +4138,7 @@ Subclasses should override to perform additional cleanup.
41384138enable(): void;
41394139```
41404140
4141- Defined in: [dd-draggable.ts:107 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L107 )
4141+ Defined in: [dd-draggable.ts:126 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L126 )
41424142
41434143Enable this drag & drop implementation.
41444144Subclasses should override to perform additional setup.
@@ -4171,7 +4171,7 @@ return all handles omitting other nested `.grid-stack-item` children (in case no
41714171off(event): void;
41724172```
41734173
4174- Defined in: [dd-draggable.ts:103 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L103 )
4174+ Defined in: [dd-draggable.ts:122 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L122 )
41754175
41764176Unregister an event callback for the specified event.
41774177
@@ -4195,7 +4195,7 @@ Unregister an event callback for the specified event.
41954195on(event, callback): void;
41964196```
41974197
4198- Defined in: [dd-draggable.ts:99 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L99 )
4198+ Defined in: [dd-draggable.ts:118 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L118 )
41994199
42004200Register an event callback for the specified event.
42014201
@@ -4220,7 +4220,7 @@ Register an event callback for the specified event.
42204220refreshHandles(): void;
42214221```
42224222
4223- Defined in: [dd-draggable.ts:156 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L156 )
4223+ Defined in: [dd-draggable.ts:175 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L175 )
42244224
42254225Re-scans the item element for drag-handle elements after delayed content (React portal,
42264226Angular component, etc.) has been rendered into the item. Removes listeners from the
@@ -4264,7 +4264,7 @@ Result from the callback function, if any
42644264updateOption(opts): DDDraggable;
42654265```
42664266
4267- Defined in: [dd-draggable.ts:145 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L145 )
4267+ Defined in: [dd-draggable.ts:164 ](https://github.com/adumesny/gridstack.js/blob/master/src/dd-draggable.ts#L164 )
42684268
42694269Method to update the options and return the DD implementation
42704270
0 commit comments