docs: add api doc to sub-packages ()

PR Close 
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
packages
animations/browser
common
core/testing
platform-browser-dynamic
platform-browser
animations
testing
platform-server/testing
platform-webworker
upgrade

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

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

@ -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.

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

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

@ -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).

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

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

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

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

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

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

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

@ -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).

@ -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.

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