refactor(core): move more modules into core
This commit is contained in:
@ -1,10 +0,0 @@
|
|||||||
export * from './metadata';
|
|
||||||
export * from './change_detection';
|
|
||||||
export * from './core';
|
|
||||||
export * from './di';
|
|
||||||
export * from './directives';
|
|
||||||
export * from './forms';
|
|
||||||
export * from './render';
|
|
||||||
export * from './profile';
|
|
||||||
export {bootstrap} from 'angular2/src/core/application';
|
|
||||||
export * from './lifecycle_hooks';
|
|
@ -1,5 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module
|
|
||||||
* @description
|
|
||||||
* Errors thrown by the {@link Injector}.
|
|
||||||
*/
|
|
@ -1,5 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module
|
|
||||||
* @description
|
|
||||||
* Metadata which control how the dependencies are resolved by the {@link Injector}.
|
|
||||||
*/
|
|
@ -1,3 +0,0 @@
|
|||||||
library angular2.metadata;
|
|
||||||
|
|
||||||
export 'package:angular2/src/core/metadata.dart';
|
|
@ -1,51 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module
|
|
||||||
* @description
|
|
||||||
*
|
|
||||||
* Annotations provide the additional information that Angular requires in order to run your
|
|
||||||
* application. This module contains {@link ComponentMetadata}, {@link DirectiveMetadata}, and
|
|
||||||
* {@link ViewMetadata} annotations, as well as the {@link Host} annotation that is used by Angular
|
|
||||||
* to resolve dependencies.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
export {
|
|
||||||
ComponentMetadata,
|
|
||||||
DirectiveMetadata,
|
|
||||||
PipeMetadata,
|
|
||||||
ViewMetadata,
|
|
||||||
ViewEncapsulation,
|
|
||||||
QueryMetadata,
|
|
||||||
AttributeMetadata,
|
|
||||||
Attribute,
|
|
||||||
AttributeFactory,
|
|
||||||
Component,
|
|
||||||
ComponentDecorator,
|
|
||||||
ComponentFactory,
|
|
||||||
Directive,
|
|
||||||
DirectiveDecorator,
|
|
||||||
DirectiveFactory,
|
|
||||||
View,
|
|
||||||
ViewDecorator,
|
|
||||||
ViewFactory,
|
|
||||||
Query,
|
|
||||||
QueryFactory,
|
|
||||||
ViewQuery,
|
|
||||||
Pipe,
|
|
||||||
PipeFactory,
|
|
||||||
Property,
|
|
||||||
PropertyFactory,
|
|
||||||
PropertyMetadata,
|
|
||||||
Event,
|
|
||||||
EventFactory,
|
|
||||||
EventMetadata,
|
|
||||||
HostBinding,
|
|
||||||
HostBindingFactory,
|
|
||||||
HostBindingMetadata,
|
|
||||||
HostListener,
|
|
||||||
HostListenerFactory,
|
|
||||||
HostListenerMetadata
|
|
||||||
} from './src/core/metadata';
|
|
||||||
|
|
||||||
|
|
||||||
export {Class, ClassDefinition, TypeDecorator} from './src/core/util/decorators';
|
|
@ -1,5 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module
|
|
||||||
* @description
|
|
||||||
* Provides API for working with Angular views.
|
|
||||||
*/
|
|
Reference in New Issue
Block a user