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

Skip to content

Commit 16feded

Browse files
authored
Merge pull request #1879 from adumesny/master
4.3.1-dev
2 parents 333a272 + 8790883 commit 16feded

23 files changed

+23
-23
lines changed

doc/CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Change log
6666
## 4.3.1 (2021-10-18)
6767
* fix [#1868](https://github.com/gridstack/gridstack.js/issues/1868) prevent swap during resize
6868
* fix [#1849](https://github.com/gridstack/gridstack.js/issues/1849) [#1816](https://github.com/gridstack/gridstack.js/issues/1816) save highest resolution in 1 column mode
69-
* fix [#1855](https://github.com/gridstack/gridstack.js/issues/1855) fix resize when padding is large vs cellHeight
69+
* fix [#1855](https://github.com/gridstack/gridstack.js/issues/1855) resize when padding is large vs cellHeight
7070

7171
## 4.3.0 (2021-10-15)
7272
* you can now swap items of different width if they are the same row/height. Thanks to [spektrummedia](http://spektrummedia.com) for sponsoring it.

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": "4.3.1",
3+
"version": "4.3.1-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",

src/gridstack-dd.ts

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

src/gridstack-ddi.ts

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

src/gridstack-engine.ts

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

src/gridstack-h5.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* index-h5.ts 4.3.1 - everything you need for a Grid that uses HTML5 native drag&drop
2+
* index-h5.ts 4.3.1-dev - everything you need for a Grid that uses HTML5 native drag&drop
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-jq.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* index-jq.ts 4.3.1 - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature)
2+
* index-jq.ts 4.3.1-dev - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-poly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-poly.ts 4.3.1 - used for older browser support (not currently supported in v2+)
2+
* gridstack-poly.ts 4.3.1-dev - used for older browser support (not currently supported in v2+)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-static.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* index-static.ts 4.3.1 - much smaller, everything you need for a static Grid (non draggable, API driven)
2+
* index-static.ts 4.3.1-dev - much smaller, everything you need for a static Grid (non draggable, API driven)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack.scss

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

src/gridstack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* GridStack 4.3.1
2+
* GridStack 4.3.1-dev
33
* https://gridstackjs.com/
44
*
55
* Copyright (c) 2021 Alain Dumesny

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

src/h5/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 4.3.1
2+
* dd-draggable.ts 4.3.1-dev
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/h5/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 4.3.1
2+
* dd-droppable.ts 4.3.1-dev
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/h5/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 4.3.1
2+
* dd-elements.ts 4.3.1-dev
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/h5/dd-manager.ts

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

src/h5/dd-resizable-handle.ts

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

src/h5/dd-resizable.ts

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

src/h5/dd-utils.ts

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

src/h5/gridstack-dd-native.ts

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

src/jq/gridstack-dd-jqueryui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// gridstack-dd-jqueryui.ts 4.3.1
1+
// gridstack-dd-jqueryui.ts 4.3.1-dev
22
// Copyright (c) 2021 Alain Dumesny - see root license
33
import { GridStackElement } from '../gridstack';
44
import { GridStackDD, DDOpts, DDKey, DDDropOpt, DDCallback, DDValue } from '../gridstack-dd';

src/types.ts

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

src/utils.ts

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

0 commit comments

Comments
 (0)