Skip to content

Commit f326a93

Browse files
authored
Merge pull request #2613 from adumesny/master
v10.1.0
2 parents c3ccb12 + 12f774b commit f326a93

22 files changed

+25
-24
lines changed

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": "10.0.1-dev",
3+
"version": "10.1.0",
44
"peerDependencies": {
55
"@angular/common": "^14.2.0",
66
"@angular/core": "^14.2.0"

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 10.0.1-dev
2+
* gridstack-item.component.ts 10.1.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

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 10.0.1-dev
2+
* gridstack-item.component.ts 10.1.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

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 10.0.1-dev
2+
* gridstack.component.ts 10.1.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

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 10.0.1-dev
2+
* gridstack.component.ts 10.1.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

doc/CHANGES.md

+3-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.1-dev (TBD)](#1001-dev-tbd)
8+
- [10.1.0 (2024-02-04)](#1010-2024-02-04)
99
- [10.0.1 (2023-12-10)](#1001-2023-12-10)
1010
- [10.0.0 (2023-11-20)](#1000-2023-11-20)
1111
- [9.5.1 (2023-11-11)](#951-2023-11-11)
@@ -107,14 +107,15 @@ Change log
107107

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

110-
## 10.0.1-dev (TBD)
110+
## 10.1.0 (2024-02-04)
111111
* feat: [#2574](https://github.com/gridstack/gridstack.js/pull/2574) Allow cell height in cm and mm units
112112
* feat: [#2578](https://github.com/gridstack/gridstack.js/pull/2578) allow different scaling between drag toolbar and grid
113113
* fix: [#2577](https://github.com/gridstack/gridstack.js/issues/2577) ui-resizable-s/-n style fix
114114
* fix: [#2576](https://github.com/gridstack/gridstack.js/issues/2576) column('none') now ignores layouts
115115
* fix: [#2560](https://github.com/gridstack/gridstack.js/issues/2560) nested grid fix (enter can call leave which can call enter again) - Thank you [v1talii-dev](https://github.com/v1talii-dev)
116116
* fix: [#2596](https://github.com/gridstack/gridstack.js/pull/2596) prevent SSR crash
117117
* fix: [#2610](https://github.com/gridstack/gridstack.js/pull/2610) using passive:true for mousemove events
118+
* fix: [#2612](https://github.com/gridstack/gridstack.js/pull/2612) restrict vertical resize if `sizeToContent:true`
118119
* demo: nested.htm now has nested create and drag&drop example - Thank you [fredericrous](https://github.com/fredericrous)
119120

120121
## 10.0.1 (2023-12-10)

package.json

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

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 10.0.1-dev
2+
* dd-base-impl.ts 10.1.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-draggable.ts

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

src/dd-droppable.ts

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

src/dd-element.ts

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

src/dd-gridstack.ts

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

src/dd-manager.ts

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

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 10.0.1-dev
2+
* dd-resizable-handle.ts 10.1.0
33
* Copyright (c) 2021-2022 Alain Dumesny - see GridStack root license
44
*/
55

src/dd-resizable.ts

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

src/dd-touch.ts

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

src/gridstack-engine.ts

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

src/gridstack-poly.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-poly.ts 10.0.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.1.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

src/gridstack.scss

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

src/gridstack.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* GridStack 10.0.1-dev
2+
* GridStack 10.1.0
33
* https://gridstackjs.com/
44
*
55
* Copyright (c) 2021-2022 Alain Dumesny
@@ -1892,7 +1892,7 @@ export class GridStack {
18921892
return this;
18931893
}
18941894

1895-
static GDRev = '10.0.1-dev';
1895+
static GDRev = '10.1.0';
18961896

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

src/types.ts

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

src/utils.ts

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

0 commit comments

Comments
 (0)