/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/aria/menu/BUILD.bazel
61 строка
1 KB
Cheng-Hsuan Tsai
fix(aria/menu): defer menu item focus in case menus in cdk overlay (#33258)
18 май 2026, 08:41
Не верифицирован
18 май 2026, 08:41
629fe71
Код
Авторство
О чём код?
load("//tools:defaults.bzl", "extract_api_to_json", "ng_project", "ng_web_test_suite") package(default_visibility = ["//visibility:public"]) ng_project( name = "menu", 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 = glob( ["**/*.spec.ts"], exclude = ["**/*.e2e.spec.ts"], ), deps = [ ":menu", "//:node_modules/@angular/common", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//:node_modules/axe-core", "//src/aria/private/testing", "//src/cdk/overlay", "//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/menu", output_name = "aria-menu.json", private_modules = [""], repo = "angular/components", )