Skip to content

Commit b435179

Browse files
authored
Merge pull request #1409 from adumesny/develop
v2.0.2
2 parents b89aac9 + 92ae97d commit b435179

21 files changed

+29
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ alternatively in html
9696
or using CDN (minimized):
9797

9898
```html
99-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.0.1/dist/gridstack.min.css" />
100-
<script src="https://cdn.jsdelivr.net/npm/gridstack@2.0.1/dist/gridstack.all.js"></script>
99+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.0.2/dist/gridstack.min.css" />
100+
<script src="https://cdn.jsdelivr.net/npm/gridstack@2.0.2/dist/gridstack.all.js"></script>
101101
```
102102

103103
.map files are included for debugging purposes.
@@ -194,7 +194,7 @@ GridStack.init( {column: N} );
194194

195195
2) include `gridstack-extra.css` if **N < 12** (else custom CSS - see next). Without these, things will not render/work correctly.
196196
```html
197-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.0.1/dist/gridstack-extra.css"/>
197+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.0.2/dist/gridstack-extra.css"/>
198198

199199
<div class="grid-stack grid-stack-N">...</div>
200200
```

doc/CHANGES.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +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-
- [2.0.1-dev](#201-dev)
8+
- [2.0.2-dev](#202-dev)
9+
- [2.0.2 (2020-10-05)](#202-2020-10-05)
910
- [2.0.1 (2020-09-26)](#201-2020-09-26)
1011
- [2.0.0 (2020-09-07)](#200-2020-09-07)
1112
- [1.2.1 (2020-09-04)](#121-2020-09-04)
@@ -38,7 +39,11 @@ Change log
3839

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

41-
## 2.0.1-dev
42+
## 2.0.2-dev
43+
44+
- TBD
45+
46+
## 2.0.2 (2020-10-05)
4247

4348
- fix `animate` to not re-create CSS style each time (should be faster too) and made it default now since so much nicer. pass `{animate: false}` grid options if you want instant again [937](https://github.com/gridstack/gridstack.js/issues/937)
4449
- fix `resizable: { handles: ...}` forcing `alwaysShowResizeHandle` behavior [1373](https://github.com/gridstack/gridstack.js/issues/1373)

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.0.1-dev",
3+
"version": "2.0.2-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/dragdrop/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.0.1-dev @preserve
1+
// dd-base-impl.ts 2.0.2-dev @preserve
22

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

src/dragdrop/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.0.1-dev @preserve
1+
// dd-draggable.ts 2.0.2-dev @preserve
22

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

src/dragdrop/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.0.1-dev @preserve
1+
// dd-droppable.ts 2.0.2-dev @preserve
22

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

src/dragdrop/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 2.0.1-dev @preserve
1+
// dd-elements.ts 2.0.2-dev @preserve
22

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

src/dragdrop/dd-manager.ts

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

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

src/dragdrop/dd-resizable-handle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// dd-resizable-handle.ts 2.0.1-dev @preserve
1+
// dd-resizable-handle.ts 2.0.2-dev @preserve
22

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

src/dragdrop/dd-resizable.ts

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

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

0 commit comments

Comments
 (0)