docs: add api doc to sub-packages (#33801)

PR Close #33801
This commit is contained in:
Judy Bogart 2019-11-13 08:46:40 -08:00 committed by Alex Rickabaugh
parent 55748dbc55
commit 87994d2c03
16 changed files with 23 additions and 3 deletions

View File

@ -0,0 +1 @@
Provides infrastructure for cross-platform rendering of animations in a browser.

View File

@ -0,0 +1 @@
Provides infrastructure for testing of the Animations browser subsystem.

View File

@ -1,3 +1,3 @@
Implements basic Angular directives and pipes, such as NgIf, NgForOf, DecimalPipe, and so on.
Implements fundamental Angular framework functionality, including directives and pipes, location services used in routing, HTTP services, localization support, and so on.
The `CommonModule` exports are re-exported by `BrowserModule`, which is included automatically in the root `AppModule` when you create a new app with the CLI `new` command.

View File

@ -0,0 +1 @@
Supplies a testing module for the Angular HTTP subsystem.

View File

@ -0,0 +1 @@
Supplies infrastructure for testing functionality supplied by `@angular/common`.

View File

@ -0,0 +1,2 @@
Provides tools for upgrading from the `$location` service provided in AngularJS
to Angular's [unified location service](guide/upgrade#using-the-unified-angular-location-service).

View File

@ -0,0 +1 @@
Provides infrastructure for testing Angular core functionality.

View File

@ -0,0 +1 @@
Supports [JIT](guide/glossary#jit) compilation and execution of Angular apps on different supported browsers.

View File

@ -0,0 +1 @@
Supplies a testing module for the Angular JIT platform-browser subsystem.

View File

@ -0,0 +1 @@
Provides infrastructure for the rendering of animations in supported browsers.

View File

@ -0,0 +1 @@
Supplies a testing module for the Angular platform-browser subsystem.

View File

@ -0,0 +1 @@
Supplies a testing module for the Angular platform server subsystem.

View File

@ -0,0 +1,2 @@
**Deprecated** This package is deprecated and will be removed in version 10.
See [Angular deprecations policy](guide/deprecations).

View File

@ -1,2 +1,5 @@
Supports the upgrade path from AngularJS to Angular, allowing
components from both systems to be used in the same application.
Provides support for upgrading applications from Angular JS to Angular.
The primary entry point is deprecated. Use the secondary entry point,
`upgrade/static`.
See [Angular deprecation policy](guide/deprecations).

View File

@ -0,0 +1,2 @@
Supports the upgrade path from AngularJS to Angular, allowing
components and services from both systems to be used in the same application.

View File

@ -0,0 +1 @@
Supplies testing functions for the AngularJS-to-Angular upgrade path.