2025-07-14 14:45:06 +00:00
|
|
|
load("//adev/shared-docs:defaults.bzl", "ng_project", "sass_binary", "ts_project", "zoneless_web_test_suite")
|
2024-07-23 16:50:12 +00:00
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
|
|
2025-05-12 15:30:21 +00:00
|
|
|
ng_project(
|
2024-07-23 16:50:12 +00:00
|
|
|
name = "select",
|
|
|
|
|
srcs = [
|
|
|
|
|
"select.component.ts",
|
|
|
|
|
],
|
|
|
|
|
assets = [
|
|
|
|
|
":select.component.css",
|
|
|
|
|
"select.component.html",
|
|
|
|
|
],
|
2025-05-12 15:30:21 +00:00
|
|
|
visibility = [
|
|
|
|
|
"//adev/shared-docs/components:__pkg__",
|
|
|
|
|
],
|
2025-06-26 12:50:03 +00:00
|
|
|
deps = [
|
2026-01-26 19:42:36 +00:00
|
|
|
"//adev:node_modules/@angular/aria",
|
2025-07-02 21:25:43 +00:00
|
|
|
"//adev:node_modules/@angular/common",
|
|
|
|
|
"//adev:node_modules/@angular/core",
|
|
|
|
|
"//adev:node_modules/@angular/forms",
|
2025-06-26 12:50:03 +00:00
|
|
|
],
|
2024-07-23 16:50:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
sass_binary(
|
|
|
|
|
name = "style",
|
|
|
|
|
src = "select.component.scss",
|
|
|
|
|
)
|
|
|
|
|
|
2025-05-06 20:59:30 +00:00
|
|
|
ts_project(
|
2024-07-23 16:50:12 +00:00
|
|
|
name = "test_lib",
|
|
|
|
|
testonly = True,
|
|
|
|
|
srcs = glob(
|
|
|
|
|
["*.spec.ts"],
|
|
|
|
|
),
|
2025-06-26 12:50:03 +00:00
|
|
|
deps = [
|
2025-07-30 17:43:25 +00:00
|
|
|
":select",
|
2025-07-02 21:25:43 +00:00
|
|
|
"//adev:node_modules/@angular/core",
|
2024-07-23 16:50:12 +00:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
2025-07-12 00:35:18 +00:00
|
|
|
zoneless_web_test_suite(
|
2024-07-23 16:50:12 +00:00
|
|
|
name = "test",
|
2025-07-30 17:43:25 +00:00
|
|
|
deps = [":test_lib"],
|
2024-07-23 16:50:12 +00:00
|
|
|
)
|