Skip to content

Commit c03aed1

Browse files
author
Alain Dumesny
authored
Merge pull request #1518 from adumesny/develop
rev 3.1.0
2 parents f2ef805 + b38962f commit c03aed1

21 files changed

+30
-24
lines changed

doc/CHANGES.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ 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-
- [3.3.0-dev](#330-dev)
9-
- [3.3.0 (2020-11-29)](#330-2020-11-29)
8+
- [3.1.0-dev](#310-dev)
9+
- [3.1.0 (2020-12-4)](#310-2020-12-4)
10+
- [3.0.0 (2020-11-29)](#300-2020-11-29)
1011
- [2.2.0 (2020-11-7)](#220-2020-11-7)
1112
- [2.1.0 (2020-10-28)](#210-2020-10-28)
1213
- [2.0.2 (2020-10-05)](#202-2020-10-05)
@@ -42,15 +43,20 @@ Change log
4243

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

45-
## 3.3.0-dev
46+
## 3.1.0-dev
47+
48+
- TBD
49+
50+
## 3.1.0 (2020-12-4)
4651

4752
- add new `addGrid(parent, opts)` to create a grid and load children instead of `init() + load()`, which is used by `load()` to supports nested grids creation.
4853
see [nested.html](https://github.com/gridstack/gridstack.js/blob/develop/demo/nested.html) demo.
4954
- `save()` will now work on nested grids, recursively saving info. added flag to also allow saving the current grid options + children
5055
(needed for nested grids) so you can now call new `adddGrid()` to re-create everything from JSON.
5156
- fix [1505](https://github.com/gridstack/gridstack.js/issues/1505) don't call `movable()`/`resizable()` on locked items error. thanks [@infime](https://github.com/infime)
57+
- fix [1517](https://github.com/gridstack/gridstack.js/pull/1517) force typescript 3.6 as 3.7 has breaking change
5258

53-
## 3.3.0 (2020-11-29)
59+
## 3.0.0 (2020-11-29)
5460

5561
- the big news is we finally have a native HTML5 drag&drop plugin (zero jquery)! Huge thanks to [@rhlin](https://github.com/rhlin) for creating this in stealth mode. Read all about it in main doc.
5662
- we now have a React example, in addition to Vue - Angular is next!. thanks [@eloparco](https://github.com/eloparco)

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": "3.0.0-dev",
3+
"version": "3.1.0-dev",
44
"description": "TypeScript/Javascript lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Ember, knockout...)",
55
"main": "./dist/gridstack.js",
66
"types": "./dist/gridstack.d.ts",

src/gridstack-dd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack-GridStackDD.get().ts 3.0.0-dev @preserve
1+
// gridstack-GridStackDD.get().ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/gridstack-ddi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack-ddi.ts 3.0.0-dev @preserve
1+
// gridstack-ddi.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/gridstack-engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack-engine.ts 3.0.0-dev @preserve
1+
// gridstack-engine.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/gridstack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack.ts 3.0.0-dev @preserve
1+
// gridstack.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/h5/dd-base-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dd-base-impl.ts 3.0.0-dev @preserve
1+
// dd-base-impl.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/h5/dd-draggable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dd-draggable.ts 3.0.0-dev @preserve
1+
// dd-draggable.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/h5/dd-droppable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dd-droppable.ts 3.0.0-dev @preserve
1+
// dd-droppable.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

src/h5/dd-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dd-elements.ts 3.0.0-dev @preserve
1+
// dd-elements.ts 3.1.0-dev @preserve
22

33
/**
44
* https://gridstackjs.com/

0 commit comments

Comments
 (0)