Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b7fd42e

Browse files
authored
Merge pull request gridstack#1427 from adumesny/develop
v2.1.0 release
2 parents f41fdac + 12a06c6 commit b7fd42e

File tree

9 files changed

+17
-12
lines changed

9 files changed

+17
-12
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.2/dist/gridstack.min.css" />
100-
<script src="https://cdn.jsdelivr.net/npm/gridstack@2.0.2/dist/gridstack.all.js"></script>
99+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.1.0/dist/gridstack.min.css" />
100+
<script src="https://cdn.jsdelivr.net/npm/gridstack@2.1.0/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.2/dist/gridstack-extra.css"/>
197+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gridstack@2.1.0/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.2-dev](#202-dev)
8+
- [2.1.0-dev](#210-dev)
9+
- [2.1.0 (2020-10-28)](#210-2020-10-28)
910
- [2.0.2 (2020-10-05)](#202-2020-10-05)
1011
- [2.0.1 (2020-09-26)](#201-2020-09-26)
1112
- [2.0.0 (2020-09-07)](#200-2020-09-07)
@@ -39,7 +40,11 @@ Change log
3940

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

42-
## 2.0.2-dev
43+
## 2.1.0-dev
44+
45+
- TBD
46+
47+
## 2.1.0 (2020-10-28)
4348

4449
- fix grid `static: true` to no longer add any drag&drop (even disabled) which should speed things up, and `setStatic(T/F)` will now correctly add it back/delete for items that need it only.
4550
Also fixed JQ draggable warning if not initialized first [858](https://github.com/gridstack/gridstack.js/issues/858)

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.2-dev",
3+
"version": "2.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-dd.ts 2.0.2-dev @preserve
1+
// gridstack-dd.ts 2.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 2.0.2-dev @preserve
1+
// gridstack-engine.ts 2.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 2.0.2-dev @preserve
1+
// gridstack.ts 2.1.0-dev @preserve
22

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

src/jq/gridstack-dd-jqueryui.ts

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

33
/** JQuery UI Drag&Drop plugin
44
* https://gridstackjs.com/

src/types.ts

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

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

src/utils.ts

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

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

0 commit comments

Comments
 (0)