Skip to content

Commit 3fe3961

Browse files
committed
fix module re-export
1 parent 06ce6ca commit 3fe3961

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/cdk/scrolling/index.ts

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

99
export * from './public-api';
10-
11-
/**
12-
* @deprecated ScrollingModule has been renamed to ScrollingModule.
13-
* @breaking-change 8.0.0 delete this re-export
14-
*/
15-
export {ScrollingModule as ScrollDispatchModule} from './scrolling-module';

src/cdk/scrolling/scrolling-module.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,13 @@ import {CdkVirtualScrollViewport} from './virtual-scroll-viewport';
2929
],
3030
})
3131
export class ScrollingModule {}
32+
33+
/**
34+
* @deprecated ScrollDispatchModule has been renamed to ScrollingModule.
35+
* @breaking-change 8.0.0 delete this alias
36+
*/
37+
@NgModule({
38+
imports: [ScrollingModule],
39+
exports: [ScrollingModule],
40+
})
41+
export class ScrollDispatchModule {}

0 commit comments

Comments
 (0)