From 87921d7fffc8409f23e37e3326130c90e83a3cbb Mon Sep 17 00:00:00 2001 From: Matthieu Riegler Date: Mon, 22 Apr 2024 21:52:22 +0200 Subject: [PATCH] docs: fix links to packages. (#55469) fixes #55458 PR Close #55469 --- adev/src/content/guide/animations/overview.md | 2 +- adev/src/content/reference/configs/npm-packages.md | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/adev/src/content/guide/animations/overview.md b/adev/src/content/guide/animations/overview.md index 70cc93af0f2..8ea7b23ab3b 100644 --- a/adev/src/content/guide/animations/overview.md +++ b/adev/src/content/guide/animations/overview.md @@ -266,7 +266,7 @@ Learn about more advanced features in Angular animations under the Animation sec ## Animations API summary The functional API provided by the `@angular/animations` module provides a domain-specific language \(DSL\) for creating and controlling animations in Angular applications. -See the [API reference](api/animations) for a complete listing and syntax details of the core functions and related data structures. +See the [API reference](api#animations) for a complete listing and syntax details of the core functions and related data structures. | Function name | What it does | |:--- |:--- | diff --git a/adev/src/content/reference/configs/npm-packages.md b/adev/src/content/reference/configs/npm-packages.md index 314e50872f9..7046bda0fdc 100644 --- a/adev/src/content/reference/configs/npm-packages.md +++ b/adev/src/content/reference/configs/npm-packages.md @@ -27,15 +27,15 @@ For a complete list of Angular packages, see the [API reference](api). | Package name | Details | |:--- |:--- | -| [`@angular/animations`](api/animations) | Angular's animations library makes it easy to define and apply animation effects such as page and list transitions. For more information, see the [Animations guide](guide/animations). | -| [`@angular/common`](api/common) | The commonly-needed services, pipes, and directives provided by the Angular team. | +| [`@angular/animations`](api#animations) | Angular's animations library makes it easy to define and apply animation effects such as page and list transitions. For more information, see the [Animations guide](guide/animations). | +| [`@angular/common`](api#common) | The commonly-needed services, pipes, and directives provided by the Angular team. | | `@angular/compiler` | Angular's template compiler. It understands Angular templates and can convert them to code that makes the application run. | | `@angular/compiler-cli` | Angular's compiler which is invoked by the Angular CLI's `ng build` and `ng serve` commands. It processes Angular templates with `@angular/compiler` inside a standard TypeScript compilation. | -| [`@angular/core`](api/core) | Critical runtime parts of the framework that are needed by every application. Includes all metadata decorators such as `@Component`, dependency injection, and component lifecycle hooks. | -| [`@angular/forms`](api/forms) | Support for both [template-driven](guide/forms) and [reactive forms](guide/forms/reactive-forms). See [Introduction to forms](guide/forms). | -| [`@angular/platform-browser`](api/platform-browser) | Everything DOM and browser related, especially the pieces that help render into the DOM. | -| [`@angular/platform-browser-dynamic`](api/platform-browser-dynamic) | Includes [providers](api/core/Provider) and methods to compile and run the application on the client using the [JIT compiler](tools/cli/aot-compiler#choosing-a-compiler). | -| [`@angular/router`](api/router) | The router module navigates among your application pages when the browser URL changes. For more information, see [Routing and Navigation](guide/routing). | +| [`@angular/core`](api#core) | Critical runtime parts of the framework that are needed by every application. Includes all metadata decorators such as `@Component`, dependency injection, and component lifecycle hooks. | +| [`@angular/forms`](api#forms) | Support for both [template-driven](guide/forms) and [reactive forms](guide/forms/reactive-forms). See [Introduction to forms](guide/forms). | +| [`@angular/platform-browser`](api#platform-browser) | Everything DOM and browser related, especially the pieces that help render into the DOM. | +| [`@angular/platform-browser-dynamic`](api#platform-browser-dynamic) | Includes [providers](api/core/Provider) and methods to compile and run the application on the client using the [JIT compiler](tools/cli/aot-compiler#choosing-a-compiler). | +| [`@angular/router`](api#router) | The router module navigates among your application pages when the browser URL changes. For more information, see [Routing and Navigation](guide/routing). | | [`@angular/cli`](https://github.com/angular/angular-cli) | Contains the Angular CLI binary for running `ng` commands. | | [`@angular-devkit/build-angular`](https://github.com/angular/angular-cli) | Contains default CLI builders for bundling, testing, and serving Angular applications and libraries. | | `rxjs` | A library for reactive programming using `Observables`. |