import {Component} from '@angular/core'; import {CdkDragDrop, moveItemInArray} from '@angular/cdk/drag-drop'; /** * @title Drag&Drop horizontal sorting */ @Component({ selector: 'cdk-drag-drop-horizontal-sorting-example', templateUrl: 'cdk-drag-drop-horizontal-sorting-example.html', styleUrls: ['cdk-drag-drop-horizontal-sorting-example.css'], }) export class CdkDragDropHorizontalSortingExample { timePeriods = [ 'Bronze age', 'Iron age', 'Middle ages', 'Early modern period', 'Long nineteenth century' ]; drop(event: CdkDragDrop) { moveItemInArray(this.timePeriods, event.previousIndex, event.currentIndex); } }