Closes #3605 BREAKING CHANGE: - we don't mark an element as bound any more if it only contains text bindings E.g. <div>{{hello}}</div> This changes the indices when using `DebugElement.componentViewChildren` / `DebugElement.children`. - `@Directive.compileChildren` was removed, `ng-non-bindable` is now builtin and not a directive any more - angular no more adds the `ng-binding` class to elements with bindings - directives are now ordered as they are listed in the View.directives regarding change detection. Previously they had an undefined order. - the `Renderer` interface has new methods `createProtoView` and `registerComponentTemplate`. See `DomRenderer` for default implementations. - reprojection with `ng-content` is now all or nothing per `ng-content` element - angular2 transformer can't be used in tests that modify directive metadata. Use `angular2/src/transform/inliner_for_test` transformer instead.
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
export * from '../lifecycle_hooks';
|
|
export * from '../src/core/metadata';
|
|
export * from '../src/core/util';
|
|
export * from '../src/core/di';
|
|
export * from '../src/core/pipes';
|
|
export * from '../src/core/facade';
|
|
// Do not export application in web_worker,
|
|
// web_worker exports its own
|
|
// export * from '../src/core/application';
|
|
export * from '../src/core/application_ref';
|
|
export * from '../src/core/services';
|
|
export * from '../src/core/compiler';
|
|
export * from '../src/core/lifecycle';
|
|
export * from '../src/core/zone';
|
|
// Do not export render in web_worker
|
|
// export * from '../src/core/render';
|
|
// Add special import for just render API
|
|
// TODO: Hard coded exports from render that need to be cleaned up
|
|
export {
|
|
RenderEventDispatcher,
|
|
Renderer,
|
|
RenderElementRef,
|
|
RenderViewRef,
|
|
RenderProtoViewRef,
|
|
RenderFragmentRef,
|
|
RenderViewWithFragments,
|
|
RenderTemplateCmd,
|
|
RenderCommandVisitor,
|
|
RenderTextCmd,
|
|
RenderNgContentCmd,
|
|
RenderBeginElementCmd,
|
|
RenderBeginComponentCmd,
|
|
RenderEmbeddedTemplateCmd,
|
|
RenderBeginCmd
|
|
} from '../src/core/render/render';
|
|
export * from '../src/core/directives';
|
|
export * from '../src/core/forms';
|
|
export * from '../src/core/debug';
|
|
export * from '../src/core/change_detection';
|
|
|
|
export * from '../profile';
|
|
export * from '../src/web_workers/worker/application';
|
|
export * from '../src/web_workers/shared/client_message_broker';
|
|
export * from '../src/web_workers/shared/service_message_broker';
|
|
export {PRIMITIVE} from '../src/web_workers/shared/serializer';
|