Skip to content

Commit e6386fc

Browse files
committed
2.0.0-rc2 release
1 parent 89d504a commit e6386fc

12 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ alternatively in html
9494
or using CDN (minimized):
9595

9696
```html
97-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]rc/dist/gridstack.min.css" />
98-
<script src="https://cdn.jsdelivr.net/npm/[email protected]rc/dist/gridstack.all.js"></script>
97+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]rc2/dist/gridstack.min.css" />
98+
<script src="https://cdn.jsdelivr.net/npm/[email protected]rc2/dist/gridstack.all.js"></script>
9999
```
100100

101101
.map files are included for debugging purposes.

doc/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Change log
4444
- add `margin` to replace `verticalMargin` which affects both dimensions in code, rather than one in code the other in CSS.
4545
You can now have perfect square cells (default) [723](https://github.com/gridstack/gridstack.js/issues/723)
4646
- fix [1299](https://github.com/gridstack/gridstack.js/pull/1299) many columns round-off error
47-
- fix [1102](https://github.com/gridstack/gridstack.js/issues/1102) lose functionality when they are moved to a new grid
47+
- fix [1102](https://github.com/gridstack/gridstack.js/issues/1102) loose functionality when they are moved to a new grid
4848

4949
## 1.2.0 (2020-08-01)
5050

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.0-rc",
3+
"version": "2.0.0-rc2",
44
"description": "TypeScript/Javascript lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Ember, knockout...)",
55
"main": "./dist/index.js",
66
"typings": "./dist/index.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.0-rc @preserve
1+
// gridstack-dd.ts 2.0.0-rc2 @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.0-rc @preserve
1+
// gridstack-engine.ts 2.0.0-rc2 @preserve
22

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

src/gridstack-extra.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* gridstack 2.0.0-rc extra CSS for [2-11] columns (non default)
2+
* gridstack 2.0.0-rc2 extra CSS for [2-11] columns (non default)
33
* https://gridstackjs.com/
44
* (c) 2014-2020 Alain Dumesny, Dylan Weiss, Pavel Reznikov
55
* gridstack.js may be freely distributed under the MIT license.

src/gridstack-poly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack-poly.js 2.0.0-rc @preserve
1+
// gridstack-poly.js 2.0.0-rc2 @preserve
22

33
/** IE and older browsers Polyfills for this library
44
* https://gridstackjs.com/

src/gridstack.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* required gridstack 2.0.0-rc CSS for default 12 and 1 columnMode size. Use gridstack-extra.css for others
2+
* required gridstack 2.0.0-rc2 CSS for default 12 and 1 columnMode size. Use gridstack-extra.css for others
33
* https://gridstackjs.com/
44
* (c) 2014-2020 Alain Dumesny, Dylan Weiss, Pavel Reznikov
55
* gridstack.js may be freely distributed under the MIT license.

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.0-rc @preserve
1+
// gridstack.ts 2.0.0-rc2 @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.0-rc @preserve
1+
// gridstack-dd-jqueryui.ts 2.0.0-rc2 @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.0-rc @preserve
1+
// types.ts 2.0.0-rc2 @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.0-rc @preserve
1+
// utils.ts 2.0.0-rc2 @preserve
22

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

0 commit comments

Comments
 (0)