You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/CHANGES.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ Change log
5
5
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
6
6
**Table of Contents***generated with [DocToc](http://doctoc.herokuapp.com/)*
7
7
8
+
-[3.3.0-dev](#330-dev)
8
9
-[3.3.0 (2020-11-29)](#330-2020-11-29)
9
10
-[2.2.0 (2020-11-7)](#220-2020-11-7)
10
11
-[2.1.0 (2020-10-28)](#210-2020-10-28)
@@ -41,6 +42,9 @@ Change log
41
42
42
43
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
43
44
45
+
## 3.3.0-dev
46
+
47
+
- TBD
44
48
## 3.3.0 (2020-11-29)
45
49
46
50
- 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
51
55
- 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.
52
56
Hiding `locked()`, `move()`, `resize()`, `minWidth()`, etc... as they just simply call update() which does all the constrain now as well!
53
57
- 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)
55
60
-**** see [migrating to v3](https://github.com/gridstack/gridstack.js#migrating-to-v3)****
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "gridstack",
3
-
"version": "2.2.0-dev",
3
+
"version": "3.0.0-dev",
4
4
"description": "TypeScript/Javascript lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Ember, knockout...)",
0 commit comments