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

Skip to content

Commit 81a0c52

Browse files
author
Alain Dumesny
authored
Merge pull request gridstack#1136 from adumesny/develop
rev 0.6.3
2 parents f46fbfc + 2e2a317 commit 81a0c52

File tree

10 files changed

+25
-20
lines changed

10 files changed

+25
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@ Using gridstack.js with jQuery UI
6464
* Using CDN (minimized):
6565

6666
```html
67-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack.min.css" />
67+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack.min.css" />
6868
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
69-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack.all.js"></script>
69+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack.all.js"></script>
7070
```
7171

7272
* Using CDN (debug):
7373

7474
```html
75-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack.css" />
75+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack.css" />
7676
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
77-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack.js"></script>
78-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/jquery-ui.js"></script>
79-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack.jQueryUI.js"></script>
77+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack.js"></script>
78+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/jquery-ui.js"></script>
79+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack.jQueryUI.js"></script>
8080
```
8181

8282
* or local:
@@ -196,7 +196,7 @@ $('.grid-stack').gridstack( {column: N} );
196196

197197
2) include `gridstack-extra.css` if **N < 12** (else custom CSS - see next). Without these, things will not render/work correctly.
198198
```html
199-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].2/dist/gridstack-extra.css"/>
199+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected].3/dist/gridstack-extra.css"/>
200200

201201
<div class="grid-stack grid-stack-N">...</div>
202202
```

bower.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": "0.6.2-dev",
3+
"version": "0.6.3-dev",
44
"homepage": "https://github.com/gridstack/gridstack.js",
55
"authors": [
66
"Pavel Reznikov <[email protected]>",

doc/CHANGES.md

Lines changed: 10 additions & 5 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-
- [v0.6.2-dev (upcoming changes)](#v062-dev-upcoming-changes)
8+
- [v0.6.3-dev (Upcoming changes)](#v063-dev-upcoming-changes)
9+
- [v0.6.3 (2020-02-05)](#v063-2020-02-05)
910
- [v0.6.2 (2020-02-03)](#v062-2020-02-03)
1011
- [v0.6.1 (2020-02-02)](#v061-2020-02-02)
1112
- [v0.6.0 (2019-12-24)](#v060-2019-12-24)
@@ -28,7 +29,11 @@ Change log
2829

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

31-
## v0.6.2-dev (upcoming changes)
32+
## v0.6.3-dev (upcoming changes)
33+
34+
- TBD
35+
36+
## v0.6.3 (2020-02-05)
3237

3338
- fix [#1132](https://github.com/gridstack/gridstack.js/issues/1132) oneColumnMode missing CSS to do layout
3439
- del `oneColumnModeClass` / `.grid-stack-one-column-mode` and associated code. If you depended on this, use class `.grid-stack-1` instead since it is 1 column layout anyway [1134](https://github.com/gridstack/gridstack.js/pull/1134)
@@ -52,16 +57,16 @@ us full resize/re-order of items capabilities rather than a locked CSS only layo
5257
- add `compact()` to reclaim any empty space and relayout grid items [#1101](https://github.com/gridstack/gridstack.js/pull/1101)
5358
- add `options.dragOut` to let user drag nested grid items out of a parent or not (default false)
5459
and jQuery UI `draggable.containment` can now be specified in options. You can now drag&drop between 2 nested grids [#1105](https://github.com/gridstack/gridstack.js/pull/1105)
55-
- Allow percentage as a valid unit for height [#1093](https://github.com/gridstack/gridstack.js/pull/1093). thank you
60+
- add `%` as a valid unit for height [#1093](https://github.com/gridstack/gridstack.js/pull/1093). thank you
5661
[@trevisanweb](https://github.com/trevisanweb) [@aureality](https://github.com/aureality)
5762
[@ZoolWay](https://github.com/ZoolWay)
58-
- fixed callbacks to get either `added, removed, change` or combination if adding a node require also to change its (x,y) for example.
63+
- fix callbacks to get either `added, removed, change` or combination if adding a node require also to change its (x,y) for example.
5964
Also you can now call `batchUpdate()` before calling a bunch of `addWidget()` and get a single event callback (more efficient).
6065
[#1096](https://github.com/gridstack/gridstack.js/pull/1096)
6166
- `removeAll()` is now much faster (no relayout) and calls `removed` event just once with a list [#1097](https://github.com/gridstack/gridstack.js/pull/1097)
6267
- `setColumn()` complete re-write and is no longer "Experimental". We now do a reasonable job at sizing/position the widgets (especially 1 column) and
6368
also now cache each column layout so you can go back to say 12 column and not loose original layout. [#1098](https://github.com/gridstack/gridstack.js/pull/1098)
64-
- fix bug where `addWidget(el)` (no data) would not render item at correct location, and overlap item at (0,0) [#1098](https://github.com/gridstack/gridstack.js/pull/1098)
69+
- fix `addWidget(el)` (no data) would not render item at correct location, and overlap item at (0,0) [#1098](https://github.com/gridstack/gridstack.js/pull/1098)
6570
- you can now pre-define size of dragable elements from a sidebar using standard `data-gs-width` and `data-gs-height` - fix
6671
[#413](https://github.com/gridstack/gridstack.js/issues/413), [#914](https://github.com/gridstack/gridstack.js/issues/914), [#918](https://github.com/gridstack/gridstack.js/issues/918),
6772
[#922](https://github.com/gridstack/gridstack.js/issues/922), [#933](https://github.com/gridstack/gridstack.js/issues/933)

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": "0.6.2-dev",
3+
"version": "0.6.3-dev",
44
"description": "gridstack.js is a jQuery plugin for widget layout, with many wrappers (React, @angular, knockout...)",
55
"main": "dist/gridstack.js",
66
"repository": {

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 0.6.2-dev extra CSS for [2-11] columns (non default)
2+
* gridstack 0.6.3-dev 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.js 0.6.2-dev - IE and older browsers Polyfills for this library @preserve*/
1+
/** gridstack.js 0.6.3-dev - IE and older browsers Polyfills for this library @preserve*/
22
/**
33
* https://gridstackjs.com/
44
* (c) 2019-2020 Alain Dumesny

src/gridstack.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Gridstack 0.6.2-dev
1+
// Type definitions for Gridstack 0.6.3-dev
22
// Project: https://gridstackjs.com/
33
// Definitions by: Pascal Senn <https://github.com/PascalSenn>
44
// Ricky Blankenaufulland <https://github.com/ZoolWay>

src/gridstack.jQueryUI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** gridstack.js 0.6.2-dev - JQuery UI Drag&Drop plugin @preserve */
1+
/** gridstack.js 0.6.3-dev - JQuery UI Drag&Drop plugin @preserve */
22
/**
33
* https://gridstackjs.com/
44
* (c) 2014-2020 Alain Dumesny, Dylan Weiss, Pavel Reznikov

src/gridstack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.js 0.6.2-dev
2+
* gridstack.js 0.6.3-dev
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.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* required gridstack 0.6.2-dev CSS for default 12 and 1 columnMode size. Use gridstack-extra.css for others
2+
* required gridstack 0.6.3-dev 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.

0 commit comments

Comments
 (0)