diff --git a/demo/angular/src/app/README.md b/demo/angular/src/app/README.md index ecacfa350..7701b580e 100644 --- a/demo/angular/src/app/README.md +++ b/demo/angular/src/app/README.md @@ -36,7 +36,7 @@ HTML ``` ## ngFor with wrapper -For simple case where you control the children creation (gridstack doesn't do create.re-parenting) +For simple case where you control the children creation (gridstack doesn't do create or re-parenting) Code diff --git a/demo/angular/src/app/gridstack-item.component.ts b/demo/angular/src/app/gridstack-item.component.ts index 1ea04e7b6..9a2934fca 100644 --- a/demo/angular/src/app/gridstack-item.component.ts +++ b/demo/angular/src/app/gridstack-item.component.ts @@ -1,5 +1,5 @@ /** - * gridstack-item.component.ts 7.1.2-dev + * gridstack-item.component.ts 7.2.0 * Copyright (c) 2022 Alain Dumesny - see GridStack root license */ diff --git a/demo/angular/src/app/gridstack.component.ts b/demo/angular/src/app/gridstack.component.ts index 33d22b50d..12d6f0207 100644 --- a/demo/angular/src/app/gridstack.component.ts +++ b/demo/angular/src/app/gridstack.component.ts @@ -1,5 +1,5 @@ /** - * gridstack.component.ts 7.1.2-dev + * gridstack.component.ts 7.2.0 * Copyright (c) 2022 Alain Dumesny - see GridStack root license */ diff --git a/doc/CHANGES.md b/doc/CHANGES.md index ac99cb119..adf1d851d 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/)* -- [7.1.2-dev (TBD)](#712-dev-tbd) +- [7.2.0 (2023-01-07)](#720-2023-01-07) - [7.1.2 (2022-12-29)](#712-2022-12-29) - [7.1.1 (2022-11-13)](#711-2022-11-13) - [7.1.0 (2022-10-23)](#710-2022-10-23) @@ -78,12 +78,12 @@ Change log -## 7.1.2-dev (TBD) +## 7.2.0 (2023-01-07) * fix [#1936](https://github.com/gridstack/gridstack.js/issues/1936) some styles left behind after a drag * remove [#1842](https://github.com/gridstack/gridstack.js/issues/1842) incorrect doc/partial code on widget resizeHandles * doc [#2033](https://github.com/gridstack/gridstack.js/issues/2033) `resizestop` is actually correct as we don't animate resize today * add - `init()`|`initAll()` will now load any listed children (what `addGrid()` already did) -* add - `GridStackOptions.addRemoveCB` which is use by frameworks (eg Angular) to dynamically create their gridItem components instead of regular div with class +* add - `GridStackOptions.addRemoveCB` which is use by frameworks (eg Angular) to dynamically create their gridItem components instead of regular div with class ## 7.1.2 (2022-12-29) * fix [#939](https://github.com/gridstack/gridstack.js/issues/2039) 'prototype' undefined error for dd-gridstack.js diff --git a/src/dd-base-impl.ts b/src/dd-base-impl.ts index d8302c1d2..8a8791972 100644 --- a/src/dd-base-impl.ts +++ b/src/dd-base-impl.ts @@ -1,5 +1,5 @@ /** - * dd-base-impl.ts 7.1.2-dev + * dd-base-impl.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-draggable.ts b/src/dd-draggable.ts index 612701754..ebb0bd6c2 100644 --- a/src/dd-draggable.ts +++ b/src/dd-draggable.ts @@ -1,5 +1,5 @@ /** - * dd-draggable.ts 7.1.2-dev + * dd-draggable.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-droppable.ts b/src/dd-droppable.ts index 355c219ed..22a7ff4b3 100644 --- a/src/dd-droppable.ts +++ b/src/dd-droppable.ts @@ -1,5 +1,5 @@ /** - * dd-droppable.ts 7.1.2-dev + * dd-droppable.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-element.ts b/src/dd-element.ts index 170bb2f2c..f35a256cc 100644 --- a/src/dd-element.ts +++ b/src/dd-element.ts @@ -1,5 +1,5 @@ /** - * dd-elements.ts 7.1.2-dev + * dd-elements.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-gridstack.ts b/src/dd-gridstack.ts index 3c6e72f09..d33114125 100644 --- a/src/dd-gridstack.ts +++ b/src/dd-gridstack.ts @@ -1,5 +1,5 @@ /** - * dd-gridstack.ts 7.1.2-dev + * dd-gridstack.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-manager.ts b/src/dd-manager.ts index b2c5880b5..dddbc5299 100644 --- a/src/dd-manager.ts +++ b/src/dd-manager.ts @@ -1,5 +1,5 @@ /** - * dd-manager.ts 7.1.2-dev + * dd-manager.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable-handle.ts b/src/dd-resizable-handle.ts index 1691e551a..374516213 100644 --- a/src/dd-resizable-handle.ts +++ b/src/dd-resizable-handle.ts @@ -1,5 +1,5 @@ /** - * dd-resizable-handle.ts 7.1.2-dev + * dd-resizable-handle.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable.ts b/src/dd-resizable.ts index 7a903b449..9406e7ed4 100644 --- a/src/dd-resizable.ts +++ b/src/dd-resizable.ts @@ -1,5 +1,5 @@ /** - * dd-resizable.ts 7.1.2-dev + * dd-resizable.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-touch.ts b/src/dd-touch.ts index 3e6773615..5166400f0 100644 --- a/src/dd-touch.ts +++ b/src/dd-touch.ts @@ -1,5 +1,5 @@ /** - * touch.ts 7.1.2-dev + * touch.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-engine.ts b/src/gridstack-engine.ts index 790c8761a..b16d86269 100644 --- a/src/gridstack-engine.ts +++ b/src/gridstack-engine.ts @@ -1,5 +1,5 @@ /** - * gridstack-engine.ts 7.1.2-dev + * gridstack-engine.ts 7.2.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-poly.js b/src/gridstack-poly.js index 4d0d532bc..f6be4d22c 100644 --- a/src/gridstack-poly.js +++ b/src/gridstack-poly.js @@ -1,5 +1,5 @@ /** - * gridstack-poly.ts 7.1.2-dev used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4) + * gridstack-poly.ts 7.2.0 used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4) * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.scss b/src/gridstack.scss index cdaa45b4c..36850b917 100644 --- a/src/gridstack.scss +++ b/src/gridstack.scss @@ -1,5 +1,5 @@ /** - * gridstack SASS styles 7.1.2-dev + * gridstack SASS styles 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.ts b/src/gridstack.ts index 05612ff6f..4dd615293 100644 --- a/src/gridstack.ts +++ b/src/gridstack.ts @@ -1,5 +1,5 @@ /*! - * GridStack 7.1.2-dev + * GridStack 7.2.0 * https://gridstackjs.com/ * * Copyright (c) 2021-2022 Alain Dumesny @@ -1615,7 +1615,7 @@ export class GridStack { return this; } - static GDRev = '7.1.2-dev'; + static GDRev = '7.2.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 5d7088a16..86d16638b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ /** - * types.ts 7.1.2-dev + * types.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/utils.ts b/src/utils.ts index 634ec1117..383b9a04e 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /** - * utils.ts 7.1.2-dev + * utils.ts 7.2.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */