Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

front-react-dnd-html5-backend

Package Overview
Dependencies
Maintainers
4
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

front-react-dnd-html5-backend - npm Package Compare versions

Comparing version 8.0.3-1 to 8.0.3-2

10

lib/HTML5Backend.js

@@ -96,3 +96,4 @@ import EnterLeaveCounter from './EnterLeaveCounter';

if (text) {
const transferText = (typeof text === 'function') ? text() : text.toString();
const isTextFunction = typeof text === 'function';
const transferText = isTextFunction ? text() : text.toString();
dataTransfer.setData('Text', transferText);

@@ -261,3 +262,8 @@ }

});
this.actions.drop({ dropEffect: this.getCurrentDropEffect() });
this.actions.drop({
dropEffect: this.getCurrentDropEffect(),
altKey: Boolean(e.altKey),
shiftKey: Boolean(e.shiftKey),
metaKey: Boolean(e.metaKey),
});
if (this.isDraggingNativeItem()) {

@@ -264,0 +270,0 @@ this.endDragNativeItem();

2

package.json
{
"name": "front-react-dnd-html5-backend",
"version": "8.0.3-1",
"version": "8.0.3-2",
"description": "HTML5 backend for React DnD",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc