We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ce6ca commit 3fe3961Copy full SHA for 3fe3961
src/cdk/scrolling/index.ts
@@ -7,9 +7,3 @@
7
*/
8
9
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
@@ -29,3 +29,13 @@ import {CdkVirtualScrollViewport} from './virtual-scroll-viewport';
29
],
30
})
31
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