Skip to content

Commit

Permalink
Release v2.3.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
reppners committed Jul 21, 2019
1 parent a7ea3f0 commit d1abdd5
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.3.0-rc.2 (2019-07-21)

Adds custom events to enable visualize `holdToDrag` functionality, #150,
see [README](https://github.com/timruffles/mobile-drag-drop#custom-events)

Thanks to @anwarjaved :+1:

Also will cancel pending dragstart if a `touchmove` event is detected during `holdToDrag`.

## 2.3.0-rc.1 (2018-03-17)

Maintenance release candidate for improving `holdToDrag` functionality
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mobile-drag-drop",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"version": "2.3.0-rc.1",
"version": "2.3.0-rc.2",
"main": [
"release/index.js",
"release/default.css"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobile-drag-drop",
"version": "2.3.0-rc.1",
"version": "2.3.0-rc.2",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"main": "index.min.js",
"types": "index.d.ts",
Expand Down
18 changes: 17 additions & 1 deletion release/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions release/index.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/index.min.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions release/internal/constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ export declare const CLASS_PREFIX = "dnd-poly-";
export declare const CLASS_DRAG_IMAGE: string;
export declare const CLASS_DRAG_IMAGE_SNAPBACK: string;
export declare const CLASS_DRAG_OPERATION_ICON: string;
export declare const EVENT_PREFIX = "dnd-poly-";
export declare const EVENT_DRAG_DRAGSTART_PENDING: string;
export declare const EVENT_DRAG_DRAGSTART_CANCEL: string;
export declare const enum EFFECT_ALLOWED {
NONE = 0,
COPY = 1,
Expand Down
2 changes: 1 addition & 1 deletion release/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobile-drag-drop",
"version": "2.3.0-rc.1",
"version": "2.3.0-rc.2",
"description": "Polyfill for making HTML5 drag and drop possible in all browsers.",
"main": "index.min.js",
"types": "index.d.ts",
Expand Down

0 comments on commit d1abdd5

Please sign in to comment.