Skip to content

Commit b02f9a8

Browse files
authored
Merge pull request #2026 from adumesny/master
v6.0.1
2 parents 622ae1d + 6dd4d07 commit b02f9a8

17 files changed

+21
-19
lines changed

doc/CHANGES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Change log
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

8-
- [6.0.0-dev (TBD)](#600-dev-tbd)
8+
- [6.0.1 (2022-08-27)](#601-2022-08-27)
99
- [6.0.0 (2022-08-21)](#600-2022-08-21)
1010
- [5.1.1 (2022-06-16)](#511-2022-06-16)
1111
- [5.1.0 (2022-05-21)](#510-2022-05-21)
@@ -69,8 +69,10 @@ Change log
6969
- [v0.1.0 (2014-11-18)](#v010-2014-11-18)
7070

7171
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
72-
## 6.0.0-dev (TBD)
72+
## 6.0.1 (2022-08-27)
7373
* fixed `float(val)` to set on grid and engine, so save() will read it.
74+
* fixed [#2018](https://github.com/gridstack/gridstack.js/issues/2018) mouseover and React different behavior
75+
* fixed getting nested grid resize handles while dragging child
7476

7577
## 6.0.0 (2022-08-21)
7678
* converted previous HTML5 `draggable=true` based code to simple Mouse Events and Touch mobile support for drag&Drop.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "6.0.0-dev",
3+
"version": "6.0.1",
44
"description": "TypeScript/JS lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)",
55
"main": "./dist/gridstack.js",
66
"types": "./dist/gridstack.d.ts",

src/dd-base-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-base-impl.ts 6.0.0-dev
2+
* dd-base-impl.ts 6.0.1
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-draggable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-draggable.ts 6.0.0-dev
2+
* dd-draggable.ts 6.0.1
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-droppable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-droppable.ts 6.0.0-dev
2+
* dd-droppable.ts 6.0.1
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-elements.ts 6.0.0-dev
2+
* dd-elements.ts 6.0.1
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-gridstack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-gridstack.ts 6.0.0-dev
2+
* dd-gridstack.ts 6.0.1
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-manager.ts 6.0.0-dev
2+
* dd-manager.ts 6.0.1
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-resizable-handle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-resizable-handle.ts 6.0.0-dev
2+
* dd-resizable-handle.ts 6.0.1
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-resizable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-resizable.ts 6.0.0-dev
2+
* dd-resizable.ts 6.0.1
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

0 commit comments

Comments
 (0)