File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
src/cdk-experimental/drag-drop Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 9
9
import { InjectionToken , QueryList } from '@angular/core' ;
10
10
import { CdkDrag } from './drag' ;
11
11
12
- /** @docs -private */
13
12
export interface CdkDropContainer < T = any > {
14
13
/** Arbitrary data to attach to all events emitted by this container. */
15
14
data : T ;
@@ -53,6 +52,5 @@ export interface CdkDropContainer<T = any> {
53
52
/**
54
53
* Injection token that is used to provide a CdkDrop instance to CdkDrag.
55
54
* Used for avoiding circular imports.
56
- * @docs -private
57
55
*/
58
56
export const CDK_DROP_CONTAINER = new InjectionToken < CdkDropContainer > ( 'CDK_DROP_CONTAINER' ) ;
Original file line number Diff line number Diff line change 7
7
*/
8
8
9
9
export * from './drop' ;
10
+ export * from './drop-container' ;
10
11
export * from './drag' ;
11
12
export * from './drag-handle' ;
12
13
export * from './drag-events' ;
You can’t perform that action at this time.
0 commit comments