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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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 <alaind831+github@gmail.com> (https://github.com/adumesny)",
66
"contributors": [

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 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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)