Skip to content

Commit 3930159

Browse files
committed
chore(release): angular-grid-layout@0.2.0
1 parent 1f436f6 commit 3930159

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.2.0](https://github.com/katoid/angular-grid-layout/compare/v0.1.3...v0.2.0) (2021-06-28)
6+
7+
8+
### Features
9+
10+
* **grid:** grid scrollSpeed Input can be binded without the need of a variable ([8d74468](https://github.com/katoid/angular-grid-layout/commit/8d74468306d8047fde1ea04ea5e32515e066ae42))
11+
* **grid:** number and Boolean input properties can be binded as string value in template ([1f436f6](https://github.com/katoid/angular-grid-layout/commit/1f436f691bea4412518c504f9cd0e89a979c1323))
12+
* **grid:** added prevent collision flag ([62651ad](https://github.com/katoid/angular-grid-layout/commit/62651ad5aca65a5785c7af942b55921f8baa4c59)) ([1253849](https://github.com/katoid/angular-grid-layout/commit/1253849688a509188539a7fe9515daad78f9777e))
13+
14+
515
### [0.1.3](https://github.com/katoid/angular-grid-layout/compare/v0.1.2...v0.1.3) (2021-03-08)
616

717

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ Here is listed the basic API of both KtdGridComponent and KtdGridItemComponent.
106106
/** Whether or not to update the internal layout when some dependent property change. */
107107
@Input() compactOnPropsChange = true;
108108

109+
/** If true, grid items won't change position when being dragged over. Handy when using no compaction */
110+
@Input() preventCollision = false;
111+
109112
/** Emits when layout change */
110113
@Output() layoutUpdated: EventEmitter<KtdGridLayout> = new EventEmitter<KtdGridLayout>();
111114

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@
7575
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
7676
}
7777
},
78-
"version": "0.1.3"
78+
"version": "0.2.0"
7979
}

projects/angular-grid-layout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "git+https://github.com/katoid/angular-grid-layout.git"
1111
},
1212
"license": "MIT",
13-
"version": "0.1.3",
13+
"version": "0.2.0",
1414
"keywords": [
1515
"angular",
1616
"grid",

projects/angular-grid-layout/src/lib/grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class KtdGridComponent implements OnChanges, AfterContentInit, AfterConte
134134

135135
private _compactOnPropsChange: boolean = true;
136136

137-
/** Prevent collision, consider setting it to true if in no compaction */
137+
/** If true, grid items won't change position when being dragged over. Handy when using no compaction */
138138
@Input()
139139
get preventCollision(): boolean { return this._preventCollision; }
140140

0 commit comments

Comments
 (0)