Skip to content

Commit e3aa921

Browse files
authored
v10.0.0 (#2546)
* v10.0.0
1 parent 9bc4512 commit e3aa921

24 files changed

+26
-27
lines changed

Diff for: angular/projects/lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack-angular",
3-
"version": "9.5.1-dev",
3+
"version": "10.0.0",
44
"peerDependencies": {
55
"@angular/common": "^14.2.0",
66
"@angular/core": "^14.2.0"

Diff for: angular/projects/lib/src/lib/base-widget.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 9.5.1-dev
2+
* gridstack-item.component.ts 10.0.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: angular/projects/lib/src/lib/gridstack-item.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 9.5.1-dev
2+
* gridstack-item.component.ts 10.0.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: angular/projects/lib/src/lib/gridstack.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 9.5.1-dev
2+
* gridstack.component.ts 10.0.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: angular/projects/lib/src/lib/gridstack.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 9.5.1-dev
2+
* gridstack.component.ts 10.0.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: demo/column.html

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ <h1>column() grid demo (fix cellHeight)</h1>
7474

7575
let grid = GridStack.init({
7676
float: true,
77-
disableOneColumnMode: true, // prevent auto column for this manual demo
7877
cellHeight: 100 // fixed as default 'auto' (square) makes it hard to test 1-3 column in actual large windows tests
7978
}).load(list);
8079
let text = document.querySelector('#column-text');

Diff for: doc/CHANGES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +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-
- [10.0.0 (TBD)](#1000-tbd)
8+
- [10.0.0 (2023-11-20)](#1000-2023-11-20)
99
- [9.5.1 (2023-11-11)](#951-2023-11-11)
1010
- [9.5.0 (2023-10-26)](#950-2023-10-26)
1111
- [9.4.0 (2023-10-15)](#940-2023-10-15)
@@ -105,7 +105,7 @@ Change log
105105

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

108-
## 10.0.0 (TBD)
108+
## 10.0.0 (2023-11-20)
109109
* feat [#2542](https://github.com/gridstack/gridstack.js/pull/2542) we now support much richer responsive behavior with `GridStackOptions.columnOpts` including any breakpoint width:column pairs, or automatic column sizing.
110110
* `disableOneColumnMode`, `oneColumnSize`, `oneColumnModeDomSort` have been removed (see v10 migration doc)
111111

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "9.5.1-dev",
3+
"version": "10.0.0",
44
"license": "MIT",
55
"author": "Alain Dumesny <[email protected]> (https://github.com/adumesny)",
66
"contributors": [

Diff for: src/dd-base-impl.ts

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

Diff for: src/dd-draggable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-draggable.ts 9.5.1-dev
2+
* dd-draggable.ts 10.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-droppable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-droppable.ts 9.5.1-dev
2+
* dd-droppable.ts 10.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-element.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-elements.ts 9.5.1-dev
2+
* dd-elements.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-gridstack.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-gridstack.ts 9.5.1-dev
2+
* dd-gridstack.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-manager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-manager.ts 9.5.1-dev
2+
* dd-manager.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-resizable-handle.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-resizable-handle.ts 9.5.1-dev
2+
* dd-resizable-handle.ts 10.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-resizable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* dd-resizable.ts 9.5.1-dev
2+
* dd-resizable.ts 10.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/dd-touch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* touch.ts 9.5.1-dev
2+
* touch.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/gridstack-engine.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-engine.ts 9.5.1-dev
2+
* gridstack-engine.ts 10.0.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/gridstack-poly.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-poly.ts 9.5.1-dev used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4)
2+
* gridstack-poly.ts 10.0.0 used for IE and older browser support (not supported in v2-v4.3.1, but again in v4.4)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/gridstack.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack SASS styles 9.5.1-dev
2+
* gridstack SASS styles 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/gridstack.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* GridStack 9.5.1-dev
2+
* GridStack 10.0.0
33
* https://gridstackjs.com/
44
*
55
* Copyright (c) 2021-2022 Alain Dumesny
@@ -1851,7 +1851,7 @@ export class GridStack {
18511851
return this;
18521852
}
18531853

1854-
static GDRev = '9.5.1-dev';
1854+
static GDRev = '10.0.0';
18551855

18561856
/* ===========================================================================================
18571857
* drag&drop methods that used to be stubbed out and implemented in dd-gridstack.ts

Diff for: src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* types.ts 9.5.1-dev
2+
* types.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* utils.ts 9.5.1-dev
2+
* utils.ts 10.0.0
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

Diff for: webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module.exports = {
55
'gridstack-all': './src/gridstack.ts',
66
},
77
mode: 'production', // production vs development
8-
// devtool: 'source-map',
9-
devtool: 'eval-source-map', // for best (large .js) debugging. see https://survivejs.com/webpack/building/source-maps/
8+
devtool: 'source-map',
9+
// devtool: 'eval-source-map', // for best (large .js) debugging. see https://survivejs.com/webpack/building/source-maps/
1010
module: {
1111
rules: [
1212
{

0 commit comments

Comments
 (0)