Skip to content

Commit c953726

Browse files
committed
v3.0.0 release
1 parent f6e972d commit c953726

22 files changed

+27
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Alternatively in html
8585
<link href="node_modules/gridstack/dist/gridstack.min.css" rel="stylesheet"/>
8686
<!-- HTML5 drag&drop (63k) -->
8787
<script src="node_modules/gridstack/dist/gridstack-h5.js"></script>
88-
<!-- OR jquery-ui drag&drop (188k) -->
88+
<!-- OR jquery-ui drag&drop (186k) -->
8989
<script src="node_modules/gridstack/dist/gridstack-jq.js"></script>
9090
<!-- OR static grid (34k) -->
9191
<script src="node_modules/gridstack/dist/gridstack-static.js"></script>

doc/CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +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+
- [3.3.0-dev](#330-dev)
89
- [3.3.0 (2020-11-29)](#330-2020-11-29)
910
- [2.2.0 (2020-11-7)](#220-2020-11-7)
1011
- [2.1.0 (2020-10-28)](#210-2020-10-28)
@@ -41,6 +42,9 @@ Change log
4142

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

45+
## 3.3.0-dev
46+
47+
- TBD
4448
## 3.3.0 (2020-11-29)
4549

4650
- 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.
@@ -51,7 +55,8 @@ Change log
5155
- fix [1235](https://github.com/gridstack/gridstack.js/issues/1235) `update(el, opts)` re-write to take all `GridStackWidget` options (not just x,y,width,height) and do everything efficiently.
5256
Hiding `locked()`, `move()`, `resize()`, `minWidth()`, etc... as they just simply call update() which does all the constrain now as well!
5357
- del `ddPlugin` grid option as we only have one drag&drop plugin at runtime, which is defined by the include you use (HTML5 vs jquery vs none)
54-
- change attribute like `data-gs-min-width` is now `gs-min-w`. We removed 'data-' from all attributes, and shorten 'width|height' to just 'w|h' to require typing and more efficient [1491](https://github.com/gridstack/gridstack.js/pull/1491)
58+
- change attribute `data-gs-min-width` is now `gs-min-w`. We removed 'data-' from all attributes, and shorten 'width|height' to just 'w|h' to require less typing and more efficient (2k saved in .js alone!) [1491](https://github.com/gridstack/gridstack.js/pull/1491) [1492](https://github.com/gridstack/gridstack.js/pull/1492)
59+
- also `GridStackWidget` used in most API `width|height|minWidth|minHeight|maxWidth|maxHeight` are now shorter `w|h|minW|minH|maxW|maxH` as well [1493](https://github.com/gridstack/gridstack.js/pull/1493)
5560
- **** see [migrating to v3](https://github.com/gridstack/gridstack.js#migrating-to-v3) ****
5661

5762
## 2.2.0 (2020-11-7)

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": "2.2.0-dev",
3+
"version": "3.0.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 2.2.0-dev @preserve
1+
// gridstack-GridStackDD.get().ts 3.0.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 2.2.0-dev @preserve
1+
// gridstack-ddi.ts 3.0.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 2.2.0-dev @preserve
1+
// gridstack-engine.ts 3.0.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 2.2.0-dev @preserve
1+
// gridstack.ts 3.0.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 2.2.0-dev @preserve
1+
// dd-base-impl.ts 3.0.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 2.2.0-dev @preserve
1+
// dd-draggable.ts 3.0.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 2.2.0-dev @preserve
1+
// dd-droppable.ts 3.0.0-dev @preserve
22

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

0 commit comments

Comments
 (0)