File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/material-experimental/mdc-snackbar Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
package (default_visibility = ["//visibility:public" ])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_binary" , "sass_library" )
4
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
5
4
load ("//tools:defaults.bzl" , "ng_module" )
6
5
7
6
ng_module (
@@ -13,8 +12,10 @@ ng_module(
13
12
assets = [":snackbar_scss" ] + glob (["**/*.html" ]),
14
13
module_name = "@angular/material-experimental/mdc-snackbar" ,
15
14
deps = [
16
- "@npm//material-components-web" ,
17
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
15
+ "//src/material/core" ,
16
+ "@npm//@angular/common" ,
17
+ "@npm//@angular/core" ,
18
+ ],
18
19
)
19
20
20
21
sass_library (
Original file line number Diff line number Diff line change 9
9
import { ChangeDetectionStrategy , Component , ViewEncapsulation } from '@angular/core' ;
10
10
11
11
@Component ( {
12
- moduleId : module . id ,
13
12
selector : 'mat-snackbar' ,
14
13
templateUrl : 'snackbar.html' ,
15
14
styleUrls : [ 'snackbar.css' ] ,
You can’t perform that action at this time.
0 commit comments