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

ngx-drag-drop

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-drag-drop - npm Package Versions

1235

1.0.0

Diff

Changelog

Source

v1.0.0 (2017-10-18)

  • stable release!

<a name="v1.0.0-rc.3"></a>

reppners
published 1.0.0-rc.3 •

Changelog

Source

v1.0.0-rc.3 (2017-09-18)

  • adds demo for nested recursive drag and drop
  • fixes issue where [dndPlaceholderRef] was not working in nested context because of angular limitation

<a name="v1.0.0-rc.2"></a>

reppners
published 1.0.0-rc.2 •

Changelog

Source

v1.0.0-rc.2 (2017-09-05)

  • adds demo for typed drag and drop
  • fixes issue with typed drag and drop not working

<a name="v1.0.0-rc.1"></a>

reppners
published 1.0.0-rc.1 •

Changelog

Source

v1.0.0-rc.1 (2017-09-04)

Changes build process to use ng-packagr for less manual AOT compatible library builds.

Demo is updated to use latest dependencies.

<a name="v1.0.0-rc.0"></a>

reppners
published 1.0.0-rc.0 •

Changelog

Source

v1.0.0-rc.0 (2017-06-29)

Bug Fixes

  • DndDropzone: fixes issue on placeholder positioning algorithm where direct child element was missed

<a name="v1.0.0-beta.2"></a>

reppners
published 1.0.0-beta.2 •

Changelog

Source

v1.0.0-beta.2 (2017-06-22)

Bug Fixes

  • DndElementRef: access @ContentChild() in ngAfterContentInit to ensure its properly initialized
  • DndModule: re-export DndElementRef in index module

<a name="v1.0.0-beta.1"></a>

reppners
published 1.0.0-beta.1 •

Changelog

Source

v1.0.0-beta.1 (2017-06-22)

Bug Fixes

  • DndDropzone: correctly handle dragenter to ensure only a single active dropzone on nested dropzones
  • DndDropzone: cleanup dropEffect on dropzone leave to avoid unwanted effects when dropzone was hovered, left and the draggable is then released

Features

  • DndDropzone: specify a placeholder element by using [dndPlaceholderRef] on a child element of [dndDropzone]
  • DndDropzone: DndDropEvent defines property isExternal:boolean to ease handling of external drops
  • DndDraggable: specify a custom drag image by using [dndDragImageRef] on a child element of [dndDraggable]

BREAKING CHANGES

  • DndDropzone: removed input binding [dndPlaceholder] in favor of [dndPlaceholderRef]

BEFORE

<section dndDropzone
         (dndDragover)="dragover = $event"
         (dndDrop)="onDrop($event)"
         [dndPlaceholder]="placeholder">

   dropzone

   <div #placeholder>placeholder
   </div>

</section>

AFTER

<section dndDropzone
         (dndDragover)="dragover = $event"
         (dndDrop)="onDrop($event)">

   dropzone

   <div dndPlaceholderRef>placeholder
   </div>

</section>

This breaking change is needed to provide compatibility with custom elements / components.

reppners
published 1.0.0-beta.0 •

Changelog

Source

v1.0.0-beta.1 (2017-06-22)

Bug Fixes

  • DndDropzone: correctly handle dragenter to ensure only a single active dropzone on nested dropzones
  • DndDropzone: cleanup dropEffect on dropzone leave to avoid unwanted effects when dropzone was hovered, left and the draggable is then released

Features

  • DndDropzone: specify a placeholder element by using [dndPlaceholderRef] on a child element of [dndDropzone]
  • DndDropzone: DndDropEvent defines property isExternal:boolean to ease handling of external drops
  • DndDraggable: specify a custom drag image by using [dndDragImageRef] on a child element of [dndDraggable]

BREAKING CHANGES

  • DndDropzone: removed input binding [dndPlaceholder] in favor of [dndPlaceholderRef]

BEFORE

<section dndDropzone
         (dndDragover)="dragover = $event"
         (dndDrop)="onDrop($event)"
         [dndPlaceholder]="placeholder">

   dropzone

   <div #placeholder>placeholder
   </div>

</section>

AFTER

<section dndDropzone
         (dndDragover)="dragover = $event"
         (dndDrop)="onDrop($event)">

   dropzone

   <div dndPlaceholderRef>placeholder
   </div>

</section>

This breaking change is needed to provide compatibility with custom elements / components.

reppners
published 1.0.0-alpha.3 •

reppners
published 1.0.0-alpha.2 •

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