File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
cdk-experimental/scrolling Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
package (default_visibility = ["//visibility:public" ])
2
2
load ("@angular//:index.bzl" , "ng_module" )
3
3
load ("@build_bazel_rules_typescript//:defs.bzl" , "ts_library" , "ts_web_test" )
4
- load ("@io_bazel_rules_sass//sass:sass.bzl" , "sass_binary" )
5
4
6
5
7
6
ng_module (
Original file line number Diff line number Diff line change 1
1
package (default_visibility = ["//visibility:public" ])
2
2
load ("@angular//:index.bzl" , "ng_module" )
3
3
load ("@build_bazel_rules_typescript//:defs.bzl" , "ts_library" , "ts_web_test" )
4
+ load ("@io_bazel_rules_sass//sass:sass.bzl" , "sass_binary" )
4
5
5
6
6
7
ng_module (
@@ -28,6 +29,7 @@ ts_library(
28
29
srcs = glob (["**/*.spec.ts" ]),
29
30
deps = [
30
31
":scrolling" ,
32
+ "//src/cdk/collections" ,
31
33
"//src/cdk/testing" ,
32
34
"@rxjs" ,
33
35
],
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ export * from './public-api';
10
10
11
11
/**
12
12
* @deprecated ScrollingModule has been renamed to ScrollingModule.
13
- * @deletion -target 8.0.0
13
+ * @breaking -change 8.0.0 delete this re-export
14
14
*/
15
15
export { ScrollingModule as ScrollDispatchModule } from './scrolling-module' ;
Original file line number Diff line number Diff line change 1
- import { ScrollingModule } from '@angular/cdk-experimental/scrolling' ;
2
1
import { DialogModule } from '@angular/cdk-experimental/dialog' ;
3
2
import { DragDropModule } from '@angular/cdk-experimental/drag-drop' ;
3
+ import { ScrollingModule as ExperimentalScrollingModule } from '@angular/cdk-experimental/scrolling' ;
4
4
import { FullscreenOverlayContainer , OverlayContainer } from '@angular/cdk/overlay' ;
5
+ import { ScrollingModule } from '@angular/cdk/scrolling' ;
5
6
import { NgModule } from '@angular/core' ;
6
7
import { ReactiveFormsModule } from '@angular/forms' ;
7
8
import {
@@ -71,6 +72,7 @@ import {VirtualScrollE2E} from './virtual-scroll/virtual-scroll-e2e';
71
72
MatTabsModule ,
72
73
MatNativeDateModule ,
73
74
ScrollingModule ,
75
+ ExperimentalScrollingModule ,
74
76
DialogModule ,
75
77
DragDropModule ,
76
78
]
You can’t perform that action at this time.
0 commit comments