dnd-multi-backend
Advanced tools
Comparing version 3.0.7 to 3.1.0
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.createTransition = exports.TouchTransition = exports.HTML5DragTransition = undefined; | ||
exports.createTransition = exports.MouseTransition = exports.TouchTransition = exports.HTML5DragTransition = undefined; | ||
@@ -23,2 +23,3 @@ var _MultiBackend = require('./MultiBackend'); | ||
exports.TouchTransition = _Transitions.TouchTransition; | ||
exports.MouseTransition = _Transitions.MouseTransition; | ||
exports.createTransition = _createTransition2.default; | ||
@@ -25,0 +26,0 @@ |
@@ -6,3 +6,3 @@ 'use strict'; | ||
}); | ||
exports.HTML5DragTransition = exports.TouchTransition = undefined; | ||
exports.MouseTransition = exports.HTML5DragTransition = exports.TouchTransition = undefined; | ||
@@ -24,2 +24,6 @@ var _createTransition = require('./createTransition'); | ||
return false; | ||
}); | ||
var MouseTransition = exports.MouseTransition = (0, _createTransition2.default)('mousedown', function (event) { | ||
return event.type && event.type.indexOf('touch') === -1 && event.type.indexOf('mouse') !== -1; | ||
}); |
{ | ||
"name": "dnd-multi-backend", | ||
"version": "3.0.7", | ||
"version": "3.1.0", | ||
"description": "Multi Backend system compatible with DnD Core / React DnD", | ||
@@ -5,0 +5,0 @@ "author": "Louis Brunner <louis.brunner.fr@gmail.com> (https://github.com/LouisBrunner)", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10091
205