File tree Expand file tree Collapse file tree 8 files changed +22
-16
lines changed
src/material-experimental Expand file tree Collapse file tree 8 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility = ["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_binary" , "sass_library" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-button" ,
@@ -12,7 +11,9 @@ ng_module(
12
11
deps = [
13
12
"@npm//@angular/animations" ,
14
13
"@npm//material-components-web" ,
15
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
14
+ "//src/cdk/platform" ,
15
+ "//src/material/core" ,
16
+ ],
16
17
)
17
18
18
19
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-card" ,
@@ -11,7 +10,8 @@ ng_module(
11
10
assets = [":card_scss" ] + glob (["**/*.html" ]),
12
11
deps = [
13
12
"@npm//material-components-web" ,
14
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
13
+ "//src/material/core" ,
14
+ ],
15
15
)
16
16
17
17
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-checkbox" ,
@@ -15,7 +14,11 @@ ng_module(
15
14
"@npm//@angular/core" ,
16
15
"@npm//@angular/forms" ,
17
16
"@npm//material-components-web" ,
18
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
17
+ "//src/cdk/coercion" ,
18
+ "//src/cdk/platform" ,
19
+ "//src/material/core" ,
20
+ "//src/material/checkbox" ,
21
+ ],
19
22
)
20
23
21
24
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-chips" ,
@@ -13,7 +12,8 @@ ng_module(
13
12
"@npm//@angular/common" ,
14
13
"@npm//@angular/core" ,
15
14
"@npm//material-components-web" ,
16
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
15
+ "//src/material/core" ,
16
+ ],
17
17
)
18
18
19
19
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-helpers" ,
@@ -11,7 +10,7 @@ ng_module(
11
10
assets = glob (["**/*.html" ]),
12
11
deps = [
13
12
"@npm//@angular/core" ,
14
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
13
+ ],
15
14
)
16
15
17
16
# Add all MDC Sass files that we depend on here. After updating MDC dependencies, use the following
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-menu" ,
@@ -14,7 +13,10 @@ ng_module(
14
13
"@npm//@angular/common" ,
15
14
"@npm//@angular/core" ,
16
15
"@npm//material-components-web" ,
17
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
16
+ "//src/cdk/overlay" ,
17
+ "//src/material/menu" ,
18
+ "//src/material/core" ,
19
+ ],
18
20
)
19
21
20
22
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-radio" ,
@@ -11,7 +10,8 @@ ng_module(
11
10
assets = [":radio_scss" ] + glob (["**/*.html" ]),
12
11
deps = [
13
12
"@npm//material-components-web" ,
14
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
13
+ "//src/material/core" ,
14
+ ],
15
15
)
16
16
17
17
sass_library (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package(default_visibility=["//visibility:public"])
2
2
3
3
load ("@io_bazel_rules_sass//:defs.bzl" , "sass_library" , "sass_binary" )
4
4
load ("//tools:defaults.bzl" , "ng_module" )
5
- load ("//:packages.bzl" , "CDK_TARGETS" , "MATERIAL_TARGETS" )
6
5
7
6
ng_module (
8
7
name = "mdc-slide-toggle" ,
@@ -15,7 +14,9 @@ ng_module(
15
14
"@npm//@angular/forms" ,
16
15
"@npm//@angular/animations" ,
17
16
"@npm//material-components-web" ,
18
- ] + CDK_TARGETS + MATERIAL_TARGETS ,
17
+ "//src/cdk/coercion" ,
18
+ "//src/material/core" ,
19
+ ],
19
20
)
20
21
21
22
sass_library (
You can’t perform that action at this time.
0 commit comments