load("@npm//@bazel/typescript:index.bzl", "ts_library")

package(default_visibility = ["//visibility:public"])

exports_files(glob(["*.css"]))

ts_library(
    name = "invocation",
    srcs = glob(["**/*.tsx"]),
    deps = [
        "//app/alert",
        "//app/auth",
        "//app/capabilities",
        "//app/components/button",
        "//app/components/dialog",
        "//app/components/digest",
        "//app/components/input",
        "//app/components/menu",
        "//app/components/modal",
        "//app/components/popup",
        "//app/components/select",
        "//app/components/spinner",
        "//app/docs",
        "//app/errors",
        "//app/favicon",
        "//app/flame_chart",
        "//app/format",
        "//app/preferences",
        "//app/router",
        "//app/service",
        "//app/target",
        "//app/terminal",
        "//app/util:clipboard",
        "//app/util:errors",
        "//app/util:proto",
        "//proto:acl_ts_proto",
        "//proto:build_event_stream_ts_proto",
        "//proto:cache_ts_proto",
        "//proto:command_line_ts_proto",
        "//proto:eventlog_ts_proto",
        "//proto:execution_stats_ts_proto",
        "//proto:group_ts_proto",
        "//proto:grpc_code_ts_proto",
        "//proto:invocation_ts_proto",
        "//proto:remote_execution_ts_proto",
        "//proto:user_ts_proto",
        "//proto:workflow_ts_proto",
        "@npm//@types/long",
        "@npm//@types/moment",
        "@npm//@types/pako",
        "@npm//@types/react",
        "@npm//dagre-d3-react",
        "@npm//long",
        "@npm//lucide-react",
        "@npm//moment",
        "@npm//pako",
        "@npm//protobufjs",
        "@npm//react",
        "@npm//recharts",
        "@npm//rxjs",
        "@npm//tslib",
    ],
)
