Angular Drag & Drop Components & Directives

Latest Free Angular.js components, directives, and modules for drag and drop functionality.

Drag-and-drop List Component For Angular

Angular 4+ directives that allow you to build sortable lists with the native HTML5 drag & drop API. The directives can also be nested to bring drag & drop to your WYSIWYG editor, your tree, or whatever fancy structure you are building. Installation: # Yarn $ yarn add ngx-drag-and-drop-lists # NPM $ npm install ngx-drag-and-drop-lists –save Usage: Import the library into your Angular module. import { BrowserModule } from ‘@angular/platform-browser’; import { NgModule } from ‘@angular/core’; import { AppComponent } from ‘./app.component’; import { DndListModule } from ‘ngx-drag-and-drop-lists’; import { ContainerComponent } from ‘./components/container.component’; @NgModule({ declarations: ,