2017-12-01 14:23:03 -08:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2018-05-09 16:49:39 -07:00
|
|
|
import {LifecycleHooksFeature, getHostElement, getRenderedText, renderComponent, whenRendered} from './component';
|
2018-07-23 17:01:22 -07:00
|
|
|
import {defineBase, defineComponent, defineDirective, defineNgModule, definePipe} from './definition';
|
2018-06-18 08:05:06 -07:00
|
|
|
import {InheritDefinitionFeature} from './features/inherit_definition_feature';
|
|
|
|
import {NgOnChangesFeature} from './features/ng_onchanges_feature';
|
|
|
|
import {PublicFeature} from './features/public_feature';
|
2018-08-07 12:04:39 -07:00
|
|
|
import {BaseDef, ComponentDef, ComponentDefInternal, ComponentTemplate, ComponentType, DirectiveDef, DirectiveDefFlags, DirectiveDefInternal, DirectiveType, PipeDef} from './interfaces/definition';
|
2018-06-18 08:05:06 -07:00
|
|
|
|
2018-08-06 14:09:38 -07:00
|
|
|
export {ComponentFactory, ComponentFactoryResolver, ComponentRef, WRAP_RENDERER_FACTORY2} from './component_ref';
|
|
|
|
export {Render3DebugRendererFactory2} from './debug';
|
2018-07-16 16:36:31 -07:00
|
|
|
export {QUERY_READ_CONTAINER_REF, QUERY_READ_ELEMENT_REF, QUERY_READ_FROM_NODE, QUERY_READ_TEMPLATE_REF, directiveInject, getFactoryOf, getInheritedFactory, injectAttribute, injectChangeDetectorRef, injectComponentFactoryResolver, injectElementRef, injectTemplateRef, injectViewContainerRef} from './di';
|
2018-04-10 20:57:09 -07:00
|
|
|
export {RenderFlags} from './interfaces/definition';
|
2018-03-29 16:41:45 -07:00
|
|
|
export {CssSelectorList} from './interfaces/projection';
|
2018-02-03 20:34:30 -08:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
// clang-format off
|
|
|
|
export {
|
2017-12-15 14:59:17 +01:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
NO_CHANGE,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
bind,
|
|
|
|
interpolation1,
|
|
|
|
interpolation2,
|
|
|
|
interpolation3,
|
|
|
|
interpolation4,
|
|
|
|
interpolation5,
|
|
|
|
interpolation6,
|
|
|
|
interpolation7,
|
|
|
|
interpolation8,
|
|
|
|
interpolationV,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
container,
|
|
|
|
containerRefreshStart,
|
|
|
|
containerRefreshEnd,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
nextContext,
|
2018-07-25 17:25:22 -07:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
element,
|
|
|
|
elementAttribute,
|
|
|
|
elementClassProp,
|
|
|
|
elementEnd,
|
|
|
|
elementProperty,
|
|
|
|
elementStart,
|
2018-06-19 12:45:00 -07:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
elementContainerStart,
|
|
|
|
elementContainerEnd,
|
2018-08-08 10:21:20 +02:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
elementStyling,
|
|
|
|
elementStylingMap,
|
|
|
|
elementStyleProp,
|
|
|
|
elementStylingApply,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
getCurrentView,
|
|
|
|
restoreView,
|
2018-07-30 19:43:56 -07:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
listener,
|
|
|
|
store,
|
|
|
|
load,
|
|
|
|
loadDirective,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
namespaceHTML,
|
|
|
|
namespaceMathML,
|
|
|
|
namespaceSVG,
|
2018-06-08 09:00:01 -07:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
projection,
|
|
|
|
projectionDef,
|
2017-12-14 16:26:28 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
text,
|
|
|
|
textBinding,
|
2018-08-15 18:37:03 -07:00
|
|
|
template,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
reference,
|
2018-07-18 01:59:49 +00:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
reserveSlots,
|
2018-05-21 15:59:25 -07:00
|
|
|
|
2018-08-14 16:48:58 -07:00
|
|
|
embeddedViewStart,
|
|
|
|
embeddedViewEnd,
|
2018-02-23 13:17:20 -08:00
|
|
|
detectChanges,
|
|
|
|
markDirty,
|
2018-03-13 12:31:21 -07:00
|
|
|
tick,
|
2017-12-01 14:23:03 -08:00
|
|
|
} from './instructions';
|
2018-01-17 09:45:40 -08:00
|
|
|
|
2018-06-18 16:55:43 +02:00
|
|
|
export {
|
2018-08-14 16:48:58 -07:00
|
|
|
i18nApply,
|
|
|
|
i18nMapping,
|
|
|
|
i18nInterpolation1,
|
|
|
|
i18nInterpolation2,
|
|
|
|
i18nInterpolation3,
|
|
|
|
i18nInterpolation4,
|
|
|
|
i18nInterpolation5,
|
|
|
|
i18nInterpolation6,
|
|
|
|
i18nInterpolation7,
|
|
|
|
i18nInterpolation8,
|
|
|
|
i18nInterpolationV,
|
|
|
|
i18nExpMapping,
|
2018-06-18 16:55:43 +02:00
|
|
|
I18nInstruction,
|
|
|
|
I18nExpInstruction
|
|
|
|
} from './i18n';
|
|
|
|
|
2018-07-13 14:32:46 -07:00
|
|
|
export {NgModuleFactory, NgModuleRef, NgModuleType} from './ng_module_ref';
|
2018-05-09 16:49:39 -07:00
|
|
|
|
2018-05-04 15:58:42 +02:00
|
|
|
export {
|
|
|
|
AttributeMarker
|
|
|
|
} from './interfaces/node';
|
|
|
|
|
2018-01-27 13:07:03 -08:00
|
|
|
export {
|
2018-08-14 16:48:58 -07:00
|
|
|
pipe,
|
|
|
|
pipeBind1,
|
|
|
|
pipeBind2,
|
|
|
|
pipeBind3,
|
|
|
|
pipeBind4,
|
|
|
|
pipeBindV,
|
2018-01-27 13:07:03 -08:00
|
|
|
} from './pipe';
|
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
export {
|
|
|
|
QueryList,
|
2018-08-14 16:48:58 -07:00
|
|
|
query,
|
|
|
|
queryRefresh,
|
2018-01-17 09:45:40 -08:00
|
|
|
} from './query';
|
2018-07-10 10:43:07 +02:00
|
|
|
export {
|
2018-08-14 16:48:58 -07:00
|
|
|
registerContentQuery,
|
|
|
|
loadQueryList,
|
2018-07-10 10:43:07 +02:00
|
|
|
} from './instructions';
|
|
|
|
|
2018-02-01 12:13:23 -08:00
|
|
|
export {
|
2018-08-14 16:48:58 -07:00
|
|
|
pureFunction0,
|
|
|
|
pureFunction1,
|
|
|
|
pureFunction2,
|
|
|
|
pureFunction3,
|
|
|
|
pureFunction4,
|
|
|
|
pureFunction5,
|
|
|
|
pureFunction6,
|
|
|
|
pureFunction7,
|
|
|
|
pureFunction8,
|
|
|
|
pureFunctionV,
|
2018-02-13 18:56:52 -08:00
|
|
|
} from './pure_function';
|
2018-02-01 12:13:23 -08:00
|
|
|
|
2018-01-22 17:43:52 -08:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
// clang-format on
|
2018-01-17 09:45:40 -08:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
export {
|
2018-08-07 12:04:39 -07:00
|
|
|
BaseDef,
|
2018-06-26 10:37:45 -07:00
|
|
|
ComponentDef,
|
2018-05-31 15:50:02 -07:00
|
|
|
ComponentDefInternal,
|
2017-12-01 14:23:03 -08:00
|
|
|
ComponentTemplate,
|
|
|
|
ComponentType,
|
2018-06-26 10:37:45 -07:00
|
|
|
DirectiveDef,
|
2017-12-01 14:23:03 -08:00
|
|
|
DirectiveDefFlags,
|
2018-06-26 10:37:45 -07:00
|
|
|
DirectiveDefInternal,
|
2017-12-19 16:51:42 +01:00
|
|
|
DirectiveType,
|
2017-12-01 14:23:03 -08:00
|
|
|
NgOnChangesFeature,
|
2018-06-18 08:05:06 -07:00
|
|
|
InheritDefinitionFeature,
|
2017-12-01 14:23:03 -08:00
|
|
|
PublicFeature,
|
2018-04-13 23:02:29 -07:00
|
|
|
PipeDef,
|
2018-03-06 11:58:08 -08:00
|
|
|
LifecycleHooksFeature,
|
2017-12-01 14:23:03 -08:00
|
|
|
defineComponent,
|
|
|
|
defineDirective,
|
2018-05-31 15:50:02 -07:00
|
|
|
defineNgModule,
|
2018-07-23 17:01:22 -07:00
|
|
|
defineBase,
|
2018-01-27 13:07:03 -08:00
|
|
|
definePipe,
|
2018-02-03 20:34:30 -08:00
|
|
|
getHostElement,
|
|
|
|
getRenderedText,
|
|
|
|
renderComponent,
|
|
|
|
whenRendered,
|
2017-12-01 14:23:03 -08:00
|
|
|
};
|