/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/cdk/table/BUILD.bazel
67 строк
1 KB
Kristiyan Kostadinov
refactor: remove remaining NgClass usages (#32873)
02 мар 2026, 11:13
Не верифицирован
02 мар 2026, 11:13
c7cc0be
Код
Авторство
О чём код?
load( "//tools:defaults.bzl", "markdown_to_html", "ng_project", "ng_web_test_suite", "sass_binary", ) package(default_visibility = ["//visibility:public"]) ng_project( name = "table", srcs = glob( ["**/*.ts"], exclude = ["**/*.spec.ts"], ), assets = [":table.css"], deps = [ "//:node_modules/@angular/core", "//:node_modules/rxjs", "//src:dev_mode_types", "//src/cdk/bidi", "//src/cdk/coercion", "//src/cdk/collections", "//src/cdk/platform", "//src/cdk/scrolling", ], ) sass_binary( name = "table_scss", src = "table.scss", ) ng_project( name = "unit_test_sources", testonly = True, srcs = glob( ["**/*.spec.ts"], exclude = ["**/*.e2e.spec.ts"], ), deps = [ ":table", "//:node_modules/@angular/core", "//:node_modules/@angular/platform-browser", "//:node_modules/rxjs", "//src/cdk/bidi", "//src/cdk/collections", "//src/cdk/scrolling", "//src/cdk/testing/private", ], ) ng_web_test_suite( name = "unit_tests", deps = [":unit_test_sources"], ) markdown_to_html( name = "overview", srcs = [":table.md"], ) filegroup( name = "source-files", srcs = glob(["**/*.ts"]), )