Skip to content

Commit 4c1a30d

Browse files
authored
Merge pull request #3384 from adumesny/master
v13.3.0
2 parents ab17544 + c280597 commit 4c1a30d

30 files changed

Lines changed: 68 additions & 68 deletions

angular/doc/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GridStack Angular Library v13.2.0
1+
# GridStack Angular Library v13.3.0
22

33
## Modules
44

angular/projects/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack-angular",
3-
"version": "13.2.0",
3+
"version": "13.3.0",
44
"peerDependencies": {
55
"@angular/common": ">=14",
66
"@angular/core": ">=14"

angular/projects/lib/src/lib/base-widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 13.2.0
2+
* gridstack-item.component.ts 13.3.0
33
* Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/lib/gridstack-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 13.2.0
2+
* gridstack-item.component.ts 13.3.0
33
* Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/lib/gridstack.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 13.2.0
2+
* gridstack.component.ts 13.3.0
33
* Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/lib/gridstack.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 13.2.0
2+
* gridstack.component.ts 13.3.0
33
* Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/lib/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 13.2.0
2+
* gridstack-item.component.ts 13.3.0
33
* Copyright (c) 2025 Alain Dumesny - see GridStack root license
44
*/
55

doc/API.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
115115
protected _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

120120
add 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
429429
disable(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

434434
Temporarily disables widgets moving/resizing.
435435
If you want a more permanent way (which freezes up resources) use `setStatic(true)` instead.
@@ -470,7 +470,7 @@ grid.disable(false);
470470
enable(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

475475
Re-enables widgets moving/resizing - see disable().
476476
Note: This is a no-op for static grids.
@@ -509,7 +509,7 @@ grid.enable(false);
509509
enableMove(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

514514
Enables/disables widget moving for all widgets. No-op for static grids.
515515
Note: locally defined items (with noMove property) still override this setting.
@@ -546,7 +546,7 @@ grid.enableMove(true, false);
546546
enableResize(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

551551
Enables/disables widget resizing for all widgets. No-op for static grids.
552552
Note: locally defined items (with noResize property) still override this setting.
@@ -688,7 +688,7 @@ const columnCount = grid.getColumn(); // returns 12 by default
688688
static 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

693693
Get the global drag & drop implementation instance.
694694
This provides access to the underlying drag & drop functionality.
@@ -1096,7 +1096,7 @@ grid.margin('5px 10px 15px 20px'); // Different for each side
10961096
movable(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

11011101
Enables/Disables dragging by the user for specific grid elements.
11021102
For all items and future items, use enableMove() instead. No-op for static grids.
@@ -1432,7 +1432,7 @@ grid.on('added', (event, items) => {
14321432
onResize(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

14371437
called when we are being resized - check if the one Column Mode needs to be turned on/off
14381438
and 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.
14541454
prepareDragDrop(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

14591459
prepares 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
14751475
refreshDragHandles(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

14801480
Re-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.
15961596
resizable(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

16011601
Enables/Disables user resizing for specific grid elements.
16021602
For 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

17881788
call to setup dragging in from the outside (say toolbar), by specifying the class selection and options.
17891789
Called 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.
18081808
protected 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

18131813
call given event callback on our main top-most grid (if we're nested)
18141814

doc/CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Change log
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

8-
- [13.2.0-dev (TBD)](#1320-dev-tbd)
8+
- [13.3.0 (2026-09-11)](#1330-2026-09-11)
99
- [13.2.0 (2026-08-19)](#1320-2026-08-19)
1010
- [13.1.2 (2026-07-26)](#1312-2026-07-26)
1111
- [13.1.1 (2026-07-25)](#1311-2026-07-25)
@@ -146,7 +146,7 @@ Change log
146146

147147
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
148148

149-
## 13.2.0-dev (TBD)
149+
## 13.3.0 (2026-09-11)
150150
* feat: [#2781](https://github.com/gridstack/gridstack.js/issues/3177) [#2781](https://github.com/gridstack/gridstack.js/issues/3177) mobile: pause to drag/reszie vs scroll behavior
151151
* feat: [#3383](https://github.com/gridstack/gridstack.js/pull/3383) added `PrintOptions.breakInside` and `.gs-print-avoid-break-after` so section (nested grids) and tables can fragment across pages
152152
* fix: [#3374](https://github.com/gridstack/gridstack.js/issues/3374) Iframe: use `moveBefore()` instead of `appendChild()` in `_sortDom()` so reordering doesn't reload iframes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "13.2.0",
3+
"version": "13.3.0",
44
"license": "MIT",
55
"author": "Alain Dumesny <[email protected]> (https://github.com/adumesny)",
66
"contributors": [

0 commit comments

Comments
 (0)