Skip to content

Commit a3b327c

Browse files
author
Xie, Ziyu
committed
Release v2.1.8
add [preventDefaultEvent] flag to ngResizable mousedown
1 parent 8fe40aa commit a3b327c

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ angular2-draggable has angular directives that make the DOM element draggable an
2727
+ provided since v2.0, requires Angular >= 6
2828

2929
# Latest Update
30+
+ 2018.11.11: 2.1.8
31+
+ **ngResizable**: add [preventDefaultEvent] flag to ngResizable mousedown ([by mecp](https://github.com/mecp) - [PR #119](https://github.com/xieziyu/angular2-draggable/pull/119))
32+
3033
+ 2018.10.31: 2.1.7
3134
+ **ngResizable**: fix [issue #116](https://github.com/xieziyu/angular2-draggable/issues/116): ngResizable Locks Height When rzHandles Includes Only e, w. (Thanks to [Yamazaki93](https://github.com/Yamazaki93))
3235

@@ -147,6 +150,7 @@ Well you can use both directives concurrently if you wish:
147150
| rzMaxWidth | number | 1 | The maximum width the resizable should be allowed to resize to. |
148151
| rzMinHeight | number | 1 | The minimum height the resizable should be allowed to resize to. |
149152
| rzMaxHeight | number | 1 | The maximum height the resizable should be allowed to resize to. |
153+
| preventDefaultEvent | boolean | `false` | Whether to prevent default mouse event. |
150154

151155
## CSS:
152156
+ When `ngDraggable` is enabled on some element, `ng-draggable` class is automatically assigned to it. You can use it to customize the pointer style. For example:

projects/angular2-draggable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular2-draggable",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"author": "Xie, Ziyu",
55
"license": "MIT",
66
"keywords": [

src/assets/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.1.8 (2018-11-11)
2+
3+
#### New
4+
+ **ngResizable**: add [preventDefaultEvent] flag to ngResizable mousedown ([by mecp](https://github.com/mecp) - [PR #119](https://github.com/xieziyu/angular2-draggable/pull/119))
5+
6+
---
7+
18
## 2.1.7 (2018-10-31)
29

310
#### Bugfix

0 commit comments

Comments
 (0)