From d0df7f4fb51aba2c3c7bffbc99d2d8386b7e9e5f Mon Sep 17 00:00:00 2001 From: Alain Dumesny Date: Sun, 17 Nov 2024 21:30:48 -0800 Subject: [PATCH] v11.1.0 --- angular/projects/lib/package.json | 2 +- angular/projects/lib/src/lib/base-widget.ts | 2 +- angular/projects/lib/src/lib/gridstack-item.component.ts | 2 +- angular/projects/lib/src/lib/gridstack.component.ts | 2 +- angular/projects/lib/src/lib/gridstack.module.ts | 2 +- doc/CHANGES.md | 6 +++--- package.json | 2 +- src/dd-base-impl.ts | 2 +- src/dd-draggable.ts | 2 +- src/dd-droppable.ts | 2 +- src/dd-element.ts | 2 +- src/dd-gridstack.ts | 2 +- src/dd-manager.ts | 2 +- src/dd-resizable-handle.ts | 2 +- src/dd-resizable.ts | 2 +- src/dd-touch.ts | 2 +- src/gridstack-engine.ts | 2 +- src/gridstack-poly.js | 2 +- src/gridstack.scss | 2 +- src/gridstack.ts | 4 ++-- src/types.ts | 2 +- src/utils.ts | 2 +- 22 files changed, 25 insertions(+), 25 deletions(-) diff --git a/angular/projects/lib/package.json b/angular/projects/lib/package.json index 8e586652..bef129c2 100644 --- a/angular/projects/lib/package.json +++ b/angular/projects/lib/package.json @@ -1,6 +1,6 @@ { "name": "gridstack-angular", - "version": "11.0.1-dev", + "version": "11.1.0", "peerDependencies": { "@angular/common": ">=14", "@angular/core": ">=14" diff --git a/angular/projects/lib/src/lib/base-widget.ts b/angular/projects/lib/src/lib/base-widget.ts index d39cc49b..e75c0e3c 100644 --- a/angular/projects/lib/src/lib/base-widget.ts +++ b/angular/projects/lib/src/lib/base-widget.ts @@ -1,5 +1,5 @@ /** - * gridstack-item.component.ts 11.0.1-dev + * gridstack-item.component.ts 11.1.0 * Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license */ diff --git a/angular/projects/lib/src/lib/gridstack-item.component.ts b/angular/projects/lib/src/lib/gridstack-item.component.ts index d300019d..ec7ad420 100644 --- a/angular/projects/lib/src/lib/gridstack-item.component.ts +++ b/angular/projects/lib/src/lib/gridstack-item.component.ts @@ -1,5 +1,5 @@ /** - * gridstack-item.component.ts 11.0.1-dev + * gridstack-item.component.ts 11.1.0 * Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license */ diff --git a/angular/projects/lib/src/lib/gridstack.component.ts b/angular/projects/lib/src/lib/gridstack.component.ts index 23501844..f0ae217f 100644 --- a/angular/projects/lib/src/lib/gridstack.component.ts +++ b/angular/projects/lib/src/lib/gridstack.component.ts @@ -1,5 +1,5 @@ /** - * gridstack.component.ts 11.0.1-dev + * gridstack.component.ts 11.1.0 * Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license */ diff --git a/angular/projects/lib/src/lib/gridstack.module.ts b/angular/projects/lib/src/lib/gridstack.module.ts index 1d7b9f2e..d51d232f 100644 --- a/angular/projects/lib/src/lib/gridstack.module.ts +++ b/angular/projects/lib/src/lib/gridstack.module.ts @@ -1,5 +1,5 @@ /** - * gridstack.component.ts 11.0.1-dev + * gridstack.component.ts 11.1.0 * Copyright (c) 2022-2024 Alain Dumesny - see GridStack root license */ diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 4404c1f0..6312fe59 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -5,7 +5,7 @@ Change log **Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)* -- [11.0.1-dev (TBD)](#1101-dev-tbd) +- [11.1.0 (2024-11-17)](#1110-2024-11-17) - [11.0.1 (2024-10-21)](#1101-2024-10-21) - [11.0.0 (2024-10-20)](#1100-2024-10-20) - [10.3.1 (2024-07-21)](#1031-2024-07-21) @@ -116,11 +116,11 @@ Change log -## 11.0.1-dev (TBD) +## 11.1.0 (2024-11-17) +* feat: [#2864](https://github.com/gridstack/gridstack.js/issues/2864) added `GridStackOptions.layout` for nested grid reflow during resize. default to 'list'. * fix: [#2859](https://github.com/gridstack/gridstack.js/pull/2859) re-enabled tests and fix numerous issues found (see CL). Also thank you [lmartorella](https://github.com/lmartorella) for getting me going and starting it. * fix: [#2851](https://github.com/gridstack/gridstack.js/pull/2851) added support for custom max layout saving - Thank you [lmartorella](https://github.com/lmartorella) * fix: [#2492](https://github.com/gridstack/gridstack.js/issues/2492) loading same layout with overlapping widget fix. v10.3.0 regression. -* fix: [#2864](https://github.com/gridstack/gridstack.js/issues/2864) added `GridStackOptions.layout` for nested grid reflow during resize. default to 'list'. ## 11.0.1 (2024-10-21) * fix: [#2834](https://github.com/gridstack/gridstack.js/pull/2834) v11 angular missing package.json diff --git a/package.json b/package.json index 99c9649e..e9f0db09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gridstack", - "version": "11.0.1-dev", + "version": "11.1.0", "license": "MIT", "author": "Alain Dumesny (https://github.com/adumesny)", "contributors": [ diff --git a/src/dd-base-impl.ts b/src/dd-base-impl.ts index 9f92102f..a47dbbc5 100644 --- a/src/dd-base-impl.ts +++ b/src/dd-base-impl.ts @@ -1,5 +1,5 @@ /** - * dd-base-impl.ts 11.0.1-dev + * dd-base-impl.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-draggable.ts b/src/dd-draggable.ts index 7308d149..2cc52b5d 100644 --- a/src/dd-draggable.ts +++ b/src/dd-draggable.ts @@ -1,5 +1,5 @@ /** - * dd-draggable.ts 11.0.1-dev + * dd-draggable.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-droppable.ts b/src/dd-droppable.ts index 0c8c0fb2..23b759d8 100644 --- a/src/dd-droppable.ts +++ b/src/dd-droppable.ts @@ -1,5 +1,5 @@ /** - * dd-droppable.ts 11.0.1-dev + * dd-droppable.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-element.ts b/src/dd-element.ts index d8814f0c..2f0d13af 100644 --- a/src/dd-element.ts +++ b/src/dd-element.ts @@ -1,5 +1,5 @@ /** - * dd-elements.ts 11.0.1-dev + * dd-elements.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-gridstack.ts b/src/dd-gridstack.ts index 4a2d16e7..bc0f808d 100644 --- a/src/dd-gridstack.ts +++ b/src/dd-gridstack.ts @@ -1,5 +1,5 @@ /** - * dd-gridstack.ts 11.0.1-dev + * dd-gridstack.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-manager.ts b/src/dd-manager.ts index 52480ed9..5e3d9d9c 100644 --- a/src/dd-manager.ts +++ b/src/dd-manager.ts @@ -1,5 +1,5 @@ /** - * dd-manager.ts 11.0.1-dev + * dd-manager.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable-handle.ts b/src/dd-resizable-handle.ts index 19f82e0b..8003674c 100644 --- a/src/dd-resizable-handle.ts +++ b/src/dd-resizable-handle.ts @@ -1,5 +1,5 @@ /** - * dd-resizable-handle.ts 11.0.1-dev + * dd-resizable-handle.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable.ts b/src/dd-resizable.ts index 5561e061..c246ca43 100644 --- a/src/dd-resizable.ts +++ b/src/dd-resizable.ts @@ -1,5 +1,5 @@ /** - * dd-resizable.ts 11.0.1-dev + * dd-resizable.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-touch.ts b/src/dd-touch.ts index f56f4d5b..7e54d49e 100644 --- a/src/dd-touch.ts +++ b/src/dd-touch.ts @@ -1,5 +1,5 @@ /** - * touch.ts 11.0.1-dev + * touch.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-engine.ts b/src/gridstack-engine.ts index 69a07fb0..aa600932 100644 --- a/src/gridstack-engine.ts +++ b/src/gridstack-engine.ts @@ -1,5 +1,5 @@ /** - * gridstack-engine.ts 11.0.1-dev + * gridstack-engine.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-poly.js b/src/gridstack-poly.js index c5dd0164..1b2dddb2 100644 --- a/src/gridstack-poly.js +++ b/src/gridstack-poly.js @@ -1,5 +1,5 @@ /** - * gridstack-poly.ts 11.0.1-dev used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4) + * gridstack-poly.ts 11.1.0 used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4) * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.scss b/src/gridstack.scss index 1a686f0a..71a5797c 100644 --- a/src/gridstack.scss +++ b/src/gridstack.scss @@ -1,5 +1,5 @@ /** - * gridstack SASS styles 11.0.1-dev + * gridstack SASS styles 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.ts b/src/gridstack.ts index a72f0920..1e86dbf8 100644 --- a/src/gridstack.ts +++ b/src/gridstack.ts @@ -1,5 +1,5 @@ /*! - * GridStack 11.0.1-dev + * GridStack 11.1.0 * https://gridstackjs.com/ * * Copyright (c) 2021-2024 Alain Dumesny @@ -1934,7 +1934,7 @@ export class GridStack { return this; } - static GDRev = '11.0.1-dev'; + static GDRev = '11.1.0'; /* =========================================================================================== * drag&drop methods that used to be stubbed out and implemented in dd-gridstack.ts diff --git a/src/types.ts b/src/types.ts index f433ba57..17fa32cb 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ /** - * types.ts 11.0.1-dev + * types.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */ diff --git a/src/utils.ts b/src/utils.ts index 6ade2a3d..2cd74cfd 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /** - * utils.ts 11.0.1-dev + * utils.ts 11.1.0 * Copyright (c) 2021-2024 Alain Dumesny - see GridStack root license */