From c80c6735bb66c68b83991a36f25b45f373e50cc8 Mon Sep 17 00:00:00 2001 From: Alain Dumesny Date: Wed, 20 Sep 2023 18:35:54 -0700 Subject: [PATCH] v9.2.1 --- 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 | 4 ++++ 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 +- webpack.config.js | 4 ++-- 23 files changed, 28 insertions(+), 24 deletions(-) diff --git a/angular/projects/lib/package.json b/angular/projects/lib/package.json index cedb58d15..0f7af1fb9 100644 --- a/angular/projects/lib/package.json +++ b/angular/projects/lib/package.json @@ -1,6 +1,6 @@ { "name": "gridstack-angular", - "version": "9.2.0-dev", + "version": "9.2.1", "peerDependencies": { "@angular/common": "^14.2.0", "@angular/core": "^14.2.0" diff --git a/angular/projects/lib/src/lib/base-widget.ts b/angular/projects/lib/src/lib/base-widget.ts index a6ac68ade..070131958 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 9.2.0-dev + * gridstack-item.component.ts 9.2.1 * Copyright (c) 2022 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 f62fa1d00..92a8d8df3 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 9.2.0-dev + * gridstack-item.component.ts 9.2.1 * Copyright (c) 2022 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 7d5c9994e..9c1e5abaa 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 9.2.0-dev + * gridstack.component.ts 9.2.1 * Copyright (c) 2022 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 e28cbe1c8..17433bc86 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 9.2.0-dev + * gridstack.component.ts 9.2.1 * Copyright (c) 2022 Alain Dumesny - see GridStack root license */ diff --git a/doc/CHANGES.md b/doc/CHANGES.md index e364fcb05..a9168e8a3 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -5,6 +5,7 @@ Change log **Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)* +- [9.2.1 (2023-09-20)](#921-2023-09-20) - [9.2.0 (2023-09-10)](#920-2023-09-10) - [9.1.1 (2023-09-06)](#911-2023-09-06) - [9.1.0 (2023-09-04)](#910-2023-09-04) @@ -98,6 +99,9 @@ Change log +## 9.2.1 (2023-09-20) +* fix _updateContainerHeight() to use height rather than min-height again (apart for nested grids which need it) and partial getComputedStyle CSS minHeight support + ## 9.2.0 (2023-09-10) * feat: nested grids now support `sizeToContent` to size themselves to how many sub items they contain - Thank you [@Helix](https://gridstackjs.slack.com/team/U05QT7G8H7T) for sponsoring this! * fix [#2449](https://github.com/gridstack/gridstack.js/issues/2449) full grid maxRow fix diff --git a/package.json b/package.json index d5c7067c4..3bd27c059 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gridstack", - "version": "9.2.0-dev", + "version": "9.2.1", "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 52e99139f..433eedc7b 100644 --- a/src/dd-base-impl.ts +++ b/src/dd-base-impl.ts @@ -1,5 +1,5 @@ /** - * dd-base-impl.ts 9.2.0-dev + * dd-base-impl.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-draggable.ts b/src/dd-draggable.ts index 0695d0806..8f0243e3e 100644 --- a/src/dd-draggable.ts +++ b/src/dd-draggable.ts @@ -1,5 +1,5 @@ /** - * dd-draggable.ts 9.2.0-dev + * dd-draggable.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-droppable.ts b/src/dd-droppable.ts index fe3a9a229..11f1d7401 100644 --- a/src/dd-droppable.ts +++ b/src/dd-droppable.ts @@ -1,5 +1,5 @@ /** - * dd-droppable.ts 9.2.0-dev + * dd-droppable.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-element.ts b/src/dd-element.ts index f74f7d7d6..51064011b 100644 --- a/src/dd-element.ts +++ b/src/dd-element.ts @@ -1,5 +1,5 @@ /** - * dd-elements.ts 9.2.0-dev + * dd-elements.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-gridstack.ts b/src/dd-gridstack.ts index 60447a2e4..057fe2b05 100644 --- a/src/dd-gridstack.ts +++ b/src/dd-gridstack.ts @@ -1,5 +1,5 @@ /** - * dd-gridstack.ts 9.2.0-dev + * dd-gridstack.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-manager.ts b/src/dd-manager.ts index 3f21ae8e9..3c26e49c4 100644 --- a/src/dd-manager.ts +++ b/src/dd-manager.ts @@ -1,5 +1,5 @@ /** - * dd-manager.ts 9.2.0-dev + * dd-manager.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable-handle.ts b/src/dd-resizable-handle.ts index 36d86d024..8484b36be 100644 --- a/src/dd-resizable-handle.ts +++ b/src/dd-resizable-handle.ts @@ -1,5 +1,5 @@ /** - * dd-resizable-handle.ts 9.2.0-dev + * dd-resizable-handle.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable.ts b/src/dd-resizable.ts index 12a0c56da..97387955e 100644 --- a/src/dd-resizable.ts +++ b/src/dd-resizable.ts @@ -1,5 +1,5 @@ /** - * dd-resizable.ts 9.2.0-dev + * dd-resizable.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-touch.ts b/src/dd-touch.ts index d9b148f13..59c0c195d 100644 --- a/src/dd-touch.ts +++ b/src/dd-touch.ts @@ -1,5 +1,5 @@ /** - * touch.ts 9.2.0-dev + * touch.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-engine.ts b/src/gridstack-engine.ts index 876f24583..58e65be12 100644 --- a/src/gridstack-engine.ts +++ b/src/gridstack-engine.ts @@ -1,5 +1,5 @@ /** - * gridstack-engine.ts 9.2.0-dev + * gridstack-engine.ts 9.2.1 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-poly.js b/src/gridstack-poly.js index 14fe0b78a..b81206533 100644 --- a/src/gridstack-poly.js +++ b/src/gridstack-poly.js @@ -1,5 +1,5 @@ /** - * gridstack-poly.ts 9.2.0-dev used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4) + * gridstack-poly.ts 9.2.1 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 da63a37be..abdddf30f 100644 --- a/src/gridstack.scss +++ b/src/gridstack.scss @@ -1,5 +1,5 @@ /** - * gridstack SASS styles 9.2.0-dev + * gridstack SASS styles 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.ts b/src/gridstack.ts index 6dea00491..77b0953be 100644 --- a/src/gridstack.ts +++ b/src/gridstack.ts @@ -1,5 +1,5 @@ /*! - * GridStack 9.2.0-dev + * GridStack 9.2.1 * https://gridstackjs.com/ * * Copyright (c) 2021-2022 Alain Dumesny @@ -1787,7 +1787,7 @@ export class GridStack { return this; } - static GDRev = '9.2.0-dev'; + static GDRev = '9.2.1'; /* =========================================================================================== * 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 24940ae9b..21919212b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ /** - * types.ts 9.2.0-dev + * types.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/utils.ts b/src/utils.ts index dfd4b8ee1..95ed74566 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /** - * utils.ts 9.2.0-dev + * utils.ts 9.2.1 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/webpack.config.js b/webpack.config.js index 2a85b970e..b6c859340 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,8 +5,8 @@ module.exports = { 'gridstack-all': './src/gridstack.ts', }, mode: 'production', // production vs development - // devtool: 'source-map', - devtool: 'eval-source-map', // for best (large .js) debugging. see https://survivejs.com/webpack/building/source-maps/ + devtool: 'source-map', + // devtool: 'eval-source-map', // for best (large .js) debugging. see https://survivejs.com/webpack/building/source-maps/ module: { rules: [ {