/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/aria/tree/BUILD.bazel
58 строк
1 KB
tjshiu
feat(aria/combobox): migrate simple-combobox directly into primary entrypoints (#33206)
06 май 2026, 18:50
Не верифицирован
06 май 2026, 18:50
0ca47b4
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "extract_api_to_json", "ng_project", "ng_web_test_suite") package(default_visibility = ["//visibility:public"]) ng_project( name = "tree", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), deps = [ "//:node_modules/@angular/core", "//src/aria/private", "//src/cdk/a11y", "//src/cdk/bidi", ], ) ng_project( name = "unit_test_sources", testonly = True, srcs = [ "tree.spec.ts", ], deps = [ ":tree", "//:node_modules/@angular/common", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//src/aria/private/testing", "//src/cdk/testing/private", ], ) ng_web_test_suite( name = "unit_tests", deps = [":unit_test_sources"], ) filegroup( name = "source-files", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), ) extract_api_to_json( name = "json_api", srcs = [ ":source-files", ], entry_point = ":index.ts", module_name = "@angular/aria/tree", output_name = "aria-tree.json", private_modules = [""], repo = "angular/components", )