BREAKING CHANGE:
- Renderer:
* renderComponent method is removed form `Renderer`, only present on `RootRenderer`
* Renderer.setDebugInfo is removed. Renderer.createElement / createText / createTemplateAnchor
now take the DebugInfo directly.
- Query semantics:
* Queries don't work with dynamically loaded components.
* e.g. for router-outlet: loaded components can't be queries via @ViewQuery,
but router-outlet emits an event `activate` now that emits the activated component
- Exception classes and the context inside changed (renamed fields)
- DebugElement.attributes is an Object and not a Map in JS any more
- ChangeDetectorGenConfig was renamed into CompilerConfig
- AppViewManager.createEmbeddedViewInContainer / AppViewManager.createHostViewInContainer
are removed, use the methods in ViewContainerRef instead
- Change detection order changed:
* 1. dirty check component inputs
* 2. dirty check content children
* 3. update render nodes
Closes #6301
Closes #6567
This directory contains pure Dart packages that use standard pub layout.
Working with an existing package
- Run
gulp build.dart - Open the package in any Dart IDE of your choice
- Tada!
You do not need to rerun step 1 if you are only making changes in
modules_dart. However, you do need to run it again after you make a change
in modules. This is because these packages depend on code inside the dist
directory via dependency_overrides. Code in modules need to be transpiled
into dist before the IDE can "feel" your changes in modules.
Creating a new package
- Create a new directory with its own
pubspec.yamland standard pub layout. - Add both a normal dependency on
angular2and adependency_overrides, like this:
version: 0.0.0
dependencies:
angular2: '0.0.0'
dependency_overrides:
angular2:
path: ../../dist/dart/angular2
The publishing script will automatically rewrite version numbers, so use
0.0.0 both for your package and angular2 version. Similarly, do not
include authors and homepage, as they will be auto-populated. However,
do provide description, name (prefixed with angular2_), dependencies,
and dev_dependencies.