6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
+ import { Directionality } from '@angular/cdk/bidi' ;
10
+ import { ViewportRuler } from '@angular/cdk/scrolling' ;
11
+ import { DOCUMENT } from '@angular/common' ;
9
12
import {
10
13
ContentChild ,
11
14
ContentChildren ,
@@ -23,24 +26,22 @@ import {
23
26
SkipSelf ,
24
27
ViewContainerRef ,
25
28
} from '@angular/core' ;
26
- import { DOCUMENT } from '@angular/common' ;
27
- import { Directionality } from '@angular/cdk/bidi' ;
28
- import { CdkDragHandle } from './drag-handle' ;
29
- import { CdkDropContainer , CDK_DROP_CONTAINER } from './drop-container' ;
29
+ import { merge , Observable , Subject } from 'rxjs' ;
30
+ import { takeUntil } from 'rxjs/operators' ;
31
+ import { DragDropRegistry } from './drag-drop-registry' ;
30
32
import {
31
- CdkDragStart ,
33
+ CdkDragDrop ,
32
34
CdkDragEnd ,
33
- CdkDragExit ,
34
35
CdkDragEnter ,
35
- CdkDragDrop ,
36
+ CdkDragExit ,
36
37
CdkDragMove ,
38
+ CdkDragStart ,
37
39
} from './drag-events' ;
38
- import { CdkDragPreview } from './drag-preview ' ;
40
+ import { CdkDragHandle } from './drag-handle ' ;
39
41
import { CdkDragPlaceholder } from './drag-placeholder' ;
40
- import { ViewportRuler } from '@angular/cdk/overlay' ;
41
- import { DragDropRegistry } from './drag-drop-registry' ;
42
- import { Subject , merge , Observable } from 'rxjs' ;
43
- import { takeUntil } from 'rxjs/operators' ;
42
+ import { CdkDragPreview } from './drag-preview' ;
43
+ import { CDK_DROP_CONTAINER , CdkDropContainer } from './drop-container' ;
44
+
44
45
45
46
// TODO(crisbeto): add auto-scrolling functionality.
46
47
// TODO(crisbeto): add an API for moving a draggable up/down the
0 commit comments