From 12f774b48fb2fcbfc2a12a500c25772c2dd79147 Mon Sep 17 00:00:00 2001 From: Alain Dumesny Date: Sun, 4 Feb 2024 09:36:24 -0800 Subject: [PATCH] v10.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 | 5 +++-- 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(+), 24 deletions(-) diff --git a/angular/projects/lib/package.json b/angular/projects/lib/package.json index a12540089..bf83718b3 100644 --- a/angular/projects/lib/package.json +++ b/angular/projects/lib/package.json @@ -1,6 +1,6 @@ { "name": "gridstack-angular", - "version": "10.0.1-dev", + "version": "10.1.0", "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 455441c88..5b320bb15 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 10.0.1-dev + * gridstack-item.component.ts 10.1.0 * 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 c0b98c248..e426d0519 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 10.0.1-dev + * gridstack-item.component.ts 10.1.0 * 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 19ff6e34b..7cc1705c8 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 10.0.1-dev + * gridstack.component.ts 10.1.0 * 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 eb3f52c36..b41f870fe 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 10.0.1-dev + * gridstack.component.ts 10.1.0 * Copyright (c) 2022 Alain Dumesny - see GridStack root license */ diff --git a/doc/CHANGES.md b/doc/CHANGES.md index c998f1fef..6f29b6bcc 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/)* -- [10.0.1-dev (TBD)](#1001-dev-tbd) +- [10.1.0 (2024-02-04)](#1010-2024-02-04) - [10.0.1 (2023-12-10)](#1001-2023-12-10) - [10.0.0 (2023-11-20)](#1000-2023-11-20) - [9.5.1 (2023-11-11)](#951-2023-11-11) @@ -107,7 +107,7 @@ Change log -## 10.0.1-dev (TBD) +## 10.1.0 (2024-02-04) * feat: [#2574](https://github.com/gridstack/gridstack.js/pull/2574) Allow cell height in cm and mm units * feat: [#2578](https://github.com/gridstack/gridstack.js/pull/2578) allow different scaling between drag toolbar and grid * fix: [#2577](https://github.com/gridstack/gridstack.js/issues/2577) ui-resizable-s/-n style fix @@ -115,6 +115,7 @@ Change log * fix: [#2560](https://github.com/gridstack/gridstack.js/issues/2560) nested grid fix (enter can call leave which can call enter again) - Thank you [v1talii-dev](https://github.com/v1talii-dev) * fix: [#2596](https://github.com/gridstack/gridstack.js/pull/2596) prevent SSR crash * fix: [#2610](https://github.com/gridstack/gridstack.js/pull/2610) using passive:true for mousemove events +* fix: [#2612](https://github.com/gridstack/gridstack.js/pull/2612) restrict vertical resize if `sizeToContent:true` * demo: nested.htm now has nested create and drag&drop example - Thank you [fredericrous](https://github.com/fredericrous) ## 10.0.1 (2023-12-10) diff --git a/package.json b/package.json index dafad2124..2bca1ed6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gridstack", - "version": "10.0.1-dev", + "version": "10.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 1ad7145d8..308e6c127 100644 --- a/src/dd-base-impl.ts +++ b/src/dd-base-impl.ts @@ -1,5 +1,5 @@ /** - * dd-base-impl.ts 10.0.1-dev + * dd-base-impl.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-draggable.ts b/src/dd-draggable.ts index a60cca995..ca8573c8d 100644 --- a/src/dd-draggable.ts +++ b/src/dd-draggable.ts @@ -1,5 +1,5 @@ /** - * dd-draggable.ts 10.0.1-dev + * dd-draggable.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-droppable.ts b/src/dd-droppable.ts index ef5a2f569..544a8689e 100644 --- a/src/dd-droppable.ts +++ b/src/dd-droppable.ts @@ -1,5 +1,5 @@ /** - * dd-droppable.ts 10.0.1-dev + * dd-droppable.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-element.ts b/src/dd-element.ts index 6d412d341..3f15bc262 100644 --- a/src/dd-element.ts +++ b/src/dd-element.ts @@ -1,5 +1,5 @@ /** - * dd-elements.ts 10.0.1-dev + * dd-elements.ts 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-gridstack.ts b/src/dd-gridstack.ts index bac79fdfa..fd5f5e358 100644 --- a/src/dd-gridstack.ts +++ b/src/dd-gridstack.ts @@ -1,5 +1,5 @@ /** - * dd-gridstack.ts 10.0.1-dev + * dd-gridstack.ts 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-manager.ts b/src/dd-manager.ts index 7e28ba030..e4106fa65 100644 --- a/src/dd-manager.ts +++ b/src/dd-manager.ts @@ -1,5 +1,5 @@ /** - * dd-manager.ts 10.0.1-dev + * dd-manager.ts 10.1.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 0e593de96..8d858a7ac 100644 --- a/src/dd-resizable-handle.ts +++ b/src/dd-resizable-handle.ts @@ -1,5 +1,5 @@ /** - * dd-resizable-handle.ts 10.0.1-dev + * dd-resizable-handle.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-resizable.ts b/src/dd-resizable.ts index e4dc30fa7..d73477bff 100644 --- a/src/dd-resizable.ts +++ b/src/dd-resizable.ts @@ -1,5 +1,5 @@ /** - * dd-resizable.ts 10.0.1-dev + * dd-resizable.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/dd-touch.ts b/src/dd-touch.ts index d9244ccbf..aca2d9e57 100644 --- a/src/dd-touch.ts +++ b/src/dd-touch.ts @@ -1,5 +1,5 @@ /** - * touch.ts 10.0.1-dev + * touch.ts 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-engine.ts b/src/gridstack-engine.ts index e4d1569d7..735b33a08 100644 --- a/src/gridstack-engine.ts +++ b/src/gridstack-engine.ts @@ -1,5 +1,5 @@ /** - * gridstack-engine.ts 10.0.1-dev + * gridstack-engine.ts 10.1.0 * Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-poly.js b/src/gridstack-poly.js index 2318059c4..3732d2456 100644 --- a/src/gridstack-poly.js +++ b/src/gridstack-poly.js @@ -1,5 +1,5 @@ /** - * gridstack-poly.ts 10.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 10.1.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 f1058087f..61d4025e3 100644 --- a/src/gridstack.scss +++ b/src/gridstack.scss @@ -1,5 +1,5 @@ /** - * gridstack SASS styles 10.0.1-dev + * gridstack SASS styles 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.ts b/src/gridstack.ts index 95ec3da59..5ae201ad4 100644 --- a/src/gridstack.ts +++ b/src/gridstack.ts @@ -1,5 +1,5 @@ /*! - * GridStack 10.0.1-dev + * GridStack 10.1.0 * https://gridstackjs.com/ * * Copyright (c) 2021-2022 Alain Dumesny @@ -1892,7 +1892,7 @@ export class GridStack { return this; } - static GDRev = '10.0.1-dev'; + static GDRev = '10.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 32775a08f..1b9d18a05 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ /** - * types.ts 10.0.1-dev + * types.ts 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/utils.ts b/src/utils.ts index 15849a5ec..b5aecd871 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /** - * utils.ts 10.0.1-dev + * utils.ts 10.1.0 * Copyright (c) 2021 Alain Dumesny - see GridStack root license */