Skip to content

Commit 782aeee

Browse files
authored
Merge pull request #2067 from adumesny/master
v7.0.0
2 parents ebdd791 + 104efbd commit 782aeee

18 files changed

+28
-23
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Join us on Slack: https://gridstackjs.slack.com
4343
- [Migrating to v4](#migrating-to-v4)
4444
- [Migrating to v5](#migrating-to-v5)
4545
- [Migrating to v6](#migrating-to-v6)
46+
- [Migrating to v7](#migrating-to-v7)
4647
- [jQuery Application](#jquery-application)
4748
- [Changes](#changes)
4849
- [The Team](#the-team)
@@ -436,10 +437,14 @@ You can now drag in/out of parent into nested child, with new API parameters val
436437
437438
## Migrating to v6
438439
439-
the API did not really change from v5, but a complete re-write of Drag&Drop to use native mouseevent (instead of HTML draggable=true which is buggy on Mac Safari, and doesn't work on mobile devices) and touchevent (mobile), and we no longer have jquery ui option (wasn't working well for nested grids, didn't want to maintain legacy lib).
440+
the API did not really change from v5, but a complete re-write of Drag&Drop to use native `mouseevent` (instead of HTML draggable=true which is buggy on Mac Safari, and doesn't work on mobile devices) and `touchevent` (mobile), and we no longer have jquery ui option (wasn't working well for nested grids, didn't want to maintain legacy lib).
440441
441442
The main difference is you only need to include gridstack.js and get D&D (desktop and mobile) out of the box for the same size as h5 version.
442443
444+
## Migrating to v7
445+
446+
New addition, no API breakage per say. See release notes about creating sub-grids on the fly.
447+
443448
# jQuery Application
444449
445450
This is **old and no longer apply to v6+**. You'll need to use v5.1.1 and before

doc/CHANGES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ 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-
- [7.0.0-dev (TBD)](#700-dev-tbd)
9-
- [6.0.3-dev (2022-10-08)](#603-dev-2022-10-08)
8+
- [7.0.0 (2022-10-09)](#700-2022-10-09)
9+
- [6.0.3 (2022-10-08)](#603-2022-10-08)
1010
- [6.0.2 (2022-09-23)](#602-2022-09-23)
1111
- [6.0.1 (2022-08-27)](#601-2022-08-27)
1212
- [6.0.0 (2022-08-21)](#600-2022-08-21)
@@ -73,15 +73,15 @@ Change log
7373

7474
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
7575

76-
## 7.0.0-dev (TBD)
76+
## 7.0.0 (2022-10-09)
7777
* add [#1009](https://github.com/gridstack/gridstack.js/issues/1009) Create sub-grids on the fly,
7878
by dragging items completely over others (nest) vs partially (push) using new flag `GridStackOptions.subGridDynamic=true`.
7979
Thank you [StephanP] for sponsoring it.<br>
8080
See [advance Nested](https://github.com/gridstack/gridstack.js/blob/master/demo/nested_advanced.html)
8181
* add - ability to pause drag&drop collision until the user stops moving - see `DDDragOpt.pause` (used for creating nested grids on the fly based on gesture).
82-
* add [#1943](https://github.com/gridstack/gridstack.js/issues/1943) you cna now drag sub-grids into other sub-grids
82+
* add [#1943](https://github.com/gridstack/gridstack.js/issues/1943) you can now drag sub-grids into other sub-grids
8383

84-
## 6.0.3-dev (2022-10-08)
84+
## 6.0.3 (2022-10-08)
8585
* fixed [#2055](https://github.com/gridstack/gridstack.js/issues/2055) maxRow=1 resize outside (broke in 6.0.1)
8686
* fixed [#2054](https://github.com/gridstack/gridstack.js/issues/2054) Can't enter text in textarea/input (broke in v6)
8787

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.3-dev",
3+
"version": "7.0.0",
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.3-dev
2+
* dd-base-impl.ts 7.0.0
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.3-dev
2+
* dd-draggable.ts 7.0.0
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.3-dev
2+
* dd-droppable.ts 7.0.0
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.3-dev
2+
* dd-elements.ts 7.0.0
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.3-dev
2+
* dd-gridstack.ts 7.0.0
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.3-dev
2+
* dd-manager.ts 7.0.0
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.3-dev
2+
* dd-resizable-handle.ts 7.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

0 commit comments

Comments
 (0)