diff --git a/doc/CHANGES.md b/doc/CHANGES.md index c9753f933..dc670395c 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -66,7 +66,7 @@ Change log ## 4.3.1 (2021-10-18) * fix [#1868](https://github.com/gridstack/gridstack.js/issues/1868) prevent swap during resize * fix [#1849](https://github.com/gridstack/gridstack.js/issues/1849) [#1816](https://github.com/gridstack/gridstack.js/issues/1816) save highest resolution in 1 column mode -* fix [#1855](https://github.com/gridstack/gridstack.js/issues/1855) fix resize when padding is large vs cellHeight +* fix [#1855](https://github.com/gridstack/gridstack.js/issues/1855) resize when padding is large vs cellHeight ## 4.3.0 (2021-10-15) * you can now swap items of different width if they are the same row/height. Thanks to [spektrummedia](http://spektrummedia.com) for sponsoring it. diff --git a/package.json b/package.json index a93f5411a..1c6e9e9ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gridstack", - "version": "4.3.1", + "version": "4.3.1-dev", "description": "TypeScript/JS lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)", "main": "./dist/gridstack.js", "types": "./dist/gridstack.d.ts", diff --git a/src/gridstack-dd.ts b/src/gridstack-dd.ts index 288399067..8b601c69d 100644 --- a/src/gridstack-dd.ts +++ b/src/gridstack-dd.ts @@ -1,5 +1,5 @@ /** - * gridstack-dd.ts 4.3.1 + * gridstack-dd.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-ddi.ts b/src/gridstack-ddi.ts index 5543abd00..73bde96d7 100644 --- a/src/gridstack-ddi.ts +++ b/src/gridstack-ddi.ts @@ -1,5 +1,5 @@ /** - * gridstack-ddi.ts 4.3.1 + * gridstack-ddi.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-engine.ts b/src/gridstack-engine.ts index 6a9723574..560d514d3 100644 --- a/src/gridstack-engine.ts +++ b/src/gridstack-engine.ts @@ -1,5 +1,5 @@ /** - * gridstack-engine.ts 4.3.1 + * gridstack-engine.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-h5.ts b/src/gridstack-h5.ts index 5736f872e..63d59fb10 100644 --- a/src/gridstack-h5.ts +++ b/src/gridstack-h5.ts @@ -1,5 +1,5 @@ /** - * index-h5.ts 4.3.1 - everything you need for a Grid that uses HTML5 native drag&drop + * index-h5.ts 4.3.1-dev - everything you need for a Grid that uses HTML5 native drag&drop * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-jq.ts b/src/gridstack-jq.ts index 79cd947ef..46299ddb0 100644 --- a/src/gridstack-jq.ts +++ b/src/gridstack-jq.ts @@ -1,5 +1,5 @@ /** - * index-jq.ts 4.3.1 - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature) + * index-jq.ts 4.3.1-dev - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature) * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-poly.js b/src/gridstack-poly.js index e68895318..8419d588b 100644 --- a/src/gridstack-poly.js +++ b/src/gridstack-poly.js @@ -1,5 +1,5 @@ /** - * gridstack-poly.ts 4.3.1 - used for older browser support (not currently supported in v2+) + * gridstack-poly.ts 4.3.1-dev - used for older browser support (not currently supported in v2+) * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack-static.ts b/src/gridstack-static.ts index 1a8737994..baa6be575 100644 --- a/src/gridstack-static.ts +++ b/src/gridstack-static.ts @@ -1,5 +1,5 @@ /** - * index-static.ts 4.3.1 - much smaller, everything you need for a static Grid (non draggable, API driven) + * index-static.ts 4.3.1-dev - much smaller, everything you need for a static Grid (non draggable, API driven) * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.scss b/src/gridstack.scss index a839b60a2..0859733e0 100644 --- a/src/gridstack.scss +++ b/src/gridstack.scss @@ -1,5 +1,5 @@ /** - * gridstack SASS styles 4.3.1 + * gridstack SASS styles 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/gridstack.ts b/src/gridstack.ts index 5584cd9d2..a5fd986f3 100644 --- a/src/gridstack.ts +++ b/src/gridstack.ts @@ -1,5 +1,5 @@ /*! - * GridStack 4.3.1 + * GridStack 4.3.1-dev * https://gridstackjs.com/ * * Copyright (c) 2021 Alain Dumesny diff --git a/src/h5/dd-base-impl.ts b/src/h5/dd-base-impl.ts index 038f7de49..eab9c5c76 100644 --- a/src/h5/dd-base-impl.ts +++ b/src/h5/dd-base-impl.ts @@ -1,5 +1,5 @@ /** - * dd-base-impl.ts 4.3.1 + * dd-base-impl.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-draggable.ts b/src/h5/dd-draggable.ts index 35eb6be66..24d138fec 100644 --- a/src/h5/dd-draggable.ts +++ b/src/h5/dd-draggable.ts @@ -1,5 +1,5 @@ /** - * dd-draggable.ts 4.3.1 + * dd-draggable.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-droppable.ts b/src/h5/dd-droppable.ts index 7eb158cd0..684c9cbc6 100644 --- a/src/h5/dd-droppable.ts +++ b/src/h5/dd-droppable.ts @@ -1,5 +1,5 @@ /** - * dd-droppable.ts 4.3.1 + * dd-droppable.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-element.ts b/src/h5/dd-element.ts index 8856833d0..6948ae36f 100644 --- a/src/h5/dd-element.ts +++ b/src/h5/dd-element.ts @@ -1,5 +1,5 @@ /** - * dd-elements.ts 4.3.1 + * dd-elements.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-manager.ts b/src/h5/dd-manager.ts index 0a05d4948..e74a17a74 100644 --- a/src/h5/dd-manager.ts +++ b/src/h5/dd-manager.ts @@ -1,5 +1,5 @@ /** - * dd-manager.ts 4.3.1 + * dd-manager.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-resizable-handle.ts b/src/h5/dd-resizable-handle.ts index 381fd4e5a..f953329ea 100644 --- a/src/h5/dd-resizable-handle.ts +++ b/src/h5/dd-resizable-handle.ts @@ -1,5 +1,5 @@ /** - * dd-resizable-handle.ts 4.3.1 + * dd-resizable-handle.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-resizable.ts b/src/h5/dd-resizable.ts index 88419a94a..27c0bf8a0 100644 --- a/src/h5/dd-resizable.ts +++ b/src/h5/dd-resizable.ts @@ -1,5 +1,5 @@ /** - * dd-resizable.ts 4.3.1 + * dd-resizable.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/h5/dd-utils.ts b/src/h5/dd-utils.ts index 0d132f5ed..e279b8ea7 100644 --- a/src/h5/dd-utils.ts +++ b/src/h5/dd-utils.ts @@ -1,5 +1,5 @@ /** - * dd-utils.ts 4.3.1 + * dd-utils.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ export class DDUtils { diff --git a/src/h5/gridstack-dd-native.ts b/src/h5/gridstack-dd-native.ts index de4c4d598..700449c15 100644 --- a/src/h5/gridstack-dd-native.ts +++ b/src/h5/gridstack-dd-native.ts @@ -1,5 +1,5 @@ /** - * gridstack-dd-native.ts 4.3.1 + * gridstack-dd-native.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/jq/gridstack-dd-jqueryui.ts b/src/jq/gridstack-dd-jqueryui.ts index 6050b0082..a3679d3b4 100644 --- a/src/jq/gridstack-dd-jqueryui.ts +++ b/src/jq/gridstack-dd-jqueryui.ts @@ -1,4 +1,4 @@ -// gridstack-dd-jqueryui.ts 4.3.1 +// gridstack-dd-jqueryui.ts 4.3.1-dev // Copyright (c) 2021 Alain Dumesny - see root license import { GridStackElement } from '../gridstack'; import { GridStackDD, DDOpts, DDKey, DDDropOpt, DDCallback, DDValue } from '../gridstack-dd'; diff --git a/src/types.ts b/src/types.ts index 3079796a2..072a2f483 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ /** - * types.ts 4.3.1 + * types.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */ diff --git a/src/utils.ts b/src/utils.ts index d97dd7339..914eeb46e 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /** - * utils.ts 4.3.1 + * utils.ts 4.3.1-dev * Copyright (c) 2021 Alain Dumesny - see GridStack root license */