-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
77 lines (70 loc) · 1.8 KB
/
BUILD.bazel
File metadata and controls
77 lines (70 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
load("//tools:defaults.bzl", "ng_project", "sass_binary", "sass_library")
package(default_visibility = ["//visibility:public"])
sass_library(
name = "m3",
srcs = [
"_m3-pseudo-checkbox.scss",
],
deps = [
"//src/material/core/style:sass_utils",
"//src/material/core/tokens:m3_utils",
],
)
sass_library(
name = "m2",
srcs = [
"_m2-pseudo-checkbox.scss",
],
deps = [
"//src/material/core/style:elevation",
"//src/material/core/style:sass_utils",
"//src/material/core/theming:_inspection",
"//src/material/core/tokens:m2_utils",
],
)
ng_project(
name = "pseudo-checkbox",
srcs = [
"pseudo-checkbox.ts",
"pseudo-checkbox-module.ts",
],
assets = [
":css",
],
deps = [
"//:node_modules/@angular/core",
"//src/material/core/animation",
"//src/material/core/common-behaviors",
],
)
sass_library(
name = "sass_theme",
srcs = [
"_pseudo-checkbox-theme.scss",
],
deps = [
":m2",
"//src/material/core/style:sass_utils",
"//src/material/core/theming",
"//src/material/core/theming:_inspection",
"//src/material/core/theming:_validation",
"//src/material/core/tokens:token_utils",
],
)
sass_library(
name = "_pseudo_checkbox_common",
srcs = ["_pseudo-checkbox-common.scss"],
deps = ["//src/material/core/style:checkbox_common"],
)
sass_binary(
name = "css",
src = "pseudo-checkbox.scss",
layer = "angular-material",
deps = [
":_pseudo_checkbox_common",
"//src/material/core/style:checkbox_common",
"//src/material/core/style:private",
"//src/material/core/style:variables",
"//src/material/core/tokens:token_utils",
],
)