mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This adapter adds an integration with the Navigation API, allowing SPA Router navigations to be displayed more fully in the browser UI. With this, site visitors will be able to see that a page is loading via the loading spinner in the tab. They will also have access to cancel the navigation with the browser UI via the "stop" button or by pressing the escape key (only relevant for slower connections). * https://github.com/WICG/navigation-api * https://developer.mozilla.org/en-US/docs/Web/API/Navigation_API PR Close #60722
33 lines
596 B
Text
33 lines
596 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ts_library(
|
|
name = "interfaces",
|
|
srcs = [
|
|
"index.ts",
|
|
],
|
|
visibility = ["//adev/shared-docs:__subpackages__"],
|
|
deps = [
|
|
":lib",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "lib",
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
],
|
|
exclude = [
|
|
"index.ts",
|
|
"**/*.spec.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/router",
|
|
"@npm//@types/node",
|
|
"@npm//@webcontainer/api",
|
|
],
|
|
)
|