Skip to content

Commit b9cece4

Browse files
thefliikjosephperrott
authored andcommitted
fix(drag-drop): make CDK_DROP_CONTAINER public (#12214)
1 parent f700897 commit b9cece4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/cdk-experimental/drag-drop/drop-container.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import {InjectionToken, QueryList} from '@angular/core';
1010
import {CdkDrag} from './drag';
1111

12-
/** @docs-private */
1312
export interface CdkDropContainer<T = any> {
1413
/** Arbitrary data to attach to all events emitted by this container. */
1514
data: T;
@@ -53,6 +52,5 @@ export interface CdkDropContainer<T = any> {
5352
/**
5453
* Injection token that is used to provide a CdkDrop instance to CdkDrag.
5554
* Used for avoiding circular imports.
56-
* @docs-private
5755
*/
5856
export const CDK_DROP_CONTAINER = new InjectionToken<CdkDropContainer>('CDK_DROP_CONTAINER');

src/cdk-experimental/drag-drop/public-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
export * from './drop';
10+
export * from './drop-container';
1011
export * from './drag';
1112
export * from './drag-handle';
1213
export * from './drag-events';

0 commit comments

Comments
 (0)