angular/modules/angular2
Peter Bacon Darwin b5002fb46b docs(test_lib/test_injector): fix invalid jsdoc type
chore(doc-gen): capture docs for modules from comments

Closes #1258

docs(*): add module description jsdoc tags
docs(*): add @public tag to public modules
chore(doc-gen): fix overview-dump template
The template was referencing an invalid property
chore(doc-gen): use `@exportedAs` and `@public` rather than `@publicModule`

This commit refactors how we describe components that are re-exported in another
module. For example the "public" modules like `angular/angular` and `angular/annotations`
are public but they only re-export components from "private" modules.

Previously, you must apply the `@publicModule` tag to a component that was to be
re-exported. Applying this tag caused the destination module to become public.

Now, you specify that a module is public by applying the `@public` tag and then
you can "re-export" components to other modules by applying the `@exportedAs`
giving the name of the module from which the component will be re-exported.
tag. This tag can be used multiple times on a single component, allowing the
component to be exported on multiple modules.

docs(*): rename `@publicModule` to `@exportedAs`

The `@publicModule` dgeni tag has been replaced by the `@exportedAs`
dgeni tag on components that are to be re-exported on another module.

Closes #1290
2015-04-10 22:00:41 +00:00
..
docs chore(rename): rename View and Template concepts for #1244 2015-04-10 12:00:37 -07:00
src docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
test feat(dart/transform): Fix handling of Dart keywords 2015-04-10 13:43:11 -07:00
angular2.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
annotations.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
change_detection.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
core.js chore(rename): rename View and Template concepts for #1244 2015-04-10 12:00:37 -07:00
di.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
directives.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
forms.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
globals.ts chore(ts): duplicate the .es6 files in the facade directory to TypeScript. 2015-04-03 09:35:06 -07:00
package.json feat(facade): added support for observables 2015-03-24 13:45:39 -07:00
pipes.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
pubspec.yaml feat(dart/transform): Use the Dart transformer for benchmarks 2015-04-10 14:01:55 -07:00
README.dart.md feat(publish): update files to publish to npm 2015-02-24 16:53:44 -08:00
README.js.md feat(publish): update files to publish to npm 2015-02-24 16:53:44 -08:00
template.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00
test_lib.js chore(packaging): update import for the new file structure 2015-02-05 15:47:12 -08:00
traceur-runtime.d.ts chore(ts): duplicate the .es6 files in the facade directory to TypeScript. 2015-04-03 09:35:06 -07:00
transformer.dart feat(dart/transformer:: Initial commit of ctor stubs & annotation register 2015-02-17 16:34:19 -08:00
tsd.json chore(ts): introduce some TypeScript type declarations. 2015-04-01 12:01:45 -07:00
view.js docs(test_lib/test_injector): fix invalid jsdoc type 2015-04-10 22:00:41 +00:00

Angular2

The sources for this package are in the main Angular2 repo. Please file issues and pull requests against that repo. This is the repository for the upcoming 2.0 version. If you're looking for the current official version of Angular you should go to angular/angular.js

This package contains different sources for different users:

  1. The files located in the root folder can be consumed using CommonJS
  2. The files under /es6 are es6 compatible files that can be transpiled to es5 using any transpiler. This contains:
    • dev/: a development version that includes runtime type assertions
    • prod/: a production version that does not include runtime type assertions
  3. The files under /atscript are the AtScript source files

As a convenience, we provide you with /es6/{dev|prod}/es5build.js, a script to transpile the es6 sources into es5 using Google Traceur.

License: Apache MIT 2.0