Skip to content

Commit 47b3992

Browse files
authored
Merge pull request #2024 from adumesny/master
rev 6.0.0-dev
2 parents 2048348 + cfa974b commit 47b3992

21 files changed

+27
-22
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,15 @@ GridStack makes it very easy if you need [1-12] columns out of the box (default
187187
GridStack.init( {column: N} );
188188
```
189189

190-
2) include `gridstack-extra.css` if **N < 12** (else custom CSS - see next). Without these, things will not render/work correctly.
190+
2) also include `gridstack-extra.css` if **N < 12** (else custom CSS - see next). Without these, things will not render/work correctly.
191191
```html
192-
<link href="node_modules/gridstack/dist/gridstack-extra.css" rel="stylesheet"/>
192+
<link href="node_modules/gridstack/dist/gridstack.min.css" rel="stylesheet"/>
193+
<link href="node_modules/gridstack/dist/gridstack-extra.min.css" rel="stylesheet"/>
193194

194195
<div class="grid-stack">...</div>
195196
```
196197

197-
Note: class `.grid-stack-N` will automatically be added and we include `gridstack-extra.css` which defines CSS for grids with custom [2-11] columns. Anything more and you'll need to generate the SASS/CSS yourself (see next).
198+
Note: class `.grid-stack-N` will automatically be added and we include `gridstack-extra.min.css` which defines CSS for grids with custom [2-11] columns. Anything more and you'll need to generate the SASS/CSS yourself (see next).
198199

199200
See example: [2 grids demo](http://gridstack.github.io/gridstack.js/demo/two.html) with 6 columns
200201

demo/canvasJS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>CanvasJS grid demo</title>
55

66
<link rel="stylesheet" href="demo.css"/>
7-
<script src="https://cdn.jsdelivr.net/npm/gridstack@6.0.0-beta/dist/gridstack-jq.js"></script>
7+
<script src="https://cdn.jsdelivr.net/npm/gridstack@5.1.1/dist/gridstack-jq.js"></script>
88
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
99

1010
<style type="text/css">

demo/website.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<script src="../dist/es5/gridstack-poly.js"></script>
1414
<script src="../dist/es5/gridstack.js"></script>
1515

16+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
1617
<script src="https://getbootstrap.com/docs/4.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o" crossorigin="anonymous"></script>
1718
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.16.2/build/highlight.min.js"></script>
1819

doc/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ 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+
- [6.0.0-dev (TBD)](#600-dev-tbd)
89
- [6.0.0 (2022-08-21)](#600-2022-08-21)
910
- [5.1.1 (2022-06-16)](#511-2022-06-16)
1011
- [5.1.0 (2022-05-21)](#510-2022-05-21)
@@ -68,6 +69,8 @@ Change log
6869
- [v0.1.0 (2014-11-18)](#v010-2014-11-18)
6970

7071
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
72+
## 6.0.0-dev (TBD)
73+
* fixed `float(val)` to set on grid and engine, so save() will read it.
7174

7275
## 6.0.0 (2022-08-21)
7376
* converted previous HTML5 `draggable=true` based code to simple Mouse Events and Touch mobile support for drag&Drop.

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": "6.0.0",
3+
"version": "6.0.0-dev",
44
"description": "TypeScript/JS lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)",
55
"main": "./dist/gridstack.js",
66
"types": "./dist/gridstack.d.ts",

spec/e2e/html/1142_change_event_missing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<title>1142 demo</title>
88
<link rel="stylesheet" href="../../../demo/demo.css"/>
9-
<script src="https://cdn.jsdelivr.net/npm/gridstack@6.0.0-beta/dist/gridstack-jq.js"></script>
9+
<script src="https://cdn.jsdelivr.net/npm/gridstack@5.1.1/dist/gridstack-jq.js"></script>
1010
</head>
1111
<body>
1212
<h1>JQ test case with click to remove</h1>

src/dd-base-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-base-impl.ts 6.0.0
2+
* dd-base-impl.ts 6.0.0-dev
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-draggable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-draggable.ts 6.0.0
2+
* dd-draggable.ts 6.0.0-dev
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-droppable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-droppable.ts 6.0.0
2+
* dd-droppable.ts 6.0.0-dev
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-elements.ts 6.0.0
2+
* dd-elements.ts 6.0.0-dev
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

0 commit comments

Comments
 (0)